Skip to content

Commit

Permalink
Merge pull request #976 from ONLYOFFICE/feature/nc-27
Browse files Browse the repository at this point in the history
Release/v9.1.1
  • Loading branch information
LinneyS authored Apr 8, 2024
2 parents ec8d49a + d2e4237 commit 9e25cee
Show file tree
Hide file tree
Showing 112 changed files with 6,497 additions and 3,228 deletions.
14 changes: 13 additions & 1 deletion .github/workflows/artifact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
- name: Get Info
run: |
echo "version=$(grep -Eo '[0-9]+(\.[0-9]+)+' CHANGELOG.md | head -n 1)" >> $GITHUB_OUTPUT
Expand All @@ -21,13 +24,22 @@ jobs:
cd ${{ github.workspace }}
cwd=$(pwd)
git submodule update --init --recursive
npm install
npm run build
mkdir -p onlyoffice
rsync -av --exclude='onlyoffice' . onlyoffice
cd onlyoffice
rm -rf ./.github/
rm -rf ./.git/
rm ./.gitmodules
rm -rf ./assets/.git
rm -rf ./node_modules/
rm -rf ./src/
rm ./package.json
rm ./package-lock.json
rm ./webpack.js
rm -rf ./assets/document-templates/.git
rm -rf ./assets/document-formats/.git
rm ./ruleset.xml
cd $cwd
tar -czvf onlyoffice.tar.gz onlyoffice
- name: Upload Artifact
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/lint-php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Lint

on:
push:
branches: [master, develop]
pull_request:
branches: [master]

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint-phpcs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ name: Lint
on:
workflow_dispatch:
push:
branches: [master]
pull_request:
branches: [master, develop]
pull_request:
branches: [master, develop, feature/nc-27]

permissions:
contents: read
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/js
/node_modules
/package-lock.json
7 changes: 5 additions & 2 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
[submodule "assets"]
path = assets
[submodule "assets/document-templates"]
path = assets/document-templates
url = https://github.com/ONLYOFFICE/document-templates
branch = main/new
[submodule "assets/document-formats"]
path = assets/document-formats
url = https://github.com/ONLYOFFICE/document-formats
8 changes: 8 additions & 0 deletions 3rd-Party.license
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
Nextcloud ONLYOFFICE integration app uses code from the following 3rd party projects:

@nextcloud/webpack-vue-config - Base config package (https://github.com/nextcloud-libraries/webpack-vue-config/blob/master/LICENSE)
License: AGPL-3.0
License File: licenses/@nextcloud.webpack-vue-config

@nextcloud/browserslist-config - Shared browserslist config for Nextcloud (https://github.com/nextcloud-libraries/browserslist-config/blob/master/LICENSE)
License: AGPL-3.0
License File: licenses/@nextcloud.browserslist-config

JWT - JSON Web Token implementation (https://github.com/firebase/php-jwt/blob/master/LICENSE)
License: BSD
License File: 3rdparty/jwt/LICENSE
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# Change Log

## 9.1.0
## Added
- support of user avatar in editor
- list of users to protect ranges of cells
- setting for disable editors cron check
- advanced access rights for talk files and share links
- selecting a document to combine from the storage
- reference data from coediting
- opening a reference data source
- changing a reference data source
- Arabic and Serbian empty file templates

## Changed
- fix author in group folder
- fixed opening file without download access
- fixed guest redirect when limiting the app to groups
- fixed error display in the mobile application
- fixed mobile editor size
- offline viewer for share link
- updatable list of supported formats
- filling pdf instead oform
- version opening from right tab is no longer supported
- Nextcloud v25 is no longer supported

## 9.0.0
## Changed
- compatible with Nextcloud 28
- agpl v3 license

## 8.2.4
## Changed
- remove link to docs cloud
Expand Down
Loading

0 comments on commit 9e25cee

Please sign in to comment.