├── .github └── workflows │ └── pylint.yml ├── .gitignore ├── AltLinux ├── DEBIAN │ ├── control │ └── postinst └── usr │ └── share │ ├── applications │ └── AltLinux.desktop │ └── icons │ └── AltLinux.png ├── LICENSE ├── README.md ├── altlinux.spec ├── main.py └── resources ├── .gitignore ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── AutoStart.sh └── version /.github/workflows/pylint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideServer-for-Linux/HEAD/.github/workflows/pylint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideServer-for-Linux/HEAD/.gitignore -------------------------------------------------------------------------------- /AltLinux/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideServer-for-Linux/HEAD/AltLinux/DEBIAN/control -------------------------------------------------------------------------------- /AltLinux/DEBIAN/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideServer-for-Linux/HEAD/AltLinux/DEBIAN/postinst -------------------------------------------------------------------------------- /AltLinux/usr/share/applications/AltLinux.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideServer-for-Linux/HEAD/AltLinux/usr/share/applications/AltLinux.desktop -------------------------------------------------------------------------------- /AltLinux/usr/share/icons/AltLinux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideServer-for-Linux/HEAD/AltLinux/usr/share/icons/AltLinux.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideServer-for-Linux/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideServer-for-Linux/HEAD/README.md -------------------------------------------------------------------------------- /altlinux.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideServer-for-Linux/HEAD/altlinux.spec -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideServer-for-Linux/HEAD/main.py -------------------------------------------------------------------------------- /resources/.gitignore: -------------------------------------------------------------------------------- 1 | AltStore.ipa 2 | AltServer 3 | -------------------------------------------------------------------------------- /resources/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideServer-for-Linux/HEAD/resources/1.png -------------------------------------------------------------------------------- /resources/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideServer-for-Linux/HEAD/resources/2.png -------------------------------------------------------------------------------- /resources/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideServer-for-Linux/HEAD/resources/3.png -------------------------------------------------------------------------------- /resources/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideServer-for-Linux/HEAD/resources/4.png -------------------------------------------------------------------------------- /resources/AutoStart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SideStore/SideServer-for-Linux/HEAD/resources/AutoStart.sh -------------------------------------------------------------------------------- /resources/version: -------------------------------------------------------------------------------- 1 | 0.4.2-1 2 | x64 3 | --------------------------------------------------------------------------------