Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand All @@ -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)
2 changes: 1 addition & 1 deletion src/build/settings/base.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
8 changes: 4 additions & 4 deletions src/main/python/MSMD_multiLevel.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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
Expand Down