Skip to content

Commit

Permalink
Merge branch 'master' into sailfishos
Browse files Browse the repository at this point in the history
  • Loading branch information
vasvlad committed Jan 16, 2025
2 parents 7385cfd + 1825476 commit 2017db1
Show file tree
Hide file tree
Showing 15 changed files with 17 additions and 14 deletions.
3 changes: 3 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
meecast (1.11.19) unstable; urgency=low
-- Vlad Vasiliev <[email protected]> Thu, 16 Jan 2025 12:02:23 +0300

meecast (1.11.18) unstable; urgency=low
* Added icons to gismeteo.ru
-- Vlad Vasiliev <[email protected]> Tue, 14 Jan 2025 12:02:23 +0300
Expand Down
2 changes: 1 addition & 1 deletion meecast/core/core.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
#include "databaseabstract.h"
#include "downloader.h"

#define MEECAST_VERSION "1.11.18"
#define MEECAST_VERSION "1.11.19"

namespace Core{
class Connection;
Expand Down
2 changes: 1 addition & 1 deletion meecast/qt-qml/qml/pages/AboutPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Page {
Rectangle {
anchors.fill: parent
color: {
if (Config.transparency == "transparent"){
if (Config.transparency){
return "transparent"
}else{
if (Theme.primaryColor == "#000000"){
Expand Down
2 changes: 1 addition & 1 deletion meecast/qt-qml/qml/pages/CityPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Page {
Rectangle{
anchors.fill: parent
color: {
if (Config.transparency == "transparent"){
if (Config.transparency){
return "transparent"
}else{
if (Theme.primaryColor == "#000000"){
Expand Down
2 changes: 1 addition & 1 deletion meecast/qt-qml/qml/pages/CountryPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Page {
Rectangle{
anchors.fill: parent
color: {
if (Config.transparency == "transparent"){
if (Config.transparency){
return "transparent"
}else{
if (Theme.primaryColor == "#000000"){
Expand Down
2 changes: 1 addition & 1 deletion meecast/qt-qml/qml/pages/FullWeatherPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ Page {
width: screen_width
height: screen_height
color: {
if (Config.transparency == "transparent"){
if (Config.transparency){
return "transparent"
}else{
if (Theme.primaryColor == "#000000"){
Expand Down
2 changes: 1 addition & 1 deletion meecast/qt-qml/qml/pages/IconsetPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Page {
Rectangle {
anchors.fill: parent
color: {
if (Config.transparency == "transparent"){
if (Config.transparency){
return "transparent"
}else{
if (Theme.primaryColor == "#000000"){
Expand Down
2 changes: 1 addition & 1 deletion meecast/qt-qml/qml/pages/LanguagesPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Page {
Rectangle {
anchors.fill: parent
color: {
if (Config.transparency == "transparent"){
if (Config.transparency){
return "transparent"
}else{
if (Theme.primaryColor == "#000000"){
Expand Down
2 changes: 1 addition & 1 deletion meecast/qt-qml/qml/pages/RegionPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Page {
Rectangle{
anchors.fill: parent
color: {
if (Config.transparency == "transparent"){
if (Config.transparency){
return "transparent"
}else{
if (Theme.primaryColor == "#000000"){
Expand Down
2 changes: 1 addition & 1 deletion meecast/qt-qml/qml/pages/SettingsPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Page {
Rectangle{
anchors.fill: parent
color: {
if (Config.transparency == "transparent"){
if (Config.transparency){
return "transparent"
}else{
if (Theme.primaryColor == "#000000"){
Expand Down
2 changes: 1 addition & 1 deletion meecast/qt-qml/qml/pages/SourcePage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Page {
Rectangle{
anchors.fill: parent
color: {
if (Config.transparency == "transparent"){
if (Config.transparency){
return "transparent"
}else{
if (Theme.primaryColor == "#000000"){
Expand Down
2 changes: 1 addition & 1 deletion meecast/qt-qml/qml/pages/StationsPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Page {
Rectangle{
anchors.fill: parent
color: {
if (Config.transparency == "transparent"){
if (Config.transparency){
return "transparent"
}else{
if (Theme.primaryColor == "#000000"){
Expand Down
2 changes: 1 addition & 1 deletion meecast/qt-qml/qml/pages/UnitsPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Page {
Rectangle {
anchors.fill: parent
color: {
if (Config.transparency == "transparent"){
if (Config.transparency){
return "transparent"
}else{
if (Theme.primaryColor == "#000000"){
Expand Down
2 changes: 1 addition & 1 deletion meecast/qt-qml/qml/pages/UpdatePage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Page {
Rectangle {
anchors.fill: parent
color: {
if (Config.transparency == "transparent"){
if (Config.transparency){
return "transparent"
}else{
if (Theme.primaryColor == "#000000"){
Expand Down
2 changes: 1 addition & 1 deletion meecast/qt-qml/qml/pages/VisualsPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Page {
Rectangle {
anchors.fill: parent
color: {
if (Config.transparency == "transparent"){
if (Config.transparency){
return "transparent"
}else{
if (Theme.primaryColor == "#000000"){
Expand Down

0 comments on commit 2017db1

Please sign in to comment.