├── .babelrc ├── .gitignore ├── LICENSE ├── README.md ├── classes └── Alarm.ts ├── icon ├── icon.icns ├── icon.ico └── icon.png ├── index.html ├── main ├── application-menu.ts ├── default-settings.ts ├── main.ts ├── squirrel-event.ts ├── tray-menu.ts └── window.ts ├── package.json ├── renderer ├── assets │ └── img │ │ ├── Donate-PayPal-green.svg │ │ ├── alarm.png │ │ ├── delete.png │ │ ├── edit.png │ │ ├── new.png │ │ ├── pause.png │ │ ├── play.png │ │ ├── postpone.png │ │ ├── stop.png │ │ ├── stopwatch.png │ │ ├── timer.png │ │ ├── white-pause.png │ │ ├── white-play.png │ │ └── white-stop.png ├── components │ ├── About.tsx │ ├── AlarmApp.tsx │ ├── EditAlarm.tsx │ └── Settings.tsx ├── renderer.tsx ├── styles │ ├── About.scss │ ├── AlarmApp.scss │ ├── EditAlarm.scss │ ├── Settings.scss │ ├── checkbox.css │ └── react-bootstrap-date-picker.css └── utils │ ├── inspectElement.ts │ └── prototype.ts ├── resources ├── Evacuation-Test-Japan.mp3 ├── Telemetry-Tech-Data-23.mp3 ├── Train-Station-Street.mp3 ├── Train-Station-Vietnam.mp3 ├── default.mp3 ├── icon-mac-active.png ├── icon-mac.png ├── icon-tray-active-mono.png ├── icon-tray-active.png ├── icon-tray-mono.png └── icon-tray.png ├── screens ├── interface.png └── logo.png ├── scripts ├── app-linux.sh ├── app-mac.sh ├── app-windows.sh ├── config.sh ├── installer-linux.sh ├── installer-mac.sh └── installer-windows.js ├── static └── Roboto.ttf ├── tsconfig.json ├── types └── alarm.ts └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bundle 2 | build 3 | releases 4 | node_modules 5 | package-lock.json 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/README.md -------------------------------------------------------------------------------- /classes/Alarm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/classes/Alarm.ts -------------------------------------------------------------------------------- /icon/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/icon/icon.icns -------------------------------------------------------------------------------- /icon/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/icon/icon.ico -------------------------------------------------------------------------------- /icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/icon/icon.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/index.html -------------------------------------------------------------------------------- /main/application-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/main/application-menu.ts -------------------------------------------------------------------------------- /main/default-settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/main/default-settings.ts -------------------------------------------------------------------------------- /main/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/main/main.ts -------------------------------------------------------------------------------- /main/squirrel-event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/main/squirrel-event.ts -------------------------------------------------------------------------------- /main/tray-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/main/tray-menu.ts -------------------------------------------------------------------------------- /main/window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/main/window.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/package.json -------------------------------------------------------------------------------- /renderer/assets/img/Donate-PayPal-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/renderer/assets/img/Donate-PayPal-green.svg -------------------------------------------------------------------------------- /renderer/assets/img/alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/renderer/assets/img/alarm.png -------------------------------------------------------------------------------- /renderer/assets/img/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/renderer/assets/img/delete.png -------------------------------------------------------------------------------- /renderer/assets/img/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/renderer/assets/img/edit.png -------------------------------------------------------------------------------- /renderer/assets/img/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/renderer/assets/img/new.png -------------------------------------------------------------------------------- /renderer/assets/img/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/renderer/assets/img/pause.png -------------------------------------------------------------------------------- /renderer/assets/img/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/renderer/assets/img/play.png -------------------------------------------------------------------------------- /renderer/assets/img/postpone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/renderer/assets/img/postpone.png -------------------------------------------------------------------------------- /renderer/assets/img/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/renderer/assets/img/stop.png -------------------------------------------------------------------------------- /renderer/assets/img/stopwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/renderer/assets/img/stopwatch.png -------------------------------------------------------------------------------- /renderer/assets/img/timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/renderer/assets/img/timer.png -------------------------------------------------------------------------------- /renderer/assets/img/white-pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/renderer/assets/img/white-pause.png -------------------------------------------------------------------------------- /renderer/assets/img/white-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/renderer/assets/img/white-play.png -------------------------------------------------------------------------------- /renderer/assets/img/white-stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/renderer/assets/img/white-stop.png -------------------------------------------------------------------------------- /renderer/components/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/renderer/components/About.tsx -------------------------------------------------------------------------------- /renderer/components/AlarmApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/renderer/components/AlarmApp.tsx -------------------------------------------------------------------------------- /renderer/components/EditAlarm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/renderer/components/EditAlarm.tsx -------------------------------------------------------------------------------- /renderer/components/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/renderer/components/Settings.tsx -------------------------------------------------------------------------------- /renderer/renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/renderer/renderer.tsx -------------------------------------------------------------------------------- /renderer/styles/About.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/renderer/styles/About.scss -------------------------------------------------------------------------------- /renderer/styles/AlarmApp.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/renderer/styles/AlarmApp.scss -------------------------------------------------------------------------------- /renderer/styles/EditAlarm.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/renderer/styles/EditAlarm.scss -------------------------------------------------------------------------------- /renderer/styles/Settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/renderer/styles/Settings.scss -------------------------------------------------------------------------------- /renderer/styles/checkbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/renderer/styles/checkbox.css -------------------------------------------------------------------------------- /renderer/styles/react-bootstrap-date-picker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/renderer/styles/react-bootstrap-date-picker.css -------------------------------------------------------------------------------- /renderer/utils/inspectElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/renderer/utils/inspectElement.ts -------------------------------------------------------------------------------- /renderer/utils/prototype.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/renderer/utils/prototype.ts -------------------------------------------------------------------------------- /resources/Evacuation-Test-Japan.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/resources/Evacuation-Test-Japan.mp3 -------------------------------------------------------------------------------- /resources/Telemetry-Tech-Data-23.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/resources/Telemetry-Tech-Data-23.mp3 -------------------------------------------------------------------------------- /resources/Train-Station-Street.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/resources/Train-Station-Street.mp3 -------------------------------------------------------------------------------- /resources/Train-Station-Vietnam.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/resources/Train-Station-Vietnam.mp3 -------------------------------------------------------------------------------- /resources/default.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/resources/default.mp3 -------------------------------------------------------------------------------- /resources/icon-mac-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/resources/icon-mac-active.png -------------------------------------------------------------------------------- /resources/icon-mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/resources/icon-mac.png -------------------------------------------------------------------------------- /resources/icon-tray-active-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/resources/icon-tray-active-mono.png -------------------------------------------------------------------------------- /resources/icon-tray-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/resources/icon-tray-active.png -------------------------------------------------------------------------------- /resources/icon-tray-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/resources/icon-tray-mono.png -------------------------------------------------------------------------------- /resources/icon-tray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/resources/icon-tray.png -------------------------------------------------------------------------------- /screens/interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/screens/interface.png -------------------------------------------------------------------------------- /screens/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/screens/logo.png -------------------------------------------------------------------------------- /scripts/app-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/scripts/app-linux.sh -------------------------------------------------------------------------------- /scripts/app-mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/scripts/app-mac.sh -------------------------------------------------------------------------------- /scripts/app-windows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/scripts/app-windows.sh -------------------------------------------------------------------------------- /scripts/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/scripts/config.sh -------------------------------------------------------------------------------- /scripts/installer-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/scripts/installer-linux.sh -------------------------------------------------------------------------------- /scripts/installer-mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/scripts/installer-mac.sh -------------------------------------------------------------------------------- /scripts/installer-windows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/scripts/installer-windows.js -------------------------------------------------------------------------------- /static/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/static/Roboto.ttf -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/alarm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/types/alarm.ts -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl00mber/alarm-cron/HEAD/webpack.config.js --------------------------------------------------------------------------------