Skip to content

Commit 207c63a

Browse files
committed
0.1.4-beta1
1 parent b3038d1 commit 207c63a

6 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
cxx: "clang++"
5151

5252
qt_version:
53-
- "6.10.2"
53+
- "6.11.0"
5454
include:
5555
- generators: "Ninja"
5656
- build_type: "Release"

build-appimage.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ if [ "$1" = "--ce" ]; then
1212
fi
1313

1414
APP_NAME="codepointer"
15-
APP_VERSION="0.1.4-alpha1"
16-
QT_VERSION="6.10.2"
15+
APP_VERSION="0.1.4-beta1"
16+
QT_VERSION="6.11.0"
1717

1818
NAME="${APP_NAME}-v${APP_VERSION}${NAME_SUFFIX}-x86_64"
1919
QTDIR="/usr/lib/qt6"

build.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@echo on
22

33
SET matrix_config_build_dir=windows-msvc
4-
SET PATH=c:\Qt\6.10.2\msvc2022_64\bin\;c:\Program Files (x86)\Inno Setup 6\;%PATH%
4+
SET PATH=c:\Qt\6.11.0\msvc2022_64\bin\;c:\Program Files (x86)\Inno Setup 6\;%PATH%
55
SET BUILD_TYPE=OFFICIAL
66

77
RMDIR /s /q "build/%matrix_config_build_dir%"

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

src/main.cpp

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

8686
QApplication app(argc, argv);
8787
QCoreApplication::setApplicationName(CODEPOINTER_APP_NAME);
88-
QCoreApplication::setApplicationVersion("0.1.4-alpha1");
88+
QCoreApplication::setApplicationVersion("0.1.4-beta1");
8989

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

updates.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
"mandatory": true
99
},
1010
"windows-testing": {
11-
"open-url": "https://github.com/codepointerapp/codepointer/releases/tag/v0.1.4-alpha1",
12-
"latest-version": "0.1.4-alpha1",
13-
"download-url": "https://github.com/codepointerapp/codepointer/releases/download/v0.1.4-alpha1/codepointer-v0.1.4-alpha1-x86_64.exe",
11+
"open-url": "https://github.com/codepointerapp/codepointer/releases/tag/v0.1.4-beta1",
12+
"latest-version": "0.1.4-beta1",
13+
"download-url": "https://github.com/codepointerapp/codepointer/releases/download/v0.1.4-beta1/codepointer-v0.1.4-beta1-x86_64.exe",
1414
"changelog": "Better completions for C/C++ using treesitter",
1515
"mandatory": true
1616
},
@@ -22,9 +22,9 @@
2222
"mandatory": true
2323
},
2424
"linux-testing": {
25-
"open-url": "https://github.com/codepointerapp/codepointer/releases/tag/v0.1.4-alpha1",
26-
"latest-version": "0.1.4-alpha1",
27-
"download-url": "https://github.com/codepointerapp/codepointer/releases/download/v0.1.4-alpha1/codepointer-v0.1.4-alpha1-x86_64.AppImage",
25+
"open-url": "https://github.com/codepointerapp/codepointer/releases/tag/v0.1.4-beta1",
26+
"latest-version": "0.1.4-beta1",
27+
"download-url": "https://github.com/codepointerapp/codepointer/releases/download/v0.1.4-beta1/codepointer-v0.1.4-beta1-x86_64.AppImage",
2828
"changelog": "Better completions for C/C++ using treesitter",
2929
"mandatory": true
3030
}

0 commit comments

Comments
 (0)