Skip to content

Commit

Permalink
refactor(dev): update to version 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
manucabral committed Oct 20, 2024
1 parent be2e55c commit dbd417b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
3 changes: 2 additions & 1 deletion dev/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"Development script for creating custom presences for Rich Presence Plus."
)
__author__ = "Manuel Cabral"
__version__ = "0.3.0"
__version__ = "0.3.2"
__license__ = "MIT"

import argparse
Expand Down Expand Up @@ -122,6 +122,7 @@ def prepare_args() -> argparse.Namespace:
log = rpp.get_logger("Main")
log.info(f"{__title__} v{__version__}")
log.info(f"Using RPP v{rpp.__version__}")
rpp.load_env()

if args.browser_tools:
browser = rpp.Browser()
Expand Down
5 changes: 1 addition & 4 deletions dev/setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
"""
This script is used to build the development version.
"""

from main import __title__, __version__, __description__
from cx_Freeze import setup, Executable

Expand All @@ -14,6 +10,7 @@
"rpp.Runtime",
"rpp.Presence",
"rpp.Browser",
"rpp.ClientRPC",
"rpp.load_env",
"rpp.get_available_presences",
],
Expand Down

0 comments on commit dbd417b

Please sign in to comment.