-
Notifications
You must be signed in to change notification settings - Fork 307
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<addon id="screensaver.weather" name="Show weather" version="1.0.0" provider-name="Heckie"> | ||
<requires> | ||
<import addon="xbmc.python" version="3.0.0" /> | ||
</requires> | ||
<extension point="xbmc.ui.screensaver" library="default.py"/> | ||
<extension point="xbmc.addon.metadata"> | ||
<summary lang="en_GB">just display the weather dialog</summary> | ||
<summary lang="de_DE">zeige einfach das Wetter an</summary> | ||
<description lang="en_GB">just display the weather dialog | ||
</description> | ||
<description lang="de_DE">zeige einfach das Wetter an | ||
</description> | ||
<language>en</language> | ||
<language>de</language> | ||
<platform>all</platform> | ||
<license>MIT</license> | ||
<website>https://github.com/Heckie75/kodi-addon-screensaver-weather</website> | ||
<source>https://github.com/Heckie75/kodi-addon-screensaver-weather</source> | ||
<news> | ||
v1.0.0 (2024-02-25) | ||
- initial version | ||
</news> | ||
<assets> | ||
<icon>resources/assets/icon.png</icon> | ||
</assets> | ||
</extension> | ||
</addon> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import xbmc | ||
|
||
if __name__ == "__main__": | ||
|
||
xbmc.executebuiltin("ActivateWindow(Weather)") |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.