Skip to content

Commit 702e053

Browse files
committed
Version v0.0.11
1 parent 3da0bd1 commit 702e053

File tree

4 files changed

+24
-20
lines changed

4 files changed

+24
-20
lines changed

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -x
44
set -e
55

66
QT_VERSION="6.9.1"
7-
APP_VERSION="0.0.11-alpha1"
7+
APP_VERSION="0.0.11"
88

99

1010
NAME="qtedit4-qt${QT_VERSION}-v${APP_VERSION}-dev-x86_64"

setup_script.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#define VersionString "0.0.11-alpha1"
1+
#define VersionString "0.0.11"
22
#define AppId "1f7e9ebf-ed92-4d88-8eac-89e3fe53282c"
33

44
[Setup]

src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ int main(int argc, char *argv[]) {
3131

3232
QApplication app(argc, argv);
3333
QCoreApplication::setApplicationName("qtedit4");
34-
QCoreApplication::setApplicationVersion("0.0.11-alpha1");
34+
QCoreApplication::setApplicationVersion("0.0.11");
3535

3636
#if defined(WIN32)
3737
// default style on windows is ugly and unusable.

updates.json

Lines changed: 21 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,40 @@
11
{
22
"updates": {
33
"windows": {
4-
"open-url": "https://github.com/diegoiast/qtedit4/releases/tag/v0.0.10",
5-
"latest-version": "0.0.10",
4+
"open-url": "https://github.com/diegoiast/qtedit4/releases/tag/v0.0.11",
5+
"latest-version": "0.0.11",
66
"download-url":
7-
"https://github.com/diegoiast/qtedit4/releases/download/v0.0.10/qtedit4-qt6.9.0-v0.0.10-x86_64.exe",
8-
"changelog": "Project management updates, split tab fixes, various UI/UX changes",
7+
"https://github.com/diegoiast/qtedit4/releases/download/v0.0.11/qtedit4-qt6.9.1-v0.0.11-x86_64.exe",
8+
"changelog":
9+
"Move tabs between splits, meson support, multiple cursors, reset to defaults settings",
910
"mandatory": true
1011
},
1112
"windows-testing": {
12-
"open-url": "https://github.com/diegoiast/qtedit4/releases/tag/v0.0.11-alpha1",
13-
"latest-version": "0.0.11-alpha1",
13+
"open-url": "https://github.com/diegoiast/qtedit4/releases/tag/v0.0.11",
14+
"latest-version": "0.0.11",
1415
"download-url":
15-
"https://github.com/diegoiast/qtedit4/releases/download/v0.0.11-alpha1/qtedit4-qt6.9.1-v0.0.11-alpha1-x86_64.exe",
16-
"changelog": "CTags support, color builds",
16+
"https://github.com/diegoiast/qtedit4/releases/download/v0.0.11/qtedit4-qt6.9.1-v0.0.11-x86_64.exe",
17+
"changelog":
18+
"Move tabs between splits, meson support, multiple cursors, reset to defaults settings",
1719
"mandatory": true
1820
},
1921
"linux": {
20-
"open-url": "https://github.com/diegoiast/qtedit4/releases/tag/v0.0.10",
21-
"latest-version": "0.0.10",
22+
"open-url": "https://github.com/diegoiast/qtedit4/releases/tag/v0.0.11",
23+
"latest-version": "0.0.11",
2224
"download-url":
23-
"https://github.com/diegoiast/qtedit4/releases/download/v0.0.10/qtedit4-qt6.9.0-v0.0.10-x86_64.AppImage",
24-
"changelog": "Project management updates, split tab fixes, various UI/UX changes",
25+
"https://github.com/diegoiast/qtedit4/releases/download/v0.0.11/qtedit4-qt6.9.1-v0.0.11-x86_64.AppImage",
26+
"changelog":
27+
"Move tabs between splits, meson support, multiple cursors, reset to defaults settings",
2528
"mandatory": true
2629
},
2730
"linux-testing": {
28-
"open-url": "https://github.com/diegoiast/qtedit4/releases/tag/v0.0.11-alpha1",
29-
"latest-version": "0.0.11-alpha1",
31+
"open-url": "https://github.com/diegoiast/qtedit4/releases/tag/v0.0.11",
32+
"latest-version": "0.0.11",
3033
"download-url":
31-
"https://github.com/diegoiast/qtedit4/releases/download/v0.0.11-alpha1/qtedit4-qt6.9.1-v0.0.11-alpha1-x86_64.AppImage",
32-
"changelog": "Various UI/UX changes",
34+
"https://github.com/diegoiast/qtedit4/releases/download/v0.0.11/qtedit4-qt6.9.1-v0.0.11-x86_64.AppImage",
35+
"changelog":
36+
"Move tabs between splits, meson support, multiple cursors, reset to defaults settings",
3337
"mandatory": true
3438
}
3539
}
36-
}
40+
}

0 commit comments

Comments
 (0)