mirror of
https://github.com/arcan1s/awesome-widgets.git
synced 2025-04-24 23:47:20 +00:00
Some small changes
* changelog update * version metadata update * bump required Qt version to 5.6 and update patch accordinly * fix invalid cast in update dialog
This commit is contained in:
parent
e9146b3b6c
commit
bfa4f9e98e
@ -1,3 +1,7 @@
|
|||||||
|
Ver.3.1.1:
|
||||||
|
- fix broken gcc build (#87)
|
||||||
|
* translation update
|
||||||
|
|
||||||
Ver.3.1.0:
|
Ver.3.1.0:
|
||||||
+ implement templates support (#71)
|
+ implement templates support (#71)
|
||||||
+ implement special functions (#71)
|
+ implement special functions (#71)
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
Вер.3.1.1:
|
||||||
|
- исправлена сборка (#87)
|
||||||
|
* обновлены переводы
|
||||||
|
|
||||||
Вер.3.1.0:
|
Вер.3.1.0:
|
||||||
+ добавлена поддержка шаблонов (#71)
|
+ добавлена поддержка шаблонов (#71)
|
||||||
+ добавлена поддержка специальных функций (#71)
|
+ добавлена поддержка специальных функций (#71)
|
||||||
|
@ -132,3 +132,16 @@ index 359cdb2..9c6a42d 100644
|
|||||||
QString m_genericConfig;
|
QString m_genericConfig;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
diff --git a/sources/libraries.cmake b/sources/libraries.cmake
|
||||||
|
index 33192f7..339bb58 100644
|
||||||
|
--- a/sources/libraries.cmake
|
||||||
|
+++ b/sources/libraries.cmake
|
||||||
|
@@ -2,7 +2,7 @@
|
||||||
|
find_package(Gettext REQUIRED)
|
||||||
|
|
||||||
|
# main qt libraries
|
||||||
|
-find_package(Qt5 5.6.0 REQUIRED COMPONENTS Core DBus Network Qml Widgets)
|
||||||
|
+find_package(Qt5 5.4.0 REQUIRED COMPONENTS Core DBus Network Qml Widgets)
|
||||||
|
add_definitions(
|
||||||
|
${Qt5Core_DEFINITIONS} ${Qt5DBus_DEFINITIONS} ${Qt5Network_DEFINITIONS}
|
||||||
|
${Qt5Qml_DEFINITIONS} ${Qt5Widgets_DEFINITIONS}
|
||||||
|
@ -20,7 +20,7 @@ X-Plasma-RemoteLocation=
|
|||||||
X-KDE-PluginInfo-Author=Evgeniy Alekseev aka arcanis
|
X-KDE-PluginInfo-Author=Evgeniy Alekseev aka arcanis
|
||||||
X-KDE-PluginInfo-Email=esalexeev@gmail.com
|
X-KDE-PluginInfo-Email=esalexeev@gmail.com
|
||||||
X-KDE-PluginInfo-Name=org.kde.plasma.awesomewidget
|
X-KDE-PluginInfo-Name=org.kde.plasma.awesomewidget
|
||||||
X-KDE-PluginInfo-Version=3.1.0
|
X-KDE-PluginInfo-Version=3.1.1
|
||||||
X-KDE-PluginInfo-Website=https://arcanis.me/projects/awesome-widgets/
|
X-KDE-PluginInfo-Website=https://arcanis.me/projects/awesome-widgets/
|
||||||
X-KDE-PluginInfo-Category=System Information
|
X-KDE-PluginInfo-Category=System Information
|
||||||
X-KDE-PluginInfo-Depends=
|
X-KDE-PluginInfo-Depends=
|
||||||
|
@ -123,15 +123,15 @@ void AWUpdateHelper::showUpdates(const QVersionNumber version)
|
|||||||
|
|
||||||
void AWUpdateHelper::userReplyOnUpdates(QAbstractButton *button)
|
void AWUpdateHelper::userReplyOnUpdates(QAbstractButton *button)
|
||||||
{
|
{
|
||||||
int ret = static_cast<QMessageBox *>(sender())->buttonRole(button);
|
QMessageBox::ButtonRole ret = static_cast<QMessageBox *>(sender())->buttonRole(button);
|
||||||
qCInfo(LOG_AW) << "User select" << ret;
|
qCInfo(LOG_AW) << "User select" << ret;
|
||||||
|
|
||||||
switch (ret) {
|
switch (ret) {
|
||||||
case QMessageBox::Ok:
|
case QMessageBox::AcceptRole:
|
||||||
QDesktopServices::openUrl(QString(RELEASES)
|
QDesktopServices::openUrl(QString(RELEASES)
|
||||||
+ m_foundVersion.toString());
|
+ m_foundVersion.toString());
|
||||||
break;
|
break;
|
||||||
case QMessageBox::Cancel:
|
case QMessageBox::RejectRole:
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -20,7 +20,7 @@ X-Plasma-RemoteLocation=
|
|||||||
X-KDE-PluginInfo-Author=Evgeniy Alekseev aka arcanis
|
X-KDE-PluginInfo-Author=Evgeniy Alekseev aka arcanis
|
||||||
X-KDE-PluginInfo-Email=esalexeev@gmail.com
|
X-KDE-PluginInfo-Email=esalexeev@gmail.com
|
||||||
X-KDE-PluginInfo-Name=org.kde.plasma.desktoppanel
|
X-KDE-PluginInfo-Name=org.kde.plasma.desktoppanel
|
||||||
X-KDE-PluginInfo-Version=3.1.0
|
X-KDE-PluginInfo-Version=3.1.1
|
||||||
X-KDE-PluginInfo-Website=https://arcanis.me/projects/awesome-widgets/
|
X-KDE-PluginInfo-Website=https://arcanis.me/projects/awesome-widgets/
|
||||||
X-KDE-PluginInfo-Category=System Information
|
X-KDE-PluginInfo-Category=System Information
|
||||||
X-KDE-PluginInfo-Depends=
|
X-KDE-PluginInfo-Depends=
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
find_package(Gettext REQUIRED)
|
find_package(Gettext REQUIRED)
|
||||||
|
|
||||||
# main qt libraries
|
# main qt libraries
|
||||||
find_package(Qt5 5.4.0 REQUIRED COMPONENTS Core DBus Network Qml Widgets)
|
find_package(Qt5 5.6.0 REQUIRED COMPONENTS Core DBus Network Qml Widgets)
|
||||||
add_definitions(
|
add_definitions(
|
||||||
${Qt5Core_DEFINITIONS} ${Qt5DBus_DEFINITIONS} ${Qt5Network_DEFINITIONS}
|
${Qt5Core_DEFINITIONS} ${Qt5DBus_DEFINITIONS} ${Qt5Network_DEFINITIONS}
|
||||||
${Qt5Qml_DEFINITIONS} ${Qt5Widgets_DEFINITIONS}
|
${Qt5Qml_DEFINITIONS} ${Qt5Widgets_DEFINITIONS}
|
||||||
|
Loading…
Reference in New Issue
Block a user