mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-19 02:48:12 +08:00
* remove branded files * use branding repo * include favicons * nixpkg fixup * win fix ico path * fix fmt * skip licensenses for dev builds * review fixup * test * test * ci test * ci test * ci test * fix ci
12 lines
509 B
Rust
12 lines
509 B
Rust
pub(crate) const APP_NAME: &str = "Graphite";
|
|
pub(crate) const APP_ID: &str = "rs.graphite.Graphite";
|
|
|
|
pub(crate) const APP_DIRECTORY_NAME: &str = "graphite-editor";
|
|
pub(crate) const APP_STATE_FILE_NAME: &str = "state.ron";
|
|
pub(crate) const APP_PREFERENCES_FILE_NAME: &str = "preferences.ron";
|
|
pub(crate) const APP_DOCUMENTS_DIRECTORY_NAME: &str = "documents";
|
|
|
|
// CEF configuration constants
|
|
pub(crate) const CEF_WINDOWLESS_FRAME_RATE: i32 = 60;
|
|
pub(crate) const CEF_MESSAGE_LOOP_MAX_ITERATIONS: usize = 10;
|