├── .github ├── copilot-instructions.md └── workflows │ ├── compile-translations.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── _meta.lua ├── compile_translations.sh ├── create-release.sh ├── display_card.lua ├── display_default.lua ├── display_nightowl.lua ├── display_reading.lua ├── display_retro.lua ├── icons ├── arrows │ ├── arrow_e.svg │ ├── arrow_n.svg │ ├── arrow_ne.svg │ ├── arrow_nw.svg │ ├── arrow_s.svg │ ├── arrow_se.svg │ ├── arrow_sw.svg │ └── arrow_w.svg ├── moon.svg ├── moonphases │ ├── first_quarter.svg │ ├── full_moon.svg │ ├── last_quarter.svg │ ├── new_moon.svg │ ├── waning_crescent.svg │ ├── waning_gibbous.svg │ ├── waxing_crescent.svg │ └── waxing_gibbous.svg └── sun.svg ├── l10n ├── de │ ├── koreader.mo │ └── koreader.po ├── es │ ├── koreader.mo │ └── koreader.po └── gettext.lua ├── main.lua ├── resources ├── beautiful.jpg ├── cover.jpg ├── detail.jpg ├── menu.jpg ├── minimal.jpg ├── night_owl.jpg ├── retro_analog.jpg ├── settings.png ├── settings_where_to_find.png └── sleep_screen_settings.png ├── weather_api.lua ├── weather_menu.lua └── weather_utils.lua /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/workflows/compile-translations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/.github/workflows/compile-translations.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/README.md -------------------------------------------------------------------------------- /_meta.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/_meta.lua -------------------------------------------------------------------------------- /compile_translations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/compile_translations.sh -------------------------------------------------------------------------------- /create-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/create-release.sh -------------------------------------------------------------------------------- /display_card.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/display_card.lua -------------------------------------------------------------------------------- /display_default.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/display_default.lua -------------------------------------------------------------------------------- /display_nightowl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/display_nightowl.lua -------------------------------------------------------------------------------- /display_reading.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/display_reading.lua -------------------------------------------------------------------------------- /display_retro.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/display_retro.lua -------------------------------------------------------------------------------- /icons/arrows/arrow_e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/icons/arrows/arrow_e.svg -------------------------------------------------------------------------------- /icons/arrows/arrow_n.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/icons/arrows/arrow_n.svg -------------------------------------------------------------------------------- /icons/arrows/arrow_ne.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/icons/arrows/arrow_ne.svg -------------------------------------------------------------------------------- /icons/arrows/arrow_nw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/icons/arrows/arrow_nw.svg -------------------------------------------------------------------------------- /icons/arrows/arrow_s.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/icons/arrows/arrow_s.svg -------------------------------------------------------------------------------- /icons/arrows/arrow_se.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/icons/arrows/arrow_se.svg -------------------------------------------------------------------------------- /icons/arrows/arrow_sw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/icons/arrows/arrow_sw.svg -------------------------------------------------------------------------------- /icons/arrows/arrow_w.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/icons/arrows/arrow_w.svg -------------------------------------------------------------------------------- /icons/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/icons/moon.svg -------------------------------------------------------------------------------- /icons/moonphases/first_quarter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/icons/moonphases/first_quarter.svg -------------------------------------------------------------------------------- /icons/moonphases/full_moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/icons/moonphases/full_moon.svg -------------------------------------------------------------------------------- /icons/moonphases/last_quarter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/icons/moonphases/last_quarter.svg -------------------------------------------------------------------------------- /icons/moonphases/new_moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/icons/moonphases/new_moon.svg -------------------------------------------------------------------------------- /icons/moonphases/waning_crescent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/icons/moonphases/waning_crescent.svg -------------------------------------------------------------------------------- /icons/moonphases/waning_gibbous.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/icons/moonphases/waning_gibbous.svg -------------------------------------------------------------------------------- /icons/moonphases/waxing_crescent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/icons/moonphases/waxing_crescent.svg -------------------------------------------------------------------------------- /icons/moonphases/waxing_gibbous.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/icons/moonphases/waxing_gibbous.svg -------------------------------------------------------------------------------- /icons/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/icons/sun.svg -------------------------------------------------------------------------------- /l10n/de/koreader.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/l10n/de/koreader.mo -------------------------------------------------------------------------------- /l10n/de/koreader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/l10n/de/koreader.po -------------------------------------------------------------------------------- /l10n/es/koreader.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/l10n/es/koreader.mo -------------------------------------------------------------------------------- /l10n/es/koreader.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/l10n/es/koreader.po -------------------------------------------------------------------------------- /l10n/gettext.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/l10n/gettext.lua -------------------------------------------------------------------------------- /main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/main.lua -------------------------------------------------------------------------------- /resources/beautiful.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/resources/beautiful.jpg -------------------------------------------------------------------------------- /resources/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/resources/cover.jpg -------------------------------------------------------------------------------- /resources/detail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/resources/detail.jpg -------------------------------------------------------------------------------- /resources/menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/resources/menu.jpg -------------------------------------------------------------------------------- /resources/minimal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/resources/minimal.jpg -------------------------------------------------------------------------------- /resources/night_owl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/resources/night_owl.jpg -------------------------------------------------------------------------------- /resources/retro_analog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/resources/retro_analog.jpg -------------------------------------------------------------------------------- /resources/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/resources/settings.png -------------------------------------------------------------------------------- /resources/settings_where_to_find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/resources/settings_where_to_find.png -------------------------------------------------------------------------------- /resources/sleep_screen_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/resources/sleep_screen_settings.png -------------------------------------------------------------------------------- /weather_api.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/weather_api.lua -------------------------------------------------------------------------------- /weather_menu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/weather_menu.lua -------------------------------------------------------------------------------- /weather_utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loeffner/WeatherLockscreen/HEAD/weather_utils.lua --------------------------------------------------------------------------------