summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md22
-rw-r--r--CMakeLists.txt2
-rw-r--r--README.md2
-rw-r--r--appveyor.yml12
-rw-r--r--deps/CMakeLists.txt4
-rw-r--r--resources/nheko.appdata.xml1
6 files changed, 33 insertions, 10 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0efbb516..74f6c62f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,28 @@
 
 ## [Unreleased]
 
+## [0.6.4] - 2019-05-22
+
+*Most* of the below fixes are due to updates in mtxclient.  Make sure you compile against 0.2.1
+if you do not use the mtxclient bundled with nheko to get these fixes.
+
+### Features
+- Support V3 Rooms
+
+### Improvements
+- Fix #19
+    - Fix initial sync issue caused by matrix-org/synapse#4898 (thanks @monokelpinguin)
+    - Add additional lmbd max_dbs setting (thanks @AndrewJDR)
+- Update DE translations (thanks @miocho)
+- Update Dutch translations (thanks @vistaus)
+- Fix text input UI bug (thanks @0xd800)
+- Update linkifyMessage to parse HTML better (thanks @monokelpinguin)
+- Update to Boost 1.69.0
+- Fix some memory-leak scenarios due to mismatched new / delete (thanks @monokelpinguin)
+
+### Other Changes
+- mtxclient now builds as a Shared Library by default (instead of statically)
+
 ## [0.6.3] - 2019-02-08
 
 ### Features
diff --git a/CMakeLists.txt b/CMakeLists.txt
index e1f2a7c5..fda60b71 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -16,7 +16,7 @@ include(QtCommon)
 project(nheko LANGUAGES C CXX)
 set(CPACK_PACKAGE_VERSION_MAJOR "0")
 set(CPACK_PACKAGE_VERSION_MINOR "6")
-set(CPACK_PACKAGE_VERSION_PATCH "3")
+set(CPACK_PACKAGE_VERSION_PATCH "4")
 set(PROJECT_VERSION_MAJOR ${CPACK_PACKAGE_VERSION_MAJOR})
 set(PROJECT_VERSION_MINOR ${CPACK_PACKAGE_VERSION_MINOR})
 set(PROJECT_VERSION_PATCH ${CPACK_PACKAGE_VERSION_PATCH})
diff --git a/README.md b/README.md
index 9432aa10..cf7dbbb1 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@ nheko
 ----
 [![Build Status](https://travis-ci.org/Nheko-Reborn/nheko.svg?branch=master)](https://travis-ci.org/Nheko-Reborn/nheko)
 [![Build status](https://ci.appveyor.com/api/projects/status/07qrqbfylsg4hw2h/branch/master?svg=true)](https://ci.appveyor.com/project/redsky17/nheko/branch/master)
-[![Stable Version](https://img.shields.io/badge/download-stable-green.svg)](https://github.com/Nheko-Reborn/nheko/releases/v0.6.3)
+[![Stable Version](https://img.shields.io/badge/download-stable-green.svg)](https://github.com/Nheko-Reborn/nheko/releases/v0.6.4)
 [![Nightly](https://img.shields.io/badge/download-nightly-green.svg)](https://bintray.com/nheko-reborn/nheko/nheko)
 [![#nheko-reborn:matrix.org](https://img.shields.io/matrix/nheko-reborn:matrix.org.svg?label=%23nheko-reborn:matrix.org)](https://matrix.to/#/#nheko-reborn:matrix.org)
 [![AUR: nheko](https://img.shields.io/badge/AUR-nheko-blue.svg)](https://aur.archlinux.org/packages/nheko)
diff --git a/appveyor.yml b/appveyor.yml
index 0504e73e..08251174 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -1,6 +1,6 @@
 ---
 
-version: 0.6.3-{build}
+version: 0.6.4-{build}
 
 configuration: Release
 image: Visual Studio 2017
@@ -39,8 +39,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.6.3
-    - if "%APPVEYOR_REPO_TAG%"=="false" set VERSION=0.6.3
+    - if "%APPVEYOR_REPO_TAG%"=="false" set INSTVERSION=0.6.4
+    - if "%APPVEYOR_REPO_TAG%"=="false" set VERSION=0.6.4
     - 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
@@ -115,9 +115,9 @@ after_build:
     - copy %BUILD%\deploy\installer\cleanup\package.xml installer\packages\com.mujx.nheko.cleanup\meta
     - copy %BUILD%\deploy\installer\cleanup\installscript.qs installer\packages\com.mujx.nheko.cleanup\meta
     # Amend version and date
-    - sed -i "s/__VERSION__/0.6.3/" installer\config\config.xml
-    - sed -i "s/__VERSION__/0.6.3/" installer\packages\com.mujx.nheko\meta\package.xml
-    - sed -i "s/__VERSION__/0.6.3/" installer\packages\com.mujx.nheko.cleanup\meta\package.xml
+    - sed -i "s/__VERSION__/0.6.4/" installer\config\config.xml
+    - sed -i "s/__VERSION__/0.6.4/" installer\packages\com.mujx.nheko\meta\package.xml
+    - sed -i "s/__VERSION__/0.6.4/" installer\packages\com.mujx.nheko.cleanup\meta\package.xml
     - sed -i "s/__DATE__/%DATE%/" installer\packages\com.mujx.nheko\meta\package.xml
     - sed -i "s/__DATE__/%DATE%/" installer\packages\com.mujx.nheko.cleanup\meta\package.xml
     # Copy nheko data
diff --git a/deps/CMakeLists.txt b/deps/CMakeLists.txt
index f04bfbcc..6f8f2616 100644
--- a/deps/CMakeLists.txt
+++ b/deps/CMakeLists.txt
@@ -46,9 +46,9 @@ set(BOOST_SHA256
 
 set(
   MTXCLIENT_URL
-  https://github.com/Nheko-Reborn/mtxclient/archive/08100fd0628f702ae9064e9929b7161ab0140149.tar.gz)
+  https://github.com/Nheko-Reborn/mtxclient/archive/975ce8906c42742dbb698fcf9fa15663c530df20.tar.gz)
 set(MTXCLIENT_HASH
-  bcd2633040657c75bb2c89a4a189e2da9222c40f7797e788fb1105cb4ccd6c75)
+  5e3169ef19b6e585069ceced42489574ce18380480628339bac015759fa1893e)
 set(
   TWEENY_URL
   https://github.com/mobius3/tweeny/archive/b94ce07cfb02a0eb8ac8aaf66137dabdaea857cf.tar.gz
diff --git a/resources/nheko.appdata.xml b/resources/nheko.appdata.xml
index c4447a4e..b549e2e9 100644
--- a/resources/nheko.appdata.xml
+++ b/resources/nheko.appdata.xml
@@ -43,6 +43,7 @@
     <url type="homepage">https://github.com/Nheko-Reborn/nheko</url>
     <update_contact>https://github.com/Nheko-Reborn</update_contact>
     <releases>
+        <release version="0.6.4" date="2019-05-22" />
         <release version="0.6.3" date="2019-02-08" />
         <release version="0.6.2" date="2018-10-07" />
         <release version="0.6.1" date="2018-09-26" />