Skip to content

Commit 3958684

Browse files
authored
Merge pull request #6458 from claudiux/moonphase_Fixes#6185
[moonphase@techi-freki] v1.0.1 - Fixes #6185
2 parents 3c0539c + 8505dda commit 3958684

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

moonphase@techi-freki/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## v1.0.1
4+
- Fixes #6185.
5+
36
## v1.0.0
47
- Feature add: Adds geolocation features
58
- Feature add: Adds moon rise, set, and transit times on left click

moonphase@techi-freki/files/moonphase@techi-freki/js/compass.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ class Compass {
1818
new Direction(202.5, this._('South'), this.app.moon.iconSet.directionDown),
1919
new Direction(247.5, this._('South West'), this.app.moon.iconSet.directionDownLeft),
2020
new Direction(292.5, this._('West'), this.app.moon.iconSet.directionLeft),
21-
new Direction(337.5, this._('North West'), this.app.moon.iconSet.directionUpLeft)
21+
new Direction(337.5, this._('North West'), this.app.moon.iconSet.directionUpLeft),
22+
new Direction(360, this._('North'), this.app.moon.iconSet.directionUp)
2223
];
2324
}
2425

@@ -46,4 +47,4 @@ class Compass {
4647
}
4748
return this.direction;
4849
}
49-
}
50+
}

moonphase@techi-freki/files/moonphase@techi-freki/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"uuid": "moonphase@techi-freki",
33
"name": "Moon Phase",
44
"description": "A Cinnamon applet that displays up-to-date moon related information.",
5-
"version": "1.0.0",
5+
"version": "1.0.1",
66
"max-instances": 1,
77
"author": "Techi Freki"
88
}

0 commit comments

Comments
 (0)