Compare commits
36 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 372a4c09da | |||
| 981fa8bbdd | |||
| 0d7707caf8 | |||
| c192cecf11 | |||
| 1d73fad349 | |||
| 0390c661dd | |||
| fbd78b1fa4 | |||
| 9a8063384e | |||
| 79f018be5a | |||
| 007d5dd286 | |||
| 1073979d82 | |||
| c9bf5c1b11 | |||
| 316e57ea50 | |||
| b7465bb7b2 | |||
| 4287a084ed | |||
| 54afad1cdc | |||
| 3483987ecb | |||
| 0dc9dbc65f | |||
| 66e1042210 | |||
| af8c52151c | |||
| ca1e626735 | |||
| 3154f01969 | |||
| 4c969f27bd | |||
| afa12a7bb7 | |||
| 53658a18d8 | |||
| 1ad03d0731 | |||
| ae2ae42e84 | |||
| 7288b42613 | |||
| d2e8d0fb52 | |||
| 8cb8699cdf | |||
| 59b0cd879a | |||
| 82415ef6bb | |||
| 34b4349abe | |||
| d7b4dd3025 | |||
| f836f39e27 | |||
| 548b7175b4 |
@@ -9,7 +9,9 @@ autocomplete
|
||||
AutoCorrect
|
||||
autocorrection
|
||||
autofill
|
||||
autofilling
|
||||
Autofilter
|
||||
AutoFilter
|
||||
autofilter
|
||||
autofilters
|
||||
Autofit
|
||||
@@ -262,6 +264,7 @@ CHOOSECOLS
|
||||
LaTeX
|
||||
Tooltips
|
||||
DOCXF
|
||||
docxf
|
||||
XSS
|
||||
autoshapes
|
||||
MHTML
|
||||
@@ -294,3 +297,81 @@ RTL
|
||||
Dropdown
|
||||
ar
|
||||
EXE
|
||||
LTR
|
||||
XP
|
||||
DBNum
|
||||
DatePicker
|
||||
PIVOTVIEW
|
||||
loadContent
|
||||
GlobalsSubstream
|
||||
UpdateXti
|
||||
ChartSheetSubstream
|
||||
recalc
|
||||
PowerShell
|
||||
sr
|
||||
Latn
|
||||
GETPIVOTDATA
|
||||
IMPORTRANGE
|
||||
jsdoc
|
||||
px
|
||||
onRequestEditRights
|
||||
fs
|
||||
folderPath
|
||||
PtgName
|
||||
PtgNameX
|
||||
PtgParen
|
||||
PtgRef
|
||||
PtgList
|
||||
PtgArea
|
||||
CDataStream
|
||||
ReadEmrTextBase
|
||||
RDP
|
||||
TextShaper
|
||||
autohyphenation
|
||||
AscWord
|
||||
NumPr
|
||||
sdt
|
||||
TextPr
|
||||
TextShaper
|
||||
XLSM
|
||||
UpdateDefineNames
|
||||
WorkBookStream
|
||||
WorkBookStream
|
||||
CPPTUserInfo
|
||||
LoadExternal
|
||||
CSvmFile
|
||||
commandSetPassword
|
||||
reconnection
|
||||
enabledirpage
|
||||
FormattedDiskPagePAPX
|
||||
SectionPropertiesMapping
|
||||
FormattedDiskPageCHPX
|
||||
XORCrypt
|
||||
ECMADecryptor
|
||||
DirTree
|
||||
findNextBorderPixel
|
||||
pixFewColorsOctcubeQuantMixed
|
||||
CheckBox
|
||||
trendlines
|
||||
TIF
|
||||
DocSpace
|
||||
IME
|
||||
strikethrough
|
||||
Sur
|
||||
customXml
|
||||
dataBinding
|
||||
HWP
|
||||
HWPX
|
||||
xml
|
||||
ItextSharp
|
||||
Esc
|
||||
Callout
|
||||
PPSX
|
||||
HTM
|
||||
NoHistory
|
||||
PPTT
|
||||
TextArt
|
||||
autonumbering
|
||||
ur
|
||||
VSD
|
||||
VSDX
|
||||
@@ -15,12 +15,13 @@ body:
|
||||
description: "If you know this bug occurs on multiple operating systems, select all you have tested."
|
||||
multiple: true
|
||||
options:
|
||||
- Windows XP / Vista
|
||||
- Windows 10 / 8.1 / 7
|
||||
- macOS 10.11 x86
|
||||
- macOS 10.12 or higher
|
||||
- Windows x64
|
||||
- Windows x86
|
||||
- macOS (ARM)
|
||||
- macOS (x86-64)
|
||||
- Linux (DEB package)
|
||||
- Linux (RPM package)
|
||||
- other (specify in description)
|
||||
validations:
|
||||
required: true
|
||||
- type: input
|
||||
|
||||
@@ -1,58 +0,0 @@
|
||||
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 }}
|
||||
@@ -1,27 +0,0 @@
|
||||
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
|
||||
@@ -6,9 +6,10 @@ jobs:
|
||||
publish:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- uses: vedantmgoyal2009/winget-releaser@v2
|
||||
- name: Publish to WinGet
|
||||
uses: vedantmgoyal9/winget-releaser@main
|
||||
with:
|
||||
identifier: ONLYOFFICE.DesktopEditors
|
||||
installers-regex: '\.exe$'
|
||||
installers-regex: '(x86|x64)\.(exe|msi)$'
|
||||
token: ${{ secrets.WINGET_TOKEN }}
|
||||
|
||||
|
||||
+1154
File diff suppressed because it is too large
Load Diff
@@ -1,5 +1,5 @@
|
||||
[](https://www.gnu.org/licenses/agpl-3.0.en.html)
|
||||
 
|
||||
 
|
||||
|
||||
## Overview
|
||||
|
||||
|
||||
+1
-1
Submodule core updated: 8ca63e5013...74b21f5b4c
+1
-1
Submodule desktop-apps updated: 3043585c4f...9b861adc7f
+1
-1
Submodule desktop-sdk updated: eae5661643...4de86ab3f4
+1
-1
Submodule dictionaries updated: f9034d584e...d3223bbb77
+1
-1
Submodule sdkjs updated: 140e71a979...402d39a0f8
+1
-1
Submodule web-apps updated: 157f57e5a4...13b5c5fb9b
Reference in New Issue
Block a user