diff --git a/installer_example.iss b/installer_example.iss index 54ceb68..6025d2a 100644 --- a/installer_example.iss +++ b/installer_example.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "Screen Translate" -#define MyAppVersion "2.0.0" +#define MyAppVersion "2.0.1" #define MyAppPublisher "Dadangdut33" #define MyAppURL "https://github.com/Dadangdut33/Screen-Translate" #define MyAppExeName "ScreenTranslate.exe" @@ -12,7 +12,9 @@ [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={{F2EBD981-AD82-4898-9F9E-526C58152F71} +; * With Console AppId: 0C2FEB81-A776-4DAA-BBEC-F76AA5D6F870 +; * NO CONSOLE AppId: F2EBD981-AD82-4898-9F9E-526C58152F71 +AppId={{xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx} AppName={#MyAppName} AppVersion={#MyAppVersion} ;AppVerName={#MyAppName} {#MyAppVersion} diff --git a/readme.md b/readme.md index 34c83d1..5b8a1bc 100644 --- a/readme.md +++ b/readme.md @@ -145,7 +145,7 @@ This will create a folder called `build` in the source code directory. Inside th ## Packaging -I use innosetup to package the app. You can download it [here](https://jrsoftware.org/isdl.php). After installing it, you can setup the path in `ScreenTranslate.iss` file and run the .iss script. +I use innosetup to package the app. You can download it [here](https://jrsoftware.org/isdl.php). After installing it, you can setup the path and AppId in `ScreenTranslate.iss` file and run the .iss script. ## Contributing diff --git a/screen_translate/_version.py b/screen_translate/_version.py index e0cc303..3dc034e 100644 --- a/screen_translate/_version.py +++ b/screen_translate/_version.py @@ -1,2 +1,2 @@ -__version__ = "2.0.0" +__version__ = "2.0.1" __setting_version__ = "2.0.0" diff --git a/user_manual/4_2_tray_app.png b/user_manual/4_2_tray_app.png index d253934..2afbeb4 100644 Binary files a/user_manual/4_2_tray_app.png and b/user_manual/4_2_tray_app.png differ diff --git a/user_manual/Changelog.txt b/user_manual/Changelog.txt index e44b1ac..7369825 100644 --- a/user_manual/Changelog.txt +++ b/user_manual/Changelog.txt @@ -1,5 +1,9 @@ # Changelog -Latest V2.0.0 +Latest V2.0.1 + +[V2.0.1 Minor bug fix and Update] +- Fix run on startup showing terminal window because of wrong registry key value +- Improve the tray app [V2.0.0 Tray app and lots of improvement] - Added tray app diff --git a/version.txt b/version.txt index 359a5b9..10bf840 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.0.0 \ No newline at end of file +2.0.1 \ No newline at end of file