├── License.txt ├── Work by Speech ├── .vs │ └── Work by Speech │ │ ├── FileContentIndex │ │ ├── 03b7020a-8365-4396-96e1-020b76f36edc.vsidx │ │ ├── 4337e83a-eb71-4f7d-b8f1-4620a11b8929.vsidx │ │ ├── b4db12a8-f48b-4526-aada-f546912266f6.vsidx │ │ └── dc555116-641f-40c0-8757-2be1ad27730a.vsidx │ │ ├── v16 │ │ ├── .suo │ │ └── TestStore │ │ │ └── 0 │ │ │ ├── 000.testlog │ │ │ └── testlog.manifest │ │ └── v17 │ │ ├── .suo │ │ ├── DocumentLayout.json │ │ └── TestStore │ │ └── 0 │ │ ├── 000.testlog │ │ └── testlog.manifest ├── Work by Speech.sln └── Work by Speech │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── Auxiliary Methods.cs │ ├── Built-in Commands.cs │ ├── Classes Enums.cs │ ├── Custom Commands.cs │ ├── Keyboard.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Middle Man.cs │ ├── Mouse.cs │ ├── Mousegrid.xaml │ ├── Mousegrid.xaml.cs │ ├── Old Versions Support.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── SpeechWindow.xaml │ ├── SpeechWindow.xaml.cs │ ├── Tests.cs │ ├── WindowAddEditActionKeyboard.xaml │ ├── WindowAddEditActionKeyboard.xaml.cs │ ├── WindowAddEditActionMouse.xaml │ ├── WindowAddEditActionMouse.xaml.cs │ ├── WindowAddEditActionMoveMouse.xaml │ ├── WindowAddEditActionMoveMouse.xaml.cs │ ├── WindowAddEditActionOpenURL.xaml │ ├── WindowAddEditActionOpenURL.xaml.cs │ ├── WindowAddEditActionReadText.xaml │ ├── WindowAddEditActionReadText.xaml.cs │ ├── WindowAddEditActionScrollMouse.xaml │ ├── WindowAddEditActionScrollMouse.xaml.cs │ ├── WindowAddEditActionTypeText.xaml │ ├── WindowAddEditActionTypeText.xaml.cs │ ├── WindowAddEditActionWait.xaml │ ├── WindowAddEditActionWait.xaml.cs │ ├── WindowAddEditCommand.xaml │ ├── WindowAddEditCommand.xaml.cs │ ├── WindowAddEditGroup.xaml │ ├── WindowAddEditGroup.xaml.cs │ ├── WindowAddEditProfile.xaml │ ├── WindowAddEditProfile.xaml.cs │ ├── WindowChangelog.xaml │ ├── WindowChangelog.xaml.cs │ ├── WindowChooseProgram.xaml │ ├── WindowChooseProgram.xaml.cs │ ├── WindowEULA.xaml │ ├── WindowEULA.xaml.cs │ ├── WindowManageGroups.xaml │ ├── WindowManageGroups.xaml.cs │ ├── WindowRecordActions.xaml │ ├── WindowRecordActions.xaml.cs │ ├── WindowsInput2.cs │ ├── WindowsInputNative2.cs │ ├── Work by Speech multi.ico │ ├── Work by Speech.csproj │ ├── Work by Speech.csproj.user │ ├── app.manifest │ ├── bin │ └── Debug │ │ ├── Built-in Commands.pdf │ │ ├── License.txt │ │ ├── Microsoft.WindowsAPICodePack.Shell.dll │ │ ├── Microsoft.WindowsAPICodePack.dll │ │ ├── Mousegrid Alphabet.pdf │ │ ├── Useful Windows Key Combinations.pdf │ │ ├── User Guide.pdf │ │ ├── Windows Input Simulator License.txt │ │ ├── Work by Speech.exe │ │ ├── Work by Speech.exe.config │ │ ├── Work by Speech.pdb │ │ └── coords.txt │ ├── icons │ ├── 1process.png │ ├── Work by Speech multi.ico │ ├── Work by Speech.ico │ ├── Work by Speech.png │ ├── app_icon.ico │ ├── app_icon.png │ ├── app_icon_small.png │ ├── application_edit.png │ ├── command.ico │ ├── command.png │ ├── command2.ico │ ├── dictation.ico │ ├── dictation.png │ ├── dictation2.ico │ ├── help.png │ ├── info.png │ ├── off.ico │ ├── off.png │ ├── off2.ico │ └── process.png │ ├── images │ ├── 1process.png │ ├── application_edit.png │ ├── command.ico │ ├── command2.ico │ ├── dictation.ico │ ├── dictation2.ico │ ├── help 30x30.png │ ├── help.png │ ├── info.png │ ├── off2.ico │ ├── page_edit.png │ ├── page_process.png │ ├── process.png │ └── w logo.png │ ├── libs │ ├── Microsoft.WindowsAPICodePack.Shell.dll │ └── Microsoft.WindowsAPICodePack.dll │ ├── obj │ └── Debug │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ ├── App.g.cs │ │ ├── App.g.i.cs │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── Interop.Shell32.dll │ │ ├── MainWindow.baml │ │ ├── MainWindow.g.cs │ │ ├── MainWindow.g.i.cs │ │ ├── Mousegrid.baml │ │ ├── Mousegrid.g.cs │ │ ├── Mousegrid.g.i.cs │ │ ├── Speech.Properties.Resources.resources │ │ ├── SpeechWindow.baml │ │ ├── SpeechWindow.g.cs │ │ ├── SpeechWindow.g.i.cs │ │ ├── WindowAddEditActionKeyboard.baml │ │ ├── WindowAddEditActionKeyboard.g.cs │ │ ├── WindowAddEditActionKeyboard.g.i.cs │ │ ├── WindowAddEditActionMouse.baml │ │ ├── WindowAddEditActionMouse.g.cs │ │ ├── WindowAddEditActionMouse.g.i.cs │ │ ├── WindowAddEditActionMoveMouse.baml │ │ ├── WindowAddEditActionMoveMouse.g.cs │ │ ├── WindowAddEditActionMoveMouse.g.i.cs │ │ ├── WindowAddEditActionOpenURL.baml │ │ ├── WindowAddEditActionOpenURL.g.cs │ │ ├── WindowAddEditActionOpenURL.g.i.cs │ │ ├── WindowAddEditActionReadText.baml │ │ ├── WindowAddEditActionReadText.g.cs │ │ ├── WindowAddEditActionReadText.g.i.cs │ │ ├── WindowAddEditActionScrollMouse.baml │ │ ├── WindowAddEditActionScrollMouse.g.cs │ │ ├── WindowAddEditActionScrollMouse.g.i.cs │ │ ├── WindowAddEditActionTypeText.baml │ │ ├── WindowAddEditActionTypeText.g.cs │ │ ├── WindowAddEditActionTypeText.g.i.cs │ │ ├── WindowAddEditActionWait.baml │ │ ├── WindowAddEditActionWait.g.cs │ │ ├── WindowAddEditActionWait.g.i.cs │ │ ├── WindowAddEditCommand.baml │ │ ├── WindowAddEditCommand.g.cs │ │ ├── WindowAddEditCommand.g.i.cs │ │ ├── WindowAddEditGroup.baml │ │ ├── WindowAddEditGroup.g.cs │ │ ├── WindowAddEditGroup.g.i.cs │ │ ├── WindowAddEditProfile.baml │ │ ├── WindowAddEditProfile.g.cs │ │ ├── WindowAddEditProfile.g.i.cs │ │ ├── WindowChangelog.baml │ │ ├── WindowChangelog.g.cs │ │ ├── WindowChangelog.g.i.cs │ │ ├── WindowChooseProgram.baml │ │ ├── WindowChooseProgram.g.cs │ │ ├── WindowChooseProgram.g.i.cs │ │ ├── WindowEULA.baml │ │ ├── WindowEULA.g.cs │ │ ├── WindowEULA.g.i.cs │ │ ├── WindowManageGroups.baml │ │ ├── WindowManageGroups.g.cs │ │ ├── WindowManageGroups.g.i.cs │ │ ├── WindowRecordActions.baml │ │ ├── WindowRecordActions.g.cs │ │ ├── WindowRecordActions.g.i.cs │ │ ├── Work by Speech.csproj.AssemblyReference.cache │ │ ├── Work by Speech.csproj.CopyComplete │ │ ├── Work by Speech.csproj.CoreCompileInputs.cache │ │ ├── Work by Speech.csproj.FileListAbsolute.txt │ │ ├── Work by Speech.csproj.GenerateResource.cache │ │ ├── Work by Speech.csproj.ResolveComReference.cache │ │ ├── Work by Speech.exe │ │ ├── Work by Speech.g.resources │ │ ├── Work by Speech.pdb │ │ ├── Work by Speech_MarkupCompile.cache │ │ ├── Work by Speech_MarkupCompile.i.cache │ │ └── Work by Speech_MarkupCompile.lref │ └── w logo.ico ├── other ├── awards │ ├── Best-App-Award-2-min.jpg │ ├── certified-free.png │ ├── filetransit_5of5.gif │ ├── majorgeektested.gif │ ├── si-award-clean.png │ ├── softlay-300x110.png │ ├── softpedia_100_clean.png │ └── updatestar.com.jpg ├── images │ ├── 01_main_window.jpg │ ├── 02_command_editing.jpg │ ├── 03_macro_recorder.jpg │ ├── 04_built-in_commands.jpg │ ├── 05_settings.jpg │ ├── 06_mousegrid_hexagonal.png │ ├── 07_mousegrid_square.png │ ├── 08_mousegrid_horizontal.png │ ├── 09_mousegrid_vertical.png │ ├── 10_mousegrid_combined.png │ ├── Work by Speech multi.ico │ ├── Work by Speech.ico │ ├── Work by Speech.png │ ├── Work_by_Speech_32x32.png │ ├── email.jpg │ └── small screenshot.jpg └── latest_version.txt └── readme.md /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/License.txt -------------------------------------------------------------------------------- /Work by Speech/.vs/Work by Speech/FileContentIndex/03b7020a-8365-4396-96e1-020b76f36edc.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/.vs/Work by Speech/FileContentIndex/03b7020a-8365-4396-96e1-020b76f36edc.vsidx -------------------------------------------------------------------------------- /Work by Speech/.vs/Work by Speech/FileContentIndex/4337e83a-eb71-4f7d-b8f1-4620a11b8929.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/.vs/Work by Speech/FileContentIndex/4337e83a-eb71-4f7d-b8f1-4620a11b8929.vsidx -------------------------------------------------------------------------------- /Work by Speech/.vs/Work by Speech/FileContentIndex/b4db12a8-f48b-4526-aada-f546912266f6.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/.vs/Work by Speech/FileContentIndex/b4db12a8-f48b-4526-aada-f546912266f6.vsidx -------------------------------------------------------------------------------- /Work by Speech/.vs/Work by Speech/FileContentIndex/dc555116-641f-40c0-8757-2be1ad27730a.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/.vs/Work by Speech/FileContentIndex/dc555116-641f-40c0-8757-2be1ad27730a.vsidx -------------------------------------------------------------------------------- /Work by Speech/.vs/Work by Speech/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/.vs/Work by Speech/v16/.suo -------------------------------------------------------------------------------- /Work by Speech/.vs/Work by Speech/v16/TestStore/0/000.testlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/.vs/Work by Speech/v16/TestStore/0/000.testlog -------------------------------------------------------------------------------- /Work by Speech/.vs/Work by Speech/v16/TestStore/0/testlog.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/.vs/Work by Speech/v16/TestStore/0/testlog.manifest -------------------------------------------------------------------------------- /Work by Speech/.vs/Work by Speech/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/.vs/Work by Speech/v17/.suo -------------------------------------------------------------------------------- /Work by Speech/.vs/Work by Speech/v17/DocumentLayout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/.vs/Work by Speech/v17/DocumentLayout.json -------------------------------------------------------------------------------- /Work by Speech/.vs/Work by Speech/v17/TestStore/0/000.testlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/.vs/Work by Speech/v17/TestStore/0/000.testlog -------------------------------------------------------------------------------- /Work by Speech/.vs/Work by Speech/v17/TestStore/0/testlog.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/.vs/Work by Speech/v17/TestStore/0/testlog.manifest -------------------------------------------------------------------------------- /Work by Speech/Work by Speech.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech.sln -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/App.config -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/App.xaml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/App.xaml.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/Auxiliary Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/Auxiliary Methods.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/Built-in Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/Built-in Commands.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/Classes Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/Classes Enums.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/Custom Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/Custom Commands.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/Keyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/Keyboard.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/MainWindow.xaml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/Middle Man.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/Middle Man.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/Mouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/Mouse.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/Mousegrid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/Mousegrid.xaml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/Mousegrid.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/Mousegrid.xaml.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/Old Versions Support.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/Old Versions Support.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/Properties/Resources.resx -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/Properties/Settings.settings -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/SpeechWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/SpeechWindow.xaml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/SpeechWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/SpeechWindow.xaml.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/Tests.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/WindowAddEditActionKeyboard.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/WindowAddEditActionKeyboard.xaml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/WindowAddEditActionKeyboard.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/WindowAddEditActionKeyboard.xaml.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/WindowAddEditActionMouse.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/WindowAddEditActionMouse.xaml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/WindowAddEditActionMouse.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/WindowAddEditActionMouse.xaml.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/WindowAddEditActionMoveMouse.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/WindowAddEditActionMoveMouse.xaml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/WindowAddEditActionMoveMouse.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/WindowAddEditActionMoveMouse.xaml.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/WindowAddEditActionOpenURL.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/WindowAddEditActionOpenURL.xaml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/WindowAddEditActionOpenURL.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/WindowAddEditActionOpenURL.xaml.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/WindowAddEditActionReadText.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/WindowAddEditActionReadText.xaml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/WindowAddEditActionReadText.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/WindowAddEditActionReadText.xaml.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/WindowAddEditActionScrollMouse.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/WindowAddEditActionScrollMouse.xaml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/WindowAddEditActionScrollMouse.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/WindowAddEditActionScrollMouse.xaml.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/WindowAddEditActionTypeText.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/WindowAddEditActionTypeText.xaml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/WindowAddEditActionTypeText.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/WindowAddEditActionTypeText.xaml.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/WindowAddEditActionWait.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/WindowAddEditActionWait.xaml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/WindowAddEditActionWait.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/WindowAddEditActionWait.xaml.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/WindowAddEditCommand.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/WindowAddEditCommand.xaml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/WindowAddEditCommand.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/WindowAddEditCommand.xaml.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/WindowAddEditGroup.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/WindowAddEditGroup.xaml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/WindowAddEditGroup.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/WindowAddEditGroup.xaml.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/WindowAddEditProfile.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/WindowAddEditProfile.xaml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/WindowAddEditProfile.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/WindowAddEditProfile.xaml.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/WindowChangelog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/WindowChangelog.xaml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/WindowChangelog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/WindowChangelog.xaml.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/WindowChooseProgram.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/WindowChooseProgram.xaml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/WindowChooseProgram.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/WindowChooseProgram.xaml.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/WindowEULA.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/WindowEULA.xaml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/WindowEULA.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/WindowEULA.xaml.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/WindowManageGroups.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/WindowManageGroups.xaml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/WindowManageGroups.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/WindowManageGroups.xaml.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/WindowRecordActions.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/WindowRecordActions.xaml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/WindowRecordActions.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/WindowRecordActions.xaml.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/WindowsInput2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/WindowsInput2.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/WindowsInputNative2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/WindowsInputNative2.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/Work by Speech multi.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/Work by Speech multi.ico -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/Work by Speech.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/Work by Speech.csproj -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/Work by Speech.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/Work by Speech.csproj.user -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/app.manifest -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/bin/Debug/Built-in Commands.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/bin/Debug/Built-in Commands.pdf -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/bin/Debug/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/bin/Debug/License.txt -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/bin/Debug/Microsoft.WindowsAPICodePack.Shell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/bin/Debug/Microsoft.WindowsAPICodePack.Shell.dll -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/bin/Debug/Microsoft.WindowsAPICodePack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/bin/Debug/Microsoft.WindowsAPICodePack.dll -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/bin/Debug/Mousegrid Alphabet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/bin/Debug/Mousegrid Alphabet.pdf -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/bin/Debug/Useful Windows Key Combinations.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/bin/Debug/Useful Windows Key Combinations.pdf -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/bin/Debug/User Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/bin/Debug/User Guide.pdf -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/bin/Debug/Windows Input Simulator License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/bin/Debug/Windows Input Simulator License.txt -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/bin/Debug/Work by Speech.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/bin/Debug/Work by Speech.exe -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/bin/Debug/Work by Speech.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/bin/Debug/Work by Speech.exe.config -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/bin/Debug/Work by Speech.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/bin/Debug/Work by Speech.pdb -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/bin/Debug/coords.txt: -------------------------------------------------------------------------------- 1 | 743 2 | 901 3 | -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/icons/1process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/icons/1process.png -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/icons/Work by Speech multi.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/icons/Work by Speech multi.ico -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/icons/Work by Speech.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/icons/Work by Speech.ico -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/icons/Work by Speech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/icons/Work by Speech.png -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/icons/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/icons/app_icon.ico -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/icons/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/icons/app_icon.png -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/icons/app_icon_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/icons/app_icon_small.png -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/icons/application_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/icons/application_edit.png -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/icons/command.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/icons/command.ico -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/icons/command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/icons/command.png -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/icons/command2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/icons/command2.ico -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/icons/dictation.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/icons/dictation.ico -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/icons/dictation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/icons/dictation.png -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/icons/dictation2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/icons/dictation2.ico -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/icons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/icons/help.png -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/icons/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/icons/info.png -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/icons/off.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/icons/off.ico -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/icons/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/icons/off.png -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/icons/off2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/icons/off2.ico -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/icons/process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/icons/process.png -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/images/1process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/images/1process.png -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/images/application_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/images/application_edit.png -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/images/command.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/images/command.ico -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/images/command2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/images/command2.ico -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/images/dictation.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/images/dictation.ico -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/images/dictation2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/images/dictation2.ico -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/images/help 30x30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/images/help 30x30.png -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/images/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/images/help.png -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/images/info.png -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/images/off2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/images/off2.ico -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/images/page_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/images/page_edit.png -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/images/page_process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/images/page_process.png -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/images/process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/images/process.png -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/images/w logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/images/w logo.png -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/libs/Microsoft.WindowsAPICodePack.Shell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/libs/Microsoft.WindowsAPICodePack.Shell.dll -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/libs/Microsoft.WindowsAPICodePack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/libs/Microsoft.WindowsAPICodePack.dll -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/App.g.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/App.g.i.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/Interop.Shell32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/Interop.Shell32.dll -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/MainWindow.baml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/MainWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/MainWindow.g.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/MainWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/MainWindow.g.i.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/Mousegrid.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/Mousegrid.baml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/Mousegrid.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/Mousegrid.g.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/Mousegrid.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/Mousegrid.g.i.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/Speech.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/Speech.Properties.Resources.resources -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/SpeechWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/SpeechWindow.baml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/SpeechWindow.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/SpeechWindow.g.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/SpeechWindow.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/SpeechWindow.g.i.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionKeyboard.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionKeyboard.baml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionKeyboard.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionKeyboard.g.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionKeyboard.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionKeyboard.g.i.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionMouse.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionMouse.baml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionMouse.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionMouse.g.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionMouse.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionMouse.g.i.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionMoveMouse.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionMoveMouse.baml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionMoveMouse.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionMoveMouse.g.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionMoveMouse.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionMoveMouse.g.i.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionOpenURL.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionOpenURL.baml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionOpenURL.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionOpenURL.g.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionOpenURL.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionOpenURL.g.i.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionReadText.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionReadText.baml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionReadText.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionReadText.g.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionReadText.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionReadText.g.i.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionScrollMouse.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionScrollMouse.baml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionScrollMouse.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionScrollMouse.g.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionScrollMouse.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionScrollMouse.g.i.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionTypeText.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionTypeText.baml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionTypeText.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionTypeText.g.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionTypeText.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionTypeText.g.i.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionWait.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionWait.baml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionWait.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionWait.g.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionWait.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowAddEditActionWait.g.i.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowAddEditCommand.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowAddEditCommand.baml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowAddEditCommand.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowAddEditCommand.g.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowAddEditCommand.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowAddEditCommand.g.i.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowAddEditGroup.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowAddEditGroup.baml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowAddEditGroup.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowAddEditGroup.g.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowAddEditGroup.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowAddEditGroup.g.i.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowAddEditProfile.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowAddEditProfile.baml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowAddEditProfile.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowAddEditProfile.g.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowAddEditProfile.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowAddEditProfile.g.i.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowChangelog.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowChangelog.baml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowChangelog.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowChangelog.g.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowChangelog.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowChangelog.g.i.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowChooseProgram.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowChooseProgram.baml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowChooseProgram.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowChooseProgram.g.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowChooseProgram.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowChooseProgram.g.i.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowEULA.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowEULA.baml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowEULA.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowEULA.g.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowEULA.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowEULA.g.i.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowManageGroups.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowManageGroups.baml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowManageGroups.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowManageGroups.g.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowManageGroups.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowManageGroups.g.i.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowRecordActions.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowRecordActions.baml -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowRecordActions.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowRecordActions.g.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/WindowRecordActions.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/WindowRecordActions.g.i.cs -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/Work by Speech.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/Work by Speech.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/Work by Speech.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/Work by Speech.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/Work by Speech.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/Work by Speech.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/Work by Speech.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/Work by Speech.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/Work by Speech.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/Work by Speech.csproj.ResolveComReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/Work by Speech.csproj.ResolveComReference.cache -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/Work by Speech.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/Work by Speech.exe -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/Work by Speech.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/Work by Speech.g.resources -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/Work by Speech.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/Work by Speech.pdb -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/Work by Speech_MarkupCompile.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/Work by Speech_MarkupCompile.cache -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/Work by Speech_MarkupCompile.i.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/Work by Speech_MarkupCompile.i.cache -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/obj/Debug/Work by Speech_MarkupCompile.lref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/obj/Debug/Work by Speech_MarkupCompile.lref -------------------------------------------------------------------------------- /Work by Speech/Work by Speech/w logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/Work by Speech/Work by Speech/w logo.ico -------------------------------------------------------------------------------- /other/awards/Best-App-Award-2-min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/other/awards/Best-App-Award-2-min.jpg -------------------------------------------------------------------------------- /other/awards/certified-free.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/other/awards/certified-free.png -------------------------------------------------------------------------------- /other/awards/filetransit_5of5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/other/awards/filetransit_5of5.gif -------------------------------------------------------------------------------- /other/awards/majorgeektested.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/other/awards/majorgeektested.gif -------------------------------------------------------------------------------- /other/awards/si-award-clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/other/awards/si-award-clean.png -------------------------------------------------------------------------------- /other/awards/softlay-300x110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/other/awards/softlay-300x110.png -------------------------------------------------------------------------------- /other/awards/softpedia_100_clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/other/awards/softpedia_100_clean.png -------------------------------------------------------------------------------- /other/awards/updatestar.com.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/other/awards/updatestar.com.jpg -------------------------------------------------------------------------------- /other/images/01_main_window.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/other/images/01_main_window.jpg -------------------------------------------------------------------------------- /other/images/02_command_editing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/other/images/02_command_editing.jpg -------------------------------------------------------------------------------- /other/images/03_macro_recorder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/other/images/03_macro_recorder.jpg -------------------------------------------------------------------------------- /other/images/04_built-in_commands.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/other/images/04_built-in_commands.jpg -------------------------------------------------------------------------------- /other/images/05_settings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/other/images/05_settings.jpg -------------------------------------------------------------------------------- /other/images/06_mousegrid_hexagonal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/other/images/06_mousegrid_hexagonal.png -------------------------------------------------------------------------------- /other/images/07_mousegrid_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/other/images/07_mousegrid_square.png -------------------------------------------------------------------------------- /other/images/08_mousegrid_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/other/images/08_mousegrid_horizontal.png -------------------------------------------------------------------------------- /other/images/09_mousegrid_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/other/images/09_mousegrid_vertical.png -------------------------------------------------------------------------------- /other/images/10_mousegrid_combined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/other/images/10_mousegrid_combined.png -------------------------------------------------------------------------------- /other/images/Work by Speech multi.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/other/images/Work by Speech multi.ico -------------------------------------------------------------------------------- /other/images/Work by Speech.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/other/images/Work by Speech.ico -------------------------------------------------------------------------------- /other/images/Work by Speech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/other/images/Work by Speech.png -------------------------------------------------------------------------------- /other/images/Work_by_Speech_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/other/images/Work_by_Speech_32x32.png -------------------------------------------------------------------------------- /other/images/email.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/other/images/email.jpg -------------------------------------------------------------------------------- /other/images/small screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/other/images/small screenshot.jpg -------------------------------------------------------------------------------- /other/latest_version.txt: -------------------------------------------------------------------------------- 1 | 2.2 -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProperCode/Work-by-Speech/HEAD/readme.md --------------------------------------------------------------------------------