Skip to content

Commit

Permalink
New build
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianTM committed Jun 12, 2024
1 parent feda66e commit 4862ef1
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 36 deletions.
5 changes: 3 additions & 2 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
mx-packageinstaller (24.6.01) mx; urgency=medium
mx-packageinstaller (24.6.02) mx; urgency=medium

* Fix: changing flatpak repo from the combo box
* Add flatpak-verified repo
* Fix: changing flatpak repo from the combo box
* Fix: testing if flatpak is setup for system

-- Adrian <[email protected]> Wed, 12 Jun 2024 11:15:41 -0400

Expand Down
32 changes: 0 additions & 32 deletions debs/mx-packageinstaller_24.6.01.dsc

This file was deleted.

Binary file removed debs/mx-packageinstaller_24.6.01.tar.xz
Binary file not shown.
32 changes: 32 additions & 0 deletions debs/mx-packageinstaller_24.6.02.dsc
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 3.0 (native)
Source: mx-packageinstaller
Binary: mx-packageinstaller
Architecture: any
Version: 24.6.02
Maintainer: Adrian <[email protected]>
Standards-Version: 3.9.8
Vcs-Git: git://github.com/AdrianTM/mx-packageinstaller
Build-Depends: debhelper (>= 10), qtbase5-dev, qttools5-dev-tools
Package-List:
mx-packageinstaller deb admin optional arch=any
Checksums-Sha1:
760ddcadd6b22ec894c9d607365ceaf836845060 304468 mx-packageinstaller_24.6.02.tar.xz
Checksums-Sha256:
db85a7cf2c658360076c9bf6c5b082ed06ce4bfca87438840416e69bf24e6105 304468 mx-packageinstaller_24.6.02.tar.xz
Files:
868ce938004ccc4b1f976b3548bdafc8 304468 mx-packageinstaller_24.6.02.tar.xz

-----BEGIN PGP SIGNATURE-----

iQFHBAEBCgAxFiEE8ndToY6S45N+YzXncJOMeAZ57pgFAmZpxNQTHGFkcmlhbkBt
eGxpbnV4Lm9yZwAKCRBwk4x4BnnumLHFCACd4buSCB0545Dl2wbKEpquDyHhkUW0
x6PpHbRijUEqvL2xJAOEgygN5iPwfc7cDZnuhD2IZEGSE4/YDzuEMA2BMJFHjUjB
Q0iTY7N3RIdVkHW3/+aWJ3GS8LpMyWCPprvVE7Ayazgq26/1I1qNooFLfK9o7wyd
aXrABMOFfGhwhXnX6G0vOfAH6LvMYkK9bvkGkqPZOkQvmsrBOFC0fgmEsV7w//J+
ZJ4SceoLpIb/U9Jfe7ahQGxsS5TDbIgyS3VYdaUr5R27Dh7HLJSCmJ0wmRHHSe0X
zcNN+WzUd3xY6ug37YeoJUbELaaZCWmSZK+y8OyJigjqWuwkQ/kHZFra
=5z20
-----END PGP SIGNATURE-----
Binary file added debs/mx-packageinstaller_24.6.02.tar.xz
Binary file not shown.
4 changes: 2 additions & 2 deletions mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,11 @@ MainWindow::MainWindow(const QCommandLineParser &arg_parser, QWidget *parent)
displayPackages();
}
if (arch != "i386" && checkInstalled("flatpak")) {
if (!Cmd().run("flatpak remote-list --columns=name | grep -qw flathub", true)) {
if (!Cmd().run("flatpak remote-list --system --columns=name | grep -qw flathub", true)) {
Cmd().runAsRoot(
"flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo");
}
if (!Cmd().run("flatpak remote-list --columns=name | grep -qw flathub-verified", true)) {
if (!Cmd().run("flatpak remote-list --system --columns=name | grep -qw flathub-verified", true)) {
Cmd().runAsRoot("flatpak remote-add --if-not-exists --subset=verified flathub-verified "
"https://flathub.org/repo/flathub.flatpakrepo");
}
Expand Down

0 comments on commit 4862ef1

Please sign in to comment.