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
dd2f46ad
Verified
Commit
dd2f46ad
authored
Feb 22, 2022
by
Nicolas Werner
Browse files
Release 0.6.2
parent
a4b55e89
Pipeline
#2703
failed with stage
in 34 minutes and 38 seconds
Changes
5
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.md
View file @
dd2f46ad
# Changelog
## [0.6.2] -- 2022-02-22
-
Fix exception on "new" version string format
## [0.6.1] -- 2021-12-20
-
Set counter for encrypted files always to 0
...
...
CMakeLists.txt
View file @
dd2f46ad
...
...
@@ -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.
1
VERSION 0.6.
2
DESCRIPTION
"Client API library for Matrix."
HOMEPAGE_URL https://github.com/Nheko-Reborn/mtxclient
)
else
()
project
(
matrix_client
VERSION 0.6.
1
VERSION 0.6.
2
DESCRIPTION
"Client API library for Matrix."
)
endif
()
...
...
appveyor.yml
View file @
dd2f46ad
---
version
:
0.6.
1
-{build}
version
:
0.6.
2
-{build}
configuration
:
Release
image
:
Visual Studio
2019
...
...
lib/http/client.cpp
View file @
dd2f46ad
...
...
@@ -54,7 +54,7 @@ coeurl::Headers
mtx
::
http
::
Client
::
prepare_headers
(
bool
requires_auth
)
{
coeurl
::
Headers
headers
;
headers
[
"User-Agent"
]
=
"mtxclient v0.6.
1
"
;
headers
[
"User-Agent"
]
=
"mtxclient v0.6.
2
"
;
if
(
requires_auth
&&
!
access_token_
.
empty
())
headers
[
"Authorization"
]
=
"Bearer "
+
access_token
();
...
...
meson.build
View file @
dd2f46ad
project
(
'mtxclient'
,
'cpp'
,
version
:
'0.6.
1
'
,
version
:
'0.6.
2
'
,
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