├── .gitignore ├── .prettierrc.js ├── .sshignore ├── README.md ├── config.dev.json ├── config.prod.json ├── covid19_area_code.js ├── dev-helper └── cases_per_day.js ├── images ├── scriptable.png ├── widget_covid19_7day_incidence_areas-medium.png └── widget_covid19_7day_incidence_areas-small.png ├── import_scripts.js ├── jsconfig.json ├── license.md ├── package.json ├── rollup.config.js ├── scripts ├── GetDirections.js.ts ├── IncidenceWidget.js.ts ├── Location4TravelBlog.ts ├── PolylineTest.js.ts ├── RadarWidget.js.ts ├── ShowDirections.js.ts ├── components │ ├── alert-helper.ts │ └── widget-helper.ts └── utils │ ├── color.ts │ ├── date-utils.ts │ ├── debug-utils.ts │ ├── file-utils.ts │ ├── google-maps-utils.ts │ ├── gps.ts │ ├── math.ts │ └── request-utils.ts ├── tsconfig.json └── widget_covid19_7day_incidence_areas.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | build/ 3 | node_modules/ -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalBru/ios-scriptable/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.sshignore: -------------------------------------------------------------------------------- 1 | # ignore files for ssh up- and download 2 | node_modules/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalBru/ios-scriptable/HEAD/README.md -------------------------------------------------------------------------------- /config.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalBru/ios-scriptable/HEAD/config.dev.json -------------------------------------------------------------------------------- /config.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalBru/ios-scriptable/HEAD/config.prod.json -------------------------------------------------------------------------------- /covid19_area_code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalBru/ios-scriptable/HEAD/covid19_area_code.js -------------------------------------------------------------------------------- /dev-helper/cases_per_day.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalBru/ios-scriptable/HEAD/dev-helper/cases_per_day.js -------------------------------------------------------------------------------- /images/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalBru/ios-scriptable/HEAD/images/scriptable.png -------------------------------------------------------------------------------- /images/widget_covid19_7day_incidence_areas-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalBru/ios-scriptable/HEAD/images/widget_covid19_7day_incidence_areas-medium.png -------------------------------------------------------------------------------- /images/widget_covid19_7day_incidence_areas-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalBru/ios-scriptable/HEAD/images/widget_covid19_7day_incidence_areas-small.png -------------------------------------------------------------------------------- /import_scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalBru/ios-scriptable/HEAD/import_scripts.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalBru/ios-scriptable/HEAD/jsconfig.json -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalBru/ios-scriptable/HEAD/license.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalBru/ios-scriptable/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalBru/ios-scriptable/HEAD/rollup.config.js -------------------------------------------------------------------------------- /scripts/GetDirections.js.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalBru/ios-scriptable/HEAD/scripts/GetDirections.js.ts -------------------------------------------------------------------------------- /scripts/IncidenceWidget.js.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalBru/ios-scriptable/HEAD/scripts/IncidenceWidget.js.ts -------------------------------------------------------------------------------- /scripts/Location4TravelBlog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalBru/ios-scriptable/HEAD/scripts/Location4TravelBlog.ts -------------------------------------------------------------------------------- /scripts/PolylineTest.js.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalBru/ios-scriptable/HEAD/scripts/PolylineTest.js.ts -------------------------------------------------------------------------------- /scripts/RadarWidget.js.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalBru/ios-scriptable/HEAD/scripts/RadarWidget.js.ts -------------------------------------------------------------------------------- /scripts/ShowDirections.js.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalBru/ios-scriptable/HEAD/scripts/ShowDirections.js.ts -------------------------------------------------------------------------------- /scripts/components/alert-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalBru/ios-scriptable/HEAD/scripts/components/alert-helper.ts -------------------------------------------------------------------------------- /scripts/components/widget-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalBru/ios-scriptable/HEAD/scripts/components/widget-helper.ts -------------------------------------------------------------------------------- /scripts/utils/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalBru/ios-scriptable/HEAD/scripts/utils/color.ts -------------------------------------------------------------------------------- /scripts/utils/date-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalBru/ios-scriptable/HEAD/scripts/utils/date-utils.ts -------------------------------------------------------------------------------- /scripts/utils/debug-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalBru/ios-scriptable/HEAD/scripts/utils/debug-utils.ts -------------------------------------------------------------------------------- /scripts/utils/file-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalBru/ios-scriptable/HEAD/scripts/utils/file-utils.ts -------------------------------------------------------------------------------- /scripts/utils/google-maps-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalBru/ios-scriptable/HEAD/scripts/utils/google-maps-utils.ts -------------------------------------------------------------------------------- /scripts/utils/gps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalBru/ios-scriptable/HEAD/scripts/utils/gps.ts -------------------------------------------------------------------------------- /scripts/utils/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalBru/ios-scriptable/HEAD/scripts/utils/math.ts -------------------------------------------------------------------------------- /scripts/utils/request-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalBru/ios-scriptable/HEAD/scripts/utils/request-utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalBru/ios-scriptable/HEAD/tsconfig.json -------------------------------------------------------------------------------- /widget_covid19_7day_incidence_areas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalBru/ios-scriptable/HEAD/widget_covid19_7day_incidence_areas.js --------------------------------------------------------------------------------