diff --git a/README.md b/README.md index a54a5c7..3eb3b97 100644 --- a/README.md +++ b/README.md @@ -490,6 +490,7 @@ BOOT_TIMEOUT="120" - On high-resolution (UHD) displays, you can set `RDP_SCALE` to the scale you would like to use (100, 140 or 180). - To add additional flags to the FreeRDP call (e.g. `/prevent-session-lock 120`), uncomment and use the `RDP_FLAGS` configuration option. - For multi-monitor setups, you can try adding `/multimon` to `RDP_FLAGS`. A FreeRDP bug may result in a black screen however, in which case you should revert this change. +- To enable non-English input and seamless language switching, you can try adding `/kbd:unicode` to `RDP_FLAGS`. This ensures client inputs are sent as Unicode sequences. - If you enable `DEBUG`, a log will be created on each application start in `~/.local/share/winapps/winapps.log`. - If using a system on which the FreeRDP command is not `xfreerdp` or `xfreerdp3`, the correct command can be specified using `FREERDP_COMMAND`. diff --git a/packages/winapps/default.nix b/packages/winapps/default.nix index 019a788..8e2c354 100644 --- a/packages/winapps/default.nix +++ b/packages/winapps/default.nix @@ -11,12 +11,12 @@ ... }: let - rev = "2b806de1336a3a206d101b95408165cce938ebd5"; - hash = "sha256-qe6rVHVNpY2xyxjQWm7IMbXXUxlCCpEaNOwm3GUuVXI="; + rev = "ce9a84dc5294c45a4b69847f5164628f7d6a4ae1"; + hash = "sha256-SsyJy9mCwBjKex8mfCnKrzKUM/+xws0EltI2aSkKTuM="; in stdenv.mkDerivation rec { pname = "winapps"; - version = "0-unstable-2025-06-22"; + version = "0-unstable-2025-07-02"; src = fetchFromGitHub { owner = "winapps-org";