diff options
| author | yum <yum.food.vr@gmail.com> | 2022-12-22 23:10:37 -0800 |
|---|---|---|
| committer | yum <yum.food.vr@gmail.com> | 2022-12-24 12:13:07 -0800 |
| commit | 50d327b83b496085ec91e31100d12f5f60c7d4ac (patch) | |
| tree | 239431b51e578f2188e6cf4c70ca8905390e72be /GUI/package.ps1 | |
| parent | 6f2c1dace46a68620bc61a732a2f43252bd5d3ba (diff) | |
GUI: expose chars per sync, bytes per char
Users can now control how many characters they send per sync event, as
well as the number of bytes used to represent each character.
This gives them the power to pick between faster paging and fewer sync
params.
International users must use 2 bytes per char (at least for now).
* package.ps1: don't distribute the gigantic TTF files, just the bitmaps
Diffstat (limited to 'GUI/package.ps1')
| -rw-r--r-- | GUI/package.ps1 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/GUI/package.ps1 b/GUI/package.ps1 index e4f8f3e..0941196 100644 --- a/GUI/package.ps1 +++ b/GUI/package.ps1 @@ -7,7 +7,8 @@ if (Test-Path $install_dir) { mkdir $install_dir > $null
mkdir $install_dir/Resources > $null
cp -Recurse ../Animations TaSTT/Resources/Animations
-cp -Recurse ../Fonts TaSTT/Resources/Fonts
+mkdir TaSTT/Resources/Fonts
+cp -Recurse ../Fonts/Bitmaps TaSTT/Resources/Fonts/Bitmaps
cp -Recurse ../Images TaSTT/Resources/Images
cp -Recurse ../Python TaSTT/Resources/Python
cp -Recurse ../Scripts TaSTT/Resources/Scripts
|
