Skip to content

Commit 2e5d04b

Browse files
authored
chore(release): releasing version 1.9.1 (#1897)
1 parent 72ae6c7 commit 2e5d04b

File tree

6 files changed

+14
-5
lines changed

6 files changed

+14
-5
lines changed

.github/releasers/releaser_gui_windows_installer.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ BUILD_DIR="${ROOT_DIR}/build"
88
PACKAGE_NAME="pactus-gui_${VERSION}"
99
PACKAGE_DIR="${ROOT_DIR}/${PACKAGE_NAME}"
1010
FILE_NAME="${PACKAGE_NAME}_windows_amd64"
11-
INNO_PATH="/c/Program Files (x86)/Inno Setup 6"
1211

1312
echo "🚀 Starting Pactus GUI Windows packaging..."
1413

@@ -56,6 +55,7 @@ Filename:"{app}\\pactus-gui\\pactus-gui.exe"; Description:"Launch Pactus"; Flags
5655
EOF
5756

5857
# Build installer
58+
INNO_PATH="/c/Program Files (x86)/Inno Setup 6"
5959
INNO_DIR=$(cygpath -w -s "${INNO_PATH}")
6060
"${INNO_DIR}/ISCC.exe" "${ROOT_DIR}/inno.iss"
6161
mv "Output/mysetup.exe" "${BUILD_DIR}/unsigned/${FILE_NAME}_installer.exe"

.github/workflows/releaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ jobs:
150150
name: [windows_amd64]
151151
include:
152152
- name: windows_amd64
153-
runner: windows-latest
153+
runner: windows-2022
154154

155155
defaults:
156156
run:

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [1.9.1](https://github.com/pactus-project/pactus/compare/v1.9.0...v1.9.1) (2025-09-24)
4+
5+
### Fix
6+
7+
- **gtk**: ensure GTK starts on main thread
8+
- **gtk**: change fontmap backend for macOS ([#1884](https://github.com/pactus-project/pactus/pull/1884))
9+
- **gtk**: resolve crash issue on MacOs ([#1882](https://github.com/pactus-project/pactus/pull/1882))
10+
311
## [1.9.0](https://github.com/pactus-project/pactus/compare/v1.8.0...v1.9.0) (2025-09-10)
412

513
### Feat

cmd/gtk/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ func init() {
3939
// Changing the PANGOCAIRO_BACKEND is necessary on MacOS to render emoji
4040
_ = os.Setenv("PANGOCAIRO_BACKEND", "fontconfig")
4141
}
42-
43-
gtk.Init(nil)
4442
}
4543

4644
func main() {
@@ -50,6 +48,8 @@ func main() {
5048
runtime.UnlockOSThread()
5149
runtime.LockOSThread()
5250

51+
gtk.Init(nil)
52+
5353
// Create a new app.
5454
app, err := gtk.ApplicationNew(appID, glib.APPLICATION_NON_UNIQUE)
5555
fatalErrorCheck(err)

docs/patching.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ NEXT_VER="1.9.2"
5757
BASE_BRANCH="1.9.x"
5858
TAG_NAME="v${CUR_VER}"
5959
TAG_MSG="Version ${CUR_VER}"
60+
```
6061

6162
## 5. Follow the Releasing Document
6263

version/version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"major": 1,
33
"minor": 9,
4-
"patch": 0,
4+
"patch": 1,
55
"meta": "",
66
"alias": "Lisbon"
77
}

0 commit comments

Comments
 (0)