diff --git a/CHANGELOG.md b/CHANGELOG.md index fed26e4..8308efc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +### 3.10 +Overview: Performance boosts! PlayBTW now is compiled differently, so it works faster than ever + +* CHANGED: Build changes reduces storage and CPU usage significantly when running +* CHANGED: Made pull function snappier, so it doesn't take so many resources +* CHANGED: no-AI option allows building PbtW without AI support (lightweight build) + ### 3.02 Overview: This update makes PlayBTW slightly faster by making the scripts lighter diff --git a/README.md b/README.md index 0ac93b4..a05207b 100644 --- a/README.md +++ b/README.md @@ -101,8 +101,8 @@ The installer will identify this location automatically, so normally you don't h 1. Make sure Espanso works fine in your system and starts and works correctly (test with `:espanso`) 2. Download the MacOs zip archive -3. Unzip and merge the archive `PlayBTW_v3_02_ai_macos.zip` into `~/Library/Application\ Support/espanso` -You can also run `unzip -o -d ~/Library/Application\ Support/espanso ~/Downloads/PlayBTW_v3_02_ai_macos.zip` +3. Unzip and merge the archive `PlayBTW_v3_10_ai_macos.zip` into `~/Library/Application\ Support/espanso` +You can also run `unzip -o -d ~/Library/Application\ Support/espanso ~/Downloads/PlayBTW_v3_10_ai_macos.zip` If you accidentally replace, and do not merge and get errors, simply restart the Espanso service and all will be fine. @@ -112,7 +112,7 @@ That's it, test an oracle example with `:qq`. 1. Make sure your Espanso installation is valid and espanso starts and works correctly (test with `:espanso`). 2. Download the Zip packages for Linux (either base or base with AI) -3. If using default paths, this should just work: `unzip ~/Downloads/PlayBTW_v3_02_ai_linux.zip -d ~/.config/espanso/` +3. If using default paths, this should just work: `unzip ~/Downloads/PlayBTW_v3_10_ai_linux.zip -d ~/.config/espanso/` # Customization and Advanced usage diff --git a/playbtw_dist.spec b/playbtw_dist.spec index 26568aa..8fe3255 100644 --- a/playbtw_dist.spec +++ b/playbtw_dist.spec @@ -32,4 +32,4 @@ shutil.copy('match/playbtw_ai.yml', '{0}/../match/'.format(DISTPATH)) for f in glob.glob('tables/*'): shutil.copy2(f, '{0}/../tables/'.format(DISTPATH)) -shutil.make_archive('PlayBTW_v3_02', 'zip', 'dist_playbtw') +shutil.make_archive('PlayBTW_v3_10', 'zip', 'dist_playbtw') diff --git a/playbtw_dist_noai.spec b/playbtw_dist_noai.spec index 24374bf..3aac70b 100644 --- a/playbtw_dist_noai.spec +++ b/playbtw_dist_noai.spec @@ -32,4 +32,4 @@ shutil.copy('match/playbtw_ai.yml', '{0}/../match/'.format(DISTPATH)) for f in glob.glob('tables/*'): shutil.copy2(f, '{0}/../tables/'.format(DISTPATH)) -shutil.make_archive('PlayBTW_v3_02_noai', 'zip', 'dist_playbtw') +shutil.make_archive('PlayBTW_v3_10_noai', 'zip', 'dist_playbtw')