Skip to content

Commit

Permalink
Merge pull request #8 from fastfinge/main
Browse files Browse the repository at this point in the history
Maintenance commit for NVDA 2024.1 compatibility
  • Loading branch information
masonasons authored Feb 17, 2024
2 parents 732a091 + 6a438ad commit 2d667db
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions addon/globalPlugins/Unspoken/addonGui.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ def makeSettings(self, settingsSizer):
self.ReverbCheckBox.SetValue(config.conf["unspoken"]["Reverb"])
self.ReverbLevelSliderLabel = settingsSizer.addItem(wx.StaticText(self, label="Reverb Level"))
self.ReverbLevelSlider = settingsSizer.addItem(wx.Slider(self))
self.ReverbLevelSlider.SetValue(config.conf["unspoken"]["ReverbLevel"]*100)
self.ReverbLevelSlider.SetValue(int(config.conf["unspoken"]["ReverbLevel"]*100))
self.ReverbTimeSliderLabel = settingsSizer.addItem(wx.StaticText(self, label="Reverb Time"))
self.ReverbTimeSlider = settingsSizer.addItem(wx.Slider(self))
self.ReverbTimeSlider.SetValue(config.conf["unspoken"]["ReverbTime"]*100)
self.ReverbTimeSlider.SetValue(int(config.conf["unspoken"]["ReverbTime"]*100))
self.noSoundsCheckBox = settingsSizer.addItem(wx.CheckBox(self, label="&play sounds for roles (Enable Add-On)"))
self.noSoundsCheckBox.SetValue((True if config.conf["unspoken"]["noSounds"]==False else False))
self.volumeCheckBox = settingsSizer.addItem(wx.CheckBox(self, label="Automatically adjust sounds with speech &volume"))
Expand Down
Binary file modified addon/globalPlugins/Unspoken/synthizer.pyd
Binary file not shown.
6 changes: 3 additions & 3 deletions buildVars.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@
"addon_summary" : _("Unspoken 3D Audio"),
# Add-on description
# Translators: Long description to be shown for this add-on on add-on information from add-ons manager
"addon_description" : _("""Adds 3D audio for controls and replaces control messages. This updated version uses Synthizer and is compatible with NVDA 2022.1."""),
"addon_description" : _("""Adds 3D audio for controls and replaces control messages. This updated version uses Synthizer and is compatible with NVDA 2024.1."""),
# version
"addon_version" : "0.9.6",
"addon_version" : "0.9.7",
# Author(s)
"addon_author" : "Camlorn <[email protected]>, Bryan Smart< [email protected]>, Masonasons <[email protected]>",
# URL for the add-on documentation support
"addon_url" : "https://github.com/brynify/unspoken",
# Documentation file name
"addon_docFileName" : "readme.html",
"addon_minimum_nvda_version" : "2021.1",
"addon_last_tested_nvda_version" : "2023.1",
"addon_last_tested_nvda_version" : "2024.1",
}


Expand Down

0 comments on commit 2d667db

Please sign in to comment.