fixed some path
This commit is contained in:
parent
88747a3cd8
commit
8de16d64d8
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -570,7 +570,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "calcifer"
|
||||
version = "1.0.0"
|
||||
version = "1.0.1"
|
||||
dependencies = [
|
||||
"eframe",
|
||||
"egui_extras",
|
||||
|
|
|
@ -44,6 +44,4 @@ Added confirm prompt if unsaved
|
|||
Async terminal !
|
||||
Real Ui
|
||||
|
||||
# 1.0.1 :
|
||||
|
||||
Fixed sterr not streamed
|
||||
# 1.1.0 :
|
|
@ -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 = "";
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue