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
b19f1dc7
Verified
Commit
b19f1dc7
authored
3 years ago
by
Nicolas Werner
Browse files
Options
Downloads
Patches
Plain Diff
Release 0.5.1
parent
df0d358a
No related branches found
No related tags found
No related merge requests found
Pipeline
#1036
passed
3 years ago
Stage: build
Changes
4
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CHANGELOG.md
+5
-1
5 additions, 1 deletion
CHANGELOG.md
CMakeLists.txt
+2
-2
2 additions, 2 deletions
CMakeLists.txt
appveyor.yml
+1
-1
1 addition, 1 deletion
appveyor.yml
include/mtxclient/http/session.hpp
+1
-1
1 addition, 1 deletion
include/mtxclient/http/session.hpp
with
9 additions
and
5 deletions
CHANGELOG.md
+
5
−
1
View file @
b19f1dc7
# Changelog
## [0.5.1] -- 2021-04-20
*
Allow exporting a session with a specific minimum index instead of all known indices.
## [0.5.0] -- 2021-04-18
*
Support edits
...
...
@@ -9,4 +13,4 @@
*
Support for pushers by vurpo
*
Fix crashes when using the epoll reactor on ARM
*
Switch to gitlab CI
*
Support for
[
MSC2545
](
https://github.com/matrix-org/matrix-doc/pull/2545
)
, sticker and emote packs
\ No newline at end of file
*
Support for
[
MSC2545
](
https://github.com/matrix-org/matrix-doc/pull/2545
)
, sticker and emote packs
This diff is collapsed.
Click to expand it.
CMakeLists.txt
+
2
−
2
View file @
b19f1dc7
...
...
@@ -32,12 +32,12 @@ option(USE_BUNDLED_OPENSSL "Use the bundled version of OpenSSL."
if
(
CMAKE_VERSION VERSION_GREATER_EQUAL 3.12
)
project
(
matrix_client
VERSION 0.5.
0
VERSION 0.5.
1
DESCRIPTION
"Client API library for Matrix, built on top of Boost.Asio"
HOMEPAGE_URL https://github.com/Nheko-Reborn/mtxclient
)
else
()
project
(
matrix_client
VERSION 0.5.
0
VERSION 0.5.
1
DESCRIPTION
"Client API library for Matrix, built on top of Boost.Asio"
)
endif
()
...
...
This diff is collapsed.
Click to expand it.
appveyor.yml
+
1
−
1
View file @
b19f1dc7
---
version
:
0.5.
0
-{build}
version
:
0.5.
1
-{build}
configuration
:
Release
image
:
Visual Studio
2017
...
...
This diff is collapsed.
Click to expand it.
include/mtxclient/http/session.hpp
+
1
−
1
View file @
b19f1dc7
...
...
@@ -96,7 +96,7 @@ setup_headers(mtx::http::Session *session,
const
std
::
string
&
content_type
=
""
,
const
std
::
string
&
endpoint_namespace
=
"/_matrix"
)
{
session
->
request
.
set
(
boost
::
beast
::
http
::
field
::
user_agent
,
"mtxclient v0.5.
0
"
);
session
->
request
.
set
(
boost
::
beast
::
http
::
field
::
user_agent
,
"mtxclient v0.5.
1
"
);
session
->
request
.
set
(
boost
::
beast
::
http
::
field
::
accept_encoding
,
"gzip,deflate"
);
session
->
request
.
set
(
boost
::
beast
::
http
::
field
::
host
,
session
->
host
);
...
...
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