├── .github └── FUNDING.yml ├── .gitignore ├── .gitlab-ci.yml ├── .gitlab ├── issue_templates │ ├── Default.md │ ├── Empty.md │ └── Feature proposal.md └── merge_request_templates │ ├── .gitkeep │ ├── Default.md │ └── Remmina Release.md ├── .gitmodules ├── .triage-policies.yml ├── .uncrustify-remmina.cfg ├── AUTHORS ├── CHANGELOG.archive.md ├── CHANGELOG.md ├── CMakeLists.txt ├── CONTACT.md ├── CONTRIBUTING.md ├── COPYING ├── ChangeLog ├── Doxyfile ├── LICENSE ├── LICENSE.OpenSSL ├── README.md ├── THANKS.md ├── TRANSLATION ├── Ubuntu-Packaging.md ├── _config.yml ├── ci ├── README.md └── dockerfiles │ ├── gnome-3-28-1804 │ └── Dockerfile │ ├── gnome-3-38-2004 │ └── Dockerfile │ ├── snap-22.04 │ └── Dockerfile │ ├── ubuntu-16.04 │ └── Dockerfile │ ├── ubuntu-18.04 │ └── Dockerfile │ ├── ubuntu-20.04 │ └── Dockerfile │ └── ubuntu-22.04 │ ├── .gitkeep │ └── Dockerfile ├── cmake ├── CheckHasModule.cmake ├── ConfigOptions.cmake ├── FindAPPINDICATOR.cmake ├── FindATK.cmake ├── FindAvahi.cmake ├── FindCairo.cmake ├── FindFFMPEG.cmake ├── FindFeature.cmake ├── FindGCRYPT.cmake ├── FindGDK3.cmake ├── FindGDKPixbuf.cmake ├── FindGIO.cmake ├── FindGLib.cmake ├── FindGNOMEKEYRING.cmake ├── FindGObject.cmake ├── FindGTK-VNC.cmake ├── FindGTK3.cmake ├── FindJSONGLIB.cmake ├── FindLIBSOUP.cmake ├── FindLIBSSH.cmake ├── FindLIBVNCSERVER.cmake ├── FindLibsecret.cmake ├── FindOptionalPackage.cmake ├── FindPCRE2.cmake ├── FindPango.cmake ├── FindSharedMimeInfo.cmake ├── FindSpice.cmake ├── FindTELEPATHY.cmake ├── FindVTE.cmake ├── FindWEBKIT2GTK.cmake ├── FindWayland.cmake ├── FindXKBFILE.cmake ├── Findsodium.cmake ├── GETTEXT.cmake ├── GetGitRevisionDescription.cmake ├── GetGitRevisionDescription.cmake.in ├── GtkUpdateIconCache.cmake ├── LibFindMacros.cmake ├── MacroEnsureVersion.cmake ├── cmake_uninstall.cmake.in └── macros │ ├── BuildTargetScript.cmake │ ├── CompileGResources.cmake │ ├── GenerateGXML.cmake │ ├── GlibCompileResourcesSupport.cmake │ └── TargetArch.cmake ├── config.h.in ├── data ├── CMakeLists.txt ├── desktop │ ├── 128x128 │ │ └── apps │ │ │ └── org.remmina.Remmina.png │ ├── 16x16 │ │ ├── apps │ │ │ └── org.remmina.Remmina.png │ │ └── status │ │ │ └── org.remmina.Remmina-status.svg │ ├── 22x22 │ │ ├── apps │ │ │ └── org.remmina.Remmina.png │ │ └── status │ │ │ └── org.remmina.Remmina-status.svg │ ├── 24x24 │ │ ├── apps │ │ │ └── org.remmina.Remmina.png │ │ └── status │ │ │ └── org.remmina.Remmina-status.svg │ ├── 256x256 │ │ └── apps │ │ │ └── org.remmina.Remmina.png │ ├── 32x32 │ │ ├── apps │ │ │ └── org.remmina.Remmina.png │ │ └── status │ │ │ └── org.remmina.Remmina-status.svg │ ├── 48x48 │ │ ├── apps │ │ │ └── org.remmina.Remmina.png │ │ └── status │ │ │ └── org.remmina.Remmina-status.svg │ ├── 512x512 │ │ └── apps │ │ │ └── org.remmina.Remmina.png │ ├── 64x64 │ │ ├── apps │ │ │ └── org.remmina.Remmina.png │ │ └── status │ │ │ └── org.remmina.Remmina-status.svg │ ├── 72x72 │ │ └── apps │ │ │ └── org.remmina.Remmina.png │ ├── 96x96 │ │ └── apps │ │ │ └── org.remmina.Remmina.png │ ├── CMakeLists.txt │ ├── gnome-session-remmina │ ├── gnome-session-remmina.1 │ ├── org.remmina.Remmina-file.desktop.in │ ├── org.remmina.Remmina-mime.xml │ ├── org.remmina.Remmina.appdata.xml │ ├── org.remmina.Remmina.desktop.in │ ├── remmina-file-wrapper.1 │ ├── remmina-file-wrapper.in │ ├── remmina-gnome │ ├── remmina-gnome-xsession.desktop │ ├── remmina-gnome.1 │ ├── remmina-gnome.desktop │ ├── remmina-gnome.session │ └── scalable │ │ └── apps │ │ ├── org.remmina.Remmina-symbolic.svg │ │ ├── org.remmina.Remmina.svg │ │ └── remmina-symbolic.svg ├── icons │ ├── CMakeLists.txt │ └── scalable │ │ ├── actions │ │ ├── org.remmina.Remmina-camera-photo-symbolic.svg │ │ ├── org.remmina.Remmina-connect-symbolic.svg │ │ ├── org.remmina.Remmina-disconnect-symbolic.svg │ │ ├── org.remmina.Remmina-document-save-symbolic.svg │ │ ├── org.remmina.Remmina-document-send-symbolic.svg │ │ ├── org.remmina.Remmina-duplicate-symbolic.svg │ │ ├── org.remmina.Remmina-dynres-symbolic.svg │ │ ├── org.remmina.Remmina-fit-window-symbolic.svg │ │ ├── org.remmina.Remmina-fullscreen-symbolic.svg │ │ ├── org.remmina.Remmina-go-bottom-symbolic.svg │ │ ├── org.remmina.Remmina-keyboard-symbolic.svg │ │ ├── org.remmina.Remmina-multi-monitor-symbolic.svg │ │ ├── org.remmina.Remmina-pan-down-symbolic.svg │ │ ├── org.remmina.Remmina-pan-up-symbolic.svg │ │ ├── org.remmina.Remmina-password-conceal-symbolic.svg │ │ ├── org.remmina.Remmina-password-reveal-symbolic.svg │ │ ├── org.remmina.Remmina-pin-down-symbolic.svg │ │ ├── org.remmina.Remmina-pin-up-symbolic.svg │ │ ├── org.remmina.Remmina-preferences-system-symbolic.svg │ │ ├── org.remmina.Remmina-reconnect-symbolic.svg │ │ ├── org.remmina.Remmina-scale-symbolic.svg │ │ ├── org.remmina.Remmina-switch-page-symbolic.svg │ │ └── org.remmina.Remmina-system-run-symbolic.svg │ │ └── emblems │ │ ├── org.remmina.Remmina-sftp-symbolic.svg │ │ ├── org.remmina.Remmina-ssh-symbolic.svg │ │ ├── org.remmina.Remmina-status-green.svg │ │ ├── org.remmina.Remmina-status-grey.svg │ │ └── org.remmina.Remmina-status-red.svg ├── remmina.pc.in ├── reports │ ├── chartkick.min.js │ └── postats.html ├── theme │ ├── 3024 Day.colors │ ├── 3024 Night.colors │ ├── Abernathy.colors │ ├── Adventure.colors │ ├── AdventureTime.colors │ ├── Afterglow.colors │ ├── Alabaster.colors │ ├── AlienBlood.colors │ ├── Andromeda.colors │ ├── Argonaut.colors │ ├── Arthur.colors │ ├── AtelierSulphurpool.colors │ ├── Atom.colors │ ├── AtomOneLight.colors │ ├── Aurora.colors │ ├── Ayu Mirage.colors │ ├── Banana Blueberry.colors │ ├── Batman.colors │ ├── Belafonte Day.colors │ ├── Belafonte Night.colors │ ├── BirdsOfParadise.colors │ ├── Blazer.colors │ ├── Blue Matrix.colors │ ├── BlueBerryPie.colors │ ├── BlueDolphin.colors │ ├── BlulocoDark.colors │ ├── BlulocoLight.colors │ ├── Borland.colors │ ├── Breeze.colors │ ├── Bright Lights.colors │ ├── Broadcast.colors │ ├── Brogrammer.colors │ ├── Builtin Dark.colors │ ├── Builtin Light.colors │ ├── Builtin Pastel Dark.colors │ ├── Builtin Solarized Dark.colors │ ├── Builtin Solarized Light.colors │ ├── Builtin Tango Dark.colors │ ├── Builtin Tango Light.colors │ ├── C64.colors │ ├── CGA.colors │ ├── CLRS.colors │ ├── CMakeLists.txt │ ├── Calamity.colors │ ├── Chalk.colors │ ├── Chalkboard.colors │ ├── ChallengerDeep.colors │ ├── Chester.colors │ ├── Ciapre.colors │ ├── Cobalt Neon.colors │ ├── Cobalt2.colors │ ├── CrayonPonyFish.colors │ ├── Cyberdyne.colors │ ├── Dark Pastel.colors │ ├── Dark+.colors │ ├── Darkside.colors │ ├── Desert.colors │ ├── DimmedMonokai.colors │ ├── Django.colors │ ├── DjangoRebornAgain.colors │ ├── DjangoSmooth.colors │ ├── Doom Peacock.colors │ ├── DoomOne.colors │ ├── DotGov.colors │ ├── Dracula+.colors │ ├── Dracula.colors │ ├── Duotone Dark.colors │ ├── ENCOM.colors │ ├── Earthsong.colors │ ├── Elemental.colors │ ├── Elementary.colors │ ├── Espresso Libre.colors │ ├── Espresso.colors │ ├── Fahrenheit.colors │ ├── Fairyfloss.colors │ ├── Fideloper.colors │ ├── FirefoxDev.colors │ ├── Firewatch.colors │ ├── FishTank.colors │ ├── Flat.colors │ ├── Flatland.colors │ ├── Floraverse.colors │ ├── ForestBlue.colors │ ├── Framer.colors │ ├── FrontEndDelight.colors │ ├── FunForrest.colors │ ├── Galaxy.colors │ ├── Galizur.colors │ ├── GitHub Dark.colors │ ├── Github.colors │ ├── Glacier.colors │ ├── Grape.colors │ ├── Grass.colors │ ├── Grey-green.colors │ ├── Gruvbox Dark.colors │ ├── Gruvbox Light.colors │ ├── Guezwhoz.colors │ ├── HaX0R_BLUE.colors │ ├── HaX0R_GR33N.colors │ ├── HaX0R_R3D.colors │ ├── Hacktober.colors │ ├── Hardcore.colors │ ├── Harper.colors │ ├── Highway.colors │ ├── Hipster Green.colors │ ├── Hivacruz.colors │ ├── Homebrew.colors │ ├── Hopscotch.256.colors │ ├── Hopscotch.colors │ ├── Hurtado.colors │ ├── Hybrid.colors │ ├── IC_Green_PPL.colors │ ├── IC_Orange_PPL.colors │ ├── IR_Black.colors │ ├── Jackie Brown.colors │ ├── Japanesque.colors │ ├── Jellybeans.colors │ ├── JetBrains Darcula.colors │ ├── Kibble.colors │ ├── Kolorit.colors │ ├── Konsolas.colors │ ├── Lab Fox.colors │ ├── Laser.colors │ ├── Later This Evening.colors │ ├── Lavandula.colors │ ├── LiquidCarbon.colors │ ├── LiquidCarbonTransparent.colors │ ├── LiquidCarbonTransparentInverse.colors │ ├── Man Page.colors │ ├── Mariana.colors │ ├── Material.colors │ ├── MaterialDark.colors │ ├── MaterialDarker.colors │ ├── MaterialDesignColors.colors │ ├── MaterialOcean.colors │ ├── Mathias.colors │ ├── Medallion.colors │ ├── Mirage.colors │ ├── Misterioso.colors │ ├── Molokai.colors │ ├── MonaLisa.colors │ ├── Monokai Remastered.colors │ ├── Monokai Soda.colors │ ├── Monokai Vivid.colors │ ├── N0tch2k.colors │ ├── Neon.colors │ ├── Neopolitan.colors │ ├── Neutron.colors │ ├── Night Owlish Light.colors │ ├── NightLion v1.colors │ ├── NightLion v2.colors │ ├── Nocturnal Winter.colors │ ├── Novel.colors │ ├── Obsidian.colors │ ├── Ocean.colors │ ├── Oceanic-Next.colors │ ├── OceanicMaterial.colors │ ├── Ollie.colors │ ├── OneHalfDark.colors │ ├── OneHalfLight.colors │ ├── Operator Mono Dark.colors │ ├── Overnight Slumber.colors │ ├── PaleNightHC.colors │ ├── Pandora.colors │ ├── Paraiso Dark.colors │ ├── PaulMillr.colors │ ├── PencilDark.colors │ ├── PencilLight.colors │ ├── Peppermint.colors │ ├── Piatto Light.colors │ ├── Pnevma.colors │ ├── Popping and Locking.colors │ ├── Pro Light.colors │ ├── Pro.colors │ ├── Purple Rain.colors │ ├── README.md │ ├── Rapture.colors │ ├── Raycast_Dark.colors │ ├── Raycast_Light.colors │ ├── Red Alert.colors │ ├── Red Planet.colors │ ├── Red Sands.colors │ ├── Relaxed.colors │ ├── Retro.colors │ ├── Rippedcasts.colors │ ├── Rouge 2.colors │ ├── Royal.colors │ ├── Ryuuko.colors │ ├── Sakura.colors │ ├── Scarlet Protocol.colors │ ├── SeaShells.colors │ ├── Seafoam Pastel.colors │ ├── Seti.colors │ ├── Shaman.colors │ ├── Slate.colors │ ├── SleepyHollow.colors │ ├── Smyck.colors │ ├── Snazzy.colors │ ├── SoftServer.colors │ ├── Solarized Darcula.colors │ ├── Solarized Dark - Patched.colors │ ├── Solarized Dark Higher Contrast.colors │ ├── SpaceGray Eighties Dull.colors │ ├── SpaceGray Eighties.colors │ ├── SpaceGray.colors │ ├── Spacedust.colors │ ├── Spiderman.colors │ ├── Spring.colors │ ├── Square.colors │ ├── Sublette.colors │ ├── Subliminal.colors │ ├── Sundried.colors │ ├── Symfonic.colors │ ├── Tango Adapted.colors │ ├── Tango Half Adapted.colors │ ├── Teerb.colors │ ├── Terminal Basic.colors │ ├── Thayer Bright.colors │ ├── The Hulk.colors │ ├── Tinacious Design (Dark).colors │ ├── Tinacious Design (Light).colors │ ├── Tomorrow Night Blue.colors │ ├── Tomorrow Night Bright.colors │ ├── Tomorrow Night Burns.colors │ ├── Tomorrow Night Eighties.colors │ ├── Tomorrow Night.colors │ ├── Tomorrow.colors │ ├── ToyChest.colors │ ├── Treehouse.colors │ ├── Twilight.colors │ ├── Ubuntu.colors │ ├── UltraDark.colors │ ├── UltraViolent.colors │ ├── UnderTheSea.colors │ ├── Unikitty.colors │ ├── Urple.colors │ ├── Vaughn.colors │ ├── VibrantInk.colors │ ├── Violet Dark.colors │ ├── Violet Light.colors │ ├── WarmNeon.colors │ ├── Wez.colors │ ├── Whimsy.colors │ ├── WildCherry.colors │ ├── Wombat.colors │ ├── Wryan.colors │ ├── Zenburn.colors │ ├── arcoiris.colors │ ├── ayu.colors │ ├── ayu_light.colors │ ├── coffee_theme.colors │ ├── cyberpunk.colors │ ├── darkermatrix.colors │ ├── darkmatrix.colors │ ├── deep.colors │ ├── duckbones.colors │ ├── iceberg-dark.colors │ ├── iceberg-light.colors │ ├── idea.colors │ ├── idleToes.colors │ ├── jubi.colors │ ├── kanagawabones.colors │ ├── lovelace.colors │ ├── matrix.colors │ ├── midnight-in-mojave.colors │ ├── neobones_dark.colors │ ├── neobones_light.colors │ ├── nord-light.colors │ ├── nord.colors │ ├── primary.colors │ ├── purplepeter.colors │ ├── rebecca.colors │ ├── seoulbones_dark.colors │ ├── seoulbones_light.colors │ ├── shades-of-purple.colors │ ├── synthwave-everything.colors │ ├── synthwave.colors │ ├── tokyonight-day.colors │ ├── tokyonight-storm.colors │ ├── tokyonight.colors │ ├── vimbones.colors │ ├── zenbones.colors │ ├── zenbones_dark.colors │ ├── zenbones_light.colors │ ├── zenburned.colors │ ├── zenwritten_dark.colors │ └── zenwritten_light.colors └── ui │ ├── remmina_about.glade │ ├── remmina_bug_report.glade │ ├── remmina_info.glade │ ├── remmina_key_chooser.glade │ ├── remmina_main.glade │ ├── remmina_mpc.glade │ ├── remmina_passwd.glade │ ├── remmina_preferences.glade │ ├── remmina_search.glade │ ├── remmina_search_popover.glade │ ├── remmina_snap_info_dialog.glade │ ├── remmina_spinner.glade │ ├── remmina_string_list.glade │ └── remmina_unlock.glade ├── environments ├── README.md ├── vncserver-ssh-socket-forward │ ├── Dockerfile │ ├── entrypoint.sh │ ├── passwd │ ├── run.sh │ ├── ssh_key │ └── ssh_key.pub └── vncserver │ ├── Dockerfile │ ├── entrypoint.sh │ ├── passwd │ └── run.sh ├── flatpak ├── Dockerfile ├── README.md ├── flatpak-build.sh ├── org.remmina.Remmina-local.json ├── org.remmina.Remmina.json ├── patches │ ├── nacl-20110221-cpufreq-fallback.patch │ ├── spice-common-meson-fix.patch │ └── spice-no-polkit-action.patch ├── requirements │ └── webkit.json └── xephyr.json ├── plugins ├── CMakeLists.txt ├── README.md ├── common │ └── remmina_plugin.h ├── exec │ ├── CMakeLists.txt │ ├── exec_plugin.c │ ├── exec_plugin_config.h │ └── scalable │ │ └── emblems │ │ └── org.remmina.Remmina-tool-symbolic.svg ├── gvnc │ ├── CMakeLists.txt │ ├── gvnc_plugin.c │ ├── gvnc_plugin.h │ ├── gvnc_plugin_config.h │ └── scalable │ │ └── emblems │ │ ├── org.remmina.Remmina-gvnc-ssh-symbolic.svg │ │ └── org.remmina.Remmina-gvnc-symbolic.svg ├── kwallet │ ├── CMakeLists.txt │ └── src │ │ ├── kwallet_plugin.cpp │ │ ├── kwallet_plugin.h │ │ └── kwallet_plugin_main.c ├── python_wrapper │ ├── CMakeLists.txt │ ├── pygobject.h │ ├── python_wrapper_common.c │ ├── python_wrapper_common.h │ ├── python_wrapper_entry.c │ ├── python_wrapper_entry.h │ ├── python_wrapper_file.c │ ├── python_wrapper_file.h │ ├── python_wrapper_plugin.c │ ├── python_wrapper_plugin.h │ ├── python_wrapper_pref.c │ ├── python_wrapper_pref.h │ ├── python_wrapper_protocol.c │ ├── python_wrapper_protocol.h │ ├── python_wrapper_protocol_widget.c │ ├── python_wrapper_protocol_widget.h │ ├── python_wrapper_remmina.c │ ├── python_wrapper_remmina.h │ ├── python_wrapper_remmina_file.c │ ├── python_wrapper_remmina_file.h │ ├── python_wrapper_secret.c │ ├── python_wrapper_secret.h │ ├── python_wrapper_tool.c │ └── python_wrapper_tool.h ├── rdp │ ├── CMakeLists.txt │ ├── rdp_channels.c │ ├── rdp_channels.h │ ├── rdp_cliprdr.c │ ├── rdp_cliprdr.h │ ├── rdp_event.c │ ├── rdp_event.h │ ├── rdp_file.c │ ├── rdp_file.h │ ├── rdp_graphics.c │ ├── rdp_graphics.h │ ├── rdp_monitor.c │ ├── rdp_monitor.h │ ├── rdp_plugin.c │ ├── rdp_plugin.h │ ├── rdp_settings.c │ ├── rdp_settings.h │ └── scalable │ │ └── emblems │ │ ├── org.remmina.Remmina-rdp-ssh-symbolic.svg │ │ └── org.remmina.Remmina-rdp-symbolic.svg ├── secret │ ├── CMakeLists.txt │ └── src │ │ ├── glibsecret_plugin.c │ │ └── glibsecret_plugin.h ├── spice │ ├── CMakeLists.txt │ ├── scalable │ │ └── emblems │ │ │ ├── org.remmina.Remmina-spice-ssh-symbolic.svg │ │ │ └── org.remmina.Remmina-spice-symbolic.svg │ ├── spice_file.c │ ├── spice_file.h │ ├── spice_plugin.c │ ├── spice_plugin.h │ ├── spice_plugin_file_transfer.c │ └── spice_plugin_usb.c ├── telepathy │ ├── CMakeLists.txt │ ├── Remmina.client │ ├── org.freedesktop.Telepathy.Client.Remmina.service.in │ ├── telepathy_channel_handler.c │ ├── telepathy_channel_handler.h │ ├── telepathy_handler.c │ ├── telepathy_handler.h │ └── telepathy_plugin.c ├── tool_hello_world │ ├── CMakeLists.txt │ ├── plugin.c │ ├── plugin_config.h │ └── scalable │ │ └── emblems │ │ └── org.remmina.Remmina-tool-symbolic.svg ├── vnc │ ├── CMakeLists.txt │ ├── scalable │ │ └── emblems │ │ │ ├── org.remmina.Remmina-vnc-ssh-symbolic.svg │ │ │ └── org.remmina.Remmina-vnc-symbolic.svg │ ├── vnc_plugin.c │ └── vnc_plugin.h ├── www │ ├── CMakeLists.txt │ ├── resources │ │ └── js │ │ │ ├── .eslintrc.json │ │ │ ├── package.json │ │ │ └── www-js.js │ ├── scalable │ │ └── emblems │ │ │ └── org.remmina.Remmina-www-symbolic.svg │ ├── www_config.h │ ├── www_plugin.c │ ├── www_plugin.h │ ├── www_utils.c │ └── www_utils.h └── x2go │ ├── CMakeLists.txt │ ├── scalable │ └── emblems │ │ ├── org.remmina.Remmina-x2go-ssh-symbolic.svg │ │ └── org.remmina.Remmina-x2go-symbolic.svg │ ├── x2go_plugin.c │ └── x2go_plugin.h ├── po ├── CMakeLists.txt ├── ChangeLog ├── LINGUAS ├── POTFILES.in ├── ar.po ├── ast.po ├── be.po ├── ber.po ├── bg.po ├── bn.po ├── br.po ├── bs.po ├── ca.po ├── ca@valencia.po ├── ckb.po ├── cs.po ├── da.po ├── de.po ├── el.po ├── en_AU.po ├── en_GB.po ├── en_US.po ├── eo.po ├── es.po ├── es_VE.po ├── et.po ├── eu.po ├── fa.po ├── fi.po ├── fr.po ├── gl.po ├── he.po ├── hi.po ├── hr.po ├── hu.po ├── id.po ├── ie.po ├── it.po ├── ja.po ├── ka.po ├── kab.po ├── kk.po ├── km.po ├── kn.po ├── ko.po ├── lt.po ├── lv.po ├── mk.po ├── mr.po ├── ms.po ├── my.po ├── nb.po ├── nl.po ├── oc.po ├── pl.po ├── pt.po ├── pt_BR.po ├── pt_PT.po ├── remmina.pot ├── ro.po ├── ru.po ├── shn.po ├── si.po ├── sk.po ├── sl.po ├── sq.po ├── sr.po ├── sv.po ├── ta.po ├── te.po ├── th.po ├── tr.po ├── ug.po ├── uk.po ├── uz.po ├── uz@cyrillic.po ├── vi.po ├── zh_CN.po └── zh_TW.po ├── remmina.doap ├── res ├── .gitkeep ├── remimna-bot.png ├── remimna-bot.svg ├── santahat.png └── santahat.svg ├── scripts ├── gettranslator.sh ├── i18nstats.sh ├── travis-build.sh ├── ubuntu-build.sh └── update-translations.sh ├── snap ├── local │ ├── files │ │ └── bin │ │ │ └── pawrap │ └── patches │ │ ├── 0001-Fix-seeking-in-Cache-Brush-and-other-Secondary-Drawi.patch │ │ └── 0003-Fixed-6298-Mask-CACHED_BRUSH-when-checking-brush-sty.patch └── snapcraft.yaml ├── src ├── CMakeLists.txt ├── external_tools │ ├── CMakeLists.txt │ ├── functions.sh │ ├── launcher.sh │ ├── remmina_filezilla_sftp.sh │ ├── remmina_filezilla_sftp_pki.sh │ ├── remmina_nslookup.sh │ ├── remmina_ping.sh │ └── remmina_traceroute.sh ├── include │ └── remmina │ │ ├── plugin.h │ │ ├── remmina_trace_calls.h │ │ └── types.h ├── pygobject.h ├── rcw.c ├── rcw.h ├── remmina.1 ├── remmina.c ├── remmina.h ├── remmina.scd ├── remmina_about.c ├── remmina_about.h ├── remmina_applet_menu.c ├── remmina_applet_menu.h ├── remmina_applet_menu_item.c ├── remmina_applet_menu_item.h ├── remmina_avahi.c ├── remmina_avahi.h ├── remmina_bug_report.c ├── remmina_bug_report.h ├── remmina_chat_window.c ├── remmina_chat_window.h ├── remmina_crypt.c ├── remmina_crypt.h ├── remmina_curl_connector.c ├── remmina_curl_connector.h ├── remmina_exec.c ├── remmina_exec.h ├── remmina_ext_exec.c ├── remmina_ext_exec.h ├── remmina_external_tools.c ├── remmina_external_tools.h ├── remmina_file.c ├── remmina_file.h ├── remmina_file_editor.c ├── remmina_file_editor.h ├── remmina_file_manager.c ├── remmina_file_manager.h ├── remmina_ftp_client.c ├── remmina_ftp_client.h ├── remmina_icon.c ├── remmina_icon.h ├── remmina_info.c ├── remmina_info.h ├── remmina_key_chooser.c ├── remmina_key_chooser.h ├── remmina_log.c ├── remmina_log.h ├── remmina_main.c ├── remmina_main.h ├── remmina_marshals.c ├── remmina_marshals.h ├── remmina_marshals.list ├── remmina_masterthread_exec.c ├── remmina_masterthread_exec.h ├── remmina_message_panel.c ├── remmina_message_panel.h ├── remmina_monitor.c ├── remmina_monitor.h ├── remmina_mpchange.c ├── remmina_mpchange.h ├── remmina_passwd.c ├── remmina_passwd.h ├── remmina_plugin_manager.c ├── remmina_plugin_manager.h ├── remmina_plugin_native.c ├── remmina_plugin_native.h ├── remmina_pref.c ├── remmina_pref.h ├── remmina_pref_dialog.c ├── remmina_pref_dialog.h ├── remmina_protocol_widget.c ├── remmina_protocol_widget.h ├── remmina_public.c ├── remmina_public.h ├── remmina_scheduler.c ├── remmina_scheduler.h ├── remmina_scrolled_viewport.c ├── remmina_scrolled_viewport.h ├── remmina_sftp_client.c ├── remmina_sftp_client.h ├── remmina_sftp_plugin.c ├── remmina_sftp_plugin.h ├── remmina_sodium.c ├── remmina_sodium.h ├── remmina_ssh.c ├── remmina_ssh.h ├── remmina_ssh_plugin.c ├── remmina_ssh_plugin.h ├── remmina_string_array.c ├── remmina_string_array.h ├── remmina_string_list.c ├── remmina_string_list.h ├── remmina_sysinfo.c ├── remmina_sysinfo.h ├── remmina_unlock.c ├── remmina_unlock.h ├── remmina_utils.c ├── remmina_utils.h ├── remmina_widget_pool.c └── remmina_widget_pool.h └── translationstats /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitlab/issue_templates/Default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/.gitlab/issue_templates/Default.md -------------------------------------------------------------------------------- /.gitlab/issue_templates/Empty.md: -------------------------------------------------------------------------------- 1 | 2 | Thank you for submitting an issue. -------------------------------------------------------------------------------- /.gitlab/issue_templates/Feature proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/.gitlab/issue_templates/Feature proposal.md -------------------------------------------------------------------------------- /.gitlab/merge_request_templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitlab/merge_request_templates/Default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/.gitlab/merge_request_templates/Default.md -------------------------------------------------------------------------------- /.gitlab/merge_request_templates/Remmina Release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/.gitlab/merge_request_templates/Remmina Release.md -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/.gitmodules -------------------------------------------------------------------------------- /.triage-policies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/.triage-policies.yml -------------------------------------------------------------------------------- /.uncrustify-remmina.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/.uncrustify-remmina.cfg -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.archive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/CHANGELOG.archive.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTACT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/CONTACT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/ChangeLog -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.OpenSSL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/LICENSE.OpenSSL -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/README.md -------------------------------------------------------------------------------- /THANKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/THANKS.md -------------------------------------------------------------------------------- /TRANSLATION: -------------------------------------------------------------------------------- 1 | https://hosted.weblate.org/projects/remmina/ -------------------------------------------------------------------------------- /Ubuntu-Packaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/Ubuntu-Packaging.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | gems: 2 | - jekyll-sitemap 3 | -------------------------------------------------------------------------------- /ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/ci/README.md -------------------------------------------------------------------------------- /ci/dockerfiles/gnome-3-28-1804/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/ci/dockerfiles/gnome-3-28-1804/Dockerfile -------------------------------------------------------------------------------- /ci/dockerfiles/gnome-3-38-2004/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/ci/dockerfiles/gnome-3-38-2004/Dockerfile -------------------------------------------------------------------------------- /ci/dockerfiles/snap-22.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/ci/dockerfiles/snap-22.04/Dockerfile -------------------------------------------------------------------------------- /ci/dockerfiles/ubuntu-16.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/ci/dockerfiles/ubuntu-16.04/Dockerfile -------------------------------------------------------------------------------- /ci/dockerfiles/ubuntu-18.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/ci/dockerfiles/ubuntu-18.04/Dockerfile -------------------------------------------------------------------------------- /ci/dockerfiles/ubuntu-20.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/ci/dockerfiles/ubuntu-20.04/Dockerfile -------------------------------------------------------------------------------- /ci/dockerfiles/ubuntu-22.04/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ci/dockerfiles/ubuntu-22.04/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/ci/dockerfiles/ubuntu-22.04/Dockerfile -------------------------------------------------------------------------------- /cmake/CheckHasModule.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/CheckHasModule.cmake -------------------------------------------------------------------------------- /cmake/ConfigOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/ConfigOptions.cmake -------------------------------------------------------------------------------- /cmake/FindAPPINDICATOR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/FindAPPINDICATOR.cmake -------------------------------------------------------------------------------- /cmake/FindATK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/FindATK.cmake -------------------------------------------------------------------------------- /cmake/FindAvahi.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/FindAvahi.cmake -------------------------------------------------------------------------------- /cmake/FindCairo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/FindCairo.cmake -------------------------------------------------------------------------------- /cmake/FindFFMPEG.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/FindFFMPEG.cmake -------------------------------------------------------------------------------- /cmake/FindFeature.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/FindFeature.cmake -------------------------------------------------------------------------------- /cmake/FindGCRYPT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/FindGCRYPT.cmake -------------------------------------------------------------------------------- /cmake/FindGDK3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/FindGDK3.cmake -------------------------------------------------------------------------------- /cmake/FindGDKPixbuf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/FindGDKPixbuf.cmake -------------------------------------------------------------------------------- /cmake/FindGIO.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/FindGIO.cmake -------------------------------------------------------------------------------- /cmake/FindGLib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/FindGLib.cmake -------------------------------------------------------------------------------- /cmake/FindGNOMEKEYRING.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/FindGNOMEKEYRING.cmake -------------------------------------------------------------------------------- /cmake/FindGObject.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/FindGObject.cmake -------------------------------------------------------------------------------- /cmake/FindGTK-VNC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/FindGTK-VNC.cmake -------------------------------------------------------------------------------- /cmake/FindGTK3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/FindGTK3.cmake -------------------------------------------------------------------------------- /cmake/FindJSONGLIB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/FindJSONGLIB.cmake -------------------------------------------------------------------------------- /cmake/FindLIBSOUP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/FindLIBSOUP.cmake -------------------------------------------------------------------------------- /cmake/FindLIBSSH.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/FindLIBSSH.cmake -------------------------------------------------------------------------------- /cmake/FindLIBVNCSERVER.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/FindLIBVNCSERVER.cmake -------------------------------------------------------------------------------- /cmake/FindLibsecret.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/FindLibsecret.cmake -------------------------------------------------------------------------------- /cmake/FindOptionalPackage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/FindOptionalPackage.cmake -------------------------------------------------------------------------------- /cmake/FindPCRE2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/FindPCRE2.cmake -------------------------------------------------------------------------------- /cmake/FindPango.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/FindPango.cmake -------------------------------------------------------------------------------- /cmake/FindSharedMimeInfo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/FindSharedMimeInfo.cmake -------------------------------------------------------------------------------- /cmake/FindSpice.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/FindSpice.cmake -------------------------------------------------------------------------------- /cmake/FindTELEPATHY.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/FindTELEPATHY.cmake -------------------------------------------------------------------------------- /cmake/FindVTE.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/FindVTE.cmake -------------------------------------------------------------------------------- /cmake/FindWEBKIT2GTK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/FindWEBKIT2GTK.cmake -------------------------------------------------------------------------------- /cmake/FindWayland.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/FindWayland.cmake -------------------------------------------------------------------------------- /cmake/FindXKBFILE.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/FindXKBFILE.cmake -------------------------------------------------------------------------------- /cmake/Findsodium.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/Findsodium.cmake -------------------------------------------------------------------------------- /cmake/GETTEXT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/GETTEXT.cmake -------------------------------------------------------------------------------- /cmake/GetGitRevisionDescription.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/GetGitRevisionDescription.cmake -------------------------------------------------------------------------------- /cmake/GetGitRevisionDescription.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/GetGitRevisionDescription.cmake.in -------------------------------------------------------------------------------- /cmake/GtkUpdateIconCache.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/GtkUpdateIconCache.cmake -------------------------------------------------------------------------------- /cmake/LibFindMacros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/LibFindMacros.cmake -------------------------------------------------------------------------------- /cmake/MacroEnsureVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/MacroEnsureVersion.cmake -------------------------------------------------------------------------------- /cmake/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /cmake/macros/BuildTargetScript.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/macros/BuildTargetScript.cmake -------------------------------------------------------------------------------- /cmake/macros/CompileGResources.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/macros/CompileGResources.cmake -------------------------------------------------------------------------------- /cmake/macros/GenerateGXML.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/macros/GenerateGXML.cmake -------------------------------------------------------------------------------- /cmake/macros/GlibCompileResourcesSupport.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/macros/GlibCompileResourcesSupport.cmake -------------------------------------------------------------------------------- /cmake/macros/TargetArch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/cmake/macros/TargetArch.cmake -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/config.h.in -------------------------------------------------------------------------------- /data/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/CMakeLists.txt -------------------------------------------------------------------------------- /data/desktop/128x128/apps/org.remmina.Remmina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/desktop/128x128/apps/org.remmina.Remmina.png -------------------------------------------------------------------------------- /data/desktop/16x16/apps/org.remmina.Remmina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/desktop/16x16/apps/org.remmina.Remmina.png -------------------------------------------------------------------------------- /data/desktop/16x16/status/org.remmina.Remmina-status.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/desktop/16x16/status/org.remmina.Remmina-status.svg -------------------------------------------------------------------------------- /data/desktop/22x22/apps/org.remmina.Remmina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/desktop/22x22/apps/org.remmina.Remmina.png -------------------------------------------------------------------------------- /data/desktop/22x22/status/org.remmina.Remmina-status.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/desktop/22x22/status/org.remmina.Remmina-status.svg -------------------------------------------------------------------------------- /data/desktop/24x24/apps/org.remmina.Remmina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/desktop/24x24/apps/org.remmina.Remmina.png -------------------------------------------------------------------------------- /data/desktop/24x24/status/org.remmina.Remmina-status.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/desktop/24x24/status/org.remmina.Remmina-status.svg -------------------------------------------------------------------------------- /data/desktop/256x256/apps/org.remmina.Remmina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/desktop/256x256/apps/org.remmina.Remmina.png -------------------------------------------------------------------------------- /data/desktop/32x32/apps/org.remmina.Remmina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/desktop/32x32/apps/org.remmina.Remmina.png -------------------------------------------------------------------------------- /data/desktop/32x32/status/org.remmina.Remmina-status.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/desktop/32x32/status/org.remmina.Remmina-status.svg -------------------------------------------------------------------------------- /data/desktop/48x48/apps/org.remmina.Remmina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/desktop/48x48/apps/org.remmina.Remmina.png -------------------------------------------------------------------------------- /data/desktop/48x48/status/org.remmina.Remmina-status.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/desktop/48x48/status/org.remmina.Remmina-status.svg -------------------------------------------------------------------------------- /data/desktop/512x512/apps/org.remmina.Remmina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/desktop/512x512/apps/org.remmina.Remmina.png -------------------------------------------------------------------------------- /data/desktop/64x64/apps/org.remmina.Remmina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/desktop/64x64/apps/org.remmina.Remmina.png -------------------------------------------------------------------------------- /data/desktop/64x64/status/org.remmina.Remmina-status.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/desktop/64x64/status/org.remmina.Remmina-status.svg -------------------------------------------------------------------------------- /data/desktop/72x72/apps/org.remmina.Remmina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/desktop/72x72/apps/org.remmina.Remmina.png -------------------------------------------------------------------------------- /data/desktop/96x96/apps/org.remmina.Remmina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/desktop/96x96/apps/org.remmina.Remmina.png -------------------------------------------------------------------------------- /data/desktop/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/desktop/CMakeLists.txt -------------------------------------------------------------------------------- /data/desktop/gnome-session-remmina: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/desktop/gnome-session-remmina -------------------------------------------------------------------------------- /data/desktop/gnome-session-remmina.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/desktop/gnome-session-remmina.1 -------------------------------------------------------------------------------- /data/desktop/org.remmina.Remmina-file.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/desktop/org.remmina.Remmina-file.desktop.in -------------------------------------------------------------------------------- /data/desktop/org.remmina.Remmina-mime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/desktop/org.remmina.Remmina-mime.xml -------------------------------------------------------------------------------- /data/desktop/org.remmina.Remmina.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/desktop/org.remmina.Remmina.appdata.xml -------------------------------------------------------------------------------- /data/desktop/org.remmina.Remmina.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/desktop/org.remmina.Remmina.desktop.in -------------------------------------------------------------------------------- /data/desktop/remmina-file-wrapper.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/desktop/remmina-file-wrapper.1 -------------------------------------------------------------------------------- /data/desktop/remmina-file-wrapper.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/desktop/remmina-file-wrapper.in -------------------------------------------------------------------------------- /data/desktop/remmina-gnome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/desktop/remmina-gnome -------------------------------------------------------------------------------- /data/desktop/remmina-gnome-xsession.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/desktop/remmina-gnome-xsession.desktop -------------------------------------------------------------------------------- /data/desktop/remmina-gnome.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/desktop/remmina-gnome.1 -------------------------------------------------------------------------------- /data/desktop/remmina-gnome.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/desktop/remmina-gnome.desktop -------------------------------------------------------------------------------- /data/desktop/remmina-gnome.session: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/desktop/remmina-gnome.session -------------------------------------------------------------------------------- /data/desktop/scalable/apps/org.remmina.Remmina-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/desktop/scalable/apps/org.remmina.Remmina-symbolic.svg -------------------------------------------------------------------------------- /data/desktop/scalable/apps/org.remmina.Remmina.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/desktop/scalable/apps/org.remmina.Remmina.svg -------------------------------------------------------------------------------- /data/desktop/scalable/apps/remmina-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/desktop/scalable/apps/remmina-symbolic.svg -------------------------------------------------------------------------------- /data/icons/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/icons/CMakeLists.txt -------------------------------------------------------------------------------- /data/icons/scalable/actions/org.remmina.Remmina-camera-photo-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/icons/scalable/actions/org.remmina.Remmina-camera-photo-symbolic.svg -------------------------------------------------------------------------------- /data/icons/scalable/actions/org.remmina.Remmina-connect-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/icons/scalable/actions/org.remmina.Remmina-connect-symbolic.svg -------------------------------------------------------------------------------- /data/icons/scalable/actions/org.remmina.Remmina-disconnect-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/icons/scalable/actions/org.remmina.Remmina-disconnect-symbolic.svg -------------------------------------------------------------------------------- /data/icons/scalable/actions/org.remmina.Remmina-document-save-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/icons/scalable/actions/org.remmina.Remmina-document-save-symbolic.svg -------------------------------------------------------------------------------- /data/icons/scalable/actions/org.remmina.Remmina-document-send-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/icons/scalable/actions/org.remmina.Remmina-document-send-symbolic.svg -------------------------------------------------------------------------------- /data/icons/scalable/actions/org.remmina.Remmina-duplicate-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/icons/scalable/actions/org.remmina.Remmina-duplicate-symbolic.svg -------------------------------------------------------------------------------- /data/icons/scalable/actions/org.remmina.Remmina-dynres-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/icons/scalable/actions/org.remmina.Remmina-dynres-symbolic.svg -------------------------------------------------------------------------------- /data/icons/scalable/actions/org.remmina.Remmina-fit-window-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/icons/scalable/actions/org.remmina.Remmina-fit-window-symbolic.svg -------------------------------------------------------------------------------- /data/icons/scalable/actions/org.remmina.Remmina-fullscreen-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/icons/scalable/actions/org.remmina.Remmina-fullscreen-symbolic.svg -------------------------------------------------------------------------------- /data/icons/scalable/actions/org.remmina.Remmina-go-bottom-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/icons/scalable/actions/org.remmina.Remmina-go-bottom-symbolic.svg -------------------------------------------------------------------------------- /data/icons/scalable/actions/org.remmina.Remmina-keyboard-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/icons/scalable/actions/org.remmina.Remmina-keyboard-symbolic.svg -------------------------------------------------------------------------------- /data/icons/scalable/actions/org.remmina.Remmina-multi-monitor-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/icons/scalable/actions/org.remmina.Remmina-multi-monitor-symbolic.svg -------------------------------------------------------------------------------- /data/icons/scalable/actions/org.remmina.Remmina-pan-down-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/icons/scalable/actions/org.remmina.Remmina-pan-down-symbolic.svg -------------------------------------------------------------------------------- /data/icons/scalable/actions/org.remmina.Remmina-pan-up-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/icons/scalable/actions/org.remmina.Remmina-pan-up-symbolic.svg -------------------------------------------------------------------------------- /data/icons/scalable/actions/org.remmina.Remmina-password-conceal-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/icons/scalable/actions/org.remmina.Remmina-password-conceal-symbolic.svg -------------------------------------------------------------------------------- /data/icons/scalable/actions/org.remmina.Remmina-password-reveal-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/icons/scalable/actions/org.remmina.Remmina-password-reveal-symbolic.svg -------------------------------------------------------------------------------- /data/icons/scalable/actions/org.remmina.Remmina-pin-down-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/icons/scalable/actions/org.remmina.Remmina-pin-down-symbolic.svg -------------------------------------------------------------------------------- /data/icons/scalable/actions/org.remmina.Remmina-pin-up-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/icons/scalable/actions/org.remmina.Remmina-pin-up-symbolic.svg -------------------------------------------------------------------------------- /data/icons/scalable/actions/org.remmina.Remmina-preferences-system-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/icons/scalable/actions/org.remmina.Remmina-preferences-system-symbolic.svg -------------------------------------------------------------------------------- /data/icons/scalable/actions/org.remmina.Remmina-reconnect-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/icons/scalable/actions/org.remmina.Remmina-reconnect-symbolic.svg -------------------------------------------------------------------------------- /data/icons/scalable/actions/org.remmina.Remmina-scale-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/icons/scalable/actions/org.remmina.Remmina-scale-symbolic.svg -------------------------------------------------------------------------------- /data/icons/scalable/actions/org.remmina.Remmina-switch-page-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/icons/scalable/actions/org.remmina.Remmina-switch-page-symbolic.svg -------------------------------------------------------------------------------- /data/icons/scalable/actions/org.remmina.Remmina-system-run-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/icons/scalable/actions/org.remmina.Remmina-system-run-symbolic.svg -------------------------------------------------------------------------------- /data/icons/scalable/emblems/org.remmina.Remmina-sftp-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/icons/scalable/emblems/org.remmina.Remmina-sftp-symbolic.svg -------------------------------------------------------------------------------- /data/icons/scalable/emblems/org.remmina.Remmina-ssh-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/icons/scalable/emblems/org.remmina.Remmina-ssh-symbolic.svg -------------------------------------------------------------------------------- /data/icons/scalable/emblems/org.remmina.Remmina-status-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/icons/scalable/emblems/org.remmina.Remmina-status-green.svg -------------------------------------------------------------------------------- /data/icons/scalable/emblems/org.remmina.Remmina-status-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/icons/scalable/emblems/org.remmina.Remmina-status-grey.svg -------------------------------------------------------------------------------- /data/icons/scalable/emblems/org.remmina.Remmina-status-red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/icons/scalable/emblems/org.remmina.Remmina-status-red.svg -------------------------------------------------------------------------------- /data/remmina.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/remmina.pc.in -------------------------------------------------------------------------------- /data/reports/chartkick.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/reports/chartkick.min.js -------------------------------------------------------------------------------- /data/reports/postats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/reports/postats.html -------------------------------------------------------------------------------- /data/theme/3024 Day.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/3024 Day.colors -------------------------------------------------------------------------------- /data/theme/3024 Night.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/3024 Night.colors -------------------------------------------------------------------------------- /data/theme/Abernathy.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Abernathy.colors -------------------------------------------------------------------------------- /data/theme/Adventure.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Adventure.colors -------------------------------------------------------------------------------- /data/theme/AdventureTime.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/AdventureTime.colors -------------------------------------------------------------------------------- /data/theme/Afterglow.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Afterglow.colors -------------------------------------------------------------------------------- /data/theme/Alabaster.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Alabaster.colors -------------------------------------------------------------------------------- /data/theme/AlienBlood.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/AlienBlood.colors -------------------------------------------------------------------------------- /data/theme/Andromeda.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Andromeda.colors -------------------------------------------------------------------------------- /data/theme/Argonaut.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Argonaut.colors -------------------------------------------------------------------------------- /data/theme/Arthur.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Arthur.colors -------------------------------------------------------------------------------- /data/theme/AtelierSulphurpool.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/AtelierSulphurpool.colors -------------------------------------------------------------------------------- /data/theme/Atom.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Atom.colors -------------------------------------------------------------------------------- /data/theme/AtomOneLight.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/AtomOneLight.colors -------------------------------------------------------------------------------- /data/theme/Aurora.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Aurora.colors -------------------------------------------------------------------------------- /data/theme/Ayu Mirage.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Ayu Mirage.colors -------------------------------------------------------------------------------- /data/theme/Banana Blueberry.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Banana Blueberry.colors -------------------------------------------------------------------------------- /data/theme/Batman.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Batman.colors -------------------------------------------------------------------------------- /data/theme/Belafonte Day.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Belafonte Day.colors -------------------------------------------------------------------------------- /data/theme/Belafonte Night.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Belafonte Night.colors -------------------------------------------------------------------------------- /data/theme/BirdsOfParadise.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/BirdsOfParadise.colors -------------------------------------------------------------------------------- /data/theme/Blazer.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Blazer.colors -------------------------------------------------------------------------------- /data/theme/Blue Matrix.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Blue Matrix.colors -------------------------------------------------------------------------------- /data/theme/BlueBerryPie.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/BlueBerryPie.colors -------------------------------------------------------------------------------- /data/theme/BlueDolphin.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/BlueDolphin.colors -------------------------------------------------------------------------------- /data/theme/BlulocoDark.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/BlulocoDark.colors -------------------------------------------------------------------------------- /data/theme/BlulocoLight.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/BlulocoLight.colors -------------------------------------------------------------------------------- /data/theme/Borland.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Borland.colors -------------------------------------------------------------------------------- /data/theme/Breeze.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Breeze.colors -------------------------------------------------------------------------------- /data/theme/Bright Lights.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Bright Lights.colors -------------------------------------------------------------------------------- /data/theme/Broadcast.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Broadcast.colors -------------------------------------------------------------------------------- /data/theme/Brogrammer.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Brogrammer.colors -------------------------------------------------------------------------------- /data/theme/Builtin Dark.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Builtin Dark.colors -------------------------------------------------------------------------------- /data/theme/Builtin Light.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Builtin Light.colors -------------------------------------------------------------------------------- /data/theme/Builtin Pastel Dark.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Builtin Pastel Dark.colors -------------------------------------------------------------------------------- /data/theme/Builtin Solarized Dark.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Builtin Solarized Dark.colors -------------------------------------------------------------------------------- /data/theme/Builtin Solarized Light.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Builtin Solarized Light.colors -------------------------------------------------------------------------------- /data/theme/Builtin Tango Dark.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Builtin Tango Dark.colors -------------------------------------------------------------------------------- /data/theme/Builtin Tango Light.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Builtin Tango Light.colors -------------------------------------------------------------------------------- /data/theme/C64.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/C64.colors -------------------------------------------------------------------------------- /data/theme/CGA.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/CGA.colors -------------------------------------------------------------------------------- /data/theme/CLRS.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/CLRS.colors -------------------------------------------------------------------------------- /data/theme/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/CMakeLists.txt -------------------------------------------------------------------------------- /data/theme/Calamity.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Calamity.colors -------------------------------------------------------------------------------- /data/theme/Chalk.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Chalk.colors -------------------------------------------------------------------------------- /data/theme/Chalkboard.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Chalkboard.colors -------------------------------------------------------------------------------- /data/theme/ChallengerDeep.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/ChallengerDeep.colors -------------------------------------------------------------------------------- /data/theme/Chester.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Chester.colors -------------------------------------------------------------------------------- /data/theme/Ciapre.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Ciapre.colors -------------------------------------------------------------------------------- /data/theme/Cobalt Neon.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Cobalt Neon.colors -------------------------------------------------------------------------------- /data/theme/Cobalt2.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Cobalt2.colors -------------------------------------------------------------------------------- /data/theme/CrayonPonyFish.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/CrayonPonyFish.colors -------------------------------------------------------------------------------- /data/theme/Cyberdyne.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Cyberdyne.colors -------------------------------------------------------------------------------- /data/theme/Dark Pastel.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Dark Pastel.colors -------------------------------------------------------------------------------- /data/theme/Dark+.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Dark+.colors -------------------------------------------------------------------------------- /data/theme/Darkside.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Darkside.colors -------------------------------------------------------------------------------- /data/theme/Desert.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Desert.colors -------------------------------------------------------------------------------- /data/theme/DimmedMonokai.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/DimmedMonokai.colors -------------------------------------------------------------------------------- /data/theme/Django.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Django.colors -------------------------------------------------------------------------------- /data/theme/DjangoRebornAgain.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/DjangoRebornAgain.colors -------------------------------------------------------------------------------- /data/theme/DjangoSmooth.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/DjangoSmooth.colors -------------------------------------------------------------------------------- /data/theme/Doom Peacock.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Doom Peacock.colors -------------------------------------------------------------------------------- /data/theme/DoomOne.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/DoomOne.colors -------------------------------------------------------------------------------- /data/theme/DotGov.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/DotGov.colors -------------------------------------------------------------------------------- /data/theme/Dracula+.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Dracula+.colors -------------------------------------------------------------------------------- /data/theme/Dracula.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Dracula.colors -------------------------------------------------------------------------------- /data/theme/Duotone Dark.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Duotone Dark.colors -------------------------------------------------------------------------------- /data/theme/ENCOM.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/ENCOM.colors -------------------------------------------------------------------------------- /data/theme/Earthsong.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Earthsong.colors -------------------------------------------------------------------------------- /data/theme/Elemental.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Elemental.colors -------------------------------------------------------------------------------- /data/theme/Elementary.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Elementary.colors -------------------------------------------------------------------------------- /data/theme/Espresso Libre.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Espresso Libre.colors -------------------------------------------------------------------------------- /data/theme/Espresso.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Espresso.colors -------------------------------------------------------------------------------- /data/theme/Fahrenheit.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Fahrenheit.colors -------------------------------------------------------------------------------- /data/theme/Fairyfloss.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Fairyfloss.colors -------------------------------------------------------------------------------- /data/theme/Fideloper.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Fideloper.colors -------------------------------------------------------------------------------- /data/theme/FirefoxDev.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/FirefoxDev.colors -------------------------------------------------------------------------------- /data/theme/Firewatch.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Firewatch.colors -------------------------------------------------------------------------------- /data/theme/FishTank.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/FishTank.colors -------------------------------------------------------------------------------- /data/theme/Flat.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Flat.colors -------------------------------------------------------------------------------- /data/theme/Flatland.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Flatland.colors -------------------------------------------------------------------------------- /data/theme/Floraverse.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Floraverse.colors -------------------------------------------------------------------------------- /data/theme/ForestBlue.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/ForestBlue.colors -------------------------------------------------------------------------------- /data/theme/Framer.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Framer.colors -------------------------------------------------------------------------------- /data/theme/FrontEndDelight.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/FrontEndDelight.colors -------------------------------------------------------------------------------- /data/theme/FunForrest.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/FunForrest.colors -------------------------------------------------------------------------------- /data/theme/Galaxy.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Galaxy.colors -------------------------------------------------------------------------------- /data/theme/Galizur.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Galizur.colors -------------------------------------------------------------------------------- /data/theme/GitHub Dark.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/GitHub Dark.colors -------------------------------------------------------------------------------- /data/theme/Github.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Github.colors -------------------------------------------------------------------------------- /data/theme/Glacier.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Glacier.colors -------------------------------------------------------------------------------- /data/theme/Grape.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Grape.colors -------------------------------------------------------------------------------- /data/theme/Grass.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Grass.colors -------------------------------------------------------------------------------- /data/theme/Grey-green.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Grey-green.colors -------------------------------------------------------------------------------- /data/theme/Gruvbox Dark.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Gruvbox Dark.colors -------------------------------------------------------------------------------- /data/theme/Gruvbox Light.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Gruvbox Light.colors -------------------------------------------------------------------------------- /data/theme/Guezwhoz.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Guezwhoz.colors -------------------------------------------------------------------------------- /data/theme/HaX0R_BLUE.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/HaX0R_BLUE.colors -------------------------------------------------------------------------------- /data/theme/HaX0R_GR33N.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/HaX0R_GR33N.colors -------------------------------------------------------------------------------- /data/theme/HaX0R_R3D.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/HaX0R_R3D.colors -------------------------------------------------------------------------------- /data/theme/Hacktober.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Hacktober.colors -------------------------------------------------------------------------------- /data/theme/Hardcore.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Hardcore.colors -------------------------------------------------------------------------------- /data/theme/Harper.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Harper.colors -------------------------------------------------------------------------------- /data/theme/Highway.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Highway.colors -------------------------------------------------------------------------------- /data/theme/Hipster Green.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Hipster Green.colors -------------------------------------------------------------------------------- /data/theme/Hivacruz.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Hivacruz.colors -------------------------------------------------------------------------------- /data/theme/Homebrew.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Homebrew.colors -------------------------------------------------------------------------------- /data/theme/Hopscotch.256.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Hopscotch.256.colors -------------------------------------------------------------------------------- /data/theme/Hopscotch.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Hopscotch.colors -------------------------------------------------------------------------------- /data/theme/Hurtado.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Hurtado.colors -------------------------------------------------------------------------------- /data/theme/Hybrid.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Hybrid.colors -------------------------------------------------------------------------------- /data/theme/IC_Green_PPL.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/IC_Green_PPL.colors -------------------------------------------------------------------------------- /data/theme/IC_Orange_PPL.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/IC_Orange_PPL.colors -------------------------------------------------------------------------------- /data/theme/IR_Black.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/IR_Black.colors -------------------------------------------------------------------------------- /data/theme/Jackie Brown.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Jackie Brown.colors -------------------------------------------------------------------------------- /data/theme/Japanesque.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Japanesque.colors -------------------------------------------------------------------------------- /data/theme/Jellybeans.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Jellybeans.colors -------------------------------------------------------------------------------- /data/theme/JetBrains Darcula.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/JetBrains Darcula.colors -------------------------------------------------------------------------------- /data/theme/Kibble.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Kibble.colors -------------------------------------------------------------------------------- /data/theme/Kolorit.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Kolorit.colors -------------------------------------------------------------------------------- /data/theme/Konsolas.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Konsolas.colors -------------------------------------------------------------------------------- /data/theme/Lab Fox.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Lab Fox.colors -------------------------------------------------------------------------------- /data/theme/Laser.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Laser.colors -------------------------------------------------------------------------------- /data/theme/Later This Evening.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Later This Evening.colors -------------------------------------------------------------------------------- /data/theme/Lavandula.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Lavandula.colors -------------------------------------------------------------------------------- /data/theme/LiquidCarbon.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/LiquidCarbon.colors -------------------------------------------------------------------------------- /data/theme/LiquidCarbonTransparent.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/LiquidCarbonTransparent.colors -------------------------------------------------------------------------------- /data/theme/LiquidCarbonTransparentInverse.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/LiquidCarbonTransparentInverse.colors -------------------------------------------------------------------------------- /data/theme/Man Page.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Man Page.colors -------------------------------------------------------------------------------- /data/theme/Mariana.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Mariana.colors -------------------------------------------------------------------------------- /data/theme/Material.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Material.colors -------------------------------------------------------------------------------- /data/theme/MaterialDark.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/MaterialDark.colors -------------------------------------------------------------------------------- /data/theme/MaterialDarker.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/MaterialDarker.colors -------------------------------------------------------------------------------- /data/theme/MaterialDesignColors.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/MaterialDesignColors.colors -------------------------------------------------------------------------------- /data/theme/MaterialOcean.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/MaterialOcean.colors -------------------------------------------------------------------------------- /data/theme/Mathias.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Mathias.colors -------------------------------------------------------------------------------- /data/theme/Medallion.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Medallion.colors -------------------------------------------------------------------------------- /data/theme/Mirage.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Mirage.colors -------------------------------------------------------------------------------- /data/theme/Misterioso.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Misterioso.colors -------------------------------------------------------------------------------- /data/theme/Molokai.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Molokai.colors -------------------------------------------------------------------------------- /data/theme/MonaLisa.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/MonaLisa.colors -------------------------------------------------------------------------------- /data/theme/Monokai Remastered.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Monokai Remastered.colors -------------------------------------------------------------------------------- /data/theme/Monokai Soda.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Monokai Soda.colors -------------------------------------------------------------------------------- /data/theme/Monokai Vivid.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Monokai Vivid.colors -------------------------------------------------------------------------------- /data/theme/N0tch2k.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/N0tch2k.colors -------------------------------------------------------------------------------- /data/theme/Neon.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Neon.colors -------------------------------------------------------------------------------- /data/theme/Neopolitan.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Neopolitan.colors -------------------------------------------------------------------------------- /data/theme/Neutron.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Neutron.colors -------------------------------------------------------------------------------- /data/theme/Night Owlish Light.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Night Owlish Light.colors -------------------------------------------------------------------------------- /data/theme/NightLion v1.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/NightLion v1.colors -------------------------------------------------------------------------------- /data/theme/NightLion v2.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/NightLion v2.colors -------------------------------------------------------------------------------- /data/theme/Nocturnal Winter.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Nocturnal Winter.colors -------------------------------------------------------------------------------- /data/theme/Novel.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Novel.colors -------------------------------------------------------------------------------- /data/theme/Obsidian.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Obsidian.colors -------------------------------------------------------------------------------- /data/theme/Ocean.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Ocean.colors -------------------------------------------------------------------------------- /data/theme/Oceanic-Next.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Oceanic-Next.colors -------------------------------------------------------------------------------- /data/theme/OceanicMaterial.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/OceanicMaterial.colors -------------------------------------------------------------------------------- /data/theme/Ollie.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Ollie.colors -------------------------------------------------------------------------------- /data/theme/OneHalfDark.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/OneHalfDark.colors -------------------------------------------------------------------------------- /data/theme/OneHalfLight.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/OneHalfLight.colors -------------------------------------------------------------------------------- /data/theme/Operator Mono Dark.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Operator Mono Dark.colors -------------------------------------------------------------------------------- /data/theme/Overnight Slumber.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Overnight Slumber.colors -------------------------------------------------------------------------------- /data/theme/PaleNightHC.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/PaleNightHC.colors -------------------------------------------------------------------------------- /data/theme/Pandora.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Pandora.colors -------------------------------------------------------------------------------- /data/theme/Paraiso Dark.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Paraiso Dark.colors -------------------------------------------------------------------------------- /data/theme/PaulMillr.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/PaulMillr.colors -------------------------------------------------------------------------------- /data/theme/PencilDark.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/PencilDark.colors -------------------------------------------------------------------------------- /data/theme/PencilLight.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/PencilLight.colors -------------------------------------------------------------------------------- /data/theme/Peppermint.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Peppermint.colors -------------------------------------------------------------------------------- /data/theme/Piatto Light.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Piatto Light.colors -------------------------------------------------------------------------------- /data/theme/Pnevma.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Pnevma.colors -------------------------------------------------------------------------------- /data/theme/Popping and Locking.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Popping and Locking.colors -------------------------------------------------------------------------------- /data/theme/Pro Light.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Pro Light.colors -------------------------------------------------------------------------------- /data/theme/Pro.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Pro.colors -------------------------------------------------------------------------------- /data/theme/Purple Rain.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Purple Rain.colors -------------------------------------------------------------------------------- /data/theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/README.md -------------------------------------------------------------------------------- /data/theme/Rapture.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Rapture.colors -------------------------------------------------------------------------------- /data/theme/Raycast_Dark.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Raycast_Dark.colors -------------------------------------------------------------------------------- /data/theme/Raycast_Light.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Raycast_Light.colors -------------------------------------------------------------------------------- /data/theme/Red Alert.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Red Alert.colors -------------------------------------------------------------------------------- /data/theme/Red Planet.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Red Planet.colors -------------------------------------------------------------------------------- /data/theme/Red Sands.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Red Sands.colors -------------------------------------------------------------------------------- /data/theme/Relaxed.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Relaxed.colors -------------------------------------------------------------------------------- /data/theme/Retro.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Retro.colors -------------------------------------------------------------------------------- /data/theme/Rippedcasts.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Rippedcasts.colors -------------------------------------------------------------------------------- /data/theme/Rouge 2.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Rouge 2.colors -------------------------------------------------------------------------------- /data/theme/Royal.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Royal.colors -------------------------------------------------------------------------------- /data/theme/Ryuuko.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Ryuuko.colors -------------------------------------------------------------------------------- /data/theme/Sakura.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Sakura.colors -------------------------------------------------------------------------------- /data/theme/Scarlet Protocol.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Scarlet Protocol.colors -------------------------------------------------------------------------------- /data/theme/SeaShells.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/SeaShells.colors -------------------------------------------------------------------------------- /data/theme/Seafoam Pastel.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Seafoam Pastel.colors -------------------------------------------------------------------------------- /data/theme/Seti.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Seti.colors -------------------------------------------------------------------------------- /data/theme/Shaman.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Shaman.colors -------------------------------------------------------------------------------- /data/theme/Slate.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Slate.colors -------------------------------------------------------------------------------- /data/theme/SleepyHollow.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/SleepyHollow.colors -------------------------------------------------------------------------------- /data/theme/Smyck.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Smyck.colors -------------------------------------------------------------------------------- /data/theme/Snazzy.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Snazzy.colors -------------------------------------------------------------------------------- /data/theme/SoftServer.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/SoftServer.colors -------------------------------------------------------------------------------- /data/theme/Solarized Darcula.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Solarized Darcula.colors -------------------------------------------------------------------------------- /data/theme/Solarized Dark - Patched.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Solarized Dark - Patched.colors -------------------------------------------------------------------------------- /data/theme/Solarized Dark Higher Contrast.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Solarized Dark Higher Contrast.colors -------------------------------------------------------------------------------- /data/theme/SpaceGray Eighties Dull.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/SpaceGray Eighties Dull.colors -------------------------------------------------------------------------------- /data/theme/SpaceGray Eighties.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/SpaceGray Eighties.colors -------------------------------------------------------------------------------- /data/theme/SpaceGray.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/SpaceGray.colors -------------------------------------------------------------------------------- /data/theme/Spacedust.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Spacedust.colors -------------------------------------------------------------------------------- /data/theme/Spiderman.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Spiderman.colors -------------------------------------------------------------------------------- /data/theme/Spring.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Spring.colors -------------------------------------------------------------------------------- /data/theme/Square.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Square.colors -------------------------------------------------------------------------------- /data/theme/Sublette.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Sublette.colors -------------------------------------------------------------------------------- /data/theme/Subliminal.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Subliminal.colors -------------------------------------------------------------------------------- /data/theme/Sundried.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Sundried.colors -------------------------------------------------------------------------------- /data/theme/Symfonic.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Symfonic.colors -------------------------------------------------------------------------------- /data/theme/Tango Adapted.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Tango Adapted.colors -------------------------------------------------------------------------------- /data/theme/Tango Half Adapted.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Tango Half Adapted.colors -------------------------------------------------------------------------------- /data/theme/Teerb.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Teerb.colors -------------------------------------------------------------------------------- /data/theme/Terminal Basic.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Terminal Basic.colors -------------------------------------------------------------------------------- /data/theme/Thayer Bright.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Thayer Bright.colors -------------------------------------------------------------------------------- /data/theme/The Hulk.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/The Hulk.colors -------------------------------------------------------------------------------- /data/theme/Tinacious Design (Dark).colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Tinacious Design (Dark).colors -------------------------------------------------------------------------------- /data/theme/Tinacious Design (Light).colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Tinacious Design (Light).colors -------------------------------------------------------------------------------- /data/theme/Tomorrow Night Blue.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Tomorrow Night Blue.colors -------------------------------------------------------------------------------- /data/theme/Tomorrow Night Bright.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Tomorrow Night Bright.colors -------------------------------------------------------------------------------- /data/theme/Tomorrow Night Burns.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Tomorrow Night Burns.colors -------------------------------------------------------------------------------- /data/theme/Tomorrow Night Eighties.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Tomorrow Night Eighties.colors -------------------------------------------------------------------------------- /data/theme/Tomorrow Night.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Tomorrow Night.colors -------------------------------------------------------------------------------- /data/theme/Tomorrow.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Tomorrow.colors -------------------------------------------------------------------------------- /data/theme/ToyChest.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/ToyChest.colors -------------------------------------------------------------------------------- /data/theme/Treehouse.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Treehouse.colors -------------------------------------------------------------------------------- /data/theme/Twilight.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Twilight.colors -------------------------------------------------------------------------------- /data/theme/Ubuntu.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Ubuntu.colors -------------------------------------------------------------------------------- /data/theme/UltraDark.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/UltraDark.colors -------------------------------------------------------------------------------- /data/theme/UltraViolent.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/UltraViolent.colors -------------------------------------------------------------------------------- /data/theme/UnderTheSea.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/UnderTheSea.colors -------------------------------------------------------------------------------- /data/theme/Unikitty.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Unikitty.colors -------------------------------------------------------------------------------- /data/theme/Urple.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Urple.colors -------------------------------------------------------------------------------- /data/theme/Vaughn.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Vaughn.colors -------------------------------------------------------------------------------- /data/theme/VibrantInk.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/VibrantInk.colors -------------------------------------------------------------------------------- /data/theme/Violet Dark.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Violet Dark.colors -------------------------------------------------------------------------------- /data/theme/Violet Light.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Violet Light.colors -------------------------------------------------------------------------------- /data/theme/WarmNeon.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/WarmNeon.colors -------------------------------------------------------------------------------- /data/theme/Wez.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Wez.colors -------------------------------------------------------------------------------- /data/theme/Whimsy.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Whimsy.colors -------------------------------------------------------------------------------- /data/theme/WildCherry.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/WildCherry.colors -------------------------------------------------------------------------------- /data/theme/Wombat.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Wombat.colors -------------------------------------------------------------------------------- /data/theme/Wryan.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Wryan.colors -------------------------------------------------------------------------------- /data/theme/Zenburn.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/Zenburn.colors -------------------------------------------------------------------------------- /data/theme/arcoiris.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/arcoiris.colors -------------------------------------------------------------------------------- /data/theme/ayu.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/ayu.colors -------------------------------------------------------------------------------- /data/theme/ayu_light.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/ayu_light.colors -------------------------------------------------------------------------------- /data/theme/coffee_theme.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/coffee_theme.colors -------------------------------------------------------------------------------- /data/theme/cyberpunk.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/cyberpunk.colors -------------------------------------------------------------------------------- /data/theme/darkermatrix.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/darkermatrix.colors -------------------------------------------------------------------------------- /data/theme/darkmatrix.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/darkmatrix.colors -------------------------------------------------------------------------------- /data/theme/deep.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/deep.colors -------------------------------------------------------------------------------- /data/theme/duckbones.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/duckbones.colors -------------------------------------------------------------------------------- /data/theme/iceberg-dark.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/iceberg-dark.colors -------------------------------------------------------------------------------- /data/theme/iceberg-light.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/iceberg-light.colors -------------------------------------------------------------------------------- /data/theme/idea.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/idea.colors -------------------------------------------------------------------------------- /data/theme/idleToes.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/idleToes.colors -------------------------------------------------------------------------------- /data/theme/jubi.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/jubi.colors -------------------------------------------------------------------------------- /data/theme/kanagawabones.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/kanagawabones.colors -------------------------------------------------------------------------------- /data/theme/lovelace.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/lovelace.colors -------------------------------------------------------------------------------- /data/theme/matrix.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/matrix.colors -------------------------------------------------------------------------------- /data/theme/midnight-in-mojave.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/midnight-in-mojave.colors -------------------------------------------------------------------------------- /data/theme/neobones_dark.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/neobones_dark.colors -------------------------------------------------------------------------------- /data/theme/neobones_light.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/neobones_light.colors -------------------------------------------------------------------------------- /data/theme/nord-light.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/nord-light.colors -------------------------------------------------------------------------------- /data/theme/nord.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/nord.colors -------------------------------------------------------------------------------- /data/theme/primary.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/primary.colors -------------------------------------------------------------------------------- /data/theme/purplepeter.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/purplepeter.colors -------------------------------------------------------------------------------- /data/theme/rebecca.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/rebecca.colors -------------------------------------------------------------------------------- /data/theme/seoulbones_dark.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/seoulbones_dark.colors -------------------------------------------------------------------------------- /data/theme/seoulbones_light.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/seoulbones_light.colors -------------------------------------------------------------------------------- /data/theme/shades-of-purple.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/shades-of-purple.colors -------------------------------------------------------------------------------- /data/theme/synthwave-everything.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/synthwave-everything.colors -------------------------------------------------------------------------------- /data/theme/synthwave.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/synthwave.colors -------------------------------------------------------------------------------- /data/theme/tokyonight-day.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/tokyonight-day.colors -------------------------------------------------------------------------------- /data/theme/tokyonight-storm.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/tokyonight-storm.colors -------------------------------------------------------------------------------- /data/theme/tokyonight.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/tokyonight.colors -------------------------------------------------------------------------------- /data/theme/vimbones.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/vimbones.colors -------------------------------------------------------------------------------- /data/theme/zenbones.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/zenbones.colors -------------------------------------------------------------------------------- /data/theme/zenbones_dark.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/zenbones_dark.colors -------------------------------------------------------------------------------- /data/theme/zenbones_light.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/zenbones_light.colors -------------------------------------------------------------------------------- /data/theme/zenburned.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/zenburned.colors -------------------------------------------------------------------------------- /data/theme/zenwritten_dark.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/zenwritten_dark.colors -------------------------------------------------------------------------------- /data/theme/zenwritten_light.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/theme/zenwritten_light.colors -------------------------------------------------------------------------------- /data/ui/remmina_about.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/ui/remmina_about.glade -------------------------------------------------------------------------------- /data/ui/remmina_bug_report.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/ui/remmina_bug_report.glade -------------------------------------------------------------------------------- /data/ui/remmina_info.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/ui/remmina_info.glade -------------------------------------------------------------------------------- /data/ui/remmina_key_chooser.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/ui/remmina_key_chooser.glade -------------------------------------------------------------------------------- /data/ui/remmina_main.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/ui/remmina_main.glade -------------------------------------------------------------------------------- /data/ui/remmina_mpc.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/ui/remmina_mpc.glade -------------------------------------------------------------------------------- /data/ui/remmina_passwd.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/ui/remmina_passwd.glade -------------------------------------------------------------------------------- /data/ui/remmina_preferences.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/ui/remmina_preferences.glade -------------------------------------------------------------------------------- /data/ui/remmina_search.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/ui/remmina_search.glade -------------------------------------------------------------------------------- /data/ui/remmina_search_popover.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/ui/remmina_search_popover.glade -------------------------------------------------------------------------------- /data/ui/remmina_snap_info_dialog.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/ui/remmina_snap_info_dialog.glade -------------------------------------------------------------------------------- /data/ui/remmina_spinner.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/ui/remmina_spinner.glade -------------------------------------------------------------------------------- /data/ui/remmina_string_list.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/ui/remmina_string_list.glade -------------------------------------------------------------------------------- /data/ui/remmina_unlock.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/data/ui/remmina_unlock.glade -------------------------------------------------------------------------------- /environments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/environments/README.md -------------------------------------------------------------------------------- /environments/vncserver-ssh-socket-forward/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/environments/vncserver-ssh-socket-forward/Dockerfile -------------------------------------------------------------------------------- /environments/vncserver-ssh-socket-forward/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/environments/vncserver-ssh-socket-forward/entrypoint.sh -------------------------------------------------------------------------------- /environments/vncserver-ssh-socket-forward/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/environments/vncserver-ssh-socket-forward/passwd -------------------------------------------------------------------------------- /environments/vncserver-ssh-socket-forward/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/environments/vncserver-ssh-socket-forward/run.sh -------------------------------------------------------------------------------- /environments/vncserver-ssh-socket-forward/ssh_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/environments/vncserver-ssh-socket-forward/ssh_key -------------------------------------------------------------------------------- /environments/vncserver-ssh-socket-forward/ssh_key.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/environments/vncserver-ssh-socket-forward/ssh_key.pub -------------------------------------------------------------------------------- /environments/vncserver/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/environments/vncserver/Dockerfile -------------------------------------------------------------------------------- /environments/vncserver/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/environments/vncserver/entrypoint.sh -------------------------------------------------------------------------------- /environments/vncserver/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/environments/vncserver/passwd -------------------------------------------------------------------------------- /environments/vncserver/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/environments/vncserver/run.sh -------------------------------------------------------------------------------- /flatpak/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/flatpak/Dockerfile -------------------------------------------------------------------------------- /flatpak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/flatpak/README.md -------------------------------------------------------------------------------- /flatpak/flatpak-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/flatpak/flatpak-build.sh -------------------------------------------------------------------------------- /flatpak/org.remmina.Remmina-local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/flatpak/org.remmina.Remmina-local.json -------------------------------------------------------------------------------- /flatpak/org.remmina.Remmina.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/flatpak/org.remmina.Remmina.json -------------------------------------------------------------------------------- /flatpak/patches/nacl-20110221-cpufreq-fallback.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/flatpak/patches/nacl-20110221-cpufreq-fallback.patch -------------------------------------------------------------------------------- /flatpak/patches/spice-common-meson-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/flatpak/patches/spice-common-meson-fix.patch -------------------------------------------------------------------------------- /flatpak/patches/spice-no-polkit-action.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/flatpak/patches/spice-no-polkit-action.patch -------------------------------------------------------------------------------- /flatpak/requirements/webkit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/flatpak/requirements/webkit.json -------------------------------------------------------------------------------- /flatpak/xephyr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/flatpak/xephyr.json -------------------------------------------------------------------------------- /plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/README.md -------------------------------------------------------------------------------- /plugins/common/remmina_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/common/remmina_plugin.h -------------------------------------------------------------------------------- /plugins/exec/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/exec/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/exec/exec_plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/exec/exec_plugin.c -------------------------------------------------------------------------------- /plugins/exec/exec_plugin_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/exec/exec_plugin_config.h -------------------------------------------------------------------------------- /plugins/exec/scalable/emblems/org.remmina.Remmina-tool-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/exec/scalable/emblems/org.remmina.Remmina-tool-symbolic.svg -------------------------------------------------------------------------------- /plugins/gvnc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/gvnc/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/gvnc/gvnc_plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/gvnc/gvnc_plugin.c -------------------------------------------------------------------------------- /plugins/gvnc/gvnc_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/gvnc/gvnc_plugin.h -------------------------------------------------------------------------------- /plugins/gvnc/gvnc_plugin_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/gvnc/gvnc_plugin_config.h -------------------------------------------------------------------------------- /plugins/gvnc/scalable/emblems/org.remmina.Remmina-gvnc-ssh-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/gvnc/scalable/emblems/org.remmina.Remmina-gvnc-ssh-symbolic.svg -------------------------------------------------------------------------------- /plugins/gvnc/scalable/emblems/org.remmina.Remmina-gvnc-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/gvnc/scalable/emblems/org.remmina.Remmina-gvnc-symbolic.svg -------------------------------------------------------------------------------- /plugins/kwallet/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/kwallet/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/kwallet/src/kwallet_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/kwallet/src/kwallet_plugin.cpp -------------------------------------------------------------------------------- /plugins/kwallet/src/kwallet_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/kwallet/src/kwallet_plugin.h -------------------------------------------------------------------------------- /plugins/kwallet/src/kwallet_plugin_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/kwallet/src/kwallet_plugin_main.c -------------------------------------------------------------------------------- /plugins/python_wrapper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/python_wrapper/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/python_wrapper/pygobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/python_wrapper/pygobject.h -------------------------------------------------------------------------------- /plugins/python_wrapper/python_wrapper_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/python_wrapper/python_wrapper_common.c -------------------------------------------------------------------------------- /plugins/python_wrapper/python_wrapper_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/python_wrapper/python_wrapper_common.h -------------------------------------------------------------------------------- /plugins/python_wrapper/python_wrapper_entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/python_wrapper/python_wrapper_entry.c -------------------------------------------------------------------------------- /plugins/python_wrapper/python_wrapper_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/python_wrapper/python_wrapper_entry.h -------------------------------------------------------------------------------- /plugins/python_wrapper/python_wrapper_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/python_wrapper/python_wrapper_file.c -------------------------------------------------------------------------------- /plugins/python_wrapper/python_wrapper_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/python_wrapper/python_wrapper_file.h -------------------------------------------------------------------------------- /plugins/python_wrapper/python_wrapper_plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/python_wrapper/python_wrapper_plugin.c -------------------------------------------------------------------------------- /plugins/python_wrapper/python_wrapper_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/python_wrapper/python_wrapper_plugin.h -------------------------------------------------------------------------------- /plugins/python_wrapper/python_wrapper_pref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/python_wrapper/python_wrapper_pref.c -------------------------------------------------------------------------------- /plugins/python_wrapper/python_wrapper_pref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/python_wrapper/python_wrapper_pref.h -------------------------------------------------------------------------------- /plugins/python_wrapper/python_wrapper_protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/python_wrapper/python_wrapper_protocol.c -------------------------------------------------------------------------------- /plugins/python_wrapper/python_wrapper_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/python_wrapper/python_wrapper_protocol.h -------------------------------------------------------------------------------- /plugins/python_wrapper/python_wrapper_protocol_widget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/python_wrapper/python_wrapper_protocol_widget.c -------------------------------------------------------------------------------- /plugins/python_wrapper/python_wrapper_protocol_widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/python_wrapper/python_wrapper_protocol_widget.h -------------------------------------------------------------------------------- /plugins/python_wrapper/python_wrapper_remmina.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/python_wrapper/python_wrapper_remmina.c -------------------------------------------------------------------------------- /plugins/python_wrapper/python_wrapper_remmina.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/python_wrapper/python_wrapper_remmina.h -------------------------------------------------------------------------------- /plugins/python_wrapper/python_wrapper_remmina_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/python_wrapper/python_wrapper_remmina_file.c -------------------------------------------------------------------------------- /plugins/python_wrapper/python_wrapper_remmina_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/python_wrapper/python_wrapper_remmina_file.h -------------------------------------------------------------------------------- /plugins/python_wrapper/python_wrapper_secret.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/python_wrapper/python_wrapper_secret.c -------------------------------------------------------------------------------- /plugins/python_wrapper/python_wrapper_secret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/python_wrapper/python_wrapper_secret.h -------------------------------------------------------------------------------- /plugins/python_wrapper/python_wrapper_tool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/python_wrapper/python_wrapper_tool.c -------------------------------------------------------------------------------- /plugins/python_wrapper/python_wrapper_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/python_wrapper/python_wrapper_tool.h -------------------------------------------------------------------------------- /plugins/rdp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/rdp/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/rdp/rdp_channels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/rdp/rdp_channels.c -------------------------------------------------------------------------------- /plugins/rdp/rdp_channels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/rdp/rdp_channels.h -------------------------------------------------------------------------------- /plugins/rdp/rdp_cliprdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/rdp/rdp_cliprdr.c -------------------------------------------------------------------------------- /plugins/rdp/rdp_cliprdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/rdp/rdp_cliprdr.h -------------------------------------------------------------------------------- /plugins/rdp/rdp_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/rdp/rdp_event.c -------------------------------------------------------------------------------- /plugins/rdp/rdp_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/rdp/rdp_event.h -------------------------------------------------------------------------------- /plugins/rdp/rdp_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/rdp/rdp_file.c -------------------------------------------------------------------------------- /plugins/rdp/rdp_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/rdp/rdp_file.h -------------------------------------------------------------------------------- /plugins/rdp/rdp_graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/rdp/rdp_graphics.c -------------------------------------------------------------------------------- /plugins/rdp/rdp_graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/rdp/rdp_graphics.h -------------------------------------------------------------------------------- /plugins/rdp/rdp_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/rdp/rdp_monitor.c -------------------------------------------------------------------------------- /plugins/rdp/rdp_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/rdp/rdp_monitor.h -------------------------------------------------------------------------------- /plugins/rdp/rdp_plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/rdp/rdp_plugin.c -------------------------------------------------------------------------------- /plugins/rdp/rdp_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/rdp/rdp_plugin.h -------------------------------------------------------------------------------- /plugins/rdp/rdp_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/rdp/rdp_settings.c -------------------------------------------------------------------------------- /plugins/rdp/rdp_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/rdp/rdp_settings.h -------------------------------------------------------------------------------- /plugins/rdp/scalable/emblems/org.remmina.Remmina-rdp-ssh-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/rdp/scalable/emblems/org.remmina.Remmina-rdp-ssh-symbolic.svg -------------------------------------------------------------------------------- /plugins/rdp/scalable/emblems/org.remmina.Remmina-rdp-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/rdp/scalable/emblems/org.remmina.Remmina-rdp-symbolic.svg -------------------------------------------------------------------------------- /plugins/secret/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/secret/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/secret/src/glibsecret_plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/secret/src/glibsecret_plugin.c -------------------------------------------------------------------------------- /plugins/secret/src/glibsecret_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/secret/src/glibsecret_plugin.h -------------------------------------------------------------------------------- /plugins/spice/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/spice/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/spice/scalable/emblems/org.remmina.Remmina-spice-ssh-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/spice/scalable/emblems/org.remmina.Remmina-spice-ssh-symbolic.svg -------------------------------------------------------------------------------- /plugins/spice/scalable/emblems/org.remmina.Remmina-spice-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/spice/scalable/emblems/org.remmina.Remmina-spice-symbolic.svg -------------------------------------------------------------------------------- /plugins/spice/spice_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/spice/spice_file.c -------------------------------------------------------------------------------- /plugins/spice/spice_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/spice/spice_file.h -------------------------------------------------------------------------------- /plugins/spice/spice_plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/spice/spice_plugin.c -------------------------------------------------------------------------------- /plugins/spice/spice_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/spice/spice_plugin.h -------------------------------------------------------------------------------- /plugins/spice/spice_plugin_file_transfer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/spice/spice_plugin_file_transfer.c -------------------------------------------------------------------------------- /plugins/spice/spice_plugin_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/spice/spice_plugin_usb.c -------------------------------------------------------------------------------- /plugins/telepathy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/telepathy/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/telepathy/Remmina.client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/telepathy/Remmina.client -------------------------------------------------------------------------------- /plugins/telepathy/org.freedesktop.Telepathy.Client.Remmina.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/telepathy/org.freedesktop.Telepathy.Client.Remmina.service.in -------------------------------------------------------------------------------- /plugins/telepathy/telepathy_channel_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/telepathy/telepathy_channel_handler.c -------------------------------------------------------------------------------- /plugins/telepathy/telepathy_channel_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/telepathy/telepathy_channel_handler.h -------------------------------------------------------------------------------- /plugins/telepathy/telepathy_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/telepathy/telepathy_handler.c -------------------------------------------------------------------------------- /plugins/telepathy/telepathy_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/telepathy/telepathy_handler.h -------------------------------------------------------------------------------- /plugins/telepathy/telepathy_plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/telepathy/telepathy_plugin.c -------------------------------------------------------------------------------- /plugins/tool_hello_world/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/tool_hello_world/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/tool_hello_world/plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/tool_hello_world/plugin.c -------------------------------------------------------------------------------- /plugins/tool_hello_world/plugin_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/tool_hello_world/plugin_config.h -------------------------------------------------------------------------------- /plugins/tool_hello_world/scalable/emblems/org.remmina.Remmina-tool-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/tool_hello_world/scalable/emblems/org.remmina.Remmina-tool-symbolic.svg -------------------------------------------------------------------------------- /plugins/vnc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/vnc/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/vnc/scalable/emblems/org.remmina.Remmina-vnc-ssh-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/vnc/scalable/emblems/org.remmina.Remmina-vnc-ssh-symbolic.svg -------------------------------------------------------------------------------- /plugins/vnc/scalable/emblems/org.remmina.Remmina-vnc-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/vnc/scalable/emblems/org.remmina.Remmina-vnc-symbolic.svg -------------------------------------------------------------------------------- /plugins/vnc/vnc_plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/vnc/vnc_plugin.c -------------------------------------------------------------------------------- /plugins/vnc/vnc_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/vnc/vnc_plugin.h -------------------------------------------------------------------------------- /plugins/www/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/www/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/www/resources/js/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/www/resources/js/.eslintrc.json -------------------------------------------------------------------------------- /plugins/www/resources/js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/www/resources/js/package.json -------------------------------------------------------------------------------- /plugins/www/resources/js/www-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/www/resources/js/www-js.js -------------------------------------------------------------------------------- /plugins/www/scalable/emblems/org.remmina.Remmina-www-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/www/scalable/emblems/org.remmina.Remmina-www-symbolic.svg -------------------------------------------------------------------------------- /plugins/www/www_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/www/www_config.h -------------------------------------------------------------------------------- /plugins/www/www_plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/www/www_plugin.c -------------------------------------------------------------------------------- /plugins/www/www_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/www/www_plugin.h -------------------------------------------------------------------------------- /plugins/www/www_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/www/www_utils.c -------------------------------------------------------------------------------- /plugins/www/www_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/www/www_utils.h -------------------------------------------------------------------------------- /plugins/x2go/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/x2go/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/x2go/scalable/emblems/org.remmina.Remmina-x2go-ssh-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/x2go/scalable/emblems/org.remmina.Remmina-x2go-ssh-symbolic.svg -------------------------------------------------------------------------------- /plugins/x2go/scalable/emblems/org.remmina.Remmina-x2go-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/x2go/scalable/emblems/org.remmina.Remmina-x2go-symbolic.svg -------------------------------------------------------------------------------- /plugins/x2go/x2go_plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/x2go/x2go_plugin.c -------------------------------------------------------------------------------- /plugins/x2go/x2go_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/plugins/x2go/x2go_plugin.h -------------------------------------------------------------------------------- /po/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/CMakeLists.txt -------------------------------------------------------------------------------- /po/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/ar.po -------------------------------------------------------------------------------- /po/ast.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/ast.po -------------------------------------------------------------------------------- /po/be.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/be.po -------------------------------------------------------------------------------- /po/ber.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/ber.po -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/bg.po -------------------------------------------------------------------------------- /po/bn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/bn.po -------------------------------------------------------------------------------- /po/br.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/br.po -------------------------------------------------------------------------------- /po/bs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/bs.po -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/ca@valencia.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/ca@valencia.po -------------------------------------------------------------------------------- /po/ckb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/ckb.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/de.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/el.po -------------------------------------------------------------------------------- /po/en_AU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/en_AU.po -------------------------------------------------------------------------------- /po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/en_GB.po -------------------------------------------------------------------------------- /po/en_US.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/en_US.po -------------------------------------------------------------------------------- /po/eo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/eo.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/es.po -------------------------------------------------------------------------------- /po/es_VE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/es_VE.po -------------------------------------------------------------------------------- /po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/et.po -------------------------------------------------------------------------------- /po/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/eu.po -------------------------------------------------------------------------------- /po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/fa.po -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/fi.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/gl.po -------------------------------------------------------------------------------- /po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/he.po -------------------------------------------------------------------------------- /po/hi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/hi.po -------------------------------------------------------------------------------- /po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/hr.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/id.po -------------------------------------------------------------------------------- /po/ie.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/ie.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/ka.po -------------------------------------------------------------------------------- /po/kab.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/kab.po -------------------------------------------------------------------------------- /po/kk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/kk.po -------------------------------------------------------------------------------- /po/km.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/km.po -------------------------------------------------------------------------------- /po/kn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/kn.po -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/ko.po -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/lv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/lv.po -------------------------------------------------------------------------------- /po/mk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/mk.po -------------------------------------------------------------------------------- /po/mr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/mr.po -------------------------------------------------------------------------------- /po/ms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/ms.po -------------------------------------------------------------------------------- /po/my.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/my.po -------------------------------------------------------------------------------- /po/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/nb.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/oc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/oc.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/pt.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/pt_PT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/pt_PT.po -------------------------------------------------------------------------------- /po/remmina.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/remmina.pot -------------------------------------------------------------------------------- /po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/ro.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/shn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/shn.po -------------------------------------------------------------------------------- /po/si.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/si.po -------------------------------------------------------------------------------- /po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/sk.po -------------------------------------------------------------------------------- /po/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/sl.po -------------------------------------------------------------------------------- /po/sq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/sq.po -------------------------------------------------------------------------------- /po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/sr.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/ta.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/ta.po -------------------------------------------------------------------------------- /po/te.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/te.po -------------------------------------------------------------------------------- /po/th.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/th.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/ug.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/ug.po -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/uz.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/uz.po -------------------------------------------------------------------------------- /po/uz@cyrillic.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/uz@cyrillic.po -------------------------------------------------------------------------------- /po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/vi.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /remmina.doap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/remmina.doap -------------------------------------------------------------------------------- /res/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /res/remimna-bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/res/remimna-bot.png -------------------------------------------------------------------------------- /res/remimna-bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/res/remimna-bot.svg -------------------------------------------------------------------------------- /res/santahat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/res/santahat.png -------------------------------------------------------------------------------- /res/santahat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/res/santahat.svg -------------------------------------------------------------------------------- /scripts/gettranslator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/scripts/gettranslator.sh -------------------------------------------------------------------------------- /scripts/i18nstats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/scripts/i18nstats.sh -------------------------------------------------------------------------------- /scripts/travis-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/scripts/travis-build.sh -------------------------------------------------------------------------------- /scripts/ubuntu-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/scripts/ubuntu-build.sh -------------------------------------------------------------------------------- /scripts/update-translations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/scripts/update-translations.sh -------------------------------------------------------------------------------- /snap/local/files/bin/pawrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/snap/local/files/bin/pawrap -------------------------------------------------------------------------------- /snap/local/patches/0001-Fix-seeking-in-Cache-Brush-and-other-Secondary-Drawi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/snap/local/patches/0001-Fix-seeking-in-Cache-Brush-and-other-Secondary-Drawi.patch -------------------------------------------------------------------------------- /snap/local/patches/0003-Fixed-6298-Mask-CACHED_BRUSH-when-checking-brush-sty.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/snap/local/patches/0003-Fixed-6298-Mask-CACHED_BRUSH-when-checking-brush-sty.patch -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/snap/snapcraft.yaml -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/external_tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/external_tools/CMakeLists.txt -------------------------------------------------------------------------------- /src/external_tools/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/external_tools/functions.sh -------------------------------------------------------------------------------- /src/external_tools/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/external_tools/launcher.sh -------------------------------------------------------------------------------- /src/external_tools/remmina_filezilla_sftp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/external_tools/remmina_filezilla_sftp.sh -------------------------------------------------------------------------------- /src/external_tools/remmina_filezilla_sftp_pki.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/external_tools/remmina_filezilla_sftp_pki.sh -------------------------------------------------------------------------------- /src/external_tools/remmina_nslookup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/external_tools/remmina_nslookup.sh -------------------------------------------------------------------------------- /src/external_tools/remmina_ping.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/external_tools/remmina_ping.sh -------------------------------------------------------------------------------- /src/external_tools/remmina_traceroute.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/external_tools/remmina_traceroute.sh -------------------------------------------------------------------------------- /src/include/remmina/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/include/remmina/plugin.h -------------------------------------------------------------------------------- /src/include/remmina/remmina_trace_calls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/include/remmina/remmina_trace_calls.h -------------------------------------------------------------------------------- /src/include/remmina/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/include/remmina/types.h -------------------------------------------------------------------------------- /src/pygobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/pygobject.h -------------------------------------------------------------------------------- /src/rcw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/rcw.c -------------------------------------------------------------------------------- /src/rcw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/rcw.h -------------------------------------------------------------------------------- /src/remmina.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina.1 -------------------------------------------------------------------------------- /src/remmina.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina.c -------------------------------------------------------------------------------- /src/remmina.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina.h -------------------------------------------------------------------------------- /src/remmina.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina.scd -------------------------------------------------------------------------------- /src/remmina_about.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_about.c -------------------------------------------------------------------------------- /src/remmina_about.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_about.h -------------------------------------------------------------------------------- /src/remmina_applet_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_applet_menu.c -------------------------------------------------------------------------------- /src/remmina_applet_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_applet_menu.h -------------------------------------------------------------------------------- /src/remmina_applet_menu_item.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_applet_menu_item.c -------------------------------------------------------------------------------- /src/remmina_applet_menu_item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_applet_menu_item.h -------------------------------------------------------------------------------- /src/remmina_avahi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_avahi.c -------------------------------------------------------------------------------- /src/remmina_avahi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_avahi.h -------------------------------------------------------------------------------- /src/remmina_bug_report.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_bug_report.c -------------------------------------------------------------------------------- /src/remmina_bug_report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_bug_report.h -------------------------------------------------------------------------------- /src/remmina_chat_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_chat_window.c -------------------------------------------------------------------------------- /src/remmina_chat_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_chat_window.h -------------------------------------------------------------------------------- /src/remmina_crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_crypt.c -------------------------------------------------------------------------------- /src/remmina_crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_crypt.h -------------------------------------------------------------------------------- /src/remmina_curl_connector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_curl_connector.c -------------------------------------------------------------------------------- /src/remmina_curl_connector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_curl_connector.h -------------------------------------------------------------------------------- /src/remmina_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_exec.c -------------------------------------------------------------------------------- /src/remmina_exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_exec.h -------------------------------------------------------------------------------- /src/remmina_ext_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_ext_exec.c -------------------------------------------------------------------------------- /src/remmina_ext_exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_ext_exec.h -------------------------------------------------------------------------------- /src/remmina_external_tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_external_tools.c -------------------------------------------------------------------------------- /src/remmina_external_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_external_tools.h -------------------------------------------------------------------------------- /src/remmina_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_file.c -------------------------------------------------------------------------------- /src/remmina_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_file.h -------------------------------------------------------------------------------- /src/remmina_file_editor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_file_editor.c -------------------------------------------------------------------------------- /src/remmina_file_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_file_editor.h -------------------------------------------------------------------------------- /src/remmina_file_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_file_manager.c -------------------------------------------------------------------------------- /src/remmina_file_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_file_manager.h -------------------------------------------------------------------------------- /src/remmina_ftp_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_ftp_client.c -------------------------------------------------------------------------------- /src/remmina_ftp_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_ftp_client.h -------------------------------------------------------------------------------- /src/remmina_icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_icon.c -------------------------------------------------------------------------------- /src/remmina_icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_icon.h -------------------------------------------------------------------------------- /src/remmina_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_info.c -------------------------------------------------------------------------------- /src/remmina_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_info.h -------------------------------------------------------------------------------- /src/remmina_key_chooser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_key_chooser.c -------------------------------------------------------------------------------- /src/remmina_key_chooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_key_chooser.h -------------------------------------------------------------------------------- /src/remmina_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_log.c -------------------------------------------------------------------------------- /src/remmina_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_log.h -------------------------------------------------------------------------------- /src/remmina_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_main.c -------------------------------------------------------------------------------- /src/remmina_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_main.h -------------------------------------------------------------------------------- /src/remmina_marshals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_marshals.c -------------------------------------------------------------------------------- /src/remmina_marshals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_marshals.h -------------------------------------------------------------------------------- /src/remmina_marshals.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_marshals.list -------------------------------------------------------------------------------- /src/remmina_masterthread_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_masterthread_exec.c -------------------------------------------------------------------------------- /src/remmina_masterthread_exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_masterthread_exec.h -------------------------------------------------------------------------------- /src/remmina_message_panel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_message_panel.c -------------------------------------------------------------------------------- /src/remmina_message_panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_message_panel.h -------------------------------------------------------------------------------- /src/remmina_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_monitor.c -------------------------------------------------------------------------------- /src/remmina_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_monitor.h -------------------------------------------------------------------------------- /src/remmina_mpchange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_mpchange.c -------------------------------------------------------------------------------- /src/remmina_mpchange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_mpchange.h -------------------------------------------------------------------------------- /src/remmina_passwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_passwd.c -------------------------------------------------------------------------------- /src/remmina_passwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_passwd.h -------------------------------------------------------------------------------- /src/remmina_plugin_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_plugin_manager.c -------------------------------------------------------------------------------- /src/remmina_plugin_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_plugin_manager.h -------------------------------------------------------------------------------- /src/remmina_plugin_native.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_plugin_native.c -------------------------------------------------------------------------------- /src/remmina_plugin_native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_plugin_native.h -------------------------------------------------------------------------------- /src/remmina_pref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_pref.c -------------------------------------------------------------------------------- /src/remmina_pref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_pref.h -------------------------------------------------------------------------------- /src/remmina_pref_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_pref_dialog.c -------------------------------------------------------------------------------- /src/remmina_pref_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_pref_dialog.h -------------------------------------------------------------------------------- /src/remmina_protocol_widget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_protocol_widget.c -------------------------------------------------------------------------------- /src/remmina_protocol_widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_protocol_widget.h -------------------------------------------------------------------------------- /src/remmina_public.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_public.c -------------------------------------------------------------------------------- /src/remmina_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_public.h -------------------------------------------------------------------------------- /src/remmina_scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_scheduler.c -------------------------------------------------------------------------------- /src/remmina_scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_scheduler.h -------------------------------------------------------------------------------- /src/remmina_scrolled_viewport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_scrolled_viewport.c -------------------------------------------------------------------------------- /src/remmina_scrolled_viewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_scrolled_viewport.h -------------------------------------------------------------------------------- /src/remmina_sftp_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_sftp_client.c -------------------------------------------------------------------------------- /src/remmina_sftp_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_sftp_client.h -------------------------------------------------------------------------------- /src/remmina_sftp_plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_sftp_plugin.c -------------------------------------------------------------------------------- /src/remmina_sftp_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_sftp_plugin.h -------------------------------------------------------------------------------- /src/remmina_sodium.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_sodium.c -------------------------------------------------------------------------------- /src/remmina_sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_sodium.h -------------------------------------------------------------------------------- /src/remmina_ssh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_ssh.c -------------------------------------------------------------------------------- /src/remmina_ssh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_ssh.h -------------------------------------------------------------------------------- /src/remmina_ssh_plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_ssh_plugin.c -------------------------------------------------------------------------------- /src/remmina_ssh_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_ssh_plugin.h -------------------------------------------------------------------------------- /src/remmina_string_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_string_array.c -------------------------------------------------------------------------------- /src/remmina_string_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_string_array.h -------------------------------------------------------------------------------- /src/remmina_string_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_string_list.c -------------------------------------------------------------------------------- /src/remmina_string_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_string_list.h -------------------------------------------------------------------------------- /src/remmina_sysinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_sysinfo.c -------------------------------------------------------------------------------- /src/remmina_sysinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_sysinfo.h -------------------------------------------------------------------------------- /src/remmina_unlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_unlock.c -------------------------------------------------------------------------------- /src/remmina_unlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_unlock.h -------------------------------------------------------------------------------- /src/remmina_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_utils.c -------------------------------------------------------------------------------- /src/remmina_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_utils.h -------------------------------------------------------------------------------- /src/remmina_widget_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_widget_pool.c -------------------------------------------------------------------------------- /src/remmina_widget_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreeRDP/Remmina/HEAD/src/remmina_widget_pool.h -------------------------------------------------------------------------------- /translationstats: -------------------------------------------------------------------------------- 1 | Remmina is 1018 2 | 10.1 --------------------------------------------------------------------------------