├── .gitattributes ├── screenshot.png ├── Sources ├── pluginIcon.png ├── categoryIcon.png ├── pluginIcon@2x.png ├── categoryIcon@2x.png ├── common │ ├── css │ │ ├── check.png │ │ ├── buttons.png │ │ ├── buttons@2x.png │ │ ├── rcheck.svg │ │ ├── caret.svg │ │ ├── pi_required_ok.svg │ │ ├── check.svg │ │ ├── local.css │ │ ├── pi_required.svg │ │ ├── elg_calendar_inv.svg │ │ ├── elg_calendar_inv_13.svg │ │ ├── elg_calendar.svg │ │ ├── sdpi_win.css │ │ └── sdpi.css │ ├── common_pi.js │ ├── timers.js │ └── common.js ├── previews │ └── 1-preview.png ├── action │ ├── images │ │ ├── image.png │ │ ├── image@2x.png │ │ ├── actionIcon.png │ │ └── actionIcon@2x.png │ ├── sounds │ │ ├── digital.mp3 │ │ ├── bells-low.mp3 │ │ └── bells-high.mp3 │ └── js │ │ ├── sounds.js │ │ ├── index.html │ │ ├── clockfaces.js │ │ └── clock.js ├── index.html ├── en.json ├── manifest.json ├── propertyinspector │ ├── index_pi.js │ └── index.html └── js │ └── app.js ├── Release └── com.gallowaylabs.tomato.streamDeckPlugin ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallowaylabs/streamdeck-tomato-timer/HEAD/screenshot.png -------------------------------------------------------------------------------- /Sources/pluginIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallowaylabs/streamdeck-tomato-timer/HEAD/Sources/pluginIcon.png -------------------------------------------------------------------------------- /Sources/categoryIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallowaylabs/streamdeck-tomato-timer/HEAD/Sources/categoryIcon.png -------------------------------------------------------------------------------- /Sources/pluginIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallowaylabs/streamdeck-tomato-timer/HEAD/Sources/pluginIcon@2x.png -------------------------------------------------------------------------------- /Sources/categoryIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallowaylabs/streamdeck-tomato-timer/HEAD/Sources/categoryIcon@2x.png -------------------------------------------------------------------------------- /Sources/common/css/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallowaylabs/streamdeck-tomato-timer/HEAD/Sources/common/css/check.png -------------------------------------------------------------------------------- /Sources/common/css/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallowaylabs/streamdeck-tomato-timer/HEAD/Sources/common/css/buttons.png -------------------------------------------------------------------------------- /Sources/previews/1-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallowaylabs/streamdeck-tomato-timer/HEAD/Sources/previews/1-preview.png -------------------------------------------------------------------------------- /Sources/action/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallowaylabs/streamdeck-tomato-timer/HEAD/Sources/action/images/image.png -------------------------------------------------------------------------------- /Sources/action/sounds/digital.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallowaylabs/streamdeck-tomato-timer/HEAD/Sources/action/sounds/digital.mp3 -------------------------------------------------------------------------------- /Sources/common/css/buttons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallowaylabs/streamdeck-tomato-timer/HEAD/Sources/common/css/buttons@2x.png -------------------------------------------------------------------------------- /Sources/action/images/image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallowaylabs/streamdeck-tomato-timer/HEAD/Sources/action/images/image@2x.png -------------------------------------------------------------------------------- /Sources/action/sounds/bells-low.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallowaylabs/streamdeck-tomato-timer/HEAD/Sources/action/sounds/bells-low.mp3 -------------------------------------------------------------------------------- /Sources/action/images/actionIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallowaylabs/streamdeck-tomato-timer/HEAD/Sources/action/images/actionIcon.png -------------------------------------------------------------------------------- /Sources/action/sounds/bells-high.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallowaylabs/streamdeck-tomato-timer/HEAD/Sources/action/sounds/bells-high.mp3 -------------------------------------------------------------------------------- /Sources/action/images/actionIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallowaylabs/streamdeck-tomato-timer/HEAD/Sources/action/images/actionIcon@2x.png -------------------------------------------------------------------------------- /Release/com.gallowaylabs.tomato.streamDeckPlugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallowaylabs/streamdeck-tomato-timer/HEAD/Release/com.gallowaylabs.tomato.streamDeckPlugin -------------------------------------------------------------------------------- /Sources/common/css/rcheck.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Sources/common/css/caret.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Sources/common/css/pi_required_ok.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Sources/common/css/check.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Sources/common/css/local.css: -------------------------------------------------------------------------------- 1 | body, 2 | .localbody { 3 | height: 100%; 4 | padding: 0; 5 | overflow-x: hidden; 6 | overflow-y: auto; 7 | margin: 0; 8 | -webkit-overflow-scrolling: touch; 9 | } 10 | 11 | .localbody { 12 | width: 350px; 13 | margin: 0 auto; 14 | } 15 | -------------------------------------------------------------------------------- /Sources/action/js/sounds.js: -------------------------------------------------------------------------------- 1 | var sounds = [ 2 | { 3 | name: 'Bells (high)', 4 | filename: "action/sounds/bells-high.mp3", 5 | }, 6 | { 7 | name: 'Bells (low)', 8 | filename: "action/sounds/bells-low.mp3", 9 | }, 10 | { 11 | name: 'Digital', 12 | filename: "action/sounds/digital.mp3", 13 | } 14 | ]; 15 | -------------------------------------------------------------------------------- /Sources/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 |