├── .babelrc ├── .gitignore ├── .vscode ├── launch.json └── task.json ├── LICENSE ├── README.md ├── assets ├── generate_icons.py ├── icon.icns ├── icon.ico ├── icon.png ├── settings-screenshot.png ├── tray-icon-128.png ├── tray-icon-16.png ├── tray-icon-24.png ├── tray-icon-32.png ├── tray-icon-48.png ├── tray-icon-recording-128.png ├── tray-icon-recording-16.png ├── tray-icon-recording-24.png ├── tray-icon-recording-32.png ├── tray-icon-recording-48.png ├── tray-icon-recording.icns ├── tray-icon-recording.ico ├── tray-icon-recording.svg ├── tray-icon.icns ├── tray-icon.ico ├── tray-icon.svg ├── whisperanywhere.gif └── whisperanywhere.mp4 ├── entitlements.mac.plist ├── forge.config.js ├── package.json ├── postcss.config.js ├── public └── index.html ├── src ├── addons │ ├── macos_audio_addon.node │ └── macos_paste_addon.node ├── main │ ├── main.js │ └── preload.js └── renderer │ ├── index.js │ ├── overlay.html │ └── settings.html ├── tailwind.config.js ├── tests ├── test-addon.js └── tets_mic.js ├── tmp ├── App.js ├── Settings.js └── index.html └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/.vscode/task.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/README.md -------------------------------------------------------------------------------- /assets/generate_icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/assets/generate_icons.py -------------------------------------------------------------------------------- /assets/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/assets/icon.icns -------------------------------------------------------------------------------- /assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/assets/icon.ico -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/settings-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/assets/settings-screenshot.png -------------------------------------------------------------------------------- /assets/tray-icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/assets/tray-icon-128.png -------------------------------------------------------------------------------- /assets/tray-icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/assets/tray-icon-16.png -------------------------------------------------------------------------------- /assets/tray-icon-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/assets/tray-icon-24.png -------------------------------------------------------------------------------- /assets/tray-icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/assets/tray-icon-32.png -------------------------------------------------------------------------------- /assets/tray-icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/assets/tray-icon-48.png -------------------------------------------------------------------------------- /assets/tray-icon-recording-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/assets/tray-icon-recording-128.png -------------------------------------------------------------------------------- /assets/tray-icon-recording-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/assets/tray-icon-recording-16.png -------------------------------------------------------------------------------- /assets/tray-icon-recording-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/assets/tray-icon-recording-24.png -------------------------------------------------------------------------------- /assets/tray-icon-recording-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/assets/tray-icon-recording-32.png -------------------------------------------------------------------------------- /assets/tray-icon-recording-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/assets/tray-icon-recording-48.png -------------------------------------------------------------------------------- /assets/tray-icon-recording.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/assets/tray-icon-recording.icns -------------------------------------------------------------------------------- /assets/tray-icon-recording.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/assets/tray-icon-recording.ico -------------------------------------------------------------------------------- /assets/tray-icon-recording.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/assets/tray-icon-recording.svg -------------------------------------------------------------------------------- /assets/tray-icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/assets/tray-icon.icns -------------------------------------------------------------------------------- /assets/tray-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/assets/tray-icon.ico -------------------------------------------------------------------------------- /assets/tray-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/assets/tray-icon.svg -------------------------------------------------------------------------------- /assets/whisperanywhere.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/assets/whisperanywhere.gif -------------------------------------------------------------------------------- /assets/whisperanywhere.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/assets/whisperanywhere.mp4 -------------------------------------------------------------------------------- /entitlements.mac.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/entitlements.mac.plist -------------------------------------------------------------------------------- /forge.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/forge.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/addons/macos_audio_addon.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/src/addons/macos_audio_addon.node -------------------------------------------------------------------------------- /src/addons/macos_paste_addon.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/src/addons/macos_paste_addon.node -------------------------------------------------------------------------------- /src/main/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/src/main/main.js -------------------------------------------------------------------------------- /src/main/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/src/main/preload.js -------------------------------------------------------------------------------- /src/renderer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/src/renderer/index.js -------------------------------------------------------------------------------- /src/renderer/overlay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/src/renderer/overlay.html -------------------------------------------------------------------------------- /src/renderer/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/src/renderer/settings.html -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/test-addon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/tests/test-addon.js -------------------------------------------------------------------------------- /tests/tets_mic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/tests/tets_mic.js -------------------------------------------------------------------------------- /tmp/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/tmp/App.js -------------------------------------------------------------------------------- /tmp/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/tmp/Settings.js -------------------------------------------------------------------------------- /tmp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/tmp/index.html -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unclecode/whisperanywhere-js/HEAD/webpack.config.js --------------------------------------------------------------------------------