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] [package]
name = "calcifer" name = "calcifer"
version = "0.1.1" version = "0.1.0.1"
edition = "2021" edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View file

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

View file

@ -38,7 +38,7 @@ fn main() -> Result<(), eframe::Error> {
} }
eframe::run_native( eframe::run_native(
"Calcifer v1.1", "Calcifer v1.0.1",
options, options,
Box::new(move |_cc| Box::from(Calcifer::from_app_state(app_state))), Box::new(move |_cc| Box::from(Calcifer::from_app_state(app_state))),
) )
@ -94,14 +94,6 @@ impl eframe::App for Calcifer {
if ctx.input( |i| i.key_pressed(egui::Key::F) && i.modifiers.ctrl) { if ctx.input( |i| i.key_pressed(egui::Key::F) && i.modifiers.ctrl) {
self.searching = !self.searching.clone(); 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_settings(ctx);
self.draw_tree_panel(ctx); self.draw_tree_panel(ctx);