Skip to content

Commit

Permalink
Merge pull request #19 from tanstaaflFH/Additional-settings-Date-format
Browse files Browse the repository at this point in the history
Additional settings date format
  • Loading branch information
tanstaaflFH authored Jan 29, 2019
2 parents faf3a66 + 8e518dd commit c888a0e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
- was shifted by one day
- ## 1.1.3 Added two further options for date formatting
- yyyy.m.d
- yyyy/m/d
4 changes: 2 additions & 2 deletions Description App Gallery.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -35,4 +35,4 @@ Credits:
Contact:

Sourcecode, Changelog and detailed info: (https://github.com/tanstaaflFH/DigiChron)
Support: [email protected]
Support: [email protected]
6 changes: 4 additions & 2 deletions settings/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,14 @@ 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"}
]}
/>
</Section>
</Page>
);
}

registerSettingsPage(mySettings);
registerSettingsPage(mySettings);

0 comments on commit c888a0e

Please sign in to comment.