├── .gitignore ├── Gruntfile.js ├── README.md ├── app ├── responders_manager.js ├── say.js ├── settings.js ├── updater.js ├── voicebox.js └── voicebox_responder.js ├── assets ├── css │ ├── listening.css │ ├── reset.css │ ├── responders_manager.css │ └── settings.css ├── icon.icns ├── images │ ├── icon.png │ └── soundwave.svg ├── logo.png ├── logo@2x.png ├── tray.png ├── tray@2x.png ├── tray_white.png └── tray_white@2x.png ├── components ├── listening.js ├── responders_manager.js └── settings.js ├── main.js ├── package.json ├── responders.md └── views ├── listening.html ├── responders_manager.html └── settings.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomascullen/voicebox/HEAD/.gitignore -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomascullen/voicebox/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomascullen/voicebox/HEAD/README.md -------------------------------------------------------------------------------- /app/responders_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomascullen/voicebox/HEAD/app/responders_manager.js -------------------------------------------------------------------------------- /app/say.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomascullen/voicebox/HEAD/app/say.js -------------------------------------------------------------------------------- /app/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomascullen/voicebox/HEAD/app/settings.js -------------------------------------------------------------------------------- /app/updater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomascullen/voicebox/HEAD/app/updater.js -------------------------------------------------------------------------------- /app/voicebox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomascullen/voicebox/HEAD/app/voicebox.js -------------------------------------------------------------------------------- /app/voicebox_responder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomascullen/voicebox/HEAD/app/voicebox_responder.js -------------------------------------------------------------------------------- /assets/css/listening.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomascullen/voicebox/HEAD/assets/css/listening.css -------------------------------------------------------------------------------- /assets/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomascullen/voicebox/HEAD/assets/css/reset.css -------------------------------------------------------------------------------- /assets/css/responders_manager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomascullen/voicebox/HEAD/assets/css/responders_manager.css -------------------------------------------------------------------------------- /assets/css/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomascullen/voicebox/HEAD/assets/css/settings.css -------------------------------------------------------------------------------- /assets/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomascullen/voicebox/HEAD/assets/icon.icns -------------------------------------------------------------------------------- /assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomascullen/voicebox/HEAD/assets/images/icon.png -------------------------------------------------------------------------------- /assets/images/soundwave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomascullen/voicebox/HEAD/assets/images/soundwave.svg -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomascullen/voicebox/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomascullen/voicebox/HEAD/assets/logo@2x.png -------------------------------------------------------------------------------- /assets/tray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomascullen/voicebox/HEAD/assets/tray.png -------------------------------------------------------------------------------- /assets/tray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomascullen/voicebox/HEAD/assets/tray@2x.png -------------------------------------------------------------------------------- /assets/tray_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomascullen/voicebox/HEAD/assets/tray_white.png -------------------------------------------------------------------------------- /assets/tray_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomascullen/voicebox/HEAD/assets/tray_white@2x.png -------------------------------------------------------------------------------- /components/listening.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomascullen/voicebox/HEAD/components/listening.js -------------------------------------------------------------------------------- /components/responders_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomascullen/voicebox/HEAD/components/responders_manager.js -------------------------------------------------------------------------------- /components/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomascullen/voicebox/HEAD/components/settings.js -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomascullen/voicebox/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomascullen/voicebox/HEAD/package.json -------------------------------------------------------------------------------- /responders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomascullen/voicebox/HEAD/responders.md -------------------------------------------------------------------------------- /views/listening.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomascullen/voicebox/HEAD/views/listening.html -------------------------------------------------------------------------------- /views/responders_manager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomascullen/voicebox/HEAD/views/responders_manager.html -------------------------------------------------------------------------------- /views/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomascullen/voicebox/HEAD/views/settings.html --------------------------------------------------------------------------------