Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
Update ownership and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Pixelguin committed Oct 5, 2024
1 parent f2a05eb commit a20a628
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
6 changes: 3 additions & 3 deletions Persona.PrerequisiteInstaller.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

PROGRAM_NAME = 'Persona Prerequisite Installer'
PROGRAM_NAME_SHORT = 'ppi'
VERSION = '2.3.1'
VERSION = '3.0.0'

DIVIDER = '======================'

Expand All @@ -34,7 +34,7 @@
WEB_FILE = 'web_data.py'
LOGS_FILE = LOGS_DIR.joinpath(f"{PROGRAM_NAME_SHORT}Log_{time.strftime('%Y%m%d-%H%M%S')}.txt")

WEB_URL = f'https://raw.githubusercontent.com/Pixelguin/Persona.PrerequisiteInstaller/master/{WEB_FILE}'
WEB_URL = f'https://raw.githubusercontent.com/MadMax1960/Persona.PrerequisiteInstaller/master/{WEB_FILE}'

# Create directories
os.makedirs(DOWNLOADS_DIR, exist_ok = True)
Expand Down Expand Up @@ -230,7 +230,7 @@ def verify_checksum(file, checksum_correct):
'''
PROGRAM START
'''
log.info(f'{PROGRAM_NAME} {VERSION}\nby Pixelguin\n')
log.info(f'{PROGRAM_NAME} {VERSION}\nOriginal program by Pixelguin\nForked and maintained by MadMax1960\n')
if DEV:
log.info('===! DEV IS ENABLED !===\n')

Expand Down
10 changes: 3 additions & 7 deletions web_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,9 @@
from urllib.parse import urlparse

# Version and repository info
web_version_latest_v2 = '2.3.1'
web_version_supported_v2 = '2.3.1'
web_repository = 'https://github.com/Pixelguin/Persona.PrerequisiteInstaller/releases/latest'

# Legacy version info (before packaging.version was implemented)
web_version_latest = 2.3
web_version_supported = 2.3
web_version_latest_v2 = '3.0.0'
web_version_supported_v2 = '3.0.0'
web_repository = 'https://github.com/MadMax1960/Persona.PrerequisiteInstaller/releases/latest'

# Terms of use
web_terms = '''
Expand Down

0 comments on commit a20a628

Please sign in to comment.