Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
mtxclient
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
mtxclient
Commits
d4301e79
Verified
Commit
d4301e79
authored
2 years ago
by
Nicolas Werner
Browse files
Options
Downloads
Patches
Plain Diff
Bump version to 0.8.1
parent
a00a04ad
No related branches found
No related tags found
No related merge requests found
Pipeline
#3574
passed
2 years ago
Stage: build
Changes
5
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
CHANGELOG.md
+11
-0
11 additions, 0 deletions
CHANGELOG.md
CMakeLists.txt
+2
-2
2 additions, 2 deletions
CMakeLists.txt
appveyor.yml
+1
-1
1 addition, 1 deletion
appveyor.yml
lib/http/client.cpp
+1
-1
1 addition, 1 deletion
lib/http/client.cpp
meson.build
+1
-1
1 addition, 1 deletion
meson.build
with
16 additions
and
5 deletions
CHANGELOG.md
+
11
−
0
View file @
d4301e79
# Changelog
# Changelog
## [0.8.1] -- 2022-09-07
-
Allow creating rooms with custom create event but default version
-
Update dependencies
-
Support stable hidden read receipts
-
Validate fields servers are required to validate again
-
Fix voip v1 event parsing (contributed by r0hit)
-
Use hidden friends to reduce overload sets
-
Add support for the unstable polics room type
-
Support querying server capabilities
## [0.8.0] -- 2022-07-22
## [0.8.0] -- 2022-07-22
-
Update hidden read receipts to current MSC
-
Update hidden read receipts to current MSC
...
...
This diff is collapsed.
Click to expand it.
CMakeLists.txt
+
2
−
2
View file @
d4301e79
...
@@ -37,12 +37,12 @@ option(USE_BUNDLED_LIBCURL "Use the bundled version of spdlog." ${HUNTER_ENABLED
...
@@ -37,12 +37,12 @@ option(USE_BUNDLED_LIBCURL "Use the bundled version of spdlog." ${HUNTER_ENABLED
if
(
CMAKE_VERSION VERSION_GREATER_EQUAL 3.12
)
if
(
CMAKE_VERSION VERSION_GREATER_EQUAL 3.12
)
project
(
matrix_client
project
(
matrix_client
VERSION 0.8.
0
VERSION 0.8.
1
DESCRIPTION
"Client API library for Matrix."
DESCRIPTION
"Client API library for Matrix."
HOMEPAGE_URL https://github.com/Nheko-Reborn/mtxclient
)
HOMEPAGE_URL https://github.com/Nheko-Reborn/mtxclient
)
else
()
else
()
project
(
matrix_client
project
(
matrix_client
VERSION 0.8.
0
VERSION 0.8.
1
DESCRIPTION
"Client API library for Matrix."
)
DESCRIPTION
"Client API library for Matrix."
)
endif
()
endif
()
...
...
This diff is collapsed.
Click to expand it.
appveyor.yml
+
1
−
1
View file @
d4301e79
---
---
version
:
0.8.
0
-{build}
version
:
0.8.
1
-{build}
configuration
:
Release
configuration
:
Release
image
:
Visual Studio
2019
image
:
Visual Studio
2019
...
...
This diff is collapsed.
Click to expand it.
lib/http/client.cpp
+
1
−
1
View file @
d4301e79
...
@@ -55,7 +55,7 @@ coeurl::Headers
...
@@ -55,7 +55,7 @@ coeurl::Headers
mtx
::
http
::
Client
::
prepare_headers
(
bool
requires_auth
)
mtx
::
http
::
Client
::
prepare_headers
(
bool
requires_auth
)
{
{
coeurl
::
Headers
headers
;
coeurl
::
Headers
headers
;
headers
[
"User-Agent"
]
=
"mtxclient v0.8.
0
"
;
headers
[
"User-Agent"
]
=
"mtxclient v0.8.
1
"
;
if
(
requires_auth
&&
!
access_token_
.
empty
())
if
(
requires_auth
&&
!
access_token_
.
empty
())
headers
[
"Authorization"
]
=
"Bearer "
+
access_token
();
headers
[
"Authorization"
]
=
"Bearer "
+
access_token
();
...
...
This diff is collapsed.
Click to expand it.
meson.build
+
1
−
1
View file @
d4301e79
project
(
project
(
'mtxclient'
,
'mtxclient'
,
'cpp'
,
'cpp'
,
version
:
'0.8.
0
'
,
version
:
'0.8.
1
'
,
meson_version
:
'>=0.57.0'
,
meson_version
:
'>=0.57.0'
,
license
:
'MIT'
,
license
:
'MIT'
,
default_options
:
'cpp_std=c++17'
default_options
:
'cpp_std=c++17'
...
...
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