Skip to content
This repository was archived by the owner on Jul 20, 2025. It is now read-only.

Commit bde0fc8

Browse files
committed
Release 1.4.6
1 parent 9bbb83a commit bde0fc8

File tree

5 files changed

+10
-28
lines changed

5 files changed

+10
-28
lines changed

app/grelintb.desktop

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env xdg-open
22
[Desktop Entry]
3-
Version=1.4.5
3+
Version=1.4.6
44
Name=GrelinTB
55
Encoding=UTF-8
66
Comment=Great toolbox for some Linux distributions.

app/grelintb.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1216,13 +1216,13 @@ def do_main(self, operation: str):
12161216
if operation == "search":
12171217
self.command = f"flatpak search {self.entry.get()}"
12181218
elif operation == "install":
1219-
self.command = f"flatpak install {self.entry.get()}"
1219+
self.command = f"flatpak install {self.entry.get()} -y"
12201220
elif operation == "reinstall":
1221-
self.command = f"flatpak install --reinstall '{self.entry.get()}"
1221+
self.command = f"flatpak install --reinstall '{self.entry.get()} -y"
12221222
elif operation == "uninstall":
1223-
self.command = f"flatpak uninstall {self.entry.get()}"
1223+
self.command = f"flatpak uninstall {self.entry.get()} -y"
12241224
elif operation == "update":
1225-
self.command = f"flatpak update '{self.entry.get()}"
1225+
self.command = f"flatpak update '{self.entry.get()} -y"
12261226
self.textbox.configure(state="normal")
12271227
self.textbox.delete("0.0", 'end')
12281228
self.textbox.configure(state="disabled")

app/minor-changelog.txt

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1 @@
1-
- Move .bashrc's and .zshrc's backups and calculation history from /home/<username> folder to /home/<username>/.local/share/grelintb folder. This keeps the user's home folder cleaner.
2-
- Switch to DNF5. This allows GrelinTB to prepare for Fedora Linux 41 and experience the benefits of DNF5.
3-
- Add Hyprland for Fedora Linux and Arch Linux baseds.
4-
- Add "Listing Installed Leaves" for Fedora Linux baseds. According to DNF5's wiki, it's is useful because: The list gives you a nice overview of what is installed on your system without flooding you with anything required by the packages already shown.
5-
- Change "Traditional" texts in Store to more meaningful expressions.
6-
- Fix text of distribution synchronizing button.
7-
- Remove group reinstalling for Fedora Linux baseds. Because DNF (both of DNF4 and DNF5) doesn't support it.
8-
- Remove fixing broken dependencies for Fedora Linux baseds.
9-
- Remove distribution synchronizing for Arch Linux baseds.
10-
- Fix that things that some distributions do not support in the traditional scripts section are enabled after any operation.
1+
- Add the missing option in the Flatpak commands.

app/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.4.5
1+
1.4.6

build/fedora/grelintb.spec

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: grelintb
2-
Version: 1.4.5
2+
Version: 1.4.6
33
Release: 1
44
Summary: Great toolbox for some Linux distributions.
55
License: GPLv3+
@@ -41,14 +41,5 @@ cp * $RPM_BUILD_ROOT/usr/local/bin/grelintb
4141
/usr/bin/grelintb
4242

4343
%changelog
44-
* Sun May 5 2024 MuKonqi (Muhammed S.) <mukonqi@gmail.com>
45-
- Move .bashrc's and .zshrc's backups and calculation history from /home/<username> folder to /home/<username>/.local/share/grelintb folder. This keeps the user's home folder cleaner.
46-
- Switch to DNF5. This allows GrelinTB to prepare for Fedora Linux 41 and experience the benefits of DNF5.
47-
- Add Hyprland for Fedora Linux and Arch Linux baseds.
48-
- Add "Listing Installed Leaves" for Fedora Linux baseds. According to DNF5's wiki, it's is useful because: The list gives you a nice overview of what is installed on your system without flooding you with anything required by the packages already shown.
49-
- Change "Traditional" texts in Store to more meaningful expressions.
50-
- Fix text of distribution synchronizing button.
51-
- Remove group reinstalling for Fedora Linux baseds. Because DNF (both of DNF4 and DNF5) doesn't support it.
52-
- Remove fixing broken dependencies for Fedora Linux baseds.
53-
- Remove distribution synchronizing for Arch Linux baseds.
54-
- Fix that things that some distributions do not support in the traditional scripts section are enabled after any operation.
44+
* Sun May 26 2024 MuKonqi (Muhammed S.) <mukonqi@gmail.com>
45+
- Add the missing option in the Flatpak commands.

0 commit comments

Comments
 (0)