Skip to content

Commit b8a79db

Browse files
committed
Version 0.0.14-rc1
1 parent a5d73f1 commit b8a79db

File tree

6 files changed

+30
-14
lines changed

6 files changed

+30
-14
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@ jobs:
4747
cxx: "clang++"
4848

4949
qt_version:
50-
- "6.9.1"
51-
50+
- "6.9.2"
5251
include:
5352
- generators: "Ninja"
5453
- build_type: "Release"

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.2"
7-
APP_VERSION="0.0.13"
7+
APP_VERSION="0.0.14-rc1"
88

99
NAME="qtedit4-qt${QT_VERSION}-v${APP_VERSION}-dev-x86_64"
1010
QTDIR="$HOME/qt/${QT_VERSION}/gcc_64"

docs/release-2025-10.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
**Full Changelog**: https://github.com/diegoiast/qtedit4/compare/v0.0.13...v0.0.14-rc1
2+
3+
# October 2025 - release
4+
5+
A maintanence release, no big updates.
6+
7+
Selections are restored in opened files. You can choose the console fonts. Cargo bugs
8+
are finally fixed. Copying a full document works as expected.
9+
10+
## Changelog
11+
* Indenter::indentBlock(): use Qt::key instead of QChar - https://github.com/diegoiast/qutepart-cpp/issues/45
12+
* File manager: right click on dir - add as project - https://github.com/diegoiast/qtedit4/issues/11
13+
* Project Manager: output should follow editor console - https://github.com/diegoiast/qtedit4/issues/111
14+
* Projectmanager: QProcess::openChannels: Inconsistent stderr channel configuration - https://github.com/diegoiast/qtedit4/issues/119
15+
* ProjectManager: cargo projects have no executables - https://github.com/diegoiast/qtedit4/issues/115
16+
* Editor: copying all lines does not add new line - https://github.com/diegoiast/qutepart-cpp/issues/47
17+

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.13"
1+
#define VersionString "0.0.14-rc1"
22
#define AppId "1f7e9ebf-ed92-4d88-8eac-89e3fe53282c"
33
#define VC_Redist_URL "https://aka.ms/vs/17/release/vc_redist.x64.exe"
44

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.13");
34+
QCoreApplication::setApplicationVersion("0.0.14-rc1");
3535

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

updates.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010
"mandatory": true
1111
},
1212
"windows-testing": {
13-
"open-url": "https://github.com/diegoiast/qtedit4/releases/tag/v0.0.13",
14-
"latest-version": "0.0.13",
13+
"open-url": "https://github.com/diegoiast/qtedit4/releases/tag/v0.0.14-rc1",
14+
"latest-version": "0.0.14-rc1",
1515
"download-url":
16-
"https://github.com/diegoiast/qtedit4/releases/download/v0.0.13/qtedit4-qt6.9.2-v0.0.13-x86_64.exe",
16+
"https://github.com/diegoiast/qtedit4/releases/download/v0.0.14-rc1/qtedit4-qt6.9.2-v0.0.14-rc1-x86_64.exe",
1717
"changelog":
18-
"Syntax highlighter fixes, Rust building fixes, indentation of selected block, move tabs with keyboard, closing tabs on splits works as expected, Windows 10/11 install fixes",
18+
"Add project via file operations menu, cargo build fixed, change console font",
1919
"mandatory": true
2020
},
2121
"linux": {
@@ -28,13 +28,13 @@
2828
"mandatory": true
2929
},
3030
"linux-testing": {
31-
"open-url": "https://github.com/diegoiast/qtedit4/releases/tag/v0.0.13",
32-
"latest-version": "0.0.13",
31+
"open-url": "https://github.com/diegoiast/qtedit4/releases/tag/v0.0.14-rc1",
32+
"latest-version": "0.0.14-rc1",
3333
"download-url":
34-
"https://github.com/diegoiast/qtedit4/releases/download/v0.0.13/qtedit4-qt6.9.2-v0.0.13-x86_64.AppImage",
34+
"https://github.com/diegoiast/qtedit4/releases/download/v0.0.14-rc1/qtedit4-qt6.9.2-v0.0.14-rc1-x86_64.AppImage",
3535
"changelog":
36-
"Syntax highlighter fixes, Rust building fixes, indentation of selected block, move tabs with keyboard, closing tabs on splits works as expected, Windows 10/11 install fixes",
36+
"Add project via file operations menu, cargo build fixed, change console font",
3737
"mandatory": true
3838
}
3939
}
40-
}
40+
}

0 commit comments

Comments
 (0)