calcifer/README.md

40 lines
1 KiB
Markdown
Raw Normal View History

2024-01-14 10:56:21 +01:00
# Calcifer
2024-01-22 09:11:54 +01:00
2024-01-23 09:27:41 +01:00
My custom code editor (only the features I want inside) using egui and my own fork of egui_code_editor https://lib.rs/crates/egui_code_editor
2024-01-22 09:11:54 +01:00
2024-01-23 09:27:41 +01:00
# 1.0.0 :
2024-01-22 09:11:54 +01:00
Added a File Tree
Added Tabs
Added an Embedded Terminal
Added Syntax Highlighting
Added Themes
2024-01-22 21:26:19 +01:00
# 1.0.1 :
Fixed Terminal sterr output
Fixed scroll between tabs
2024-01-23 09:27:41 +01:00
Library subjugation (got the raw files of the egui_code_editor for some internal modifications)
# 1.0.2 :
2024-01-23 10:46:09 +01:00
Added find and replace function
2024-01-23 13:11:32 +01:00
Added multi line tab and shift+tab
Added Ctrl+E : comment multiline
2024-01-23 17:44:43 +01:00
Fixed Ctr+Z (was already in library, tried to make my own, and then found the better one)
2024-01-23 22:09:56 +01:00
Added indent recognition (when there is a line break, the indentation level is kept)
# 1.0.3 :
2024-01-23 22:43:23 +01:00
Added testing
2024-01-24 16:30:28 +01:00
Added Ctrl+T : refresh current tab
2024-01-24 13:26:52 +01:00
Added Time debug
Added Tree toggle for performance
Added Alt+Arrows to move through tabs
Added Zoom
Added cd
Added terminal color
2024-01-24 19:29:08 +01:00
Max tabs 8 => 20
Max framerate => 30 fps (less cpu usage)
2024-01-24 13:26:52 +01:00
2024-01-24 19:29:08 +01:00
# 1.0.4 :
Added close tab and refresh confirm prompt
2024-01-24 22:34:25 +01:00
Async terminal !