diff --git a/README.md b/README.md index 5245f23..2f42d82 100644 --- a/README.md +++ b/README.md @@ -4,12 +4,12 @@ An educational program intended to make learning more efficient. MSMD allows the ## Installing ### Windows -Download the latest released version here: [MSMDSetup.exe](https://github.com/Ragiton/MSMD/releases/latest/download/MSMDSetup.exe) +Download the latest released version here: [MSMDSetup.exe](https://github.com/er-smith/MSMD/releases/latest/download/MSMDSetup.exe) After downloading, run the installer. After it is finished installling, an icon like this should be on your desktop: ![MSMD Icon](MSMD.png) ### Mac -Download the latest version here: [MSMD.dmg](https://github.com/Ragiton/MSMD/releases/latest/download/MSMD.dmg) +Download the latest version here: [MSMD.dmg](https://github.com/er-smith/MSMD/releases/latest/download/MSMD.dmg) After downloading, double click on the MSMD.dmg file. Then, in the window that pops up, drag the MSMD icon into the "Appplications" folder. The app is now installed! :smile: @@ -19,5 +19,5 @@ MSMD is built on top of the [fman build system](https://github.com/mherrmann/fbs Must use Python 3.6. Later versions of python are not supported -Licensed under GPLv3 +Licensed under GPLv3 (see license file) diff --git a/src/build/settings/base.json b/src/build/settings/base.json index cb5bf48..c3d1ac3 100644 --- a/src/build/settings/base.json +++ b/src/build/settings/base.json @@ -2,5 +2,5 @@ "app_name": "MSMD", "author": "JP Thomas", "main_module": "src/main/python/MSMD_multilevel.py", - "version": "1.2.7" + "version": "1.2.8" } \ No newline at end of file diff --git a/src/main/python/MSMD_multiLevel.py b/src/main/python/MSMD_multiLevel.py index 9c28cf8..1e1182c 100644 --- a/src/main/python/MSMD_multiLevel.py +++ b/src/main/python/MSMD_multiLevel.py @@ -3,11 +3,11 @@ Created on Sat Feb 24 17:36:10 2018 @author: JohnPaul - -@version: 1.2.7 - Mac and Windows versions combined. Fman Build System (fbs) implemented to handle building releases for different operating systems. +@version: 1.2.8 - Fixed textFromCode case issue when using control modifier. Version History: + 1.2.7 - Mac and Windows versions combined. Fman Build System (fbs) implemented to handle building releases for different operating systems. 1.2.6 - levels compound and are gated by a time limit. Each level must be completed in the proper time to move on. 1.2.5 - updated to chuck and russ' version - includes playing sound files (with fix) 1.2.4 - updated to be compatible with all screen sizes @@ -87,7 +87,7 @@ def keyPressEvent(self, event): textFromCode = chr(code) except: textFromCode = text - + textFromCode = textFromCode.lower() translatedScanCode = textToScanCodeTable.get(text.lower(),textToScanCodeTable.get(textFromCode,0)) print('keyPressEvent text "%s" textFromCode %s scanCode %s key %s modifiers %s' % ( text, @@ -117,7 +117,7 @@ class App(QWidget): def __init__(self, resources): super().__init__() - self.versionNumber = '1.2.7' + self.versionNumber = '1.2.8' self.title = 'Monkey See Monkey Do v'+self.versionNumber self.left = 10 self.top = 80