Skip to content

Commit

Permalink
Added skins
Browse files Browse the repository at this point in the history
updated OSMC skin - thanks Ch1llb0 and petroid! Improved handling of no hour zero padding, added 2 more time formats

Additional skins
  • Loading branch information
vdb86 committed Jan 4, 2024
1 parent 3378507 commit 0218f91
Show file tree
Hide file tree
Showing 83 changed files with 3,082 additions and 74 deletions.
3 changes: 2 additions & 1 deletion screensaver.digitalclock/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@ If the skin is not on the list screensaver will use default font names from conf
- Aeon MQ5
- Aeon MQ5
- Aeon MQ6
- Aeon MQ8
- Aeon MQ8 (And some mods)
- Aeon MQ9
- Amber
- AppTV
- Arctic: Zephyr
Expand Down
3 changes: 2 additions & 1 deletion screensaver.digitalclock/addon.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="screensaver.digitalclock"
name="Digital Clock Screensaver"
version="6.0.4"
version="6.0.5"
provider-name="Vojislav Vlasic">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
Expand All @@ -14,6 +14,7 @@
<forum>https://forum.kodi.tv/showthread.php?tid=237338</forum>
<source>https://github.com/vdb86/screensaver.digitalclock</source>
<news>
6.0.5 (2024-1-2) - Added support for AeonMQ7 matrix mod, AeonMQ8 mods, for AeonMQ9, Arctic Zephyr - Reloaded, EllipsisUI, Embuary-Matrix, Mimic-LR, TetradUI, updated OSMC skin - thanks Ch1llb0 and petroid! Improved handling of no hour zero padding, added 2 more time formats
6.0.4 (2023-8-16) - Translations and a visual improvement for ftv skin - thanks Kevin!
6.0.3 (2021-9-7) - Bug fixes and translations
6.0.2 (2021-1-20) - Got skin.helper.backgrounds to work again
Expand Down
9 changes: 6 additions & 3 deletions screensaver.digitalclock/default.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,8 +335,8 @@ def onInit(self):
self.icon_control.setImage(os.path.join(path,"resources/weathericons/",self.weathericonset[int(self.weathericonf)],xbmc.getInfoLabel('Window(Weather).Property(Current.FanartCode)')) + ".png")

#setting up the time format
self.timeformat = ['%H','%I','%I','%#I','%#I','%-I','%-I']
if self.timef == '2' or self.timef == '4' or self.timef == '6':
self.timeformat = ['%H','%I','%I','%#H','%#I','%#I','%-H','%-I','%-I']
if self.timef == '2' or self.timef == '5' or self.timef == '8':
self.ampm_control.setVisible(True)
self.time = self.timeformat[int(self.timef)]

Expand Down Expand Up @@ -506,7 +506,10 @@ def setCTR(self):
self.shadowcolor = self.rtr + self.shadowcolor[2:]

def Display(self):
self.hour_control.setLabel(datetime.now().strftime(self.time))
if int(self.timef) == 4 or int(self.timef) == 5 or int(self.timef) == 7 or int(self.timef) == 8 or ((int(self.timef) == 3 or int(self.timef) == 6) and int(datetime.now().strftime(self.time))<10):
self.hour_control.setLabel(' ' + datetime.now().strftime(self.time))
else:
self.hour_control.setLabel(datetime.now().strftime(self.time))
self.colon_control.setLabel(" : ")
self.minute_control.setLabel(datetime.now().strftime("%M"))
self.ampm_control.setLabel(datetime.now().strftime("%p"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: KODI Addons\n"
"Report-Msgid-Bugs-To: translations@kodi.tv\n"
"Report-Msgid-Bugs-To: http://trac.kodi.tv/\n"
"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n"
"PO-Revision-Date: 2022-03-01 17:13+0000\n"
"Last-Translator: Christian Gade <gade@kodi.tv>\n"
Expand Down Expand Up @@ -194,6 +194,15 @@ msgctxt "#32173"
msgid "Year: yy(2-digit year) yyyy(4-digit year)"
msgstr ""

# empty strings from id 32174 to 32179
msgctxt "#32180"
msgid "17:14 No hour zero padding Windows"
msgstr ""

msgctxt "#32181"
msgid "17:14 No hour zero padding Unix"
msgstr ""

# empty strings from id 32174 to 32199
msgctxt "#32200"
msgid "Enable additional information"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: KODI Addons\n"
"Report-Msgid-Bugs-To: translations@kodi.tv\n"
"Report-Msgid-Bugs-To: http://trac.kodi.tv/\n"
"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n"
"PO-Revision-Date: 2022-03-01 17:13+0000\n"
"Last-Translator: Christian Gade <gade@kodi.tv>\n"
Expand Down Expand Up @@ -194,6 +194,15 @@ msgctxt "#32173"
msgid "Year: yy(2-digit year) yyyy(4-digit year)"
msgstr ""

# empty strings from id 32174 to 32179
msgctxt "#32180"
msgid "17:14 No hour zero padding Windows"
msgstr ""

msgctxt "#32181"
msgid "17:14 No hour zero padding Unix"
msgstr ""

# empty strings from id 32174 to 32199
msgctxt "#32200"
msgid "Enable additional information"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: KODI Addons\n"
"Report-Msgid-Bugs-To: translations@kodi.tv\n"
"Report-Msgid-Bugs-To: http://trac.kodi.tv/\n"
"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n"
"PO-Revision-Date: 2022-03-01 17:13+0000\n"
"Last-Translator: Christian Gade <gade@kodi.tv>\n"
Expand Down Expand Up @@ -194,6 +194,15 @@ msgctxt "#32173"
msgid "Year: yy(2-digit year) yyyy(4-digit year)"
msgstr ""

# empty strings from id 32174 to 32179
msgctxt "#32180"
msgid "17:14 No hour zero padding Windows"
msgstr ""

msgctxt "#32181"
msgid "17:14 No hour zero padding Unix"
msgstr ""

# empty strings from id 32174 to 32199
msgctxt "#32200"
msgid "Enable additional information"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: KODI Addons\n"
"Report-Msgid-Bugs-To: translations@kodi.tv\n"
"Report-Msgid-Bugs-To: http://trac.kodi.tv/\n"
"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n"
"PO-Revision-Date: 2022-03-01 17:13+0000\n"
"Last-Translator: Christian Gade <gade@kodi.tv>\n"
Expand Down Expand Up @@ -194,6 +194,15 @@ msgctxt "#32173"
msgid "Year: yy(2-digit year) yyyy(4-digit year)"
msgstr ""

# empty strings from id 32174 to 32179
msgctxt "#32180"
msgid "17:14 No hour zero padding Windows"
msgstr ""

msgctxt "#32181"
msgid "17:14 No hour zero padding Unix"
msgstr ""

# empty strings from id 32174 to 32199
msgctxt "#32200"
msgid "Enable additional information"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: KODI Addons\n"
"Report-Msgid-Bugs-To: translations@kodi.tv\n"
"Report-Msgid-Bugs-To: http://trac.kodi.tv/\n"
"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n"
"PO-Revision-Date: 2022-03-21 04:13+0000\n"
"Last-Translator: Christian Gade <gade@kodi.tv>\n"
Expand Down Expand Up @@ -194,6 +194,15 @@ msgctxt "#32173"
msgid "Year: yy(2-digit year) yyyy(4-digit year)"
msgstr ""

# empty strings from id 32174 to 32179
msgctxt "#32180"
msgid "17:14 No hour zero padding Windows"
msgstr ""

msgctxt "#32181"
msgid "17:14 No hour zero padding Unix"
msgstr ""

# empty strings from id 32174 to 32199
msgctxt "#32200"
msgid "Enable additional information"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: KODI Addons\n"
"Report-Msgid-Bugs-To: translations@kodi.tv\n"
"Report-Msgid-Bugs-To: http://trac.kodi.tv/\n"
"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n"
"PO-Revision-Date: 2022-03-01 17:13+0000\n"
"Last-Translator: Christian Gade <gade@kodi.tv>\n"
Expand Down Expand Up @@ -194,6 +194,15 @@ msgctxt "#32173"
msgid "Year: yy(2-digit year) yyyy(4-digit year)"
msgstr ""

# empty strings from id 32174 to 32179
msgctxt "#32180"
msgid "17:14 No hour zero padding Windows"
msgstr ""

msgctxt "#32181"
msgid "17:14 No hour zero padding Unix"
msgstr ""

# empty strings from id 32174 to 32199
msgctxt "#32200"
msgid "Enable additional information"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: KODI Addons\n"
"Report-Msgid-Bugs-To: translations@kodi.tv\n"
"Report-Msgid-Bugs-To: http://trac.kodi.tv/\n"
"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n"
"PO-Revision-Date: 2022-03-01 17:13+0000\n"
"Last-Translator: Christian Gade <gade@kodi.tv>\n"
Expand Down Expand Up @@ -194,6 +194,15 @@ msgctxt "#32173"
msgid "Year: yy(2-digit year) yyyy(4-digit year)"
msgstr ""

# empty strings from id 32174 to 32179
msgctxt "#32180"
msgid "17:14 No hour zero padding Windows"
msgstr ""

msgctxt "#32181"
msgid "17:14 No hour zero padding Unix"
msgstr ""

# empty strings from id 32174 to 32199
msgctxt "#32200"
msgid "Enable additional information"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: KODI Addons\n"
"Report-Msgid-Bugs-To: translations@kodi.tv\n"
"Report-Msgid-Bugs-To: http://trac.kodi.tv/\n"
"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n"
"PO-Revision-Date: 2022-03-01 17:13+0000\n"
"Last-Translator: Christian Gade <gade@kodi.tv>\n"
Expand Down Expand Up @@ -194,6 +194,15 @@ msgctxt "#32173"
msgid "Year: yy(2-digit year) yyyy(4-digit year)"
msgstr ""

# empty strings from id 32174 to 32179
msgctxt "#32180"
msgid "17:14 No hour zero padding Windows"
msgstr ""

msgctxt "#32181"
msgid "17:14 No hour zero padding Unix"
msgstr ""

# empty strings from id 32174 to 32199
msgctxt "#32200"
msgid "Enable additional information"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: KODI Addons\n"
"Report-Msgid-Bugs-To: translations@kodi.tv\n"
"Report-Msgid-Bugs-To: http://trac.kodi.tv/\n"
"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n"
"PO-Revision-Date: 2022-03-09 13:42+0000\n"
"Last-Translator: Christian Gade <gade@kodi.tv>\n"
Expand Down Expand Up @@ -194,6 +194,15 @@ msgctxt "#32173"
msgid "Year: yy(2-digit year) yyyy(4-digit year)"
msgstr ""

# empty strings from id 32174 to 32179
msgctxt "#32180"
msgid "17:14 No hour zero padding Windows"
msgstr ""

msgctxt "#32181"
msgid "17:14 No hour zero padding Unix"
msgstr ""

# empty strings from id 32174 to 32199
msgctxt "#32200"
msgid "Enable additional information"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: KODI Addons\n"
"Report-Msgid-Bugs-To: translations@kodi.tv\n"
"Report-Msgid-Bugs-To: http://trac.kodi.tv/\n"
"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n"
"PO-Revision-Date: 2022-04-09 10:13+0000\n"
"Last-Translator: Christian Gade <gade@kodi.tv>\n"
Expand Down Expand Up @@ -194,6 +194,15 @@ msgctxt "#32173"
msgid "Year: yy(2-digit year) yyyy(4-digit year)"
msgstr ""

# empty strings from id 32174 to 32179
msgctxt "#32180"
msgid "17:14 No hour zero padding Windows"
msgstr ""

msgctxt "#32181"
msgid "17:14 No hour zero padding Unix"
msgstr ""

# empty strings from id 32174 to 32199
msgctxt "#32200"
msgid "Enable additional information"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: KODI Addons\n"
"Report-Msgid-Bugs-To: translations@kodi.tv\n"
"Report-Msgid-Bugs-To: http://trac.kodi.tv/\n"
"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n"
"PO-Revision-Date: 2022-02-14 09:13+0000\n"
"Last-Translator: Christian Gade <gade@kodi.tv>\n"
Expand Down Expand Up @@ -194,6 +194,15 @@ msgctxt "#32173"
msgid "Year: yy(2-digit year) yyyy(4-digit year)"
msgstr ""

# empty strings from id 32174 to 32179
msgctxt "#32180"
msgid "17:14 No hour zero padding Windows"
msgstr ""

msgctxt "#32181"
msgid "17:14 No hour zero padding Unix"
msgstr ""

# empty strings from id 32174 to 32199
msgctxt "#32200"
msgid "Enable additional information"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: KODI Addons\n"
"Report-Msgid-Bugs-To: translations@kodi.tv\n"
"Report-Msgid-Bugs-To: http://trac.kodi.tv/\n"
"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n"
"PO-Revision-Date: 2023-02-06 14:15+0000\n"
"Last-Translator: Demian <Demian@gmx.co.uk>\n"
Expand Down Expand Up @@ -194,6 +194,15 @@ msgctxt "#32173"
msgid "Year: yy(2-digit year) yyyy(4-digit year)"
msgstr "Jahr: yy(2-stelliges Jahr) yyyy(4-stelliges Jahr)"

# empty strings from id 32174 to 32179
msgctxt "#32180"
msgid "17:14 No hour zero padding Windows"
msgstr ""

msgctxt "#32181"
msgid "17:14 No hour zero padding Unix"
msgstr ""

# empty strings from id 32174 to 32199
msgctxt "#32200"
msgid "Enable additional information"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: KODI Addons\n"
"Report-Msgid-Bugs-To: translations@kodi.tv\n"
"Report-Msgid-Bugs-To: http://trac.kodi.tv/\n"
"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n"
"PO-Revision-Date: 2022-03-27 01:16+0000\n"
"Last-Translator: Christian Gade <gade@kodi.tv>\n"
Expand Down Expand Up @@ -194,6 +194,15 @@ msgctxt "#32173"
msgid "Year: yy(2-digit year) yyyy(4-digit year)"
msgstr ""

# empty strings from id 32174 to 32179
msgctxt "#32180"
msgid "17:14 No hour zero padding Windows"
msgstr ""

msgctxt "#32181"
msgid "17:14 No hour zero padding Unix"
msgstr ""

# empty strings from id 32174 to 32199
msgctxt "#32200"
msgid "Enable additional information"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: KODI Addons\n"
"Report-Msgid-Bugs-To: translations@kodi.tv\n"
"Report-Msgid-Bugs-To: http://trac.kodi.tv/\n"
"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n"
"PO-Revision-Date: 2022-03-09 13:42+0000\n"
"Last-Translator: Christian Gade <gade@kodi.tv>\n"
Expand Down Expand Up @@ -194,6 +194,15 @@ msgctxt "#32173"
msgid "Year: yy(2-digit year) yyyy(4-digit year)"
msgstr ""

# empty strings from id 32174 to 32179
msgctxt "#32180"
msgid "17:14 No hour zero padding Windows"
msgstr ""

msgctxt "#32181"
msgid "17:14 No hour zero padding Unix"
msgstr ""

# empty strings from id 32174 to 32199
msgctxt "#32200"
msgid "Enable additional information"
Expand Down
Loading

0 comments on commit 0218f91

Please sign in to comment.