├── .github └── workflows │ └── 4testing-build.yml ├── .gitignore ├── DesktopEditors-x86_64.yml ├── LICENSE ├── Makefile ├── README.md ├── excludelist ├── metainfo ├── desktopeditors.appdata.xml └── logo.png └── usr └── share └── pkg2appimage └── excludedeblist /.github/workflows/4testing-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/appimage-desktopeditors/HEAD/.github/workflows/4testing-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | desktopeditors/ 2 | out/ 3 | pkg2appimage 4 | -------------------------------------------------------------------------------- /DesktopEditors-x86_64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/appimage-desktopeditors/HEAD/DesktopEditors-x86_64.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/appimage-desktopeditors/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/appimage-desktopeditors/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/appimage-desktopeditors/HEAD/README.md -------------------------------------------------------------------------------- /excludelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/appimage-desktopeditors/HEAD/excludelist -------------------------------------------------------------------------------- /metainfo/desktopeditors.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/appimage-desktopeditors/HEAD/metainfo/desktopeditors.appdata.xml -------------------------------------------------------------------------------- /metainfo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/appimage-desktopeditors/HEAD/metainfo/logo.png -------------------------------------------------------------------------------- /usr/share/pkg2appimage/excludedeblist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/appimage-desktopeditors/HEAD/usr/share/pkg2appimage/excludedeblist --------------------------------------------------------------------------------