mirror of
https://github.com/rustdesk/rustdesk.git
synced 2026-03-20 19:51:04 +03:00
terminal works basically. (#12189)
* terminal works basically. todo: - persistent - sessions restore - web - mobile * missed terminal persistent option change * android sdk 34 -> 35 * +#![cfg_attr(lt_1_77, feature(c_str_literals))] * fixing ci * fix ci * fix ci for android * try "Fix Android SDK Platform 35" * fix android 34 * revert flutter_plugin_android_lifecycle to 2.0.17 which used in rustdesk 1.4.0 * refactor, but break something of desktop terminal (new tab showing loading) * fix connecting...
This commit is contained in:
@@ -33,6 +33,8 @@ use video_service::VideoSource;
|
||||
use crate::ipc::Data;
|
||||
|
||||
pub mod audio_service;
|
||||
#[cfg(not(any(target_os = "android", target_os = "ios")))]
|
||||
pub mod terminal_service;
|
||||
cfg_if::cfg_if! {
|
||||
if #[cfg(not(target_os = "ios"))] {
|
||||
mod clipboard_service;
|
||||
@@ -146,6 +148,7 @@ pub fn new() -> ServerPtr {
|
||||
}
|
||||
}
|
||||
}
|
||||
// Terminal service is created per connection, not globally
|
||||
Arc::new(RwLock::new(server))
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user