Skip to content

Commit bf8e492

Browse files
committed
[RELEASE] Rename to AppInstall, update to v11.0 and fix icon loading
1 parent c583f40 commit bf8e492

33 files changed

Lines changed: 539 additions & 275 deletions

.github/workflows/release.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -23,32 +23,32 @@ jobs:
2323
- name: Compile translations
2424
run: |
2525
# Compilar traducciones de la carpeta locale al paquete
26-
mkdir -p swiftinstall/usr/share/locale/en/LC_MESSAGES/
27-
msgfmt locale/en/LC_MESSAGES/swiftinstall.po -o swiftinstall/usr/share/locale/en/LC_MESSAGES/swiftinstall.mo
26+
mkdir -p appinstall/usr/share/locale/en/LC_MESSAGES/
27+
msgfmt locale/en/LC_MESSAGES/appinstall.po -o appinstall/usr/share/locale/en/LC_MESSAGES/appinstall.mo
2828
2929
# También compilar en la carpeta locale raíz por si acaso
30-
msgfmt locale/en/LC_MESSAGES/swiftinstall.po -o locale/en/LC_MESSAGES/swiftinstall.mo
30+
msgfmt locale/en/LC_MESSAGES/appinstall.po -o locale/en/LC_MESSAGES/appinstall.mo
3131
3232
- name: Sync source files
3333
run: |
34-
mkdir -p swiftinstall/usr/share/swiftinstall/
35-
cp start.py swiftinstall/usr/share/swiftinstall/
36-
cp styles.css swiftinstall/usr/share/swiftinstall/
37-
cp appimage.png swiftinstall/usr/share/swiftinstall/
34+
mkdir -p appinstall/usr/share/appinstall/
35+
cp start.py appinstall/usr/share/appinstall/
36+
cp styles.css appinstall/usr/share/appinstall/
37+
cp appimage.png appinstall/usr/share/appinstall/
3838
3939
- name: Set up permissions
4040
run: |
41-
chmod -R 755 swiftinstall/usr
42-
chmod 755 swiftinstall/DEBIAN/postinst
43-
chmod 644 swiftinstall/DEBIAN/control
41+
chmod -R 755 appinstall/usr
42+
chmod 755 appinstall/DEBIAN/postinst
43+
chmod 644 appinstall/DEBIAN/control
4444
4545
- name: Build .deb package
4646
run: |
47-
PACKAGE_NAME=$(grep '^Package:' swiftinstall/DEBIAN/control | cut -d' ' -f2)
48-
VERSION=$(grep '^Version:' swiftinstall/DEBIAN/control | cut -d' ' -f2)
49-
ARCH=$(grep '^Architecture:' swiftinstall/DEBIAN/control | cut -d' ' -f2)
47+
PACKAGE_NAME=$(grep '^Package:' appinstall/DEBIAN/control | cut -d' ' -f2)
48+
VERSION=$(grep '^Version:' appinstall/DEBIAN/control | cut -d' ' -f2)
49+
ARCH=$(grep '^Architecture:' appinstall/DEBIAN/control | cut -d' ' -f2)
5050
DEB_NAME="${PACKAGE_NAME}_${VERSION}_${ARCH}.deb"
51-
dpkg-deb --root-owner-group --build swiftinstall "$DEB_NAME"
51+
dpkg-deb --root-owner-group --build appinstall "$DEB_NAME"
5252
echo "DEB_NAME=$DEB_NAME" >> $GITHUB_ENV
5353
echo "TAG_NAME=v$VERSION" >> $GITHUB_ENV
5454

.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ wheels/
2323

2424
# Logs
2525
*.log
26-
swiftinstall_debug.log
26+
appinstall_debug.log
2727

2828
# OS
2929
.DS_Store
@@ -34,8 +34,8 @@ swiftinstall_debug.log
3434
ehthumbs.db
3535
Thumbs.db
3636

37-
# SwiftInstall specific
37+
# AppInstall specific
3838
archive/
3939
*.deb
4040
*.rpm
41-
!swiftinstall/
41+
!appinstall/

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
![Banner SwiftInstall](/corp/SwiftInstall%20banner.png)
2-
# SwiftInstall
1+
![Banner AppInstall](/corp/AppInstall%20banner.png)
2+
# AppInstall
33

44
Instala y desinstala aplicaciones fuera de la Store en Linux de forma gráfica.
55

@@ -18,7 +18,7 @@ Y ya estaría instalada la aplicación.
1818

1919
Y ya estaría desinstalada la aplicación.
2020

21-
## Empezar a usar SwiftInstall
21+
## Empezar a usar AppInstall
2222
1. **Descarga** la aplicación en .deb
2323
2. Ejecuta `dpkg -i [nombre del paquete.deb]`
2424
3. [Instala Python en tu dispositivo](https://python-guide-es.readthedocs.io/es/latest/starting/install3/linux.html).

__pycache__/start.cpython-313.pyc

-42 Bytes
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
Package: swiftinstall
2-
Version: 10.0
1+
Package: appinstall
2+
Version: 11.0
33
Section: utils
44
Priority: optional
55
Architecture: all
66
Depends: python3 (>= 3.6), python3-gi (>= 3.30), gir1.2-gtk-4.0 (>= 4.0), gir1.2-adw-1 (>= 1.0), python3-requests (>= 2.20), python3-packaging (>= 20.0), gir1.2-glib-2.0, gir1.2-gio-2.0, pkexec
77
Maintainer: Inled Group <contacto@inled.es>
8-
Description: Swift Install Package Manager
8+
Description: App Install Package Manager
99
A simple GTK application for installing and managing
1010
various package formats including .deb, .rpm, .appimage,
1111
and compressed archives on Linux systems.

appinstall/usr/bin/appinstall

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
exec python3 "/usr/share/appinstall/start.py" "$@"
3+
File renamed without changes.

0 commit comments

Comments
 (0)