Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 841a61ebbb | |||
| 24198da859 | |||
| 3836d14c69 | |||
| 6198e35a77 | |||
| a62d56b575 | |||
| 5e546060d5 | |||
| 3da7620477 | |||
| 6821e6a602 | |||
| 653fde717a |
@@ -0,0 +1,58 @@
|
|||||||
|
name: Append changelog for new release
|
||||||
|
|
||||||
|
on:
|
||||||
|
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
version:
|
||||||
|
description: 'Version'
|
||||||
|
required: true
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
append-changelog:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Write changelog
|
||||||
|
run: |
|
||||||
|
cp -fv CHANGELOG.md CHANGELOG.md.bak
|
||||||
|
head -n2 CHANGELOG.md.bak > CHANGELOG.md
|
||||||
|
cat >> CHANGELOG.md << EOF
|
||||||
|
## ${{ github.event.inputs.version }}
|
||||||
|
|
||||||
|
### New Features
|
||||||
|
|
||||||
|
* TODO
|
||||||
|
|
||||||
|
#### Document Editors
|
||||||
|
|
||||||
|
* TODO
|
||||||
|
|
||||||
|
#### Spreadsheet Editor
|
||||||
|
|
||||||
|
* TODO
|
||||||
|
|
||||||
|
#### Presentation Editors
|
||||||
|
|
||||||
|
* TODO
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
|
||||||
|
* TODO
|
||||||
|
|
||||||
|
EOF
|
||||||
|
tail -n +3 CHANGELOG.md.bak >> CHANGELOG.md
|
||||||
|
rm -fv CHANGELOG.md.bak
|
||||||
|
|
||||||
|
- name: Commit & push changes
|
||||||
|
uses: EndBug/add-and-commit@v8
|
||||||
|
with:
|
||||||
|
author_name: github-actions[bot]
|
||||||
|
author_email: github-actions[bot]@users.noreply.github.com
|
||||||
|
message: Add template changelog for v${{ github.event.inputs.version }}
|
||||||
|
add: CHANGELOG.md
|
||||||
|
new_branch: feature/changelog-v${{ github.event.inputs.version }}
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
name: Update submodules
|
||||||
|
|
||||||
|
on: workflow_dispatch
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
update-submodules:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.PUSH_TOKEN }}
|
||||||
|
|
||||||
|
- name: Update submodules recursively
|
||||||
|
run: |
|
||||||
|
git submodule update --init --recursive
|
||||||
|
git submodule update --recursive --remote
|
||||||
|
|
||||||
|
- name: Commit & push changes
|
||||||
|
run: |
|
||||||
|
git config --global user.name 'github-actions[bot]'
|
||||||
|
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
|
||||||
|
git add --all
|
||||||
|
git commit -m 'Update submodules' || echo 'No changes to commit'
|
||||||
|
git push
|
||||||
@@ -1,5 +1,51 @@
|
|||||||
# Change log
|
# Change log
|
||||||
|
|
||||||
|
## 7.0.1
|
||||||
|
|
||||||
|
### New Features
|
||||||
|
|
||||||
|
#### All Editors
|
||||||
|
|
||||||
|
* Spelling language detection (Windows only)
|
||||||
|
|
||||||
|
#### Spreadsheet Editor
|
||||||
|
|
||||||
|
* `French (Switzerland)` regional setting (Bug #53978)
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
|
||||||
|
#### Document Editor
|
||||||
|
|
||||||
|
* Fix changes in text position (Bug #54485)
|
||||||
|
* Fix JS error while changing font in some files (Bug #55280)
|
||||||
|
* Fix the problem with calculating the position
|
||||||
|
of flow objects lying in a table cell (Bug #51933)
|
||||||
|
* Fix the problem with calculating the position of
|
||||||
|
a drawing object in the header (Bug #55398)
|
||||||
|
* Fix the problem with calculating header/footer.
|
||||||
|
Forbid to change the page number of a header
|
||||||
|
when calculation in progress (Bug #55403)
|
||||||
|
* Fix the problem with calculating the position
|
||||||
|
of a drawing lying in a table cell
|
||||||
|
with vertical alignment to the bottom or center (Bug #55406)
|
||||||
|
* Fix the problem with calculating page count stage (Bug #55458)
|
||||||
|
* Fix the problem with text position calculation for rotated table cells (Bug #54200)
|
||||||
|
* Fix `Shift + (` shortcut (Bug #55356)
|
||||||
|
|
||||||
|
#### Spreadsheet Editor
|
||||||
|
|
||||||
|
* Fix opening protected workbook in Excel (Bug #55027)
|
||||||
|
* Fix JS error while Find and Replace empty cell (Bug #54999)
|
||||||
|
* Fix compatibility of some files with Excel (Bug #54956)
|
||||||
|
|
||||||
|
#### Presentation Editor
|
||||||
|
|
||||||
|
* Fix shape position in slideshow mode (Bug #55068)
|
||||||
|
|
||||||
|
#### Forms
|
||||||
|
|
||||||
|
* Fix problem float characters limit (Bug #55410)
|
||||||
|
|
||||||
## 7.0.0
|
## 7.0.0
|
||||||
|
|
||||||
### New Features
|
### New Features
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
[](https://www.gnu.org/licenses/agpl-3.0.en.html)
|
[](https://www.gnu.org/licenses/agpl-3.0.en.html)
|
||||||
 
|
 
|
||||||
|
|
||||||
## Overview
|
## Overview
|
||||||
|
|
||||||
|
|||||||
+1
-1
Submodule core updated: 0c29e4d08e...7c83535528
+1
-1
Submodule desktop-apps updated: 156e6831a9...0ee010bc92
+1
-1
Submodule desktop-sdk updated: 522c3c6cff...81cb49ef9b
+1
-1
Submodule dictionaries updated: cfa50d3357...e851b4bda6
+1
-1
Submodule sdkjs updated: 9af7d085bf...1c42fc588e
+1
-1
Submodule web-apps updated: 1851cae765...d1c7693830
Reference in New Issue
Block a user