├── .github └── workflows │ ├── 4testing-build.yml │ └── prepare-pr.yml ├── .gitignore ├── README.md ├── flathub.json ├── org.onlyoffice.desktopeditors.json ├── org.onlyoffice.desktopeditors.metainfo.xml └── screenshots ├── Connect_to_cloud.png ├── Document_editor.png ├── PDF_editor.png ├── Presentation_editor.png └── Spreadsheet_editor.png /.github/workflows/4testing-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/org.onlyoffice.desktopeditors/HEAD/.github/workflows/4testing-build.yml -------------------------------------------------------------------------------- /.github/workflows/prepare-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/org.onlyoffice.desktopeditors/HEAD/.github/workflows/prepare-pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/org.onlyoffice.desktopeditors/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/org.onlyoffice.desktopeditors/HEAD/README.md -------------------------------------------------------------------------------- /flathub.json: -------------------------------------------------------------------------------- 1 | { 2 | "only-arches": ["x86_64"] 3 | } -------------------------------------------------------------------------------- /org.onlyoffice.desktopeditors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/org.onlyoffice.desktopeditors/HEAD/org.onlyoffice.desktopeditors.json -------------------------------------------------------------------------------- /org.onlyoffice.desktopeditors.metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/org.onlyoffice.desktopeditors/HEAD/org.onlyoffice.desktopeditors.metainfo.xml -------------------------------------------------------------------------------- /screenshots/Connect_to_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/org.onlyoffice.desktopeditors/HEAD/screenshots/Connect_to_cloud.png -------------------------------------------------------------------------------- /screenshots/Document_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/org.onlyoffice.desktopeditors/HEAD/screenshots/Document_editor.png -------------------------------------------------------------------------------- /screenshots/PDF_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/org.onlyoffice.desktopeditors/HEAD/screenshots/PDF_editor.png -------------------------------------------------------------------------------- /screenshots/Presentation_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/org.onlyoffice.desktopeditors/HEAD/screenshots/Presentation_editor.png -------------------------------------------------------------------------------- /screenshots/Spreadsheet_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/org.onlyoffice.desktopeditors/HEAD/screenshots/Spreadsheet_editor.png --------------------------------------------------------------------------------