├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md ├── favicon.png ├── freelance-timetracker.sketch ├── index.php ├── notify15a.mp3 ├── notify30-60a.mp3 ├── screen1.png ├── screen2.png ├── screen3.png └── timetracker.js /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | timetracker.json 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckyshot/freelance-timetracker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckyshot/freelance-timetracker/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckyshot/freelance-timetracker/HEAD/SECURITY.md -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckyshot/freelance-timetracker/HEAD/favicon.png -------------------------------------------------------------------------------- /freelance-timetracker.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckyshot/freelance-timetracker/HEAD/freelance-timetracker.sketch -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckyshot/freelance-timetracker/HEAD/index.php -------------------------------------------------------------------------------- /notify15a.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckyshot/freelance-timetracker/HEAD/notify15a.mp3 -------------------------------------------------------------------------------- /notify30-60a.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckyshot/freelance-timetracker/HEAD/notify30-60a.mp3 -------------------------------------------------------------------------------- /screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckyshot/freelance-timetracker/HEAD/screen1.png -------------------------------------------------------------------------------- /screen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckyshot/freelance-timetracker/HEAD/screen2.png -------------------------------------------------------------------------------- /screen3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckyshot/freelance-timetracker/HEAD/screen3.png -------------------------------------------------------------------------------- /timetracker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luckyshot/freelance-timetracker/HEAD/timetracker.js --------------------------------------------------------------------------------