1.0.1 release

This commit is contained in:
Penwing 2024-01-22 21:26:19 +01:00
parent 513d0f42e0
commit a85ebdbf1a
3 changed files with 7 additions and 13 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "calcifer"
version = "0.1.1"
version = "0.1.0.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View file

@ -1,6 +1,6 @@
# Calcifer
My cutsom code editor (only the features I want inside)
My custom code editor (only the features I want inside)
# 1.0 :
Added a File Tree
@ -9,5 +9,7 @@ Added an Embedded Terminal
Added Syntax Highlighting
Added Themes
# 1.1 :
Better Terminal
# 1.0.1 :
Fixed Terminal sterr output
Fixed scroll between tabs

View file

@ -38,7 +38,7 @@ fn main() -> Result<(), eframe::Error> {
}
eframe::run_native(
"Calcifer v1.1",
"Calcifer v1.0.1",
options,
Box::new(move |_cc| Box::from(Calcifer::from_app_state(app_state))),
)
@ -95,14 +95,6 @@ impl eframe::App for Calcifer {
self.searching = !self.searching.clone();
}
//if ctx.input( |i| i.scroll_delta.y > 0.0) {
//self.tabs[self.selected_tab.to_index()].scroll_offset += 80.0;
//}
//if ctx.input( |i| i.scroll_delta.y < 0.0) {
//self.tabs[self.selected_tab.to_index()].scroll_offset -= 80.0;
//}
self.draw_settings(ctx);
self.draw_tree_panel(ctx);
self.draw_terminal_panel(ctx);