diff --git a/CHANGELOG.md b/CHANGELOG.md index 6006595..be3d290 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,4 +22,7 @@ - Charge level was correctly shown as text but not updated in icon - ## 1.1.2 Bug fix day short description ES / IT - Order of days was incorrect for spanish and italian translation - - was shifted by one day \ No newline at end of file + - was shifted by one day +- ## 1.1.3 Added two further options for date formatting + - yyyy.m.d + - yyyy/m/d diff --git a/Description App Gallery.txt b/Description App Gallery.txt index 51807e3..6f22f76 100644 --- a/Description App Gallery.txt +++ b/Description App Gallery.txt @@ -25,7 +25,7 @@ Switch to next/previous screen with a tap on the right/left half of the screen. Settings: - turn the third screen on or off (default: off) -- date format (d.m.yyyy or d/m/yyyy or m/d/yyyy) +- date format - reset HR zones manually (if you switched between custom and default zones) Credits: @@ -35,4 +35,4 @@ Credits: Contact: Sourcecode, Changelog and detailed info: (https://github.com/tanstaaflFH/DigiChron) -Support: fh.development@zoho.eu \ No newline at end of file +Support: fh.development@zoho.eu diff --git a/settings/index.jsx b/settings/index.jsx index c3714e6..1bac7df 100644 --- a/settings/index.jsx +++ b/settings/index.jsx @@ -25,7 +25,9 @@ function mySettings (props) { options={[ {name:"d.m.yyyy", value:"1"}, {name:"m/d/yyyy", value:"2"}, - {name:"d/m/yyyy", value:"3"} + {name:"d/m/yyyy", value:"3"}, + {name:"yyyy.m.d", value:"4"}, + {name:"yyyy/m/d", value:"5"} ]} /> @@ -33,4 +35,4 @@ function mySettings (props) { ); } -registerSettingsPage(mySettings); \ No newline at end of file +registerSettingsPage(mySettings);