Skip to content

Commit f0f7c76

Browse files
update to include publish version checks (#1169)
* update to include publish version checks * update docs * Fix sorting and error checks
1 parent 2f0e9ff commit f0f7c76

File tree

7 files changed

+160
-67
lines changed

7 files changed

+160
-67
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
[workspace.package]
2-
license = "MIT"
3-
version = "25.9.29"
4-
edition = "2021"
51

62
[workspace]
7-
members = ["tui", "core", "xtask"]
3+
members = ["core", "tui", "xtask"]
84
default-members = ["tui", "core"]
95
resolver = "2"
6+
[workspace.package]
7+
license = "MIT"
8+
version = "25.12.10"
9+
edition = "2021"
1010

1111
[profile.release]
1212
opt-level = "z"

core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ license.workspace = true
88
include = ["src/*.rs", "Cargo.toml", "tabs/**"]
99

1010
[dependencies]
11+
ego-tree = "0.9.0"
1112
include_dir = "0.7.4"
12-
temp-dir = "0.1.14"
1313
serde = { version = "1.0.215", features = ["derive"], default-features = false }
14+
temp-dir = "0.1.14"
1415
toml = { version = "0.8.19", features = ["parse"], default-features = false }
1516
which = "7.0.0"
16-
ego-tree = "0.9.0"

core/tabs/system-setup/tab_data.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,20 @@ description = "This script allows you to install various desktop environments (G
108108
script = "desktop-environments.sh"
109109
task_list = "I"
110110

111+
[[data.entries]]
112+
name = "Uninstall Desktop Environment"
113+
description = "This script allows you to uninstall desktop environments and window managers that were previously installed. It provides an interactive menu to select which desktop environment or window manager to remove, and handles the uninstallation process automatically."
114+
script = "desktop-environments-uninstall.sh"
115+
task_list = "RP"
116+
[[data]]
117+
name = "Desktop Environment Setup"
118+
119+
[[data.entries]]
120+
name = "Install Desktop Environment"
121+
description = "This script allows you to install various desktop environments (GNOME, KDE, XFCE, Cinnamon, MATE, Budgie, LXQt, LXDE) and window managers (i3, Sway, DWM, Awesome, BSPWM, Openbox, Fluxbox) using your distro's package manager. The script provides an interactive menu to select your preferred desktop environment or window manager, and handles the installation process automatically."
122+
script = "desktop-environments.sh"
123+
task_list = "I"
124+
111125
[[data.entries]]
112126
name = "Uninstall Desktop Environment"
113127
description = "This script allows you to uninstall desktop environments and window managers that were previously installed. It provides an interactive menu to select which desktop environment or window manager to remove, and handles the uninstallation process automatically."
@@ -238,17 +252,3 @@ script = "terminus-tty.sh"
238252
task_list = "I PFM"
239253

240254

241-
[[data]]
242-
name = "Desktop Environment Setup"
243-
244-
[[data.entries]]
245-
name = "Install Desktop Environment"
246-
description = "This script allows you to install various desktop environments (GNOME, KDE, XFCE, Cinnamon, MATE, Budgie, LXQt, LXDE) and window managers (i3, Sway, DWM, Awesome, BSPWM, Openbox, Fluxbox) using your distro's package manager. The script provides an interactive menu to select your preferred desktop environment or window manager, and handles the installation process automatically."
247-
script = "desktop-environments.sh"
248-
task_list = "I"
249-
250-
[[data.entries]]
251-
name = "Uninstall Desktop Environment"
252-
description = "This script allows you to uninstall desktop environments and window managers that were previously installed. It provides an interactive menu to select which desktop environment or window manager to remove, and handles the uninstallation process automatically."
253-
script = "desktop-environments-uninstall.sh"
254-
task_list = "RP"

0 commit comments

Comments
 (0)