Skip to content

Commit

Permalink
scripts: Bump version from 2.1.12 --> 2.1.13
Browse files Browse the repository at this point in the history
  • Loading branch information
SenZmaKi committed Sep 2, 2024
1 parent 4d8d159 commit bbe16ab
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "senpwai"
version = "2.1.12"
version = "2.1.13"
description = "A desktop app for tracking and batch downloading anime"
authors = ["SenZmaKi <[email protected]>"]
license = "GPL v3"
Expand Down
6 changes: 3 additions & 3 deletions scripts/setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "Senpwai"
#define MyAppVersion "2.1.12"
#define MyAppVersion "2.1.13"
#define MyAppPublisher "AkatsuKi Inc."
#define MyAppURL "https://github.com/SenZmaKi/Senpwai"
#define MyAppExeName "senpwai.exe"
Expand All @@ -11,10 +11,10 @@
[Setup]
; NOTE: The value of AppId uniquely identifies this application. Do not use the same AppId value in installers for other applications.
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
AppId={{B1AC746D-A6F0-44EF-B812.1.12-0DF4571B51}}
AppId={{B1AC746D-A6F0-44EF-B812.1.13-0DF4571B51}}
AppName={#MyAppName}
AppVersion={#MyAppVersion}
VersionInfoVersion=2.1.12.0
VersionInfoVersion=2.1.13.0
;AppVerName={#MyAppName} {#MyAppVersion}
AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
Expand Down
6 changes: 3 additions & 3 deletions scripts/setup_senpcli.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "Senpcli"
#define MyAppVersion "2.1.12"
#define MyAppVersion "2.1.13"
#define MyAppPublisher "AkatsuKi Inc."
#define MyAppURL "https://github.com/SenZmaKi/Senpwai"
#define MyAppExeName "Senpcli.exe"
Expand All @@ -11,10 +11,10 @@
[Setup]
; NOTE: The value of AppId uniquely identifies this application. Do not use the same AppId value in installers for other applications.
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
AppId={{7D4A0DD5-EACB-45-81FC-2.1.125FCFF05BB6}}
AppId={{7D4A0DD5-EACB-45-81FC-2.1.135FCFF05BB6}}
AppName={#MyAppName}
AppVersion={#MyAppVersion}
VersionInfoVersion=2.1.12.0
VersionInfoVersion=2.1.13.0
;AppVerName={#MyAppName} {#MyAppVersion}
AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
Expand Down
4 changes: 2 additions & 2 deletions senpwai/common/static.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def custom_exception_handler(

APP_NAME = "Senpwai"
APP_NAME_LOWER = "senpwai"
VERSION = "2.1.12"
VERSION = "2.1.13"
DESCRIPTION = "A desktop app for tracking and batch downloading anime"

IS_PIP_INSTALL = False
Expand Down Expand Up @@ -87,7 +87,7 @@ def windows_setup_file_titles(app_name: str) -> tuple[str, str]:
return (f"{app_name}-setup.exe", f"{app_name}-setup.msi")


# TODO: DEPRECATION Remove in version 2.1.12+ since we download updates to temp
# TODO: DEPRECATION Remove in version 2.1.13+ since we download updates to temp
for title in windows_setup_file_titles(APP_NAME):
try_deleting(os.path.join(ROOT_DIRECTORY, title))
for title in windows_setup_file_titles("Senpcli"):
Expand Down

0 comments on commit bbe16ab

Please sign in to comment.