Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nheko
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nheko Reborn
nheko
Commits
dfab0c92
Verified
Commit
dfab0c92
authored
3 years ago
by
Nicolas Werner
Browse files
Options
Downloads
Patches
Plain Diff
Release 0.9.1
parent
22fa528f
No related branches found
Branches containing commit
Tags
v0.9.1
Tags containing commit
No related merge requests found
Pipeline
#2334
passed
3 years ago
Stage: build
Stage: deploy
Changes
4
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CHANGELOG.md
+56
-0
56 additions, 0 deletions
CHANGELOG.md
CMakeLists.txt
+1
-1
1 addition, 1 deletion
CMakeLists.txt
appveyor.yml
+5
-5
5 additions, 5 deletions
appveyor.yml
resources/nheko.appdata.xml
+1
-0
1 addition, 0 deletions
resources/nheko.appdata.xml
with
63 additions
and
6 deletions
CHANGELOG.md
+
56
−
0
View file @
dfab0c92
# Changelog
## [0.9.1] -- 2021-12-22
### Highlights
-
Support pinned messages.
### Features
-
Add recently used reactions. (LorenDB)
-
Show spaces as a tree, that allows you to collapse sections.
-
Add a filter for direct chats
### Improvements
-
Set the app_id on Wayland. Useful for custom WM rules.
-
Set notification category on Linux.
-
Make Nheko show up in system notification settings on Linux.
-
Make notification count bubbles expand some more. (LorenDB)
-
Strip space chars from recovery passphrase. Should make them easier to enter.
-
Make it obvious that undecryptable messages are a notification and not the actual message. (LorenDB)
-
Added window role to image overlay. (Thulinma)
-
Only show room pack button, when you can actually create one.
-
Show some avatar for image packs.
-
Allow clicking links in replies.
-
Limit max memory usage of images.
-
Allow swiping between views in single page mode Allows access to spaces on mobile for example.
-
Get rid of a few clang-tidy warnings. (Marcus Hoffmann)
-
Navigate to subspaces by clicking on them.
-
Delete rooms even if we fail to leave.
-
Change QML UI for redactions.
-
If the locale is set to C, force english locale This fixes date formatting as well as count based translations.
-
Use a more random hash to generate user colors.
-
Mark rooms as direct chats in the proper places.
-
Update macOS icon package to macOS-y style. (Quinn)
-
Preliminary gstreamer 1.20 compatibility.
### Translations
-
Indonesian (Linerly)
-
Estonian (Priit Jõerüüt)
-
French (Eldred HABERT)
-
Dutch (Thulinma)
-
Esperanto (Tirifto)
-
Finnish (Priit Jõerüüt)
-
Italian (Elia Tomasi)
-
French (Mayeul Cantan)
### Bugfixes
-
Fix crash when receiving matrix uri.
-
Make opening room members from rooms settings dialog work. (LorenDB)
-
Fix turnserver check not being started when restoring from cache.
-
Vertically align message input.
-
Properly set position of resize handler after letting it go.
-
Fix escaped html showing up in playable media message labels.
## [0.9.0] -- 2021-11-19
### Highlights
...
...
This diff is collapsed.
Click to expand it.
CMakeLists.txt
+
1
−
1
View file @
dfab0c92
...
...
@@ -100,7 +100,7 @@ include(GNUInstallDirs)
set
(
CPACK_PACKAGE_VERSION_MAJOR
"0"
)
set
(
CPACK_PACKAGE_VERSION_MINOR
"9"
)
set
(
CPACK_PACKAGE_VERSION_PATCH
"
0
"
)
set
(
CPACK_PACKAGE_VERSION_PATCH
"
1
"
)
set
(
PROJECT_VERSION_MAJOR
${
CPACK_PACKAGE_VERSION_MAJOR
}
)
set
(
PROJECT_VERSION_MINOR
${
CPACK_PACKAGE_VERSION_MINOR
}
)
set
(
PROJECT_VERSION_PATCH
${
CPACK_PACKAGE_VERSION_PATCH
}
)
...
...
This diff is collapsed.
Click to expand it.
appveyor.yml
+
5
−
5
View file @
dfab0c92
---
version
:
0.9.
0
-{build}
version
:
0.9.
1
-{build}
configuration
:
Release
image
:
Visual Studio
2019
...
...
@@ -31,8 +31,8 @@ build_script:
# VERSION format: branch-master/branch-1.2
# INSTVERSION format: x.y.z
# WINVERSION format: 9999.0.0.123/1.2.0.234
-
if "%APPVEYOR_REPO_TAG%"=="false" set INSTVERSION=0.9.
0
-
if "%APPVEYOR_REPO_TAG%"=="false" set VERSION=0.9.
0
-
if "%APPVEYOR_REPO_TAG%"=="false" set INSTVERSION=0.9.
1
-
if "%APPVEYOR_REPO_TAG%"=="false" set VERSION=0.9.
1
-
if "%APPVEYOR_REPO_TAG%"=="false" if "%APPVEYOR_REPO_BRANCH%"=="master" set INSTVERSION=9999.0
-
if "%APPVEYOR_REPO_TAG%"=="false" set WINVERSION=%INSTVERSION%.0.%APPVEYOR_BUILD_NUMBER%
# VERSION format: v1.2.3/v1.3.4
...
...
@@ -94,8 +94,8 @@ after_build:
-
copy %BUILD%\deploy\installer\gui\package.xml installer\packages\io.github.nhekoreborn.nheko\meta
-
copy %BUILD%\deploy\installer\gui\installscript.qs installer\packages\io.github.nhekoreborn.nheko\meta
# Amend version and date
-
sed -i "s/__VERSION__/0.9.
0
/" installer\config\config.xml
-
sed -i "s/__VERSION__/0.9.
0
/" installer\packages\io.github.nhekoreborn.nheko\meta\package.xml
-
sed -i "s/__VERSION__/0.9.
1
/" installer\config\config.xml
-
sed -i "s/__VERSION__/0.9.
1
/" installer\packages\io.github.nhekoreborn.nheko\meta\package.xml
-
sed -i "s/__DATE__/%DATE%/" installer\packages\io.github.nhekoreborn.nheko\meta\package.xml
# Copy nheko data
-
xcopy NhekoData\*.* installer\packages\io.github.nhekoreborn.nheko\data\*.* /s /e /c /y
...
...
This diff is collapsed.
Click to expand it.
resources/nheko.appdata.xml
+
1
−
0
View file @
dfab0c92
...
...
@@ -53,6 +53,7 @@
<url
type=
"homepage"
>
https://github.com/Nheko-Reborn/nheko
</url>
<update_contact>
https://github.com/Nheko-Reborn
</update_contact>
<releases>
<release
date=
"2021-12-22"
version=
"0.9.1"
/>
<release
date=
"2021-11-19"
version=
"0.9.0"
/>
<release
date=
"2021-04-23"
version=
"0.8.2"
/>
<release
date=
"2021-01-27"
version=
"0.8.1"
/>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment