Skip to content

Commit

Permalink
1.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
seclorum committed Jun 17, 2016
1 parent b86fdc0 commit 2f39361
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion MS3000-Firmware
Submodule MS3000-Firmware updated 57 files
+3 −0 .gitmodules
+17 −8 MS3KOS/Makefile
+24 −0 MS3KOS/lib/gdbstub/License
+45 −0 MS3KOS/lib/gdbstub/Makefile
+69 −0 MS3KOS/lib/gdbstub/README.md
+8 −0 MS3KOS/lib/gdbstub/gdbcmds
+62 −0 MS3KOS/lib/gdbstub/gdbstub-cfg.h
+406 −0 MS3KOS/lib/gdbstub/gdbstub-entry.S
+25 −0 MS3KOS/lib/gdbstub/gdbstub-entry.h
+787 −0 MS3KOS/lib/gdbstub/gdbstub.c
+14 −0 MS3KOS/lib/gdbstub/gdbstub.h
+0 −0 MS3KOS/lib/miby/miby.cpp
+0 −0 MS3KOS/lib/miby/miby.h
+0 −0 MS3KOS/lib/miby/miby_config.h
+43 −0 MS3KOS/notes.md
+7 −2 MS3KOS/platformio.ini
+0 −10 MS3KOS/platformio_extra_script.py
+6 −3 MS3KOS/src/Hardware/Buttons.h
+3 −3 MS3KOS/src/Hardware/EEPROMString.h
+0 −724 MS3KOS/src/MIDI/MidiShifter.h
+0 −352 MS3KOS/src/MIDI/MidiShifter_Old.h
+108 −48 MS3KOS/src/MS3KOS.cpp
+10 −29 MS3KOS/src/Modes/BaseMode.h
+14 −10 MS3KOS/src/Modes/BouncingBall.h
+32 −3 MS3KOS/src/Modes/MIDI/MibyConfig.h
+619 −0 MS3KOS/src/Modes/MIDI/MidiShifter.h
+59 −0 MS3KOS/src/Modes/MIDI/RawMIDIHandlers.h
+5 −5 MS3KOS/src/Modes/MIDI/envelope.h
+0 −0 MS3KOS/src/Modes/MIDI/list.h
+0 −0 MS3KOS/src/Modes/MIDI/midi_defs.h
+153 −0 MS3KOS/src/Modes/MagicBeat.h
+8 −7 MS3KOS/src/Modes/MagicLight.h
+29 −12 MS3KOS/src/Modes/MagicMagnet.h
+13 −4 MS3KOS/src/Modes/MagicPOV.h
+23 −0 MS3KOS/src/Modes/MagicRemote.h
+8 −5 MS3KOS/src/Modes/MagicShake.h
+10 −12 MS3KOS/src/Modes/ModeSelector.h
+23 −4 MS3KOS/src/Modes/Modes.h
+70 −0 MS3KOS/src/Modes/PowerEmergency.h
+178 −24 MS3KOS/src/Modes/SystemText.h
+2 −6 MS3KOS/src/WebServer/WebServer.h
+29 −26 MS3KOS/src/WebServer/WebServerAPI.h
+59 −10 MS3KOS/src/WebServer/WebServerAutoConnect.h
+22 −6 MS3KOS/src/msConfig.h
+25 −16 MS3KOS/src/msGlobals.h
+9 −17 MS3KOS/src/msSysLog.h
+398 −157 MS3KOS/src/msSystem.h
+19 −8 MS3KOS/src/msTypes.h
+2 −0 Makefile
+140 −0 Makefile.tests
+75 −28 README.md
+3 −1 Tools/MS3000Tool.py
+1 −1 Tools/MS3000_init.sh
+1 −0 Tools/esptool
+1 −0 Tools/esptool-ck
+2 −5 Tools/readFirmware.sh
+8 −4 Tools/writeFirmware.sh
2 changes: 1 addition & 1 deletion MS3000-WebInterface
Submodule MS3000-WebInterface updated 83 files
+2 −6 .eslintrc
+2 −1 .gitignore
+37 −84 Makefile
+10 −0 README.md
+7 −8 bin/compile.js
+13 −11 bin/fontencode.js
+2 −2 build/webpack.config.js
+163 −0 cli.sh
+1 −1 config/_base.js
+94 −84 package.json
+34 −1 src/GLOBALS.js
+142 −0 src/components/DiscoverMagicShifter/index.js
+48 −26 src/components/PixelEditor/Pixel.js
+5 −3 src/components/PixelEditor/Pixel.scss
+38 −31 src/components/PixelEditor/PixelEditor.js
+6 −25 src/components/PixelEditor/PixelEditor.scss
+2 −1 src/components/PixelEditor/PixelEditorMenu.scss
+3 −3 src/components/colors/list/ColorList.scss
+13 −6 src/components/colors/list/index.js
+14 −0 src/components/form/index.js
+46 −0 src/components/inputs/ClearPixelsButton.js
+17 −0 src/components/inputs/ClearPixelsButton.scss
+17 −0 src/components/inputs/CloseViewButton.js
+6 −0 src/components/inputs/CloseViewButton.scss
+100 −104 src/components/inputs/FileUploadInput.js
+19 −25 src/components/inputs/HexInput.js
+38 −39 src/components/inputs/ImageInput.js
+10 −15 src/components/inputs/NumberInput.js
+4 −1 src/containers/RadiumContainer.js
+1 −1 src/layouts/CoreLayout.js
+0 −1 src/layouts/CoreLayout.scss
+2 −2 src/layouts/Header.js
+17 −18 src/layouts/Header.scss
+8 −0 src/layouts/Menu.js
+2 −1 src/layouts/Menu.scss
+11 −5 src/layouts/MenuLink.js
+2 −0 src/layouts/MenuLink.scss
+16 −6 src/layouts/SecondaryMenu.scss
+17 −2 src/layouts/Sidebar.scss
+3 −0 src/main.js
+3 −3 src/redux/configureStore.js
+11 −0 src/redux/formReducer.js
+149 −0 src/redux/modules/accesspoints.js
+44 −0 src/redux/modules/connect.js
+16 −1 src/redux/modules/pixels.js
+44 −35 src/redux/modules/views/settings.js
+11 −3 src/redux/modules/views/text.js
+7 −0 src/redux/rootReducer.js
+52 −17 src/routes/index.js
+ src/static/ms-ico.woff
+29 −0 src/static/package.json
+4 −0 src/styles/errors.scss
+96 −92 src/styles/icons.scss
+4 −0 src/styles/inputs.scss
+111 −1 src/utils/colors.js
+86 −10 src/utils/http.js
+13 −4 src/utils/icons.js
+56 −4 src/utils/inputs.js
+7 −0 src/utils/minmax.js
+33 −0 src/utils/storage.js
+4 −0 src/utils/strings.js
+6 −3 src/utils/types.js
+8 −0 src/utils/unique.js
+7 −2 src/views/Colors/Colors.scss
+28 −29 src/views/Colors/index.js
+3 −0 src/views/Connect/Connect.scss
+85 −0 src/views/Connect/index.js
+5 −1 src/views/Effects/Effects.scss
+26 −8 src/views/Effects/index.js
+5 −1 src/views/Fonts/Font.scss
+15 −10 src/views/Fonts/index.js
+5 −1 src/views/Images/Images.scss
+3 −0 src/views/Images/index.js
+4 −1 src/views/Info/index.js
+3 −2 src/views/NotFound/index.js
+1 −0 src/views/Settings/SettingsView.scss
+0 −45 src/views/Settings/ap/AddApInput.js
+36 −0 src/views/Settings/ap/ApSettings.scss
+555 −93 src/views/Settings/ap/index.js
+40 −69 src/views/Settings/index.js
+162 −56 src/views/Settings/power/index.js
+110 −62 src/views/Settings/ui/index.js
+5 −1 src/views/Upload/Upload.scss

0 comments on commit 2f39361

Please sign in to comment.