Nextcloud App to edit files directly in LibreOffice (via WebDav).
Requires at least:
- LibreOffice 5.3 (on Windows)
- LibreOffice 7.2 (on Linux)
Doesn't seem to work on macOS currently (See issue #6)
Install from the Nextcloud app store.
Place this app in nextcloud/apps/
The app can be built by using the provided Makefile by running:
make
This requires the following things to be present:
- make
- which
- tar: for building the archive
- curl: used if phpunit and composer are not installed to fetch them from the web
- npm: for building and testing everything JS, only required if a package.json is placed inside the js/ folder
The make command will install or update Composer dependencies if a composer.json is present and also npm run build if a package.json is present in the js/ folder. The npm build script should use local paths for build systems and package managers, so people that simply want to build the app won't need to install npm libraries globally, e.g.:
package.json:
"scripts": {
"test": "node node_modules/gulp-cli/bin/gulp.js karma",
"prebuild": "npm install && node_modules/bower/bin/bower install && node_modules/bower/bin/bower update",
"build": "node node_modules/gulp-cli/bin/gulp.js"
}
- Update CHANGELOG.md
- Update version number in
appinfo/info.xml
- Commit changes & create a tag
- git tag -a
v1.0.3
- git tag -a
git push && git push --tags
- Build the appstore package:
make && make appstore
- The archive is located in
build/artifacts/appstore
- Create a new github release and upload the release artifact there
- https://github.com/allotropia/nextcloud_files_libreoffice_edit/releases
- Release title: e.g.
v1.0.3
- Description: Add changes from the changelog
- Create a new extension release in Nextcloud store
- https://apps.nextcloud.com/developer/apps/releases/new
- Insert the link to the github release binary (e.g.
https://github.com/allotropia/nextcloud_files_libreoffice_edit/releases/download/v1.0.3/fileslibreofficeedit.tar.gz
) - Create signature as described
- Done!