-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Server crash logs and boot availability
- Loading branch information
Showing
4 changed files
with
196 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,16 @@ | ||
pub const APP_NAME: &str = "Stremio"; | ||
pub const IPC_PATH: &str = "//./pipe/com.stremio5."; | ||
pub const DEV_ENDPOINT: &str = "http://127.0.0.1:11470"; | ||
pub const WEB_ENDPOINT: &str = "https://web.stremio.com/"; | ||
pub const STA_ENDPOINT: &str = "https://staging.strem.io/"; | ||
pub const WINDOW_MIN_WIDTH: i32 = 1000; | ||
pub const WINDOW_MIN_HEIGHT: i32 = 600; | ||
pub const UPDATE_INTERVAL: u64 = 12 * 60 * 60; | ||
pub const UPDATE_ENDPOINT: [&str; 3] = [ | ||
"https://www.strem.io/updater/check?product=stremio-shell-ng", | ||
"https://www.stremio.com/updater/check?product=stremio-shell-ng", | ||
"https://www.stremio.net/updater/check?product=stremio-shell-ng", | ||
]; | ||
pub const APP_NAME: &str = "Stremio"; | ||
pub const IPC_PATH: &str = "//./pipe/com.stremio5."; | ||
pub const DEV_ENDPOINT: &str = "http://127.0.0.1:11470"; | ||
pub const WEB_ENDPOINT: &str = "https://web.stremio.com/"; | ||
pub const STA_ENDPOINT: &str = "https://staging.strem.io/"; | ||
pub const WINDOW_MIN_WIDTH: i32 = 1000; | ||
pub const WINDOW_MIN_HEIGHT: i32 = 600; | ||
pub const UPDATE_INTERVAL: u64 = 12 * 60 * 60; | ||
pub const UPDATE_ENDPOINT: [&str; 3] = [ | ||
"https://www.strem.io/updater/check?product=stremio-shell-ng", | ||
"https://www.stremio.com/updater/check?product=stremio-shell-ng", | ||
"https://www.stremio.net/updater/check?product=stremio-shell-ng", | ||
]; | ||
pub const STREMIO_SERVER_DEV_MODE: &str = "STREMIO_SERVER_DEV_MODE"; | ||
pub const SRV_BUFFER_SIZE: usize = 1024; | ||
pub const SRV_LOG_SIZE: usize = 20; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters