Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

weather@mockturtl 3.4.0 #5396

Merged
merged 12 commits into from
Jan 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions weather@mockturtl/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## 3.4.0

* Fix [#5212](https://github.com/linuxmint/cinnamon-spices-applets/issues/5212)
* Fix [#5392](https://github.com/linuxmint/cinnamon-spices-applets/issues/5392)
* Fix [#5355](https://github.com/linuxmint/cinnamon-spices-applets/issues/5355)
* Add description to Manual location entry
* Fix Saving Logs button not included the redacted config
* Update library typings for applet
* Use fedora geoip project for autolocation via the internet

## 3.3.1

Fix nominatim not getting location data due to API changes. Related issues:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@
"title": "Location settings",
"keys": [
"manualLocation",
"location"
"location",
"locationDescription"
]
},
"location-store": {
Expand Down Expand Up @@ -218,6 +219,11 @@
"description": "Location",
"tooltip": "You can enter coordinates 'Latitude,Longitude' (e.g. 51.5085,-0.1257) or use 'City,Country-code' (e.g. London,UK) or try to enter {House number} {Street} {City/Town} {Postcode} {Country}. The search algorithm is very flexible with the format. After 3 seconds without typing the address you entered is replaced automatically for validating your choice."
},
"locationDescription": {
"type": "label",
"dependency": "manualLocation",
"description": "If the location field matches a saved location's 'Search Entry' field, the saved location will be used instead."
},
"saveLocation": {
"type": "button",
"indent": true,
Expand Down
Loading