mirror of
https://github.com/arcan1s/awesome-widgets.git
synced 2025-07-25 19:49:55 +00:00
Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
3abcd8d6ae | |||
0725288595 | |||
8342d65ffa | |||
571417f786 | |||
e3d24d1890 |
3
.gitignore
vendored
3
.gitignore
vendored
@ -48,3 +48,6 @@ pkg
|
|||||||
# clion settings
|
# clion settings
|
||||||
.idea
|
.idea
|
||||||
cmake-build*
|
cmake-build*
|
||||||
|
|
||||||
|
# clang
|
||||||
|
.cache
|
||||||
|
1
AUTHORS
1
AUTHORS
@ -13,3 +13,4 @@ Steve Lemuel (Chinese)
|
|||||||
Mariusz Kocoń (Polish)
|
Mariusz Kocoń (Polish)
|
||||||
Ibnu Daru Aji (Indonesian)
|
Ibnu Daru Aji (Indonesian)
|
||||||
Antonio Vivace (Italian)
|
Antonio Vivace (Italian)
|
||||||
|
@daveedmee (German)
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
Ver.4.0.2:
|
||||||
|
+ German translation (#172, thanks to daveedmee)
|
||||||
|
|
||||||
|
Ver.4.0.1:
|
||||||
|
- temporary disable tooltip painting in main widget
|
||||||
|
|
||||||
Ver.4.0.0:
|
Ver.4.0.0:
|
||||||
* migration to plasma 6
|
* migration to plasma 6
|
||||||
* dialog windows have been replaced by notifications
|
* dialog windows have been replaced by notifications
|
||||||
|
@ -75,5 +75,5 @@ Links
|
|||||||
* [Scripts and bars](https://arcanis.me/en/2014/12/19/aw-v21-bells-and-whistles/)
|
* [Scripts and bars](https://arcanis.me/en/2014/12/19/aw-v21-bells-and-whistles/)
|
||||||
* Plasmoid on [kde-look](http://kde-look.org/content/show.php/Awesome+Widgets?content=157124)
|
* Plasmoid on [kde-look](http://kde-look.org/content/show.php/Awesome+Widgets?content=157124)
|
||||||
* DataEngine on [kde-look](http://kde-look.org/content/show.php/Extended+Systemmonitor+DataEngine?content=158773)
|
* DataEngine on [kde-look](http://kde-look.org/content/show.php/Extended+Systemmonitor+DataEngine?content=158773)
|
||||||
* Archlinux [AUR](https://aur.archlinux.org/packages/plasma5-applet-awesome-widgets/) package
|
* Archlinux [AUR](https://aur.archlinux.org/packages/plasma6-applets-awesome-widgets) package
|
||||||
* [OpenSuse](http://software.opensuse.org/search?q=awesome-widgets) packages, [KF5 OpenSuse](http://software.opensuse.org/package/plasma5-awesome-widgets) package
|
* [OpenSuse](http://software.opensuse.org/search?q=awesome-widgets) packages, [KF5 OpenSuse](http://software.opensuse.org/package/plasma5-awesome-widgets) package
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
pkgname=plasma6-applet-awesome-widgets
|
pkgname=plasma6-applet-awesome-widgets
|
||||||
_pkgname=awesome-widgets
|
_pkgname=awesome-widgets
|
||||||
pkgver=4.0.0alpha2
|
pkgver=4.0.2
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="Collection of minimalistic Plasmoids which look like Awesome WM widgets (ex-PyTextMonitor)"
|
pkgdesc="Collection of minimalistic Plasmoids which look like Awesome WM widgets (ex-PyTextMonitor)"
|
||||||
arch=('x86_64')
|
arch=('x86_64')
|
||||||
|
@ -19,7 +19,7 @@ set(PROJECT_CONTACT "esalexeev@gmail.com")
|
|||||||
set(PROJECT_LICENSE "GPL3")
|
set(PROJECT_LICENSE "GPL3")
|
||||||
set(PROJECT_VERSION_MAJOR "4")
|
set(PROJECT_VERSION_MAJOR "4")
|
||||||
set(PROJECT_VERSION_MINOR "0")
|
set(PROJECT_VERSION_MINOR "0")
|
||||||
set(PROJECT_VERSION_PATCH "0")
|
set(PROJECT_VERSION_PATCH "2")
|
||||||
set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")
|
set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")
|
||||||
# append git version if any
|
# append git version if any
|
||||||
set(PROJECT_COMMIT_SHA "Commit hash" CACHE INTERNAL "")
|
set(PROJECT_COMMIT_SHA "Commit hash" CACHE INTERNAL "")
|
||||||
|
@ -130,7 +130,7 @@ PlasmoidItem {
|
|||||||
Plasmoid.userConfiguringChanged(false)
|
Plasmoid.userConfiguringChanged(false)
|
||||||
// connect data
|
// connect data
|
||||||
awKeys.needTextToBeUpdated.connect(needTextUpdate)
|
awKeys.needTextToBeUpdated.connect(needTextUpdate)
|
||||||
awKeys.needToolTipToBeUpdated.connect(needToolTipUpdate)
|
//awKeys.needToolTipToBeUpdated.connect(needToolTipUpdate)
|
||||||
// check updates if required
|
// check updates if required
|
||||||
if (plasmoid.configuration.checkUpdates) return awActions.checkUpdates(false)
|
if (plasmoid.configuration.checkUpdates) return awActions.checkUpdates(false)
|
||||||
}
|
}
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
"Id": "org.kde.plasma.awesomewidget",
|
"Id": "org.kde.plasma.awesomewidget",
|
||||||
"License": "GPLv3",
|
"License": "GPLv3",
|
||||||
"Name": "Awesome Widget",
|
"Name": "Awesome Widget",
|
||||||
"Version": "4.0.0",
|
"Version": "4.0.2",
|
||||||
"Website": "https://arcanis.me/projects/awesome-widgets/"
|
"Website": "https://arcanis.me/projects/awesome-widgets/"
|
||||||
},
|
},
|
||||||
"X-Plasma-API-Minimum-Version": "6.0"
|
"X-Plasma-API-Minimum-Version": "6.0"
|
||||||
|
@ -17,7 +17,6 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <QObject>
|
|
||||||
#include <QVariant>
|
#include <QVariant>
|
||||||
|
|
||||||
|
|
||||||
|
@ -436,7 +436,7 @@ int GraphicalItem::showConfiguration(QWidget *_parent, const QVariant &_args)
|
|||||||
auto ui = new Ui::GraphicalItem();
|
auto ui = new Ui::GraphicalItem();
|
||||||
ui->setupUi(dialog);
|
ui->setupUi(dialog);
|
||||||
|
|
||||||
connect(ui->checkBox_custom, &QCheckBox::stateChanged, [ui](const int state) { changeValue(ui, state); });
|
connect(ui->checkBox_custom, &QCheckBox::checkStateChanged, [ui](const int state) { changeValue(ui, state); });
|
||||||
connect(ui->comboBox_type, &QComboBox::currentIndexChanged, [ui](const int state) { changeCountState(ui, state); });
|
connect(ui->comboBox_type, &QComboBox::currentIndexChanged, [ui](const int state) { changeCountState(ui, state); });
|
||||||
connect(ui->toolButton_activeColor, &QToolButton::clicked, [this, ui]() { changeColor(ui); });
|
connect(ui->toolButton_activeColor, &QToolButton::clicked, [this, ui]() { changeColor(ui); });
|
||||||
connect(ui->toolButton_inactiveColor, &QToolButton::clicked, [this, ui]() { changeColor(ui); });
|
connect(ui->toolButton_inactiveColor, &QToolButton::clicked, [this, ui]() { changeColor(ui); });
|
||||||
@ -472,7 +472,7 @@ int GraphicalItem::showConfiguration(QWidget *_parent, const QVariant &_args)
|
|||||||
|
|
||||||
// update UI
|
// update UI
|
||||||
emit(ui->comboBox_type->currentIndexChanged(ui->comboBox_type->currentIndex()));
|
emit(ui->comboBox_type->currentIndexChanged(ui->comboBox_type->currentIndex()));
|
||||||
emit(ui->checkBox_custom->stateChanged(ui->checkBox_custom->checkState()));
|
emit(ui->checkBox_custom->checkStateChanged(ui->checkBox_custom->checkState()));
|
||||||
|
|
||||||
int ret = dialog->exec();
|
int ret = dialog->exec();
|
||||||
if (ret == 1) {
|
if (ret == 1) {
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
"Id": "org.kde.plasma.desktoppanel",
|
"Id": "org.kde.plasma.desktoppanel",
|
||||||
"License": "GPLv3",
|
"License": "GPLv3",
|
||||||
"Name": "Desktop Panel",
|
"Name": "Desktop Panel",
|
||||||
"Version": "4.0.0",
|
"Version": "4.0.2",
|
||||||
"Website": "https://arcanis.me/projects/awesome-widgets/"
|
"Website": "https://arcanis.me/projects/awesome-widgets/"
|
||||||
},
|
},
|
||||||
"X-Plasma-API-Minimum-Version": "6.0"
|
"X-Plasma-API-Minimum-Version": "6.0"
|
||||||
|
1249
sources/translations/de.po
Normal file
1249
sources/translations/de.po
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user