From 50d327b83b496085ec91e31100d12f5f60c7d4ac Mon Sep 17 00:00:00 2001 From: yum Date: Thu, 22 Dec 2022 23:10:37 -0800 Subject: 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 --- GUI/package.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'GUI/package.ps1') 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 -- cgit v1.2.3