mirror of https://github.com/FreeRDP/FreeRDP
commit
ac498d8bbf
|
@ -92,7 +92,7 @@ if ($ENV{BUILD_NUMBER})
|
|||
endif()
|
||||
|
||||
set(VERSION_REGEX "^(.*)([0-9]+)\\.([0-9]+)\\.([0-9]+)-?(.*)")
|
||||
set(RAW_VERSION_STRING "3.5.2-dev0")
|
||||
set(RAW_VERSION_STRING "3.6.1-dev0")
|
||||
if(EXISTS "${PROJECT_SOURCE_DIR}/.source_tag")
|
||||
file(READ ${PROJECT_SOURCE_DIR}/.source_tag RAW_VERSION_STRING)
|
||||
elseif(USE_VERSION_FROM_GIT_TAG)
|
||||
|
|
28
ChangeLog
28
ChangeLog
|
@ -1,3 +1,31 @@
|
|||
# 2024-07-03 Version 3.6.0
|
||||
|
||||
With this release we did improve decoder speed so you should notice a significant
|
||||
speed improvement with progressive and other gfx codecs.
|
||||
We've also eliminated a couple of issues along the way, so an update
|
||||
is highly recommended.
|
||||
|
||||
Noteworthy changes:
|
||||
* Improved command line failure logging (#10333)
|
||||
* p11-kit support (#10081)
|
||||
* json-c support (#10183)
|
||||
* (experimental) SDL3 port SDL client (#10195)
|
||||
* New option '/gfx:frame-ack:off' for connection delay testing (#10214)
|
||||
* improved decoder speed (#10222, #10235)
|
||||
* xfreerdp floatbar hide bug (#10237)
|
||||
* winpr-makecert month bug (#10236)
|
||||
* kerberos kdcUrl check fixes (#10238)
|
||||
* timezone updates (#10120, #10144, #10170)
|
||||
* fixed a capability protocol violation bug (#10132)
|
||||
* fix SDL client dialog bug terminating on credential dialog (#10134)
|
||||
* some more oss-fuzz issues (#10126, #10141, #10148, #10161, #10239)
|
||||
* rails popup window fixes (#10160)
|
||||
|
||||
|
||||
For a complete and detailed change log since the last release run:
|
||||
git log 3.6.0...3.5.1
|
||||
|
||||
|
||||
# 2024-04-22 Version 3.5.1
|
||||
|
||||
This release eliminates a bunch of issues detected during oss-fuzz runs.
|
||||
|
|
|
@ -56,7 +56,7 @@
|
|||
#define TAG CLIENT_TAG("android")
|
||||
|
||||
/* Defines the JNI version supported by this library. */
|
||||
#define FREERDP_JNI_VERSION "3.5.2-dev0"
|
||||
#define FREERDP_JNI_VERSION "3.6.1-dev0"
|
||||
static void android_OnChannelConnectedEventHandler(void* context,
|
||||
const ChannelConnectedEventArgs* e)
|
||||
{
|
||||
|
|
|
@ -328,13 +328,14 @@ int UwacWindowShmAllocBuffers(UwacWindow* w, int64_t nbuffers, int64_t allocSize
|
|||
return UWAC_ERROR_NOMEMORY;
|
||||
|
||||
/* round up to a multiple of PAGESIZE to page align data for each buffer */
|
||||
UINT64 test = (0ull + allocSize + pagesize - 1ull) & ~(pagesize - 1);
|
||||
uint64_t test = (0ull + allocSize + pagesize - 1ull) & ~(pagesize - 1);
|
||||
if (test > INT64_MAX)
|
||||
return UWAC_ERROR_NOMEMORY;
|
||||
|
||||
allocSize = (int64_t)test;
|
||||
|
||||
UwacBuffer* newBuffers = xrealloc(w->buffers, (w->nbuffers + nbuffers) * sizeof(UwacBuffer));
|
||||
UwacBuffer* newBuffers =
|
||||
xrealloc(w->buffers, (0ull + w->nbuffers + nbuffers) * sizeof(UwacBuffer));
|
||||
|
||||
if (!newBuffers)
|
||||
return UWAC_ERROR_NOMEMORY;
|
||||
|
|
|
@ -137,7 +137,7 @@ endif()
|
|||
|
||||
# Soname versioning
|
||||
set(VERSION_REGEX "^(.*)([0-9]+)\\.([0-9]+)\\.([0-9]+)-?(.*)")
|
||||
set(RAW_VERSION_STRING "3.5.2-dev0")
|
||||
set(RAW_VERSION_STRING "3.6.1-dev0")
|
||||
if(EXISTS "${PROJECT_SOURCE_DIR}/.source_tag")
|
||||
file(READ ${PROJECT_SOURCE_DIR}/.source_tag RAW_VERSION_STRING)
|
||||
elseif(USE_VERSION_FROM_GIT_TAG)
|
||||
|
|
Loading…
Reference in New Issue