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
2021-12-11X2Go format string bugsAntenore Gatta
2021-12-09VNC custom encodings to avoid corrupted frames.Antenore Gatta (tmow)
In some cases, in poor quality, missing encodings like 'tight' may cause output curruption. Adding 'tight' by default in poor quality it's not a wise decision, so I added a text field to specify a custom encoding override. Signed-off-by: Antenore Gatta (tmow) <antenore@simbiosi.org>
2021-12-09Merge branch 'fix/x2go-session-terminate-on-failure' into 'master'Antenore Gatta (tmow)
X2Go: Major rewrite of session-terminating system. See merge request Remmina/Remmina!2349
2021-12-03x2go_plugin.c: Apply changes to error msgs from @kingu Allan Nordhøy
2021-12-03Removing the Remmina stats sender and repurposing Remmina statsAntenore Gatta (tmow)
2021-12-03Merge branch 'kingu-master-patch-15757' into 'master'Antenore Gatta (tmow)
Deduplicated "Started PyHoca" string See merge request Remmina/Remmina!2346
2021-12-02x2go_plugin.c: In short: Major rewrite of session-terminating system.Daniel Teichmann
Introduce new functions, Change error messages, Change X2GoCustomUserData struct, Alter documentation, A lot of cosmetic changes. Now on termination, rows will be hidden instead of deleted in order to make a re-addition of said row possible. For example if the termination failed for some reason.
2021-12-02x2go_plugin.c: Add rmplugin_x2go_session_property_to_string() function.Daniel Teichmann
2021-11-27x2go_plugin.c: NO_INTERACTIVE --> NON_INTERACTIVE; --no-interactive --> ↵Daniel Teichmann
--non-interactive
2021-11-25Deduplicated "Started PyHoca" stringAllan Nordhøy
2021-11-24x2go_plugin.c: Make changes to source strings for translations.Daniel Teichmann
2021-11-23x2go_plugin.c: Ensure that pyhoca-cli will never ask interactively for a ↵Daniel Teichmann
password.
2021-11-23x2go_plugin.c: Don't pass empty passwords to pyhoca-cliDaniel Teichmann
2021-11-23x2go_plugin.c: Refactor use of X2GoCustomUserData struct for dialogs.Daniel Teichmann
Fixes non-session-chooser dialogs again.
2021-11-23x2go_plugin.c: Add dialog_factory_{func, data} to _DialogData inits.Daniel Teichmann
2021-11-23x2go_plugin.c: Make all dialogs children of remmina connection window.Daniel Teichmann
2021-11-23x2go_plugin.c: Session selection dialog: make default width bigger.Daniel Teichmann
2021-11-23x2go_plugin.c: Session-Chooser-Dialog: Swap SUSPENDED_SINCE and CREATE_DATE.Daniel Teichmann
2021-11-23x2go_plugin.c: Introduce terminate button to Session-Chooser-DialogDaniel Teichmann
2021-11-14Remove unneded call to remmina_rdp_load_static_channel_addin(rdpdr), already ↵Giovanni Panozzo
handled inside libfreerdp
2021-11-14RDP printer setup cleanupGiovanni Panozzo
2021-11-09Merge branch 'feature/x2go-resuming-session-dialog' into 'master'Antenore Gatta (tmow)
X2Go: Rewrite dialog-system; Ask users which session to resume... See merge request Remmina/Remmina!2328
2021-11-07Fixes compilation errors and warnings for freerdp 3. See issue #2631.Giovanni Panozzo
2021-11-04x2go_plugin.c: Rename user_data -> custom_data; Fix dereferencing ↵Daniel Teichmann
'custom-data->user_data'
2021-11-04x2go_plugin.c: Stylistic changes; Add 'nanosleep(0.001s)' while waiting for ↵Daniel Teichmann
pyhoca-cli to start.
2021-11-04x2go_plugin.c: Repurpose _RowActivatedUserData into more generic ↵Daniel Teichmann
X2GoCustomUserData.
2021-11-04x2go_plugin.c: Session-Chooser-Dialog: React on double-click, enterkey etc...Daniel Teichmann
2021-11-04x2go_plugin.c: Rename variables for better readability; Remove debug code.Daniel Teichmann
2021-11-04x2go_plugin.c: Major rewrite of session-chooser-dialog; Make it useable now.Daniel Teichmann
2021-11-04x2go_plugin.c: Deprecating --try-resume in favour of session-chooser-dialog.Daniel Teichmann
2021-11-04x2go_plugin.c: Handle pyhoca-cli internet connection problems.Daniel Teichmann
2021-11-04x2go_plugin.c: Environment variables are now printed in debug mode.Daniel Teichmann
2021-11-04x2go_plugin.c: Refactor rmplugin_x2go_get_auth(); Fix crash when ↵Daniel Teichmann
default_passwort is 'NULL'. When default_password is 'NULL' there was propably something going wrong in the secret plugin, but we can handle it. A crash happened to me when I was dismissing the password dialog of gnome-keyring.
2021-11-04x2go_plugin.c: Replace for-loop with g_strv_length() function.Daniel Teichmann
2021-11-04x2go_plugin.c: Add --quiet option for fetching existing sessions.Daniel Teichmann
2021-11-04x2go_plugin.c: Rename session-chooser-dialog callback function ↵Daniel Teichmann
test_callback() to session_chooser_callback().
2021-11-04x2go_plugin.c: Introduce session-chooser dialog; Rewrite dialog-system in ↵Daniel Teichmann
order to make custom dialogs possible; Introduce structs _ConnectionData and _Session; Adjust docstrings; Rewrite get_pyhoca_features() into spawn_pyhoca_process();
2021-11-04x2go_plugin.c: Remove typedef of DialogData for better code-readability; ↵Daniel Teichmann
Update docstrings.
2021-11-04x2go_plugin.c: Alter doc+debug+error strings; Reformat 'Internal error ↵Daniel Teichmann
%s'-strings
2021-11-04x2go_plugin.c: Replace rmplugin_x2go_split_string() with g_strsplit() function.Daniel Teichmann
2021-11-04x2go_plugin.c: Fix compiler warning: Cast function to (GCompareFunc).Daniel Teichmann
2021-11-04x2go_plugin.c: Replace strcmp with safer g_strcmp0Daniel Teichmann
2021-11-04x2go_plugin.c: Fix compiler warning (cast func to void*)Daniel Teichmann
2021-11-04x2go_plugin.c: Split to-be-translated strings; Fix potential crash; Fix ↵Daniel Teichmann
mem-corruption in split_string()
2021-11-04x2go_plugin.c: Add feature-not-available warnings.Daniel Teichmann
2021-11-04x2go_plugin.c: Fix possible bug where open_dialog() spirals into endless ↵Daniel Teichmann
loop; Replace return values with 'G_SOURCE_REMOVE' and 'G_SOURCE_CONTINUE'
2021-10-29Compile time warning fixesAntenore Gatta
2021-10-29Updating to CMake 3.10.0 specsAntenore Gatta
2021-10-28Merge branch 'refact/files' into 'master'Antenore Gatta (tmow)
File Interface refactoring See merge request Remmina/Remmina!2332
2021-10-28Adding X2Go svg icon, and remove PNGsAntenore Gatta