Merge branch 'main' of github.com:ThisIsBenny/iOS-Widgets into main

This commit is contained in:
Benny Samir Hierl 2020-11-08 14:42:48 +01:00
commit 2e6a1d017d
No known key found for this signature in database
GPG key ID: 69DE3C3C097DB7F7

View file

@ -3,9 +3,11 @@
// icon-color: red; icon-glyph: broadcast-tower;
/**************
Version 1.2.2
Version 1.2.3
Changelog:
v1.2.3:
- Fix typo (thanks @CuzImStantac)
v1.2.2:
- Fix remaining Day issue
v1.2.1:
@ -380,7 +382,7 @@ if (data !== undefined) {
if (data.endDate) {
widget.addSpacer(5)
let remainingDays = getTimeRemaining(data.endDate).days + 2
let remainingDaysText = widget.addText(`${remainingDays} Tage verleibend`)
let remainingDaysText = widget.addText(`${remainingDays} Tage verbleibend`)
remainingDaysText.font = Font.mediumSystemFont(8)
remainingDaysText.centerAlignText()
remainingDaysText.textColor = new Color(textColor)