Releases: rayshader/cp2077-red-httpclient
Releases · rayshader/cp2077-red-httpclient
v0.5.0
Compatibility
- Cyberpunk 2077 v2.2
- RED4ext v1.26.0+
- redscript v0.5.27+
Changed
- support patch 2.2
v0.4.0
Compatibility
- Cyberpunk 2077 v2.13
- RED4ext v1.25.1+
- redscript v0.5.27+
Changed
- support patch 2.13
v0.3.4
Compatibility
- Cyberpunk 2077 v2.12a
- RED4ext v1.25.0+
- redscript v0.5.25+
Fixed
RedData.Json
is now optional when installingRedHttpClient
.
Added
- support in
HttpClient
andAsyncHttpClient
to send a body withDELETE
methods.
v0.3.3
Compatibility
- Cyberpunk 2077 v2.12a
- RED4ext v1.24.3+
- redscript v0.5.19+
Fixed
- crash when initializing plugin while using MO2.
v0.3.3 RC1
Fix crash when using MO2.
v0.3.2
Compatibility
- Cyberpunk 2077 v2.12a
- RED4ext v1.24.3+
- redscript v0.5.19+
Fixed
- gracefully release plugin when game is shutting down.
v0.3.1
Compatibility
- Cyberpunk 2077 v2.12+
- RED4ext v1.24.0+
- redscript v0.5.18+
Fixed
- name declaration of
HttpStatus
in scripts.
v0.3.0
Compatibility
- Cyberpunk 2077 v2.12+
- RED4ext v1.24.0+
- redscript v0.5.18+
Fixed
- enable / disable logging when loading option from
config.json
.
Added
- support to send
multipart/form-data
withHttpClient
andAsyncHttpClient
. - class
HttpMultipart
to add / set / get parts, without support for files / buffers.
v0.2.0
Compatibility
- Cyberpunk 2077 v2.12+
- RED4ext v1.24.0+
- redscript v0.5.18+
Fixed
- add missing headers in request when using
HttpClient.Delete()
/AsyncHttpClient.Delete()
.
Added
- log requests and responses in
red4ext/logs/redhttpclient-YYYY-MM-DD-HH-mm-ss.log
(enabled by default). - enable / disable logging in
red4ext/plugins/RedFileSystem/storages/RedHttpClient/config.json
.
You need to import plugin with import RedHttpClient.*
along with import RedData.Json.*
when using Json from RedData.
v0.1.0
Compatibility
- Cyberpunk 2077 v2.12+
- RED4ext v1.23.0+
- redscript v0.5.17+
Features
- HttpClient to send HTTP requests (blocking mode).
- AsyncHttpClient to asynchronously send HTTP requests (callback mode).
- support GET, POST, PUT, PATCH and DELETE methods.
- support Json using RedData.