Skip to content

Commit 88f70c0

Browse files
committed
Release 3.5.0
1 parent 338828d commit 88f70c0

File tree

6 files changed

+20
-15
lines changed

6 files changed

+20
-15
lines changed

.github/workflows/release.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ jobs:
2626
VERSION: ${{ steps.version.outputs.VERSION }}
2727

2828
- name: build debian package
29-
run: >
30-
apt update && \
31-
apt install -yq cmake extra-cmake-modules g++ git gettext &&
32-
apt install -yq libkf5i18n-dev libkf5notifications-dev libkf5service-dev
33-
libkf5windowsystem-dev libkf5plasma-dev qtbase5-dev qtdeclarative5-dev
34-
plasma-workspace-dev &&
35-
cmake -B build-deb -DKDE_INSTALL_USE_QT_SYS_PATHS=ON -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Optimization -DBUILD_FUTURE=ON -DBUILD_DEB_PACKAGE=ON sources &&
36-
cd build-deb &&
37-
make package &&
29+
run: |
30+
sudo apt update && \
31+
sudo apt install -yq cmake extra-cmake-modules g++ git gettext make && \
32+
sudo apt install -yq libkf5i18n-dev libkf5notifications-dev libkf5service-dev \
33+
libkf5windowsystem-dev libkf5plasma-dev qtbase5-dev qtdeclarative5-dev \
34+
plasma-workspace-dev && \
35+
cmake -B build-deb -DKDE_INSTALL_USE_QT_SYS_PATHS=ON -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Optimization -DBUILD_FUTURE=ON -DBUILD_DEB_PACKAGE=ON sources && \
36+
cd build-deb && \
37+
make package && \
3838
cd ..
3939
4040
- name: release
@@ -45,7 +45,7 @@ jobs:
4545
${{ steps.changelog.outputs.changelog }}
4646
files: |
4747
awesome-widgets-*-src.tar.xz
48-
build-deb/awesome-widgets-*.deb
48+
build-deb/plasma-widget-awesome-widgets-*.deb
4949
fail_on_unmatched_files: true
5050
env:
5151
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

CHANGELOG

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Ver.3.5.0:
2+
+ wayland support
3+
* update code to latest standards
4+
- drop support of windows preview
5+
16
Ver.3.4.2:
27
+ Italian translation (#136, thanks to @avivace)
38
+ stooq quotes support (default) (#131)

sources/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ set(PROJECT_AUTHOR "Evgeniy Alekseev")
1515
set(PROJECT_CONTACT "esalexeev@gmail.com")
1616
set(PROJECT_LICENSE "GPL3")
1717
set(PROJECT_VERSION_MAJOR "3")
18-
set(PROJECT_VERSION_MINOR "4")
19-
set(PROJECT_VERSION_PATCH "3")
18+
set(PROJECT_VERSION_MINOR "5")
19+
set(PROJECT_VERSION_PATCH "0")
2020
set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")
2121
# append git version if any
2222
set(PROJECT_COMMIT_SHA "Commit hash" CACHE INTERNAL "")

sources/awesome-widget/package/metadata.desktop

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ X-Plasma-MainScript=ui/main.qml
1919
X-KDE-PluginInfo-Author=Evgeniy Alekseev aka arcanis
2020
X-KDE-PluginInfo-Email=esalexeev@gmail.com
2121
X-KDE-PluginInfo-Name=org.kde.plasma.awesomewidget
22-
X-KDE-PluginInfo-Version=3.4.3
22+
X-KDE-PluginInfo-Version=3.5.0
2323
X-KDE-PluginInfo-Website=https://arcanis.me/projects/awesome-widgets/
2424
X-KDE-PluginInfo-Category=System Information
2525
X-KDE-PluginInfo-License=GPLv3

sources/desktop-panel/package/metadata.desktop

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ X-Plasma-MainScript=ui/main.qml
1919
X-KDE-PluginInfo-Author=Evgeniy Alekseev aka arcanis
2020
X-KDE-PluginInfo-Email=esalexeev@gmail.com
2121
X-KDE-PluginInfo-Name=org.kde.plasma.desktoppanel
22-
X-KDE-PluginInfo-Version=3.4.3
22+
X-KDE-PluginInfo-Version=3.5.0
2323
X-KDE-PluginInfo-Website=https://arcanis.me/projects/awesome-widgets/
2424
X-KDE-PluginInfo-Category=System Information
2525
X-KDE-PluginInfo-License=GPLv3

sources/version.h.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ const char STATIC_KEYS[] = "time,isotime,shorttime,longtime,tstime,ctime,uptime,
6767
// links
6868
const char HOMEPAGE[] = "https://arcanis.me/projects/awesome-widgets";
6969
const char REPOSITORY[] = "https://github.com/arcan1s/awesome-widgets";
70-
const char RELEASES[] = "https://github.com/arcan1s/awesome-widgets/releases/tag/V.";
70+
const char RELEASES[] = "https://github.com/arcan1s/awesome-widgets/releases/tag/";
7171
const char VERSION_API[] = "https://api.github.com/repos/arcan1s/awesome-widgets/releases";
7272
const char BUGTRACKER[] = "https://github.com/arcan1s/awesome-widgets/issues";
7373
const char BUGTRACKER_API[] = "https://arcanis.me/repos/arcan1s/awesome-widgets/issues";

0 commit comments

Comments
 (0)