├── .github └── workflows │ ├── snapcraft-edge.yml │ └── snapcraft.yml ├── .gitignore ├── LICENSE ├── README.md ├── snap ├── gui │ ├── excel.desktop │ ├── excel.png │ ├── onedrive.desktop │ ├── onedrive.png │ ├── onenote.desktop │ ├── onenote.png │ ├── outlook.desktop │ ├── outlook.png │ ├── powerpoint.desktop │ ├── powerpoint.png │ ├── word.desktop │ └── word.png └── snapcraft.yaml ├── unofficial-webapp-office.launcher └── unofficial-webapp-office.qml /.github/workflows/snapcraft-edge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirredbeard/unofficial-webapp-office/HEAD/.github/workflows/snapcraft-edge.yml -------------------------------------------------------------------------------- /.github/workflows/snapcraft.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirredbeard/unofficial-webapp-office/HEAD/.github/workflows/snapcraft.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.snap -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirredbeard/unofficial-webapp-office/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirredbeard/unofficial-webapp-office/HEAD/README.md -------------------------------------------------------------------------------- /snap/gui/excel.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirredbeard/unofficial-webapp-office/HEAD/snap/gui/excel.desktop -------------------------------------------------------------------------------- /snap/gui/excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirredbeard/unofficial-webapp-office/HEAD/snap/gui/excel.png -------------------------------------------------------------------------------- /snap/gui/onedrive.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirredbeard/unofficial-webapp-office/HEAD/snap/gui/onedrive.desktop -------------------------------------------------------------------------------- /snap/gui/onedrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirredbeard/unofficial-webapp-office/HEAD/snap/gui/onedrive.png -------------------------------------------------------------------------------- /snap/gui/onenote.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirredbeard/unofficial-webapp-office/HEAD/snap/gui/onenote.desktop -------------------------------------------------------------------------------- /snap/gui/onenote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirredbeard/unofficial-webapp-office/HEAD/snap/gui/onenote.png -------------------------------------------------------------------------------- /snap/gui/outlook.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirredbeard/unofficial-webapp-office/HEAD/snap/gui/outlook.desktop -------------------------------------------------------------------------------- /snap/gui/outlook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirredbeard/unofficial-webapp-office/HEAD/snap/gui/outlook.png -------------------------------------------------------------------------------- /snap/gui/powerpoint.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirredbeard/unofficial-webapp-office/HEAD/snap/gui/powerpoint.desktop -------------------------------------------------------------------------------- /snap/gui/powerpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirredbeard/unofficial-webapp-office/HEAD/snap/gui/powerpoint.png -------------------------------------------------------------------------------- /snap/gui/word.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirredbeard/unofficial-webapp-office/HEAD/snap/gui/word.desktop -------------------------------------------------------------------------------- /snap/gui/word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirredbeard/unofficial-webapp-office/HEAD/snap/gui/word.png -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirredbeard/unofficial-webapp-office/HEAD/snap/snapcraft.yaml -------------------------------------------------------------------------------- /unofficial-webapp-office.launcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirredbeard/unofficial-webapp-office/HEAD/unofficial-webapp-office.launcher -------------------------------------------------------------------------------- /unofficial-webapp-office.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirredbeard/unofficial-webapp-office/HEAD/unofficial-webapp-office.qml --------------------------------------------------------------------------------