mirror of
https://github.com/arsvendg/Stirling-PDF.git
synced 2026-07-15 11:00:47 +02:00
# Description of Changes Fixes two distinct but related issues in the backend of the desktop app: - Correctly shows tools as unavaialable when the backend doesn't have the dependencies or has disabled them etc. (same as web version - this primarily didn't work on desktop because the app spawns before the backend is running) - Fixes infinite re-rendering issues caused by the app polling whether the backend is healthy or not
26 lines
606 B
Rust
26 lines
606 B
Rust
pub mod backend;
|
|
pub mod files;
|
|
pub mod connection;
|
|
pub mod auth;
|
|
pub mod default_app;
|
|
|
|
pub use backend::{cleanup_backend, get_backend_port, start_backend};
|
|
pub use files::{add_opened_file, clear_opened_files, get_opened_files};
|
|
pub use connection::{
|
|
get_connection_config,
|
|
is_first_launch,
|
|
reset_setup_completion,
|
|
set_connection_mode,
|
|
};
|
|
pub use auth::{
|
|
clear_auth_token,
|
|
clear_user_info,
|
|
get_auth_token,
|
|
get_user_info,
|
|
login,
|
|
save_auth_token,
|
|
save_user_info,
|
|
start_oauth_login,
|
|
};
|
|
pub use default_app::{is_default_pdf_handler, set_as_default_pdf_handler};
|