Skip to content

Commit

Permalink
Release ready
Browse files Browse the repository at this point in the history
  • Loading branch information
saif-ellafi committed Mar 17, 2024
1 parent 994b5e9 commit 67a68d5
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion playbtw_dist.spec
Original file line number Diff line number Diff line change
Expand Up @@ -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')
2 changes: 1 addition & 1 deletion playbtw_dist_noai.spec
Original file line number Diff line number Diff line change
Expand Up @@ -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')

0 comments on commit 67a68d5

Please sign in to comment.