├── .gitignore ├── _console.sh ├── app ├── app.js ├── assets │ ├── material-design-icons │ │ ├── MaterialIcons-Regular.eot │ │ ├── MaterialIcons-Regular.ijmap │ │ ├── MaterialIcons-Regular.ttf │ │ ├── MaterialIcons-Regular.woff │ │ ├── MaterialIcons-Regular.woff2 │ │ ├── README.md │ │ └── codepoints │ ├── red-microphone.png │ ├── vc.icns │ ├── vc.png │ ├── vc_tray.png │ ├── vc_tray@1.5x.png │ ├── vc_tray@2x.png │ ├── vc_tray_develop.png │ ├── vc_tray_develop@1.5x.png │ └── vc_tray_develop@2x.png ├── bin │ └── DarwinEventMonitor.app │ │ └── Contents │ │ ├── Frameworks │ │ ├── PFAssistive.framework │ │ │ ├── PFAssistive │ │ │ ├── Resources │ │ │ └── Versions │ │ │ │ ├── Current │ │ │ │ └── M │ │ │ │ ├── PFAssistive │ │ │ │ ├── Resources │ │ │ │ ├── English.lproj │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ ├── PFA Distribution License.rtf │ │ │ │ │ ├── PFA Single User License.rtf │ │ │ │ │ ├── PFActionDescriptions.strings │ │ │ │ │ ├── PFAssistiveErrors.strings │ │ │ │ │ ├── PFAttributeDescriptions.strings │ │ │ │ │ ├── PFNotificationDescriptions.strings │ │ │ │ │ ├── PFRoleDescriptions.strings │ │ │ │ │ ├── PFSubroleDescriptions.strings │ │ │ │ │ └── PFTypeDescriptions.strings │ │ │ │ └── Info.plist │ │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ ├── SwiftyJSON.framework │ │ │ ├── Resources │ │ │ ├── SwiftyJSON │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── SwiftyJSON │ │ │ │ └── Current │ │ ├── libswiftAppKit.dylib │ │ ├── libswiftCore.dylib │ │ ├── libswiftCoreData.dylib │ │ ├── libswiftCoreGraphics.dylib │ │ ├── libswiftCoreImage.dylib │ │ ├── libswiftDarwin.dylib │ │ ├── libswiftDispatch.dylib │ │ ├── libswiftFoundation.dylib │ │ ├── libswiftIOKit.dylib │ │ └── libswiftObjectiveC.dylib │ │ ├── Info.plist │ │ ├── MacOS │ │ └── DarwinEventMonitor │ │ ├── PkgInfo │ │ └── Resources │ │ └── Base.lproj │ │ └── Main.storyboardc │ │ ├── Info.plist │ │ └── MainMenu.nib ├── frontend │ ├── components │ │ ├── Api.cjsx │ │ ├── ApiList.cjsx │ │ ├── ChainList.cjsx │ │ ├── Command.cjsx │ │ ├── CommandFilter.cjsx │ │ ├── CommandList.cjsx │ │ ├── Footer.cjsx │ │ ├── LogEntry.cjsx │ │ ├── Package.cjsx │ │ ├── PackageFilter.cjsx │ │ ├── PackageImplementation.cjsx │ │ ├── PackageImplementationList.cjsx │ │ ├── PackageList.cjsx │ │ ├── PackageSettings.cjsx │ │ └── StickyButton.cjsx │ ├── containers │ │ ├── CommandsPage.cjsx │ │ ├── History.cjsx │ │ ├── LogPage.cjsx │ │ ├── Main.cjsx │ │ ├── PackagesPage.cjsx │ │ └── SettingsPage.cjsx │ ├── ducks │ │ ├── api.coffee │ │ ├── app.coffee │ │ ├── chain.coffee │ │ ├── command.coffee │ │ ├── command_filter.coffee │ │ ├── grammar.coffee │ │ ├── implementation.coffee │ │ ├── log.coffee │ │ ├── package.coffee │ │ ├── package_filter.coffee │ │ └── settings.coffee │ ├── history.cjsx │ ├── history.html │ ├── main.cjsx │ ├── main.html │ ├── microphone_indicator.html │ ├── routes │ │ └── main.coffee │ ├── selectors.coffee │ ├── stores │ │ ├── factory.coffee │ │ ├── history.coffee │ │ └── main.coffee │ ├── styles │ │ ├── history.css │ │ ├── main.css │ │ └── main_print.css │ └── utility.coffee ├── lib │ ├── chain.coffee │ ├── command.coffee │ ├── commands.coffee │ ├── history_controller.coffee │ ├── packages │ │ ├── package.coffee │ │ └── packages.coffee │ ├── parser │ │ ├── customGrammar.coffee │ │ ├── customGrammarParser.js │ │ ├── grammar.coffee │ │ ├── grammarContext.coffee │ │ ├── grammar_state.coffee │ │ ├── parser_controller.coffee │ │ ├── speakableList.coffee │ │ └── token.coffee │ ├── platforms │ │ ├── base │ │ │ ├── actions.coffee │ │ │ ├── main_controller.coffee │ │ │ ├── mouseTracker.coffee │ │ │ └── vocabulary_controller.coffee │ │ ├── darwin │ │ │ ├── actions.coffee │ │ │ ├── applescripts.coffee │ │ │ ├── dragon │ │ │ │ ├── dragon_command.coffee │ │ │ │ ├── dragon_synchronizer.coffee │ │ │ │ └── dragon_vocabulary_controller.coffee │ │ │ ├── keyCodes.coffee │ │ │ ├── main_controller.coffee │ │ │ └── system_info.coffee │ │ └── linux │ │ │ ├── actions.coffee │ │ │ └── main_controller.coffee │ ├── scope.coffee │ ├── search │ │ ├── phonetics.coffee │ │ └── search.js │ └── utility │ │ ├── badge_counter.coffee │ │ ├── deepExtend.js │ │ ├── network.coffee │ │ ├── numberToWords.coffee │ │ ├── selectionTransformer.coffee │ │ ├── transforms.coffee │ │ └── utility.coffee ├── main │ ├── assets_controller.coffee │ ├── enabled_commands_manager.coffee │ ├── event_emitter.coffee │ ├── file_manager.coffee │ ├── menu.coffee │ ├── packages_manager.coffee │ ├── shell.coffee │ ├── slave_controller.coffee │ ├── startup.coffee │ ├── synchronize.coffee │ └── window_controller.coffee └── package.json ├── console.sh ├── fixfibers.sh ├── gulpfile.coffee ├── package.json ├── semantic.json └── test ├── context └── context.coffee ├── dependencies.coffee └── packages └── packages.coffee /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/.gitignore -------------------------------------------------------------------------------- /_console.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | rc /tmp/repl/voicecode_production.sock 3 | -------------------------------------------------------------------------------- /app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/app.js -------------------------------------------------------------------------------- /app/assets/material-design-icons/MaterialIcons-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/assets/material-design-icons/MaterialIcons-Regular.eot -------------------------------------------------------------------------------- /app/assets/material-design-icons/MaterialIcons-Regular.ijmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/assets/material-design-icons/MaterialIcons-Regular.ijmap -------------------------------------------------------------------------------- /app/assets/material-design-icons/MaterialIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/assets/material-design-icons/MaterialIcons-Regular.ttf -------------------------------------------------------------------------------- /app/assets/material-design-icons/MaterialIcons-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/assets/material-design-icons/MaterialIcons-Regular.woff -------------------------------------------------------------------------------- /app/assets/material-design-icons/MaterialIcons-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/assets/material-design-icons/MaterialIcons-Regular.woff2 -------------------------------------------------------------------------------- /app/assets/material-design-icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/assets/material-design-icons/README.md -------------------------------------------------------------------------------- /app/assets/material-design-icons/codepoints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/assets/material-design-icons/codepoints -------------------------------------------------------------------------------- /app/assets/red-microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/assets/red-microphone.png -------------------------------------------------------------------------------- /app/assets/vc.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/assets/vc.icns -------------------------------------------------------------------------------- /app/assets/vc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/assets/vc.png -------------------------------------------------------------------------------- /app/assets/vc_tray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/assets/vc_tray.png -------------------------------------------------------------------------------- /app/assets/vc_tray@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/assets/vc_tray@1.5x.png -------------------------------------------------------------------------------- /app/assets/vc_tray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/assets/vc_tray@2x.png -------------------------------------------------------------------------------- /app/assets/vc_tray_develop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/assets/vc_tray_develop.png -------------------------------------------------------------------------------- /app/assets/vc_tray_develop@1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/assets/vc_tray_develop@1.5x.png -------------------------------------------------------------------------------- /app/assets/vc_tray_develop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/assets/vc_tray_develop@2x.png -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/Frameworks/PFAssistive.framework/PFAssistive: -------------------------------------------------------------------------------- 1 | Versions/Current/PFAssistive -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/Frameworks/PFAssistive.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/Frameworks/PFAssistive.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | M -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/Frameworks/PFAssistive.framework/Versions/M/PFAssistive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/bin/DarwinEventMonitor.app/Contents/Frameworks/PFAssistive.framework/Versions/M/PFAssistive -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/Frameworks/PFAssistive.framework/Versions/M/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/bin/DarwinEventMonitor.app/Contents/Frameworks/PFAssistive.framework/Versions/M/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/Frameworks/PFAssistive.framework/Versions/M/Resources/English.lproj/PFA Distribution License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/bin/DarwinEventMonitor.app/Contents/Frameworks/PFAssistive.framework/Versions/M/Resources/English.lproj/PFA Distribution License.rtf -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/Frameworks/PFAssistive.framework/Versions/M/Resources/English.lproj/PFA Single User License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/bin/DarwinEventMonitor.app/Contents/Frameworks/PFAssistive.framework/Versions/M/Resources/English.lproj/PFA Single User License.rtf -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/Frameworks/PFAssistive.framework/Versions/M/Resources/English.lproj/PFActionDescriptions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/bin/DarwinEventMonitor.app/Contents/Frameworks/PFAssistive.framework/Versions/M/Resources/English.lproj/PFActionDescriptions.strings -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/Frameworks/PFAssistive.framework/Versions/M/Resources/English.lproj/PFAssistiveErrors.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/bin/DarwinEventMonitor.app/Contents/Frameworks/PFAssistive.framework/Versions/M/Resources/English.lproj/PFAssistiveErrors.strings -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/Frameworks/PFAssistive.framework/Versions/M/Resources/English.lproj/PFAttributeDescriptions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/bin/DarwinEventMonitor.app/Contents/Frameworks/PFAssistive.framework/Versions/M/Resources/English.lproj/PFAttributeDescriptions.strings -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/Frameworks/PFAssistive.framework/Versions/M/Resources/English.lproj/PFNotificationDescriptions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/bin/DarwinEventMonitor.app/Contents/Frameworks/PFAssistive.framework/Versions/M/Resources/English.lproj/PFNotificationDescriptions.strings -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/Frameworks/PFAssistive.framework/Versions/M/Resources/English.lproj/PFRoleDescriptions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/bin/DarwinEventMonitor.app/Contents/Frameworks/PFAssistive.framework/Versions/M/Resources/English.lproj/PFRoleDescriptions.strings -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/Frameworks/PFAssistive.framework/Versions/M/Resources/English.lproj/PFSubroleDescriptions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/bin/DarwinEventMonitor.app/Contents/Frameworks/PFAssistive.framework/Versions/M/Resources/English.lproj/PFSubroleDescriptions.strings -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/Frameworks/PFAssistive.framework/Versions/M/Resources/English.lproj/PFTypeDescriptions.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/bin/DarwinEventMonitor.app/Contents/Frameworks/PFAssistive.framework/Versions/M/Resources/English.lproj/PFTypeDescriptions.strings -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/Frameworks/PFAssistive.framework/Versions/M/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/bin/DarwinEventMonitor.app/Contents/Frameworks/PFAssistive.framework/Versions/M/Resources/Info.plist -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/Frameworks/PFAssistive.framework/Versions/M/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/bin/DarwinEventMonitor.app/Contents/Frameworks/PFAssistive.framework/Versions/M/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/Frameworks/SwiftyJSON.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/Frameworks/SwiftyJSON.framework/SwiftyJSON: -------------------------------------------------------------------------------- 1 | Versions/Current/SwiftyJSON -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/Frameworks/SwiftyJSON.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/bin/DarwinEventMonitor.app/Contents/Frameworks/SwiftyJSON.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/Frameworks/SwiftyJSON.framework/Versions/A/SwiftyJSON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/bin/DarwinEventMonitor.app/Contents/Frameworks/SwiftyJSON.framework/Versions/A/SwiftyJSON -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/Frameworks/SwiftyJSON.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/Frameworks/libswiftAppKit.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/bin/DarwinEventMonitor.app/Contents/Frameworks/libswiftAppKit.dylib -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/Frameworks/libswiftCore.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/bin/DarwinEventMonitor.app/Contents/Frameworks/libswiftCore.dylib -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/Frameworks/libswiftCoreData.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/bin/DarwinEventMonitor.app/Contents/Frameworks/libswiftCoreData.dylib -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/Frameworks/libswiftCoreGraphics.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/bin/DarwinEventMonitor.app/Contents/Frameworks/libswiftCoreGraphics.dylib -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/Frameworks/libswiftCoreImage.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/bin/DarwinEventMonitor.app/Contents/Frameworks/libswiftCoreImage.dylib -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/Frameworks/libswiftDarwin.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/bin/DarwinEventMonitor.app/Contents/Frameworks/libswiftDarwin.dylib -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/Frameworks/libswiftDispatch.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/bin/DarwinEventMonitor.app/Contents/Frameworks/libswiftDispatch.dylib -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/Frameworks/libswiftFoundation.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/bin/DarwinEventMonitor.app/Contents/Frameworks/libswiftFoundation.dylib -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/Frameworks/libswiftIOKit.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/bin/DarwinEventMonitor.app/Contents/Frameworks/libswiftIOKit.dylib -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/Frameworks/libswiftObjectiveC.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/bin/DarwinEventMonitor.app/Contents/Frameworks/libswiftObjectiveC.dylib -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/bin/DarwinEventMonitor.app/Contents/Info.plist -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/MacOS/DarwinEventMonitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/bin/DarwinEventMonitor.app/Contents/MacOS/DarwinEventMonitor -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/Resources/Base.lproj/Main.storyboardc/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/bin/DarwinEventMonitor.app/Contents/Resources/Base.lproj/Main.storyboardc/Info.plist -------------------------------------------------------------------------------- /app/bin/DarwinEventMonitor.app/Contents/Resources/Base.lproj/Main.storyboardc/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/bin/DarwinEventMonitor.app/Contents/Resources/Base.lproj/Main.storyboardc/MainMenu.nib -------------------------------------------------------------------------------- /app/frontend/components/Api.cjsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/components/Api.cjsx -------------------------------------------------------------------------------- /app/frontend/components/ApiList.cjsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/components/ApiList.cjsx -------------------------------------------------------------------------------- /app/frontend/components/ChainList.cjsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/components/ChainList.cjsx -------------------------------------------------------------------------------- /app/frontend/components/Command.cjsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/components/Command.cjsx -------------------------------------------------------------------------------- /app/frontend/components/CommandFilter.cjsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/components/CommandFilter.cjsx -------------------------------------------------------------------------------- /app/frontend/components/CommandList.cjsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/components/CommandList.cjsx -------------------------------------------------------------------------------- /app/frontend/components/Footer.cjsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/components/Footer.cjsx -------------------------------------------------------------------------------- /app/frontend/components/LogEntry.cjsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/components/LogEntry.cjsx -------------------------------------------------------------------------------- /app/frontend/components/Package.cjsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/components/Package.cjsx -------------------------------------------------------------------------------- /app/frontend/components/PackageFilter.cjsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/components/PackageFilter.cjsx -------------------------------------------------------------------------------- /app/frontend/components/PackageImplementation.cjsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/components/PackageImplementation.cjsx -------------------------------------------------------------------------------- /app/frontend/components/PackageImplementationList.cjsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/components/PackageImplementationList.cjsx -------------------------------------------------------------------------------- /app/frontend/components/PackageList.cjsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/components/PackageList.cjsx -------------------------------------------------------------------------------- /app/frontend/components/PackageSettings.cjsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/components/PackageSettings.cjsx -------------------------------------------------------------------------------- /app/frontend/components/StickyButton.cjsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/components/StickyButton.cjsx -------------------------------------------------------------------------------- /app/frontend/containers/CommandsPage.cjsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/containers/CommandsPage.cjsx -------------------------------------------------------------------------------- /app/frontend/containers/History.cjsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/containers/History.cjsx -------------------------------------------------------------------------------- /app/frontend/containers/LogPage.cjsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/containers/LogPage.cjsx -------------------------------------------------------------------------------- /app/frontend/containers/Main.cjsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/containers/Main.cjsx -------------------------------------------------------------------------------- /app/frontend/containers/PackagesPage.cjsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/containers/PackagesPage.cjsx -------------------------------------------------------------------------------- /app/frontend/containers/SettingsPage.cjsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/containers/SettingsPage.cjsx -------------------------------------------------------------------------------- /app/frontend/ducks/api.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/ducks/api.coffee -------------------------------------------------------------------------------- /app/frontend/ducks/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/ducks/app.coffee -------------------------------------------------------------------------------- /app/frontend/ducks/chain.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/ducks/chain.coffee -------------------------------------------------------------------------------- /app/frontend/ducks/command.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/ducks/command.coffee -------------------------------------------------------------------------------- /app/frontend/ducks/command_filter.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/ducks/command_filter.coffee -------------------------------------------------------------------------------- /app/frontend/ducks/grammar.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/ducks/grammar.coffee -------------------------------------------------------------------------------- /app/frontend/ducks/implementation.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/ducks/implementation.coffee -------------------------------------------------------------------------------- /app/frontend/ducks/log.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/ducks/log.coffee -------------------------------------------------------------------------------- /app/frontend/ducks/package.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/ducks/package.coffee -------------------------------------------------------------------------------- /app/frontend/ducks/package_filter.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/ducks/package_filter.coffee -------------------------------------------------------------------------------- /app/frontend/ducks/settings.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/ducks/settings.coffee -------------------------------------------------------------------------------- /app/frontend/history.cjsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/history.cjsx -------------------------------------------------------------------------------- /app/frontend/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/history.html -------------------------------------------------------------------------------- /app/frontend/main.cjsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/main.cjsx -------------------------------------------------------------------------------- /app/frontend/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/main.html -------------------------------------------------------------------------------- /app/frontend/microphone_indicator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/microphone_indicator.html -------------------------------------------------------------------------------- /app/frontend/routes/main.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/routes/main.coffee -------------------------------------------------------------------------------- /app/frontend/selectors.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/selectors.coffee -------------------------------------------------------------------------------- /app/frontend/stores/factory.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/stores/factory.coffee -------------------------------------------------------------------------------- /app/frontend/stores/history.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/stores/history.coffee -------------------------------------------------------------------------------- /app/frontend/stores/main.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/stores/main.coffee -------------------------------------------------------------------------------- /app/frontend/styles/history.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/styles/history.css -------------------------------------------------------------------------------- /app/frontend/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/styles/main.css -------------------------------------------------------------------------------- /app/frontend/styles/main_print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/styles/main_print.css -------------------------------------------------------------------------------- /app/frontend/utility.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/frontend/utility.coffee -------------------------------------------------------------------------------- /app/lib/chain.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/chain.coffee -------------------------------------------------------------------------------- /app/lib/command.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/command.coffee -------------------------------------------------------------------------------- /app/lib/commands.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/commands.coffee -------------------------------------------------------------------------------- /app/lib/history_controller.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/history_controller.coffee -------------------------------------------------------------------------------- /app/lib/packages/package.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/packages/package.coffee -------------------------------------------------------------------------------- /app/lib/packages/packages.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/packages/packages.coffee -------------------------------------------------------------------------------- /app/lib/parser/customGrammar.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/parser/customGrammar.coffee -------------------------------------------------------------------------------- /app/lib/parser/customGrammarParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/parser/customGrammarParser.js -------------------------------------------------------------------------------- /app/lib/parser/grammar.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/parser/grammar.coffee -------------------------------------------------------------------------------- /app/lib/parser/grammarContext.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/parser/grammarContext.coffee -------------------------------------------------------------------------------- /app/lib/parser/grammar_state.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/parser/grammar_state.coffee -------------------------------------------------------------------------------- /app/lib/parser/parser_controller.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/parser/parser_controller.coffee -------------------------------------------------------------------------------- /app/lib/parser/speakableList.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/parser/speakableList.coffee -------------------------------------------------------------------------------- /app/lib/parser/token.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/parser/token.coffee -------------------------------------------------------------------------------- /app/lib/platforms/base/actions.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/platforms/base/actions.coffee -------------------------------------------------------------------------------- /app/lib/platforms/base/main_controller.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/platforms/base/main_controller.coffee -------------------------------------------------------------------------------- /app/lib/platforms/base/mouseTracker.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/platforms/base/mouseTracker.coffee -------------------------------------------------------------------------------- /app/lib/platforms/base/vocabulary_controller.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/platforms/base/vocabulary_controller.coffee -------------------------------------------------------------------------------- /app/lib/platforms/darwin/actions.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/platforms/darwin/actions.coffee -------------------------------------------------------------------------------- /app/lib/platforms/darwin/applescripts.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/platforms/darwin/applescripts.coffee -------------------------------------------------------------------------------- /app/lib/platforms/darwin/dragon/dragon_command.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/platforms/darwin/dragon/dragon_command.coffee -------------------------------------------------------------------------------- /app/lib/platforms/darwin/dragon/dragon_synchronizer.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/platforms/darwin/dragon/dragon_synchronizer.coffee -------------------------------------------------------------------------------- /app/lib/platforms/darwin/dragon/dragon_vocabulary_controller.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/platforms/darwin/dragon/dragon_vocabulary_controller.coffee -------------------------------------------------------------------------------- /app/lib/platforms/darwin/keyCodes.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/platforms/darwin/keyCodes.coffee -------------------------------------------------------------------------------- /app/lib/platforms/darwin/main_controller.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/platforms/darwin/main_controller.coffee -------------------------------------------------------------------------------- /app/lib/platforms/darwin/system_info.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/platforms/darwin/system_info.coffee -------------------------------------------------------------------------------- /app/lib/platforms/linux/actions.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/platforms/linux/actions.coffee -------------------------------------------------------------------------------- /app/lib/platforms/linux/main_controller.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/platforms/linux/main_controller.coffee -------------------------------------------------------------------------------- /app/lib/scope.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/scope.coffee -------------------------------------------------------------------------------- /app/lib/search/phonetics.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/search/phonetics.coffee -------------------------------------------------------------------------------- /app/lib/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/search/search.js -------------------------------------------------------------------------------- /app/lib/utility/badge_counter.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/utility/badge_counter.coffee -------------------------------------------------------------------------------- /app/lib/utility/deepExtend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/utility/deepExtend.js -------------------------------------------------------------------------------- /app/lib/utility/network.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/utility/network.coffee -------------------------------------------------------------------------------- /app/lib/utility/numberToWords.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/utility/numberToWords.coffee -------------------------------------------------------------------------------- /app/lib/utility/selectionTransformer.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/utility/selectionTransformer.coffee -------------------------------------------------------------------------------- /app/lib/utility/transforms.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/utility/transforms.coffee -------------------------------------------------------------------------------- /app/lib/utility/utility.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/lib/utility/utility.coffee -------------------------------------------------------------------------------- /app/main/assets_controller.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/main/assets_controller.coffee -------------------------------------------------------------------------------- /app/main/enabled_commands_manager.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/main/enabled_commands_manager.coffee -------------------------------------------------------------------------------- /app/main/event_emitter.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/main/event_emitter.coffee -------------------------------------------------------------------------------- /app/main/file_manager.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/main/file_manager.coffee -------------------------------------------------------------------------------- /app/main/menu.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/main/menu.coffee -------------------------------------------------------------------------------- /app/main/packages_manager.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/main/packages_manager.coffee -------------------------------------------------------------------------------- /app/main/shell.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/main/shell.coffee -------------------------------------------------------------------------------- /app/main/slave_controller.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/main/slave_controller.coffee -------------------------------------------------------------------------------- /app/main/startup.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/main/startup.coffee -------------------------------------------------------------------------------- /app/main/synchronize.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/main/synchronize.coffee -------------------------------------------------------------------------------- /app/main/window_controller.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/main/window_controller.coffee -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/app/package.json -------------------------------------------------------------------------------- /console.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | rc /tmp/repl/voicecode_development.sock 3 | -------------------------------------------------------------------------------- /fixfibers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/fixfibers.sh -------------------------------------------------------------------------------- /gulpfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/gulpfile.coffee -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/package.json -------------------------------------------------------------------------------- /semantic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/semantic.json -------------------------------------------------------------------------------- /test/context/context.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/test/context/context.coffee -------------------------------------------------------------------------------- /test/dependencies.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/test/dependencies.coffee -------------------------------------------------------------------------------- /test/packages/packages.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoiceCode/voicecode/HEAD/test/packages/packages.coffee --------------------------------------------------------------------------------