Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nheko Reborn
mtxclient
Commits
9eb9c152
Verified
Commit
9eb9c152
authored
Mar 09, 2022
by
Nicolas Werner
Browse files
Release 0.7.0
parent
a3fec0ae
Pipeline
#2800
passed with stage
in 31 minutes and 58 seconds
Changes
5
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.md
View file @
9eb9c152
# Changelog
## [0.7.0] -- 2022-03-09
-
Allow querying a reusable server url for the current server
-
Explicit SSO identity providers
-
Reasons for redactions
-
Treat all exceptions as errors
-
Support hidden read receipts
-
Support fetching the current room state
-
Stabilize registration tokens
-
Widget events
-
Support the space hierarchy API
-
Allow checking a usernames availability
-
Allow querying registration flows ahead of time
-
Properly validate matrix ids
-
Fix ambiguous conversion of pushrule actions
-
Reduce copies for pushrules
-
Remove mentions of Boost.ASIO
-
Fix documentation
## [0.6.2] -- 2022-02-22
-
Fix exception on "new" version string format
...
...
CMakeLists.txt
View file @
9eb9c152
...
...
@@ -38,12 +38,12 @@ option(USE_BUNDLED_SPDLOG "Use the bundled version of spdlog." ${HUNTER_ENABLED}
if
(
CMAKE_VERSION VERSION_GREATER_EQUAL 3.12
)
project
(
matrix_client
VERSION 0.
6.2
VERSION 0.
7.0
DESCRIPTION
"Client API library for Matrix."
HOMEPAGE_URL https://github.com/Nheko-Reborn/mtxclient
)
else
()
project
(
matrix_client
VERSION 0.
6.2
VERSION 0.
7.0
DESCRIPTION
"Client API library for Matrix."
)
endif
()
...
...
appveyor.yml
View file @
9eb9c152
---
version
:
0.
6.2
-{build}
version
:
0.
7.0
-{build}
configuration
:
Release
image
:
Visual Studio
2019
...
...
lib/http/client.cpp
View file @
9eb9c152
...
...
@@ -55,7 +55,7 @@ coeurl::Headers
mtx
::
http
::
Client
::
prepare_headers
(
bool
requires_auth
)
{
coeurl
::
Headers
headers
;
headers
[
"User-Agent"
]
=
"mtxclient v0.
6.2
"
;
headers
[
"User-Agent"
]
=
"mtxclient v0.
7.0
"
;
if
(
requires_auth
&&
!
access_token_
.
empty
())
headers
[
"Authorization"
]
=
"Bearer "
+
access_token
();
...
...
meson.build
View file @
9eb9c152
project
(
'mtxclient'
,
'cpp'
,
version
:
'0.
6.2
'
,
version
:
'0.
7.0
'
,
meson_version
:
'>=0.57.0'
,
license
:
'MIT'
,
default_options
:
'cpp_std=c++17'
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment