6 Commits

Author SHA1 Message Date
Vyvir 215d8aaa74 Add sponsorship badge to README
Added a sponsorship badge to the README.
2026-06-09 18:32:13 +03:00
Vyvir 05dfc3c5e5 Create FUNDING.yml 2026-06-09 18:27:44 +03:00
Vyvir 506a8a7572 Merge pull request #92 from hcortezr/pair-check-pr
Change pairing check command to validate
2026-02-07 18:33:17 +02:00
Humberto Cortez 5ea5d4f290 Change pairing check command to validate
Updated the pairing check command to use 'idevicepair validate' instead of 'idevicepair pair' to avoid error -5.
2026-02-03 00:05:26 -08:00
Vyvir 89c23e4791 Add libnotify to Arch dependencies 2026-01-27 17:58:13 +02:00
Vyvir 6508e8fbf1 Update Fedora tip 2026-01-27 17:55:10 +02:00
3 changed files with 8 additions and 3 deletions
+3
View File
@@ -0,0 +1,3 @@
# These are supported funding model platforms
github: vyvir
+4 -2
View File
@@ -5,6 +5,8 @@ althea is a GUI for AltServer-Linux that allows to easily sideload apps onto an
This app is in a very early state, so if you're experiencing issues or want to help, you can create a [pull request](https://github.com/vyvir/althea/pulls), [report an issue](https://github.com/vyvir/althea/issues), or join [the Discord server](https://discord.gg/DZwRbyXq5Z). This app is in a very early state, so if you're experiencing issues or want to help, you can create a [pull request](https://github.com/vyvir/althea/pulls), [report an issue](https://github.com/vyvir/althea/issues), or join [the Discord server](https://discord.gg/DZwRbyXq5Z).
[![](https://img.shields.io/static/v1?label=Sponsor&message=%E2%9D%A4&logo=GitHub&color=%23fe8e86)](https://github.com/sponsors/vyvir)
## Instructions ## Instructions
### Dependencies ### Dependencies
@@ -28,7 +30,7 @@ sudo dnf install binutils python3-pip python3-requests python3-keyring git libap
``` ```
Arch Linux: Arch Linux:
``` ```
sudo pacman -S binutils wget curl git python-pip python-requests python-gobject python-keyring libappindicator-gtk3 usbmuxd libimobiledevice avahi zlib unzip usbutils psmisc libhandy sudo pacman -S binutils wget curl git python-pip python-requests python-gobject python-keyring libappindicator-gtk3 usbmuxd libimobiledevice avahi zlib unzip usbutils psmisc libhandy libnotify
``` ```
OpenSUSE: OpenSUSE:
@@ -61,7 +63,7 @@ That's it! Have fun with althea!
You can downgrade crypto policies to the previous Fedora version: You can downgrade crypto policies to the previous Fedora version:
`sudo update-crypto-policies --set FEDORA40` `sudo update-crypto-policies --set LEGACY`
## Credits ## Credits
+1 -1
View File
@@ -161,7 +161,7 @@ def on_abtdlg(self):
about.destroy() about.destroy()
def paircheck(): # Check if the device is paired already def paircheck(): # Check if the device is paired already
pairchecking = subprocess.run('idevicepair pair | grep -q "SUCCESS"', shell=True) pairchecking = subprocess.run('idevicepair validate | grep -q "SUCCESS"', shell=True) # use validate instaed of pair, pair causes error -5 if already paired
if pairchecking.returncode == 0: if pairchecking.returncode == 0:
return False return False
else: else: