Here it is. Please bookmark the final home for all Apple-related NVDA speech engines. The older ones will get archived: Readme will point to the new repo, and from now on, expect releases to ship out of here. Tiger-speech was moved: Because the new wrapper no longer requires that you grab it separately, while the host can still serve all engines in a modular way.
https://github.com/tgeczy/panthera-speech/releases
@Tamasg Wait, I somehow have this repo already starred, even though this was just done? I'm confused.
@alexchapman ah yeah. If you had tiger-speech starred, that moves over 😊 Same with the issues on the repo, it essentially consolidated them into one plce.
@Tamasg Oh right, how did you do that, I might need to do that for one of my projects in the future.
@alexchapman quite simple actually!
# 1. rename the repo that's absorbing the other (GitHub redirects the old URL)
gh repo rename panthera-speech -R tgeczy/tiger-speech --yes
git remote set-url origin https://github.com/tgeczy/panthera-speech.git
# 2. move the existing project down a level first, so both end up as peers
mkdir tiger
git mv addon tests package.py tiger/
git commit -m "..."
# 3. bring the other repo in under its own folder
git subtree add --prefix=leopard https://github.com/tgeczy/leopard-speech.git main
# 4. check the thing people actually care about survived
git shortlog -sne HEAD
Step 2 matters more than it looks — do it before the subtree add and both projects sit level. Skip it and the first repo is stuck at the root forever, permanently the odd one out.