diff --git a/Cargo.lock b/Cargo.lock index 3bb8b2b..e517e70 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -570,7 +570,7 @@ dependencies = [ [[package]] name = "calcifer" -version = "1.0.0" +version = "1.0.1" dependencies = [ "eframe", "egui_extras", diff --git a/README.md b/README.md index 555a03d..1723a85 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,4 @@ Added confirm prompt if unsaved Async terminal ! Real Ui -# 1.0.1 : - -Fixed sterr not streamed \ No newline at end of file +# 1.1.0 : \ No newline at end of file diff --git a/src/main.rs b/src/main.rs index c125fff..54fbffc 100644 --- a/src/main.rs +++ b/src/main.rs @@ -12,13 +12,13 @@ use calcifer::code_editor::themes::DEFAULT_THEMES; #[cfg(debug_assertions)] mod build { - pub const SAVE_PATH : &str = "/var/lib/calcifer/debug/calcifer_save.json"; + pub const SAVE_PATH : &str = "/home/penwing/Documents/.save/debug/calcifer_save.json"; pub const TITLE: &str = " debug"; } #[cfg(not(debug_assertions))] mod build { - pub const SAVE_PATH : &str = "/var/lib/calcifer/calcifer_save.json"; + pub const SAVE_PATH : &str = "/home/penwing/Documents/calcifer_save.json"; pub const TITLE: &str = ""; }