Skip to content

Commit

Permalink
Merge pull request #88 from k-donn/plasma6-release
Browse files Browse the repository at this point in the history
Plasma6 release
  • Loading branch information
k-donn authored Dec 1, 2024
2 parents 388a9c3 + ab1edc3 commit cec43af
Show file tree
Hide file tree
Showing 7 changed files with 457 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.3.1
current_version = 3.3.2
commit = True
tag = True

Expand Down
3 changes: 1 addition & 2 deletions plasmoid/contents/ui/DetailsItem.qml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,7 @@ GridLayout {
color: Kirigami.Theme.textColor

// wind barb icons are 270 degrees deviated from 0 degrees (north)
// themed icons are 135 degrees deviated
rotation: plasmoid.configuration.useSystemThemeIcons ? weatherData["winddir"] - 135 : weatherData["winddir"] - 270
rotation: weatherData["winddir"] - 270


Layout.minimumWidth: Kirigami.Units.iconSizes.large
Expand Down
2 changes: 1 addition & 1 deletion plasmoid/contents/ui/config/ConfigStation.qml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ KCM.SimpleKCM {
Kirigami.Separator{}

PlasmaComponents.Label {
text: "Version 3.3.1"
text: "Version 3.3.2"
}

}
Expand Down
2 changes: 2 additions & 0 deletions plasmoid/contents/ui/main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import QtQml
import QtQuick
import QtQuick.Layouts
import org.kde.plasma.plasmoid
import org.kde.kirigami as Kirigami
import org.kde.plasma.core as PlasmaCore
import "../code/utils.js" as Utils
import "../code/pws-api.js" as StationAPI
Expand Down Expand Up @@ -209,6 +210,7 @@ PlasmoidItem {
PlasmaCore.Action {
text: i18n("Refresh weather")
icon.name: "view-refresh-symbolic"
// icon.color: Kirigami.Theme.textColor
visible: appState == showDATA
enabled: appState == showDATA
onTriggered: updateWeatherData()
Expand Down
4 changes: 3 additions & 1 deletion plasmoid/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"Description[de_DE]": "Meine Wetterstation",
"Description[es_ES]": "Visor de la estación meteorológica personal Wunderground",
"Description[fr_FR]": "Visualisation de station météorologique personnelle Wunderground",
"Description[it_IT]": "La stazione meteo personale Wunderground",
"Description[ja_JP]": "Wunderground Personal Weather Station viewer",
"Description[nl_NL]": "Wunderground - Bekijk je eigen weerstation",
"Description[pt_BR]": "Visualizador de Estação Meteorológica Pessoal Wunderground",
Expand All @@ -25,13 +26,14 @@
"Name[de_DE]": "Wunderground",
"Name[es_ES]": "Wunderground",
"Name[fr_FR]": "Wunderground",
"Name[it_IT]": "Wunderground",
"Name[ja_JP]": "Wunderground",
"Name[nl_NL]": "Wunderground",
"Name[pt_BR]": "Wunderground",
"Name[ru_RU]": "Wunderground",
"Name[zh_CN]": "Wunderground",
"Name[zh_TW]": "Wunderground",
"Version": "3.3.1",
"Version": "3.3.2",
"Website": "https://github.com/k-donn/plasmoid-wunderground"
},
"X-KDE-ParentApp": "",
Expand Down
1 change: 1 addition & 0 deletions plasmoid/translate/ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
|----------|---------|-------|
| Template | 101 | |
| fr_FR | 39/101 | 38% |
| it_IT | 101/101 | 100% |
| de_DE | 101/101 | 100% |
| zh_TW | 101/101 | 100% |
| nl_NL | 39/101 | 38% |
Expand Down
Loading

0 comments on commit cec43af

Please sign in to comment.