Added the ability to edit existing indexers with basic options, added a tags column to the indexers table, and fixed a bug in the counter fields that displayed the cursor next to the integer instead of on it to make understanding the counter easier. Also upgraded to confy v0.60.0 and rust version to 1.75

This commit is contained in:
2024-01-19 15:45:41 -07:00
parent 3d249cc51c
commit 2ec4472efc
29 changed files with 3513 additions and 362 deletions
+12 -2
View File
@@ -267,8 +267,18 @@ pub fn line_gauge_with_label(title: &str, ratio: f64) -> LineGauge<'_> {
.label(Line::from(format!("{title}: {:.0}%", ratio * 100.0)))
}
pub fn show_cursor(f: &mut Frame<'_>, area: Rect, offset: usize, string: &str) {
f.set_cursor(area.x + (string.len() - offset) as u16 + 1, area.y + 1);
pub fn show_cursor(
f: &mut Frame<'_>,
area: Rect,
offset: usize,
string: &str,
cursor_after_string: bool,
) {
if cursor_after_string {
f.set_cursor(area.x + (string.len() - offset) as u16 + 1, area.y + 1);
} else {
f.set_cursor(area.x + 1u16, area.y + 1);
}
}
pub fn get_width_from_percentage(area: Rect, percentage: u16) -> usize {