Skip to content

Commit dc91010

Browse files
committed
Bump version to 0.12.1
1 parent 344c444 commit dc91010

File tree

8 files changed

+24
-8
lines changed

8 files changed

+24
-8
lines changed

.ci/windows/build.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
if defined CI_COMMIT_TAG (
55
set VERSION=%CI_COMMIT_TAG%
66
) else (
7-
set VERSION=v0.12.0
7+
set VERSION=v0.12.1
88
)
99
set INSTVERSION=%VERSION:~1%
1010
set WINVERSION=%VERSION:~1%.%CI_JOB_ID%

.gitlab-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ pages:
9999
#- export LATEST_WINDOWS=$(curl "https://nheko.im/api/v4/projects/2/packages?package_name=windows&order_by=version&sort=desc" | jq -r '.[0].version')
100100
# hardcoded to avoid fuzzy matching
101101
- export LATEST_WINDOWS='0.12.0.35798'
102-
- sed "s/0.12.0.0/${LATEST_WINDOWS_NIGHTLY}/g" -i resources/NhekoNightly.appinstaller
103-
- sed "s/0.12.0.0/${LATEST_WINDOWS}/g" -i resources/Nheko.appinstaller
102+
- sed "s/0.12.1.0/${LATEST_WINDOWS_NIGHTLY}/g" -i resources/NhekoNightly.appinstaller
103+
- sed "s/0.12.1.0/${LATEST_WINDOWS}/g" -i resources/Nheko.appinstaller
104104
- mkdir public
105105
- mv resources/NhekoNightly.appinstaller public
106106
- mv resources/Nheko.appinstaller public

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
# Changelog
22

3-
## [0.12.1] -- unreleased
3+
## [0.12.1] -- 2025-08-10
4+
5+
### Security
6+
7+
- Fix html escaping in several locations.
8+
- Thank you, HarHarLinks, for the report.
9+
- Encode urls in tooltips to prevent confusion.
10+
- Thank you, Emma, for the report.
11+
- Mark downloads with a "mark of the web" on Windows to warn before executing them.
12+
- Thank you, DarkKirb, for the report.
413

514
### Features
615

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ include(GNUInstallDirs)
115115

116116
set(CPACK_PACKAGE_VERSION_MAJOR "0")
117117
set(CPACK_PACKAGE_VERSION_MINOR "12")
118-
set(CPACK_PACKAGE_VERSION_PATCH "0")
118+
set(CPACK_PACKAGE_VERSION_PATCH "1")
119119
set(PROJECT_VERSION_MAJOR ${CPACK_PACKAGE_VERSION_MAJOR})
120120
set(PROJECT_VERSION_MINOR ${CPACK_PACKAGE_VERSION_MINOR})
121121
set(PROJECT_VERSION_PATCH ${CPACK_PACKAGE_VERSION_PATCH})

resources/AppxManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
55
xmlns:uap10="http://schemas.microsoft.com/appx/manifest/uap/windows10/10"
66
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities">
7-
<Identity Name="im.nheko.Nheko" Version="0.12.0.0" Publisher="CN=Nicolas Werner, O=Nicolas Werner, L=Munich, S=Bavaria, C=DE" ProcessorArchitecture="x64"/>
7+
<Identity Name="im.nheko.Nheko" Version="0.12.1.0" Publisher="CN=Nicolas Werner, O=Nicolas Werner, L=Munich, S=Bavaria, C=DE" ProcessorArchitecture="x64"/>
88
<Properties>
99
<DisplayName>Nheko</DisplayName>
1010
<PublisherDisplayName>Nheko-Reborn</PublisherDisplayName>

resources/Nheko.appinstaller

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<AppInstaller Uri="https://nheko-reborn.pages.nheko.im/nheko/Nheko.appinstaller" Version="0.0.0.1" xmlns="http://schemas.microsoft.com/appx/appinstaller/2018">
3-
<MainPackage Name="im.nheko.Nheko" Version="0.12.0.0" Publisher="CN=Nicolas Werner, O=Nicolas Werner, L=Munich, S=Bavaria, C=DE" Uri="https://nheko.im/api/v4/projects/2/packages/generic/windows/0.12.0.0/nheko.msix" ProcessorArchitecture="x64" />
3+
<MainPackage Name="im.nheko.Nheko" Version="0.12.1.0" Publisher="CN=Nicolas Werner, O=Nicolas Werner, L=Munich, S=Bavaria, C=DE" Uri="https://nheko.im/api/v4/projects/2/packages/generic/windows/0.12.1.0/nheko.msix" ProcessorArchitecture="x64" />
44
<UpdateSettings>
55
<!-- We can't set this to check only once a month, so just check once a week. If the user doesn't want that ping, they should install the msix directly. -->
66
<OnLaunch HoursBetweenUpdateChecks="168" ShowPrompt="true" />

resources/NhekoNightly.appinstaller

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<AppInstaller Uri="https://nheko-reborn.pages.nheko.im/nheko/NhekoNightly.appinstaller" Version="0.0.0.1" xmlns="http://schemas.microsoft.com/appx/appinstaller/2018">
3-
<MainPackage Name="im.nheko.Nheko" Version="0.12.0.0" Publisher="CN=Nicolas Werner, O=Nicolas Werner, L=Munich, S=Bavaria, C=DE" Uri="https://nheko.im/api/v4/projects/2/packages/generic/windows-nightly/0.12.0.0/nheko.msix" ProcessorArchitecture="x64" />
3+
<MainPackage Name="im.nheko.Nheko" Version="0.12.1.0" Publisher="CN=Nicolas Werner, O=Nicolas Werner, L=Munich, S=Bavaria, C=DE" Uri="https://nheko.im/api/v4/projects/2/packages/generic/windows-nightly/0.12.1.0/nheko.msix" ProcessorArchitecture="x64" />
44
<UpdateSettings>
55
<!-- We can't set this to check only once a month, so just check once a week. If the user doesn't want that ping, they should install the msix directly. -->
66
<OnLaunch HoursBetweenUpdateChecks="168" ShowPrompt="true" />

resources/nheko.appdata.xml.in

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,13 @@
6262
<url type="homepage">https://github.com/Nheko-Reborn/nheko</url>
6363
<update_contact>https://github.com/Nheko-Reborn</update_contact>
6464
<releases>
65+
<release date="2025-08-10" version="0.12.1">
66+
<description>
67+
<p>This release fixes a few security issues around rendering rich text messages. Otherwise it also includes a lot of minor improvements.</p>
68+
</description>
69+
70+
<url>https://github.com/Nheko-Reborn/nheko/releases/tag/v0.12.1</url>
71+
</release>
6572
<release date="2024-06-12" version="0.12.0">
6673
<description>
6774
<p>This release features a complete port to Qt6, intentional mentions, expiring messages, ignoring users, better sticker and emoji handling and much, much more!</p>

0 commit comments

Comments
 (0)