Skip to content

Commit 9ea5028

Browse files
committed
Version 0.0.14-rc2
1 parent 1aafcd6 commit 9ea5028

File tree

6 files changed

+22
-15
lines changed

6 files changed

+22
-15
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ else()
2828
include(cmake/CPM.cmake)
2929
include(cmake/icons-breeze.cmake)
3030

31-
CPMAddPackage("gh:diegoiast/qmdilib#cd7b24828c21f8fe82297765840b1464b30e8f2c")
32-
CPMAddPackage("gh:diegoiast/qutepart-cpp#43281e5181e3304afedc046ccfe90caff7556a41")
31+
CPMAddPackage("gh:diegoiast/qmdilib#c6eab5a342e9662695b8929476303745615b2978")
32+
CPMAddPackage("gh:diegoiast/qutepart-cpp#5d166608410357432bd227a3eb07d21a786c8a08")
3333
CPMAddPackage("gh:diegoiast/command-palette-widget#0900f97d7b75fb05c83b0ea83fdb2f908cb6b8a9")
3434
CPMAddPackage("gh:palacaze/image-viewer#125ea784f93327b471cd9b6b156285e40e70280a")
3535
CPMAddPackage("gh:dridk/QJsonModel#f5fa5988c0ee52fff39a42973c964d5480951f86")

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.14-rc1"
7+
APP_VERSION="0.0.14-rc2"
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: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,20 @@
1-
**Full Changelog**: https://github.com/diegoiast/qtedit4/compare/v0.0.13...v0.0.14-rc1
1+
**Full Changelog**: https://github.com/diegoiast/qtedit4/compare/v0.0.13...v0.0.14-rc2
22

33
# October 2025 - release
44

55
A maintanence release, no big updates.
66

7-
Selections are restored in opened files. You can choose the console fonts. Cargo bugs
7+
Selections are restored in opened files. Unsaved files are restored without saving (they
8+
are actually saved to a temp location). You can modify the console fonts. Cargo bugs
89
are finally fixed. Copying a full document works as expected.
910

11+
CMake dependencies are not locked with sha1, instead of following a branch. For reproducibility.
12+
1013
## Changelog
14+
* Meta: Save IDE state more periodically - https://github.com/diegoiast/qtedit4/issues/124
15+
* Completer: an empty line at the end - https://github.com/diegoiast/qutepart-cpp/issues/36
16+
* ProjectManager: target run is hard to find - https://github.com/diegoiast/qtedit4/issues/98
17+
* Text editor: Save content of unnamed files - https://github.com/diegoiast/qtedit4/issues/19
1118
* Indenter::indentBlock(): use Qt::key instead of QChar - https://github.com/diegoiast/qutepart-cpp/issues/45
1219
* File manager: right click on dir - add as project - https://github.com/diegoiast/qtedit4/issues/11
1320
* Project Manager: output should follow editor console - https://github.com/diegoiast/qtedit4/issues/111

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.14-rc1"
1+
#define VersionString "0.0.14-rc2"
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.14-rc1");
34+
QCoreApplication::setApplicationVersion("0.0.14-rc2");
3535

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

updates.json

Lines changed: 8 additions & 8 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.14-rc1",
14-
"latest-version": "0.0.14-rc1",
13+
"open-url": "https://github.com/diegoiast/qtedit4/releases/tag/v0.0.14-rc2",
14+
"latest-version": "0.0.14-rc2",
1515
"download-url":
16-
"https://github.com/diegoiast/qtedit4/releases/download/v0.0.14-rc1/qtedit4-qt6.9.2-v0.0.14-rc1-x86_64.exe",
16+
"https://github.com/diegoiast/qtedit4/releases/download/v0.0.14-rc2/qtedit4-qt6.8.3-v0.0.14-rc2-x86_64.exe",
1717
"changelog":
18-
"Add project via file operations menu, cargo build fixed, change console font",
18+
"Add project via file operations menu, cargo build fixed, change console font, filters for exe/tasks, save IDE state",
1919
"mandatory": true
2020
},
2121
"linux": {
@@ -28,12 +28,12 @@
2828
"mandatory": true
2929
},
3030
"linux-testing": {
31-
"open-url": "https://github.com/diegoiast/qtedit4/releases/tag/v0.0.14-rc1",
32-
"latest-version": "0.0.14-rc1",
31+
"open-url": "https://github.com/diegoiast/qtedit4/releases/tag/v0.0.14-rc2",
32+
"latest-version": "0.0.14-rc2",
3333
"download-url":
34-
"https://github.com/diegoiast/qtedit4/releases/download/v0.0.14-rc1/qtedit4-qt6.9.2-v0.0.14-rc1-x86_64.AppImage",
34+
"https://github.com/diegoiast/qtedit4/releases/download/v0.0.14-rc2/qtedit4-qt6.8.3-v0.0.14-rc2-x86_64.AppImage",
3535
"changelog":
36-
"Add project via file operations menu, cargo build fixed, change console font",
36+
"Add project via file operations menu, cargo build fixed, change console font, filters for exe/tasks, save IDE state",
3737
"mandatory": true
3838
}
3939
}

0 commit comments

Comments
 (0)