Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-12-16Update Copyright for 2023myheroyuki
2022-10-27Casting const gchar* variable to gpointer to suppress warning.myheroyuki
2022-06-24Fixed a memory leakakallabeth
2022-05-10Cannot disable shared folderAntenore Gatta (tmow)
2022-04-09SSH X11 Forwardingmarco.fortina/Remmina-masterAntenore Gatta (tmow)
2022-04-08Aligned wit branch issue/2713-ssh-x11-forwardAntenore Gatta (tmow)
2022-04-08Adding SSH X11Forward supportMarco Fortina
2022-03-03Fix some build warningsdonoban
2022-01-10Adding per plugin AUDIT tracesAntenore Gatta (tmow)
2022-01-07Auditing facilityAntenore Gatta (tmow)
This patch add a macro to log auditing traces, this traces will be shown when the audit is enabled in the general preferences (security): - in the linux journal if available - if Remmina has been started with the Remmina Desktop file - if started from the terminal - from the terminal if G_MESSAGES_DEBUG=all is set (always). Signed-off-by: Antenore Gatta (tmow) <antenore@simbiosi.org>
2021-12-20Release v1.4.23Antenore Gatta (tmow)
* Patch for a Remmina segfault and stats code cleaning [!2358](https://gitlab.com/Remmina/Remmina/merge_requests/2358) *@antenore* * Make Appindicator optional [!2359](https://gitlab.com/Remmina/Remmina/merge_requests/2359) *@antenore* * Added check-box to force tight encoding for VNC connections [!2360](https://gitlab.com/Remmina/Remmina/merge_requests/2360) *@antenore* * remote resolution: use multiple of four [!2353](https://gitlab.com/Remmina/Remmina/merge_requests/2353) *@eworm-de* * Add Keyboard mapping per client RDP [!2361](https://gitlab.com/Remmina/Remmina/merge_requests/2361) *@headkaze* * Improve TLS error message, fixes #2364 [!2362](https://gitlab.com/Remmina/Remmina/merge_requests/2362) *@antenore* * Triage policy language reworked [!2363](https://gitlab.com/Remmina/Remmina/merge_requests/2363) *@kingu* /cc @bkohler @larchunix @slaanesh @jweberhofer @tukusejssirs @kingu @ToolsDevler @raghavgururajan Signed-off-by: Antenore Gatta (tmow) <antenore@simbiosi.org>
2021-12-03Removing the Remmina stats sender and repurposing Remmina statsAntenore Gatta (tmow)
2021-11-11Draft changes. TODOs remain.Todd Hubers
2021-10-28Code cleaningAntenore Gatta
2021-10-27Move last_success to state fileAntenore Gatta
This is a huge refactoring of the Remmina File interface. In particular this patch move the last_success to the Remmina state file. See issue #2271 and #1991
2021-10-18Resource renaming to comply with the Freedesktop rulesAntenore Gatta (tmow)
2021-10-02(All protocol-plugins): Add 2xNULL to the end of each item in basic settings ↵Daniel Teichmann
(RemminaProtocolSetting array), for the validation feature.
2021-06-02Save SSH session when closing, fixes #2512Antenore Gatta
2021-06-01SSH session improvementsAntenore Gatta
- Asynchronously save SSH session log (#2513) Signed-off-by: Antenore Gatta <antenore@simbiosi.org>
2021-05-11Fixing SSH plugin color palette initialization.Antenore Gatta
The color palettes were not initializied and assigned correctly Signed-off-by: Antenore Gatta <antenore@simbiosi.org>
2021-05-10Fixing color palette size for themed SSHAntenore Gatta
This is something most of the compilers optimize out of the box So we didn't catch this earlier. It should fix #2484 #2402 Signed-off-by: Antenore Gatta <antenore@simbiosi.org>
2021-04-23Fixing RemminaConnectionWindow map/unmap eventsAntenore Gatta
The remmina connection windows in fullscreen is a different object than when is in scrolled mode, therefore the old logic to map and unmap the windows from the plugin it was notr working. Now the events are managed directly from the RCW object and the RemminaProtocolWidget, with an API that can be used by any plugins. When in multi monitor and fullscreen, this mechanism doesn't work, Therefore, in the plugin itself I catch when we are in multi monitor fullscreen mode And I ignore the event. This last behaviour should be managed directly in the Remmina Protocol Widget (TODO). Fixes #2475 Signed-off-by: Antenore Gatta <antenore@simbiosi.org>
2021-04-19Resolve Host+Page_Down triggers search text in SSHAntenore Gatta
Fixes #2471 Signed-off-by: Antenore Gatta <antenore@simbiosi.org>
2021-04-01Fixing #2158 - Open SFTP/SSH to remote serverAntenore Gatta
2021-03-26Disable cert file auth when libssh < 0.9.0Antenore Gatta
Closes #2441 Signed-off-by: Antenore Gatta <antenore@simbiosi.org>
2021-02-21Refactoring SSH tunnel authentication. #2414Antenore Gatta
2021-02-19Fix minor typosYuri Chornoivan
2021-02-18WIP: Adding SSH certificate authenticationAntenore Gatta
2021-02-16Merge branch 'kingu-master-patch-16116' into 'master'Antenore Gatta (tmow)
Spelling: Colour See merge request Remmina/Remmina!2204
2021-02-16Spelling: ColourAllan Nordhøy
2021-02-16Fixing selections, bnold and cursor colors, fixes #2216Antenore Gatta
Signed-off-by: Antenore Gatta <antenore@simbiosi.org>
2021-02-12Switching to resources for UI elementsAntenore Gatta
2021-01-22Improving strings and providing commentsAntenore Gatta
2021-01-22Using curly double quotes where possibleAntenore Gatta
2021-01-15Closing SSH connection when authentication failsAntenore Gatta
2021-01-15Fixing Password based authentication, introdcing PARTIAL authAntenore Gatta
2021-01-15Implementing simple SSH multi factor authentication.Antenore Gatta
When an SSH server AuthenticationMethods with multiple methods, like public key authentions and password, we receive an SSH_PARTIAL_AUTHENTICATION return code, that was ignored in Remmina. Now Remmina correctly handle this state and pass to the second mechanism. More than 2 mechanism are not supported yet, because Remmina doesn't go behind 3 authentions attempts at the moment (to be fixed). The next step will be to implement keyboard interactive authentication. Signed-off-by: Antenore Gatta <antenore@simbiosi.org>
2021-01-15Spelling: SSH key, first, checksum of, eitherAllan Nordhøy
2021-01-15Merge branch 'kingu-master-patch-91780' into 'master'Antenore Gatta (tmow)
Spelling: ISO, date and time See merge request Remmina/Remmina!2172
2021-01-15Spelling: ISO, date and timeAllan Nordhøy
2021-01-15Spelling: Start-upAllan Nordhøy
2021-01-07Updating colors and fixing bold and brightenss issuesAntenore Gatta
2021-01-07Dealing with deprecated symbol vte_terminal_set_allow_boldAntenore Gatta
2021-01-04Updating Copyright notice for 2021Antenore Gatta
2020-12-30Resolve "SSH tunneling, honoring ssh_config"Antenore Gatta (tmow)
- Simplifying remmina_public_get_server_port - Adding debugging strings during ssh initialization - Correctly parsing user provided option from ssh_config - Parsing always for the destination host when the entrance is 127.0.0.1
2020-10-09Implementing text search in the SSH pluginAntenore Gatta
* Regular expressions * Match case * Wrap around * Whole word Signed-off-by: Antenore Gatta <antenore@simbiosi.org>
2020-07-23Make local variables reusable (not prefixed with type). Format code using ↵Espen Tveit
uncrustify. Add indication that URI may be used in remmina --help. Add some examples to man page.
2020-05-25Hotkey language fixedAllan Nordhøy
2020-05-22Merge branch 'bug/leaks' into 'master'Antenore Gatta
Refactoring remmina_debug to avoid memory leaks and overhead, should fix #2202 Closes #2203 and #2202 See merge request Remmina/Remmina!2061
2020-05-21Set macro name to uppercaseAntenore Gatta