Release v1.4.40

Signed-off-by: myheroyuki <myheroyuki@outlook.com>
This commit is contained in:
myheroyuki 2025-04-08 21:24:07 +09:00
parent 96fbc6faef
commit 2c4c18fba5
8 changed files with 36 additions and 11 deletions

View File

@ -1,3 +1,21 @@
## v1.4.40
[full changelog](https://gitlab.com/Remmina/Remmina/compare/v1.4.39...v1.4.40)
* [REM-3270] Fix invalid free causing crash with sending keystrokes and clipboard contents [!2631](https://gitlab.com/Remmina/Remmina/-/merge_requests/2631) *@myheroyuki*
* Fix SEGV when removing a non-exitend connection [!2632](https://gitlab.com/Remmina/Remmina/-/merge_requests/2632) *@sylv-io*
* [REM-3282] Adjust floating toolbar to take up less space [!2633](https://gitlab.com/Remmina/Remmina/-/merge_requests/2633) *@myheroyuki*
* [REM-3285] Fix issue with multimonitor configuration needed for FreeRDP versions after 3.10.x [!2634](https://gitlab.com/Remmina/Remmina/-/merge_requests/2634) *@myheroyuki*
* [REM-3286] Add option to allow ssh-rsa keys to be used for ssh connections [!2635](https://gitlab.com/Remmina/Remmina/-/merge_requests/2635) *@myheroyuki*
* [REM-3285] Only set the max width and height to full monitor if using multimonitor [!2636](https://gitlab.com/Remmina/Remmina/-/merge_requests/2636) *@myheroyuki*
* [REM-3285] Fix typo [!2637](https://gitlab.com/Remmina/Remmina/-/merge_requests/2637) *@myheroyuki*
* [REM-3285] Revert calls back to uint [!2638](https://gitlab.com/Remmina/Remmina/-/merge_requests/2638) *@myheroyuki*
* [REM-3295] Fix issue with RDP scaling on connect [!2639](https://gitlab.com/Remmina/Remmina/-/merge_requests/2639) *@myheroyuki*
* [REM-3301] Add option to force multimonitor mode [!2640](https://gitlab.com/Remmina/Remmina/-/merge_requests/2640) *@myheroyuki*
* [REM-3314] Added the options to start connections in fullscreen mode and/or with dynamic resolution enabled for protocols that support the options [!2641](https://gitlab.com/Remmina/Remmina/-/merge_requests/2641) *@myheroyuki*
* [REM-3316] Allow empty passwords to be passed to FreeRDP [!2642](https://gitlab.com/Remmina/Remmina/-/merge_requests/2642) *@myheroyuki*
* [REM-3289] Allow import/export of ssh tunnel settings [!2643](https://gitlab.com/Remmina/Remmina/-/merge_requests/2643) *@myheroyuki*
* [REM-3333] hide local cursor when showing remote cursor [!2647](https://gitlab.com/Remmina/Remmina/-/merge_requests/2644) *@myheroyuki*
## v1.4.39
[full changelog](https://gitlab.com/Remmina/Remmina/compare/v1.4.38...v1.4.39)

View File

@ -36,7 +36,7 @@ cmake_policy(SET CMP0048 NEW)
project(
Remmina
VERSION 1.4.39
VERSION 1.4.40
DESCRIPTION "The Gtk Remote Desktop Client"
LANGUAGES C CXX
)
@ -452,7 +452,7 @@ find_package(Threads REQUIRED)
if(NOT CMAKE_USE_PTHREADS_INIT)
message(FATAL_ERROR "pthreads thread library not found")
endif()
# set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsanitize=address")
# Add GCC sanitizer options, must be done after pthreads detection see remmina
# issue #1276
if(CMAKE_COMPILER_IS_GNUCC AND WITH_GCC_SANITIZE_ADDRESS)

View File

@ -38,7 +38,7 @@ PROJECT_NAME = "Remmina - The GTK+ Remote Desktop Client"
# could be handy for archiving the generated documentation or if some version
# control system is used.
PROJECT_NUMBER = v1.4.39
PROJECT_NUMBER = v1.4.40
# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a

View File

@ -21,7 +21,7 @@
<summary xml:lang="hr">Klijent za upravljanje udaljenom radnom površinom</summary>
<content_rating type="oars-1.1" />
<releases>
<release version="1.4.39" date="2025-01-05"/>
<release version="1.4.40" date="2025-04-08"/>
</releases>
<description>
<p>

View File

@ -52,6 +52,7 @@ More details in COPYING</property>
Davy Defaud &lt;davy.defaud@free.fr&gt;
Marc-André Moreau &lt;marcandre.moreau@gmail.com&gt;
Marcel Telka &lt;marcel@telka.sk&gt;
Marcello Sylvester Bauer &lt;sylv@sylv.io&gt;
Jean-Louis Dupond &lt;jean-louis@dupond.be&gt;
Matteo Nastasi &lt;nastasi@alternativeoutput.it&gt;
Johannes Weberhofer &lt;jweberhofer@weberhofer.at&gt;

View File

@ -513,14 +513,17 @@
"-DWITH_OSS:BOOL=OFF",
"-DWITH_PULSE:BOOL=ON",
"-DWITH_LIBSYSTEMD:BOOL=OFF",
"-DWITH_FUSE:BOOL=OFF",
"-DWITH_WEBVIEW:BOOL=OFF",
"-DWITH_PKCS11:BOOL=ON",
"-DALLOW_IN_SOURCE_BUILD=ON"
],
"sources": [
{
"type": "git",
"url": "https://github.com/FreeRDP/FreeRDP.git",
"tag": "2.11.2",
"commit": "a38c1be9eee39a9bc22b511fffe96e63fdf8ebe7",
"tag": "3.14.1",
"commit": "4019dcd4097d550d02dd6b70ee88b6a1189be26c",
"x-checker-data": {
"type": "git",
"tag-pattern": "^([\\d.]+)$"
@ -539,7 +542,7 @@
"config-opts": [
"-DCMAKE_BUILD_TYPE:STRING=Debug",
"-DCMAKE_INSTALL_LIBDIR:PATH=lib",
"-DWITH_FREERDP3:BOOL=OFF",
"-DWITH_FREERDP3:BOOL=ON",
"-DWITH_GVNC:BOOL=ON",
"-DWITH_CUPS:BOOL=ON",
"-DWITH_PYTHONLIBS:BOOL=ON",

View File

@ -504,14 +504,17 @@
"-DWITH_OSS:BOOL=OFF",
"-DWITH_PULSE:BOOL=ON",
"-DWITH_LIBSYSTEMD:BOOL=OFF",
"-DWITH_FUSE:BOOL=OFF",
"-DWITH_WEBVIEW:BOOL=OFF",
"-DWITH_PKCS11:BOOL=ON",
"-DALLOW_IN_SOURCE_BUILD=ON"
],
"sources": [
{
"type": "git",
"url": "https://github.com/FreeRDP/FreeRDP.git",
"tag": "2.11.2",
"commit": "a38c1be9eee39a9bc22b511fffe96e63fdf8ebe7",
"tag": "3.14.1",
"commit": "4019dcd4097d550d02dd6b70ee88b6a1189be26c",
"x-checker-data": {
"type": "git",
"tag-pattern": "^([\\d.]+)$"
@ -530,7 +533,7 @@
"config-opts": [
"-DCMAKE_BUILD_TYPE:STRING=Release",
"-DCMAKE_INSTALL_LIBDIR:PATH=lib",
"-DWITH_FREERDP3:BOOL=OFF",
"-DWITH_FREERDP3:BOOL=ON",
"-DWITH_GVNC:BOOL=ON",
"-DWITH_CUPS:BOOL=ON",
"-DWITH_PYTHONLIBS:BOOL=ON",

View File

@ -6,7 +6,7 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Remmina v1.4.39\n"
"Project-Id-Version: Remmina v1.4.40\n"
"Report-Msgid-Bugs-To: l10n@lists.remmina.org\n"
"POT-Creation-Date: 2024-02-08 11:49+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"