rakekniven / nextcloud_files_libreoffice_edit

Nextcloud App to edit files directly with LibreOffice (via WebDav)

Home Page:https://apps.nextcloud.com/apps/fileslibreofficeedit

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Nextcloud Files - Edit with LibreOffice

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)

Automatic install

Install from the Nextcloud app store.

Manual install

Place this app in nextcloud/apps/

Building the app

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"
}

Release procedure

  • Update CHANGELOG.md
  • Update version number in appinfo/info.xml
  • Commit changes & create a tag
    • git tag -a v1.0.3
  • 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
  • Create a new extension release in Nextcloud store
  • Done!

About

Nextcloud App to edit files directly with LibreOffice (via WebDav)

https://apps.nextcloud.com/apps/fileslibreofficeedit

License:GNU Affero General Public License v3.0


Languages

Language:Makefile 53.6%Language:JavaScript 30.2%Language:PHP 16.2%