rustdesk
ab2ac0755e
refactor remote_restarting_tip
2022-07-27 16:00:48 +08:00
RustDesk
00d2381bc0
Merge pull request #1059 from 21pages/restart
...
feat: pc restart
2022-07-27 10:31:47 +08:00
21pages
461a87bce9
feat: pc restart
...
Signed-off-by: 21pages <pages21@163.com>
2022-07-27 08:49:10 +08:00
rustdesk
06ce3661f4
issue #1051
2022-07-27 00:31:20 +08:00
rustdesk
6981ae1c20
issue #1052
2022-07-26 23:00:55 +08:00
Asura
1caee4e306
Sync CapsLock and NumLock status in legacy mode.
2022-07-23 08:20:39 -07:00
Asura
a46df491e5
Merge branch 'master' of https://github.com/rustdesk/rustdesk
2022-07-23 06:33:15 -07:00
Asura
1b0fb5132c
Support switching keyboard mode by UI
2022-07-23 20:51:01 +08:00
Asura
ce3434fd37
Merge branch 'master' of https://github.com/rustdesk/rustdesk
2022-07-20 19:51:09 -07:00
21pages
7aa431d349
hwcodec: codec preference
...
Signed-off-by: 21pages <pages21@163.com>
2022-07-21 10:14:58 +08:00
Asura
fe99231090
Make case insensitive of keyboard_mode
2022-07-19 16:49:05 +08:00
Asura
d07ef7af8a
Fix compile error of testcase
2022-07-19 16:15:57 +08:00
Asura
cbdc28ee20
Fix compiler error
2022-07-19 01:04:23 -07:00
Asura
02b4d7f1d9
Refactor keyboard mode by enum
2022-07-19 15:43:13 +08:00
Asura
0bacc1c250
Compatible with legacy mode in client
2022-07-19 15:09:45 +08:00
Asura
a77d64d181
Remove log
2022-07-18 18:47:38 -07:00
Asura
48466bfe37
Numpad when linux -> windows
2022-07-19 09:35:39 +08:00
Asura
a118056c30
Fix sync Numpad status
2022-07-18 23:04:04 +08:00
Asura
a2d8c31e85
Auto release key
2022-07-18 22:01:08 +08:00
21pages
0812dc79b8
control end close message
...
Signed-off-by: 21pages <pages21@163.com>
2022-07-18 21:27:59 +08:00
Asura
80b01a96db
Refactor to remove warning
2022-07-18 17:42:02 +08:00
Asura
72273f4546
Sync Numpad status
2022-07-18 02:19:33 -07:00
Asura
828795b437
Sync Caps status
2022-07-18 01:54:54 -07:00
Asura
7ae065739c
Recover legacy keyboard mode when listen
2022-07-18 12:51:17 +08:00
Asura
7c24f6bb12
Refactor listening keyboard to support switching keyboard modes
2022-07-17 14:14:51 -07:00
tom
c6c5d2cb98
upgrade protobuf to 3.1.0 and use with-bytes feature, issues:958
2022-07-14 17:20:01 +08:00
Asura
7fe2609ffb
feat: Support new keyboard mode
2022-07-13 02:14:32 -07:00
Asura
a6f9c16d50
fix: Correct the string corresponding to the platform
2022-07-12 04:29:32 -07:00
Asura
9837c9b893
Use map mode when keyboard monitor
2022-07-12 00:33:20 -07:00
21pages
68204e0c56
Merge branch 'master' into hwcodec
2022-07-06 19:01:51 +08:00
csf
5bd08bf0a7
client side handle codec format
2022-07-05 22:17:34 +08:00
Kingtous
d49068706e
add: include_hidden parameters, migrate to bridge
2022-07-01 12:11:34 +08:00
csf
5a7dca72c8
fix custom_image_qulity and android
2022-06-30 20:48:29 +08:00
rustdesk
c745bf4111
https://github.com/rustdesk/rustdesk/issues541/
2022-06-30 01:19:38 +08:00
csf
eaaeefd90b
sync codec format
2022-06-30 00:03:17 +08:00
csf
21a90c5de8
abr update Windows
2022-06-27 03:30:46 -07:00
csf
ece86cda9e
abr
2022-06-27 15:08:43 +08:00
fufesou
da392f7f72
privacy_mode_win_magnifier: ui prompt if succeeded
...
Signed-off-by: fufesou <shuanglongchen@yeah.net>
2022-05-31 12:01:22 +08:00
fufesou
2081113bed
simple_rc: win init simple resource pack
...
Signed-off-by: fufesou <shuanglongchen@yeah.net>
2022-05-30 13:06:48 +08:00
fufesou
c269d1c831
privacy_mode: win10 magnifier
...
Signed-off-by: fufesou <shuanglongchen@yeah.net>
2022-05-30 12:08:28 +08:00
Saverio Miroddi
230f74da2e
Remove IS_IN unsafe code, by using AtomicBool
2022-05-24 18:37:24 +02:00
Saverio Miroddi
0c0051d59a
Remove SERVER_FILE_TRANSFER_ENABLED unsafe code, by using AtomicBool
2022-05-24 18:37:22 +02:00
Saverio Miroddi
45bb271c88
Remove SERVER_KEYBOARD_ENABLED unsafe code, by using AtomicBool
2022-05-24 18:12:42 +02:00
Saverio Miroddi
c7f452752d
Remove SERVER_CLIPBOARD_ENABLED unsafe code, by using AtomicBool
2022-05-24 18:12:33 +02:00
Saverio Miroddi
7f50fe3ea0
Remove KEYBOARD_HOOKED unsafe code, by using AtomicBool
...
For supported types, static R/W globals unsafe code can be replaced by safe `Atomic*` types.
The pattern of usage is simple:
- AtomicBool#swap is used to fetch the old `KEYBOARD_HOOKED` value, while setting it to true;
- if the old value was true, there is effectively no change to `KEYBOARD_HOOKED`, and the flow exits from the enclosing function;
- if the old value was false, execute the function (the new `KEYBOARD_HOOKED` has been set to true by swap()).
The most conservative ordering is used, as the context is not performance-sensitive.
Atomics are not supported on every platform, but the project assumes x86-64, which supports them.
2022-05-22 18:48:08 +02:00
Kingtous
0958126739
fix: windows -> unix
2022-05-20 11:31:09 +08:00
Kingtous
c4663ecbf3
fix: linux <- windows subfolder collepsed
2022-05-20 10:53:10 +08:00
Kingtous
42f2ebc8e6
opt: clean code
2022-05-18 15:45:45 +08:00
Kingtous
39eb1b7211
opt: add resume btn
2022-05-16 14:45:17 +08:00
Kingtous
d186dd26a2
fix: change state to sync jobs to adapt master branch logic
2022-05-16 14:45:17 +08:00
Kingtous
c96c0df645
fix: rebase conflict
2022-05-16 14:45:17 +08:00
Kingtous
52fd312ff3
opt: clean code
2022-05-16 14:45:17 +08:00
Kingtous
a2bc2a21bb
add: file_num offset
2022-05-16 14:45:17 +08:00
Kingtous
9dbd94daac
feat: load last job
2022-05-16 14:45:17 +08:00
Kingtous
77bb821ecf
fix: to string
2022-05-16 14:45:17 +08:00
Kingtous
b3f523f65e
fix: serde
2022-05-16 14:45:17 +08:00
Kingtous
11e0d2cbf1
add: job logic
2022-05-16 14:45:17 +08:00
Kingtous
83c75409e8
add: msg
2022-05-16 14:45:17 +08:00
Kingtous
74a3799b78
add: meta info
2022-05-16 14:45:17 +08:00
Kingtous
02f214e39a
opt: name, imports
2022-05-16 14:45:17 +08:00
Kingtous
74b3cb1c58
fix: skip issue
2022-05-16 14:45:17 +08:00
Kingtous
4975c9b54d
add: overwrite version limit, remove debug log
2022-05-16 14:45:17 +08:00
Kingtous
96c7202e4b
add: remote ret back override confirmation[2/2]
2022-05-16 14:45:16 +08:00
Kingtous
c17e77148e
add: remote ret back override confirmation
2022-05-16 14:45:16 +08:00
Kingtous
51caeafebd
add: server override
2022-05-16 14:45:16 +08:00
kingtous
8854fcbe85
add: automatic accept confirm log
2022-05-16 14:45:16 +08:00
kingtous
f4c6c4f6c4
feat: add file digest
2022-05-16 14:45:16 +08:00
rustdesk
c1bad84a86
100% open source
2022-05-12 17:35:25 +08:00
rustdesk
eaa481cbea
fix transparent cursor
2022-04-24 14:53:19 +08:00
rustdesk
bbdf3fc9a3
fix mouse out for android
2022-04-17 23:35:53 +08:00
rustdesk
fa2407d857
fix remote_dir
2022-04-07 22:13:30 +08:00
rustdesk
3ea33f7203
improve file write to cm
2022-03-26 03:05:15 +08:00
rustdesk
0dd4087408
fix file transfer hanging if disabled, and add trans
2022-03-22 17:09:45 +08:00
rustdesk
ffb0fa4349
pynput run as user
2022-03-08 15:42:58 +08:00
rustdesk
71fb27fe4b
AltGr works on >10, but not on win7, even with pynput
2022-03-07 20:52:12 +08:00
rustdesk
dcad90e073
more on AltGr
2022-03-07 20:16:28 +08:00
rustdesk
b8f7e347c3
fixing AltGr
2022-03-07 16:19:10 +08:00
rustdesk
db6f46f165
fix cpu burning issue
2022-03-03 20:25:23 +08:00
open-trade
8460c1ac42
format
2022-02-24 14:40:33 +08:00
fufesou
5a07701b90
remove remote conn id
...
Signed-off-by: fufesou <shuanglongchen@yeah.net>
2022-02-24 11:32:14 +08:00
fufesou
8834251eec
move clipboard file service to cm module
...
Signed-off-by: fufesou <shuanglongchen@yeah.net>
2022-02-24 00:26:19 +08:00
rustdesk
f11ca64eac
handling IME
2022-02-21 09:39:01 +08:00
rustdesk
104c022b26
check_clipboard_file_context later
2022-02-15 22:20:28 +08:00
rustdesk
835db29c3f
fix cliprdr for windows after refactory
2022-02-15 15:35:19 +08:00
rustdesk
933969d1fe
refactor cliprdr, not tested on windows yet
2022-02-15 14:46:08 +08:00
fufesou
6672087f7c
windows clipboard
...
Signed-off-by: fufesou <shuanglongchen@yeah.net>
2022-02-15 11:18:53 +08:00
rustdesk
08fdeb7d4b
remove old back-compatibility code
2022-02-10 11:32:16 +08:00
rustdesk
809c220eaf
stupid workaround for https://sciter.com/forums/topic/crash-on-latest-tis-mac-sdk-sometimes/
2022-02-06 18:19:06 +08:00
rustdesk
cd62d7024b
new msgbox
2022-02-01 02:38:52 +08:00
rustdesk
bc3d3bd0ec
refactor server keyboard/clipboard enabled
2022-01-31 18:00:57 +08:00
rustdesk
e23a6805e3
move audio/video decoder in seperate thread
2022-01-30 21:16:08 +08:00
open-trade
372b715162
bug fix on file transfer window
2022-01-21 15:13:29 +08:00
rustdesk
b0ddd3d543
fix on file type (after protobuf change), improve current row select,
...
still has bug for detecting file type under Windows
2022-01-21 12:52:08 +08:00
open-trade
92a1bb04e9
make proto compatible to c++
2022-01-17 16:53:17 +08:00
fufesou
25492c815c
simple privacy mode
...
Signed-off-by: fufesou <shuanglongchen@yeah.net>
2022-01-15 16:57:07 +08:00
open-trade
3aebc43111
more control keys, and VkKeyScanW -> VkKeyScanExW with forground window
...
keyboard layout
2022-01-12 18:11:42 +08:00
open-trade
9a92b6ac4a
revert back from lan discovery merge
2022-01-10 18:05:42 +08:00
RustDesk
dfeb9a29c1
Merge branch 'master' into lan_discovery
2022-01-10 17:34:51 +08:00
rustdesk
e2a879692d
ignore modifiers for name
2022-01-10 03:11:53 +08:00
rustdesk
3a6dc19616
to be compatible with 1.1.8
2022-01-10 01:29:50 +08:00