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]]
|
[[package]]
|
||||||
name = "calcifer"
|
name = "calcifer"
|
||||||
version = "1.0.0"
|
version = "1.0.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"eframe",
|
"eframe",
|
||||||
"egui_extras",
|
"egui_extras",
|
||||||
|
|
|
@ -44,6 +44,4 @@ Added confirm prompt if unsaved
|
||||||
Async terminal !
|
Async terminal !
|
||||||
Real Ui
|
Real Ui
|
||||||
|
|
||||||
# 1.0.1 :
|
# 1.1.0 :
|
||||||
|
|
||||||
Fixed sterr not streamed
|
|
|
@ -12,13 +12,13 @@ use calcifer::code_editor::themes::DEFAULT_THEMES;
|
||||||
|
|
||||||
#[cfg(debug_assertions)]
|
#[cfg(debug_assertions)]
|
||||||
mod build {
|
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";
|
pub const TITLE: &str = " debug";
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(not(debug_assertions))]
|
#[cfg(not(debug_assertions))]
|
||||||
mod build {
|
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 = "";
|
pub const TITLE: &str = "";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue