commit/StationPlaylist: josephsl: 6.3: Allow users to send feedback emails by pressing Control+NVDA+dash.

  • From: commits-noreply@xxxxxxxxxxxxx
  • To: nvda-addons-commits@xxxxxxxxxxxxx
  • Date: Fri, 22 Jan 2016 03:50:22 -0000

1 new commit in StationPlaylist:

https://bitbucket.org/nvdaaddonteam/stationplaylist/commits/1dd3556253ff/
Changeset:   1dd3556253ff
Branch:      6.x
User:        josephsl
Date:        2016-01-22 03:50:03+00:00
Summary:     6.3: Allow users to send feedback emails by pressing 
Control+NVDA+dash.

Affected #:  1 file

diff --git a/addon/appModules/splstudio/__init__.py 
b/addon/appModules/splstudio/__init__.py
index ec65bb7..35e8a3f 100755
--- a/addon/appModules/splstudio/__init__.py
+++ b/addon/appModules/splstudio/__init__.py
@@ -1222,6 +1222,10 @@ class AppModule(appModuleHandler.AppModule):
                        if not libScanT or (libScanT and not 
libScanT.isAlive()):
                                self.monitorLibraryScan()
 
+       # The developer would like to get feedback from you.
+       def script_sendFeedbackEmail(self, gesture):
+               os.startfile("mailto:joseph.lee22590@xxxxxxxxx";)
+
 
        # SPL Assistant: reports status on playback, operation, etc.
        # Used layer command approach to save gesture assignments.
@@ -1673,5 +1677,6 @@ class AppModule(appModuleHandler.AppModule):
                "kb:Shift+delete":"deleteTrack",
                "kb:Shift+numpadDelete":"deleteTrack",
                "kb:escape":"escape",
+               "kb:control+nvda+-":"sendFeedbackEmail",
                #"kb:control+nvda+`":"SPLAssistantToggle"
        }

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: 6.3: Allow users to send feedback emails by pressing Control+NVDA+dash. - commits-noreply