Skip to content

Commit

Permalink
Merge pull request ONLYOFFICE#93 from ONLYOFFICE/release/3.0.0
Browse files Browse the repository at this point in the history
Release/3.0.0
  • Loading branch information
LinneyS committed Mar 9, 2023
2 parents c7b0ea7 + 0bbc6ee commit 80e7f77
Show file tree
Hide file tree
Showing 52 changed files with 1,510 additions and 259 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/artifact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,22 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Install Node
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: '12'
node-version: '16'
- name: Get Info
run: |
echo "::set-output name=id::$(jq -r '.id' module.json)"
echo "id=$(jq -r '.id' module.json)" >> $GITHUB_OUTPUT
id: info
- name: Build Artifact
run: |
cd ${{ github.workspace }}
chmod +x ./pack.sh
./pack.sh
- name: Upload Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: ${{ steps.info.outputs.id }}
path: deploy
31 changes: 9 additions & 22 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Install Node
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: '12'
node-version: '16'
- name: Install Zip
run: sudo apt-get install zip
- name: Get Info
run: |
echo "::set-output name=version::$(jq -r '.version' module.json)"
echo "::set-output name=id::$(jq -r '.id' module.json)"
echo "version=$(jq -r '.version' module.json)" >> $GITHUB_OUTPUT
echo "id=$(jq -r '.id' module.json)" >> $GITHUB_OUTPUT
id: info
- name: Build Artifact
run: |
Expand All @@ -30,22 +30,9 @@ jobs:
- name: Pack Artifact
run: zip -r ${{ steps.info.outputs.id }}.zip onlyoffice
- name: Release Artifact
uses: actions/create-release@v1
uses: ncipollo/release-action@v1
id: create_release
with:
draft: false
prerelease: false
release_name: v${{ steps.info.outputs.version }}
tag_name: v${{ steps.info.outputs.version }}
body_path: ./RELEASE.md
env:
GITHUB_TOKEN: ${{ github.token }}
- name: Upload Release
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ${{ steps.info.outputs.id }}.zip
asset_name: ${{ steps.info.outputs.id }}.zip
asset_content_type: application/zip
artifacts: "${{ steps.info.outputs.id }}.zip"
bodyFile: "RELEASE.md"
tag: v${{ steps.info.outputs.version }}
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Change Log

## 3.0.0
## Added
- editor customization
- validation of server settings on the settings page
- renaming from editor
- keep intermediate versions when editing (forcesave)
- connect to the demo server
- trial period of 30 days for the demo server
- transfer user region in conversion
- editable extensions on the settings page
- mentioning users in comments
- bookmarks
- `es`, `zh` translations
- Chinese (Traditional, Taiwan) empty file templates
- the ability to change the JWT header

## 2.4.0
## Added
- certificate verification setting
Expand Down
4 changes: 2 additions & 2 deletions Events.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
*/

/**
* Copyright (c) Ascensio System SIA 2022. All rights reserved.
* Copyright (c) Ascensio System SIA 2023. All rights reserved.
* http://www.onlyoffice.com
*/

namespace humhub\modules\onlyoffice;

use Yii;
use humhub\modules\file\handler\FileHandlerCollection;
use humhub\modules\onlyoffice\permissions\CanUseOnlyOffice;
use Yii;

/**
* @author luke
Expand Down
Loading

0 comments on commit 80e7f77

Please sign in to comment.