Skip to content

Commit

Permalink
v1.0.1 - Fixes #6185
Browse files Browse the repository at this point in the history
  • Loading branch information
claudiux committed Oct 1, 2024
1 parent 3c0539c commit 8505dda
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions moonphase@techi-freki/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## v1.0.1
- Fixes #6185.

## v1.0.0
- Feature add: Adds geolocation features
- Feature add: Adds moon rise, set, and transit times on left click
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ class Compass {
new Direction(202.5, this._('South'), this.app.moon.iconSet.directionDown),
new Direction(247.5, this._('South West'), this.app.moon.iconSet.directionDownLeft),
new Direction(292.5, this._('West'), this.app.moon.iconSet.directionLeft),
new Direction(337.5, this._('North West'), this.app.moon.iconSet.directionUpLeft)
new Direction(337.5, this._('North West'), this.app.moon.iconSet.directionUpLeft),
new Direction(360, this._('North'), this.app.moon.iconSet.directionUp)
];
}

Expand Down Expand Up @@ -46,4 +47,4 @@ class Compass {
}
return this.direction;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"uuid": "moonphase@techi-freki",
"name": "Moon Phase",
"description": "A Cinnamon applet that displays up-to-date moon related information.",
"version": "1.0.0",
"version": "1.0.1",
"max-instances": 1,
"author": "Techi Freki"
}

0 comments on commit 8505dda

Please sign in to comment.