mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-22 05:12:27 +00:00
Compare commits
5 Commits
58747b99ef
...
6d05a59b78
Author | SHA1 | Date | |
---|---|---|---|
|
6d05a59b78 | ||
|
696110eae5 | ||
|
5944d8443b | ||
|
cc16c3e56d | ||
|
6c2aaf339f |
19
.github/release.yml
vendored
19
.github/release.yml
vendored
|
@ -1,20 +1,23 @@
|
||||||
changelog:
|
changelog:
|
||||||
categories:
|
categories:
|
||||||
- title: '🚀 Features'
|
- title: '🚀 Features'
|
||||||
labels:
|
label: 'enhancement'
|
||||||
- 'feature'
|
|
||||||
- 'enhancement'
|
|
||||||
- title: '🐛 Bug Fixes'
|
- title: '🐛 Bug Fixes'
|
||||||
labels:
|
label: 'bug'
|
||||||
- 'fix'
|
- title: '⚙️ Refactoring'
|
||||||
- 'bugfix'
|
label: 'refactor'
|
||||||
- 'bug'
|
- title: '🧩 UI/UX'
|
||||||
|
label: 'UI/UX'
|
||||||
- title: '📚 Documentation'
|
- title: '📚 Documentation'
|
||||||
label: 'documentation'
|
label: 'documentation'
|
||||||
- title: '🔒 Security'
|
- title: '🔒 Security'
|
||||||
label: 'security'
|
label: 'security'
|
||||||
- title: '🧰 GitHub Actions'
|
- title: '🧰 GitHub Actions'
|
||||||
label: 'github actions'
|
label: 'github_actions'
|
||||||
|
- title: '🦀 Rust'
|
||||||
|
label: 'rust'
|
||||||
|
- title: '📃 Scripting'
|
||||||
|
label: 'script'
|
||||||
exclude:
|
exclude:
|
||||||
labels:
|
labels:
|
||||||
- 'skip-changelog'
|
- 'skip-changelog'
|
|
@ -95,7 +95,7 @@ impl Filter {
|
||||||
|
|
||||||
//Create the search bar widget
|
//Create the search bar widget
|
||||||
let search_bar = Paragraph::new(display_text)
|
let search_bar = Paragraph::new(display_text)
|
||||||
.block(Block::default().borders(Borders::ALL).title("Search"))
|
.block(Block::default().borders(Borders::ALL).title(" Search "))
|
||||||
.style(Style::default().fg(search_color));
|
.style(Style::default().fg(search_color));
|
||||||
|
|
||||||
//Render the search bar (First chunk of the screen)
|
//Render the search bar (First chunk of the screen)
|
||||||
|
|
|
@ -74,7 +74,7 @@ impl FloatContent for RunningCommand {
|
||||||
|
|
||||||
title_line.push_span(
|
title_line.push_span(
|
||||||
Span::default()
|
Span::default()
|
||||||
.content(" press <ENTER> to close this window ")
|
.content(" Press <ENTER> to close this window ")
|
||||||
.style(Style::default()),
|
.style(Style::default()),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@ use temp_dir::TempDir;
|
||||||
|
|
||||||
const MIN_WIDTH: u16 = 77;
|
const MIN_WIDTH: u16 = 77;
|
||||||
const MIN_HEIGHT: u16 = 19;
|
const MIN_HEIGHT: u16 = 19;
|
||||||
const TITLE: &str = concat!("Linux Toolbox - ", env!("BUILD_DATE"));
|
const TITLE: &str = concat!(" Linux Toolbox - ", env!("BUILD_DATE"), " ");
|
||||||
const ACTIONS_GUIDE: &str = "List of important tasks performed by commands' names:
|
const ACTIONS_GUIDE: &str = "List of important tasks performed by commands' names:
|
||||||
|
|
||||||
D - disk modifications (ex. partitioning) (privileged)
|
D - disk modifications (ex. partitioning) (privileged)
|
||||||
|
@ -61,7 +61,7 @@ pub struct AppState {
|
||||||
selected_commands: Vec<Rc<ListNode>>,
|
selected_commands: Vec<Rc<ListNode>>,
|
||||||
drawable: bool,
|
drawable: bool,
|
||||||
#[cfg(feature = "tips")]
|
#[cfg(feature = "tips")]
|
||||||
tip: &'static str,
|
tip: String,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub enum Focus {
|
pub enum Focus {
|
||||||
|
@ -368,17 +368,17 @@ impl AppState {
|
||||||
};
|
};
|
||||||
|
|
||||||
let title = if self.multi_select {
|
let title = if self.multi_select {
|
||||||
&format!("{} [Multi-Select]", TITLE)
|
&format!("{}[Multi-Select] ", TITLE)
|
||||||
} else {
|
} else {
|
||||||
TITLE
|
TITLE
|
||||||
};
|
};
|
||||||
|
|
||||||
#[cfg(feature = "tips")]
|
#[cfg(feature = "tips")]
|
||||||
let bottom_title = Line::from(self.tip.bold().blue()).right_aligned();
|
let bottom_title = Line::from(self.tip.as_str().bold().blue()).right_aligned();
|
||||||
#[cfg(not(feature = "tips"))]
|
#[cfg(not(feature = "tips"))]
|
||||||
let bottom_title = "";
|
let bottom_title = "";
|
||||||
|
|
||||||
let task_list_title = Line::from("Important Actions ").right_aligned();
|
let task_list_title = Line::from(" Important Actions ").right_aligned();
|
||||||
|
|
||||||
// Create the list widget with items
|
// Create the list widget with items
|
||||||
let list = List::new(items)
|
let list = List::new(items)
|
||||||
|
@ -745,13 +745,13 @@ impl AppState {
|
||||||
const TIPS: &str = include_str!("../cool_tips.txt");
|
const TIPS: &str = include_str!("../cool_tips.txt");
|
||||||
|
|
||||||
#[cfg(feature = "tips")]
|
#[cfg(feature = "tips")]
|
||||||
fn get_random_tip() -> &'static str {
|
fn get_random_tip() -> String {
|
||||||
let tips: Vec<&str> = TIPS.lines().collect();
|
let tips: Vec<&str> = TIPS.lines().collect();
|
||||||
if tips.is_empty() {
|
if tips.is_empty() {
|
||||||
return "";
|
return "".to_string();
|
||||||
}
|
}
|
||||||
|
|
||||||
let mut rng = rand::thread_rng();
|
let mut rng = rand::thread_rng();
|
||||||
let random_index = rng.gen_range(0..tips.len());
|
let random_index = rng.gen_range(0..tips.len());
|
||||||
tips[random_index]
|
format!(" {} ", tips[random_index])
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user