commit/StationPlaylist: josephsl: 7.4A (emergency hotfix): saying 'no' when lTS dialog appears will no longer prompt NVDA to display the dialog next time Studio starts. fixes #7.

  • From: commits-noreply@xxxxxxxxxxxxx
  • To: nvda-addons-commits@xxxxxxxxxxxxx
  • Date: Sat, 20 Aug 2016 12:06:04 -0000

1 new commit in StationPlaylist:

https://bitbucket.org/nvdaaddonteam/stationplaylist/commits/2860b4fa78e5/
Changeset:   2860b4fa78e5
Branch:      stable
User:        josephsl
Date:        2016-08-20 08:03:36+00:00
Summary:     7.4A (emergency hotfix): saying 'no' when lTS dialog appears will 
no longer prompt NVDA to display the dialog next time Studio starts. fixes #7.

Oops, ltsprep flag should be gone no matter if one says 'yes' or 'no' to LTS 
channel.

Affected #:  2 files

diff --git a/addon/appModules/splstudio/splconfig.py 
b/addon/appModules/splstudio/splconfig.py
index d2e2dd5..4af4284 100755
--- a/addon/appModules/splstudio/splconfig.py
+++ b/addon/appModules/splstudio/splconfig.py
@@ -852,7 +852,7 @@ def showStartupDialogs():
        if os.path.exists(os.path.join(globalVars.appArgs.configPath, "addons", 
"stationPlaylist", "ltsprep")):
                if gui.messageBox("The next major version of the add-on (15.x) 
will be the last version to support Studio versions earlier than 5.10, with 
add-on 15.x being designated as a long-term support version. Would you like to 
switch to long-term support release?", "Long-Term Support version", wx.YES | 
wx.NO | wx.CANCEL | wx.CENTER | wx.ICON_QUESTION) == wx.YES:
                        splupdate.SPLUpdateChannel = "lts"
-                       os.remove(os.path.join(globalVars.appArgs.configPath, 
"addons", "stationPlaylist", "ltsprep"))
+               os.remove(os.path.join(globalVars.appArgs.configPath, "addons", 
"stationPlaylist", "ltsprep"))
        try:
                import audioDucking
                if SPLConfig["Startup"]["AudioDuckingReminder"] and 
audioDucking.isAudioDuckingSupported():

diff --git a/buildVars.py b/buildVars.py
index 1eaf3f3..8e031c6 100755
--- a/buildVars.py
+++ b/buildVars.py
@@ -20,7 +20,7 @@ addon_info = {
        "addon_description" : _("""Enhances support for StationPlaylist Studio.
 In addition, adds global commands for the studio from everywhere."""),
        # version
-       "addon_version" : "7.4",
+       "addon_version" : "7.4A",
        # Author(s)
        "addon_author" : u"Geoff Shang, Joseph Lee and other contributors",
        # URL for the add-on documentation support

Repository URL: https://bitbucket.org/nvdaaddonteam/stationplaylist/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.

Other related posts:

  • » commit/StationPlaylist: josephsl: 7.4A (emergency hotfix): saying 'no' when lTS dialog appears will no longer prompt NVDA to display the dialog next time Studio starts. fixes #7. - commits-noreply