forked from KDAB/KDDockWidgets
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
1,168 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,7 @@ jobs: | |
os: | ||
- ubuntu-latest | ||
- windows-latest | ||
- macos-latest | ||
- macos-13 | ||
|
||
preset: | ||
- name: ci-dev-qt5 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
# SPDX-FileCopyrightText: 2024 Klarälvdalens Datakonsult AB, a KDAB Group company <[email protected]> | ||
# | ||
# SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only | ||
|
||
# On demand flutter action to trigger flutter pub upgrade | ||
|
||
name: (Scheduled) Runs flutter pub upgrade | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 1 * *' # monthly | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: true | ||
|
||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: "main" # always main branch | ||
|
||
- name: Install dependencies | ||
run: | | ||
sudo apt update -qq | ||
sudo apt install wget curl file unzip zip xz-utils -y | ||
- name: Install Flutter SDK | ||
uses: subosito/flutter-action@v2 | ||
with: | ||
flutter-version: '3.19.6' | ||
channel: 'stable' | ||
|
||
- name: Setup git author name | ||
uses: fregante/setup-git-user@v2 | ||
|
||
- name: pub upgrade on flutter_tests_embedder | ||
run: | | ||
cd tests/flutter_tests_embedder/ | ||
flutter pub upgrade | ||
- name: pub upgrade on flutter_tests_embedder | ||
run: | | ||
cd tests/flutter_tests_embedder/ | ||
flutter pub upgrade --major-versions | ||
- name: pub upgrade on examples | ||
run: | | ||
cd examples/flutter | ||
flutter pub upgrade --major-versions | ||
- name: pub upgrade on src/flutter | ||
run: | | ||
cd src/flutter | ||
flutter pub upgrade --major-versions | ||
- name: pub upgrade on src/flutter/dart | ||
run: | | ||
cd src/flutter/dart | ||
flutter pub upgrade --major-versions | ||
- name: Create PR | ||
run: sh src/flutter/create_pub_upgrade_pr.sh | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
kddockwidgets (2.1.0) release candidate; urgency=high | ||
|
||
* 2.1.0 final | ||
|
||
-- Allen Winter <[email protected]> Wed, 08 May 2024 12:00:00 -0500 | ||
|
||
kddockwidgets (2.0.0) release candidate; urgency=high | ||
|
||
* 2.0.0 final | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
Format: 1.0 | ||
Source: kddockwidgets | ||
Version: 2.0.0-1 | ||
Version: 2.1.0-1 | ||
Binary: kddockwidgets | ||
Maintainer: Allen Winter <[email protected]> | ||
Architecture: any | ||
Build-Depends: debhelper (>=9), cdbs, cmake, qtbase5-dev, qtbase5-private-dev, libqt5x11extras5-dev, libfontconfig-dev, libfreetype-dev | ||
|
||
Files: | ||
00000000000000000000000000000000 00000 qt5-kddockwidgets-2.0.0.tar.gz | ||
00000000000000000000000000000000 00000 qt5-kddockwidgets-2.1.0.tar.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Name: qt5-kddockwidgets | ||
Version: 2.0.0 | ||
Version: 2.1.0 | ||
Release: 1 | ||
Summary: KDAB's Dock Widget Framework for Qt5 | ||
Source0: %{name}-%{version}.tar.gz | ||
|
@@ -98,6 +98,8 @@ cmake . -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release | |
%{_libdir}/libkddockwidgets.so | ||
|
||
%changelog | ||
* Wed May 08 2024 Allen Winter <[email protected]> 2.1.0 | ||
2.1.0 final | ||
* Tue Dec 05 2023 Allen Winter <[email protected]> 2.0.0 | ||
2.0.0 final | ||
* Wed May 03 2023 Allen Winter <[email protected]> 1.7.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
Format: 1.0 | ||
Source: kddockwidgets | ||
Version: 2.0.0-1 | ||
Version: 2.1.0-1 | ||
Binary: kddockwidgets | ||
Maintainer: Allen Winter <[email protected]> | ||
Architecture: any | ||
Build-Depends: debhelper (>=9), cdbs, cmake, qt6-base-dev, qt6-base-private-dev, libgl1-mesa-dev, libfontconfig-dev, libfreetype-dev | ||
|
||
Files: | ||
00000000000000000000000000000000 00000 qt6-kddockwidgets-2.0.0.tar.gz | ||
00000000000000000000000000000000 00000 qt6-kddockwidgets-2.1.0.tar.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Name: qt6-kddockwidgets | ||
Version: 2.0.0 | ||
Version: 2.1.0 | ||
Release: 1 | ||
Summary: KDAB's Dock Widget Framework for Qt6 | ||
Source0: %{name}-%{version}.tar.gz | ||
|
@@ -87,6 +87,8 @@ cmake . -DCMAKE_INSTALL_PREFIX=/usr -DKDDockWidgets_QT6=True -DCMAKE_BUILD_TYPE= | |
%{_libdir}/qt6/mkspecs/modules/* | ||
|
||
%changelog | ||
* Wed May 08 2024 Allen Winter <[email protected]> 2.1.0 | ||
2.1.0 final | ||
* Tue Dec 05 2023 Allen Winter <[email protected]> 2.0.0 | ||
2.0.0 final | ||
* Wed May 03 2023 Allen Winter <[email protected]> 1.7.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.