├── .github └── workflows │ ├── build-nightly.yml │ └── build-stable.yml ├── .pre-commit-config.yaml ├── LATEST_VERSION ├── LICENSE ├── README.md ├── citron-appimage.sh └── get-dependencies.sh /.github/workflows/build-nightly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgforge-dev/Citron-AppImage/HEAD/.github/workflows/build-nightly.yml -------------------------------------------------------------------------------- /.github/workflows/build-stable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgforge-dev/Citron-AppImage/HEAD/.github/workflows/build-stable.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgforge-dev/Citron-AppImage/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LATEST_VERSION: -------------------------------------------------------------------------------- 1 | 0.11.0 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgforge-dev/Citron-AppImage/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgforge-dev/Citron-AppImage/HEAD/README.md -------------------------------------------------------------------------------- /citron-appimage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgforge-dev/Citron-AppImage/HEAD/citron-appimage.sh -------------------------------------------------------------------------------- /get-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkgforge-dev/Citron-AppImage/HEAD/get-dependencies.sh --------------------------------------------------------------------------------