Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 372a4c09da | |||
| 981fa8bbdd | |||
| 0d7707caf8 | |||
| c192cecf11 | |||
| 1d73fad349 | |||
| 0390c661dd | |||
| fbd78b1fa4 | |||
| 9a8063384e | |||
| 79f018be5a | |||
| 007d5dd286 | |||
| 1073979d82 | |||
| c9bf5c1b11 | |||
| 316e57ea50 | |||
| b7465bb7b2 |
+9
-1
@@ -366,4 +366,12 @@ xml
|
|||||||
ItextSharp
|
ItextSharp
|
||||||
Esc
|
Esc
|
||||||
Callout
|
Callout
|
||||||
PPSX
|
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."
|
description: "If you know this bug occurs on multiple operating systems, select all you have tested."
|
||||||
multiple: true
|
multiple: true
|
||||||
options:
|
options:
|
||||||
- Windows XP / Vista
|
- Windows x64
|
||||||
- Windows 10 / 8.1 / 7
|
- Windows x86
|
||||||
- macOS 10.11 x86
|
- macOS (ARM)
|
||||||
- macOS 10.12 or higher
|
- macOS (x86-64)
|
||||||
- Linux (DEB package)
|
- Linux (DEB package)
|
||||||
- Linux (RPM package)
|
- Linux (RPM package)
|
||||||
|
- other (specify in description)
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
- type: input
|
- 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
|
|
||||||
@@ -7,7 +7,7 @@ jobs:
|
|||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Publish to WinGet
|
- name: Publish to WinGet
|
||||||
uses: vedantmgoyal2009/winget-releaser@main
|
uses: vedantmgoyal9/winget-releaser@main
|
||||||
with:
|
with:
|
||||||
identifier: ONLYOFFICE.DesktopEditors
|
identifier: ONLYOFFICE.DesktopEditors
|
||||||
installers-regex: '(x86|x64)\.(exe|msi)$'
|
installers-regex: '(x86|x64)\.(exe|msi)$'
|
||||||
|
|||||||
+230
@@ -1,5 +1,235 @@
|
|||||||
# Change log
|
# Change log
|
||||||
|
|
||||||
|
## 9.0.0
|
||||||
|
|
||||||
|
### New features
|
||||||
|
|
||||||
|
#### All Editors
|
||||||
|
|
||||||
|
* Redesigned interface of the main application window
|
||||||
|
* Added new interface themes: Modern Light and Modern Dark
|
||||||
|
* Added saving of the last selected languages in spellcheck lists
|
||||||
|
* Added Arabic spellcheck dictionary used in sixteen dialects
|
||||||
|
* Added AI-powered macro generation from descriptions and VBA-to-JavaScript conversion
|
||||||
|
* Added the interface translation into Urdu (ur-PK, Urdu (Pakistan))
|
||||||
|
* Added support for TextArt text settings inside chart labels
|
||||||
|
* Added support for drawing the Up/Down Bars chart elements
|
||||||
|
* Merged local and cloud template lists into a unified view
|
||||||
|
* The list of templates is now processed on the client side, not on the server
|
||||||
|
* The installed system languages are now displayed at the top of
|
||||||
|
the text/document/dictionary list
|
||||||
|
* Added a contrast-reducing effect for control buttons in inactive windows
|
||||||
|
* Added the option to select a printer in the print preview menu
|
||||||
|
* The `Print using the system dialog` option has been added to the print
|
||||||
|
preview menu
|
||||||
|
* The ability to configure format associations for modern Windows OS in the EXE package
|
||||||
|
installation wizard has been unlocked
|
||||||
|
|
||||||
|
#### Document Editor
|
||||||
|
|
||||||
|
* Added correct display of previews for paragraph numbers for RTL
|
||||||
|
* Improved positioning and settings of TextArt for RTL
|
||||||
|
* Improved drawing of borders and fill for paragraphs with RTL direction
|
||||||
|
* Enabled accurate cursor navigation with arrow keys based on
|
||||||
|
the paragraph's text direction
|
||||||
|
* Added the ability to display numbers using Hindi digits
|
||||||
|
* Added a setting in the File menu for selecting the preferred font size: Western/Chinese
|
||||||
|
for the Chinese interface language (Chinese (Simplified))
|
||||||
|
* Added a Borders button to the Home toolbar to quickly set paragraph settings
|
||||||
|
* Added support for the `MD` format for reading
|
||||||
|
|
||||||
|
#### Spreadsheet Editor
|
||||||
|
|
||||||
|
* Added support for displaying bidirectional text
|
||||||
|
* Added the ability to select external data from another spreadsheet
|
||||||
|
|
||||||
|
#### Presentation Editor
|
||||||
|
|
||||||
|
* Added the ability to set the paragraph direction (Text Direction > RTL) on
|
||||||
|
the toolbar and in the advanced settings
|
||||||
|
* Added the ability to view animations with text
|
||||||
|
* Added the "Preserve" option to the Slide Master context menu
|
||||||
|
|
||||||
|
#### Forms
|
||||||
|
|
||||||
|
* Changed the appearance of the Signature and Image fields: the placeholder and
|
||||||
|
signature icon are now always displayed
|
||||||
|
* Improved user experience when filling in the Signature and Image fields
|
||||||
|
* Added a new "type": "signature" for the Signature field, used in the process
|
||||||
|
of filling out forms
|
||||||
|
|
||||||
|
#### PDF Editor
|
||||||
|
|
||||||
|
* Added the ability to set RTL direction for text
|
||||||
|
* The Edit Text option is available in the Community Edition build
|
||||||
|
* Implemented a `PDF` form editor
|
||||||
|
* Added copying pages between `PDF` files
|
||||||
|
|
||||||
|
#### Diagrams
|
||||||
|
|
||||||
|
* Release of the first version of the Diagram Viewer with the ability to open
|
||||||
|
`VSD` and `VSDX` files for viewing
|
||||||
|
|
||||||
|
#### Convert
|
||||||
|
|
||||||
|
* Added conversion of the `XLSB` format to the editor's internal format,
|
||||||
|
allowing editing and saving in `XLSX` without preliminary conversion
|
||||||
|
|
||||||
|
## 8.3.3
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
|
||||||
|
#### All Editors
|
||||||
|
|
||||||
|
* Fixed an error that occurred when opening files on x86 packages under Windows
|
||||||
|
|
||||||
|
#### Document Editor
|
||||||
|
|
||||||
|
* Fixed calculation for an RTL paragraph
|
||||||
|
* Fixed the display of the Bullets / Numbering / Multilevel style thumbnails for
|
||||||
|
an RTL paragraph
|
||||||
|
* Fixed the display of numbered lists (bullets) for an RTL paragraph
|
||||||
|
* Fixed the display of the date for Arabic in the Formats list of
|
||||||
|
the "Date & time" window
|
||||||
|
* Replaced Latin commas with Arabic ones when using Arabic format in the
|
||||||
|
"Date & time" window
|
||||||
|
* Fixed an issue with calculating position for an empty RTL template
|
||||||
|
* Fixed changing the Wrapping Style value when applying Merge shapes / Arrange >
|
||||||
|
Group
|
||||||
|
* Enabled standard ligatures for Arabic text writing
|
||||||
|
* Fixed the display of Borders and Fill when rendering an RTL paragraph
|
||||||
|
* Fixed incorrect work when comparing files at the word level, where a word and
|
||||||
|
a paragraph
|
||||||
|
mark were deleted
|
||||||
|
* Fixed adding TextArt for a paragraph with RTL direction
|
||||||
|
* Fixed autonumbering for Indian numbers added via Unicode (U+0660 - U+0669)
|
||||||
|
* Fixed the ability to select a numbered list deleted in the review mode
|
||||||
|
* Fixed the display of words with tabulation according to the main direction of
|
||||||
|
the text
|
||||||
|
* Fixed calculation of the non-printing tab stop character position and correct
|
||||||
|
work with
|
||||||
|
the tab stop marker on the horizontal ruler for an RTL paragraph
|
||||||
|
* Fixed an issue with the cursor placement in Arabic text for a paragraph with LTR
|
||||||
|
direction
|
||||||
|
* Fixed incorrect display of French quotes « » (U+00AB and U+00BB ) for RTL text
|
||||||
|
* Fixed calculation of the tab stop position in some edge situations
|
||||||
|
* Fixed an issue with calculating the right edge for a paragraph with fill and border
|
||||||
|
|
||||||
|
#### Spreadsheet Editor
|
||||||
|
|
||||||
|
* Fixed stopping work of the editor when entering some formulas with circular references
|
||||||
|
* Fixed deleting a sheet when dragging it to another one in the Fast co-editing mode
|
||||||
|
* Fixed crash when opening a document created in the previous version of the application
|
||||||
|
* Fixed hanging of the editor when calculating some functions that work with an array
|
||||||
|
|
||||||
|
#### Presentation Editor
|
||||||
|
|
||||||
|
* Fixed stopping work of the editor when opening the numbered list panel
|
||||||
|
* Fixed an error when saving/opening the `PPTX` file with animation applied to several
|
||||||
|
Lines objects
|
||||||
|
* Fixed an issue with maintaining direction for RTL text when opening some `PPT`
|
||||||
|
files
|
||||||
|
* Fixed generating unique Shape name identifier for the Lines objects
|
||||||
|
* Fixed incorrect translations of tools in the Draw menu of the Presenter View window
|
||||||
|
|
||||||
|
#### PDF Editor
|
||||||
|
|
||||||
|
* Fixed an error when opening some `PDF` files containing fields to fill in
|
||||||
|
* Fixed the position of drawing the selection in a text comment for some `PDF` files
|
||||||
|
* Fixed the ability to change the stamp size in `PDF` files
|
||||||
|
|
||||||
|
#### Convert
|
||||||
|
|
||||||
|
* Fixed stopping work of the editor when converting some `PPTX` files to image formats
|
||||||
|
* Fixed crash when converting some `XLSX` files to `XLSB`
|
||||||
|
* Restored compatibility with third-party editors after converting some `XLSX` files
|
||||||
|
to `XLSB` via binary format
|
||||||
|
|
||||||
|
## 8.3.2
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
|
||||||
|
#### All Editors
|
||||||
|
|
||||||
|
* Fixed changing the tab color of the file, opened from the DocSpace portal, after
|
||||||
|
exiting Version History
|
||||||
|
* Fixed display of the Spelling language detection option on the settings page (Linux)
|
||||||
|
|
||||||
|
#### Document Editor
|
||||||
|
|
||||||
|
* Fixed crash when pasting content into a document in NoHistory mode
|
||||||
|
* Fixed stopping work of the editor when exiting the header/footer editing mode
|
||||||
|
in some scenarios
|
||||||
|
* Fixed an error when processing comments and data when opening some `DOCX` files
|
||||||
|
* Fixed an issue with calculation of a float shape position in the header
|
||||||
|
* Fixed navigation using the Arrow Left / Arrow Right keys in Arabic text
|
||||||
|
* Fixed the cursor position when entering LTR text in a RTL paragraph
|
||||||
|
* Fixed calculation of the cursor position for the last line of a RTL paragraph
|
||||||
|
* Fixed the display of margins for a RTL paragraph
|
||||||
|
* Fixed alignment for a RTL paragraph in some edge cases
|
||||||
|
* Fixed the order of text wrapping ranges for RTL paragraphs
|
||||||
|
* Fixed the handle horizontal ruler for RTL paragraphs
|
||||||
|
* Fixed calculation of the first line indentation
|
||||||
|
* Fixed missing line breaks in equations when opening some `DOCX` files
|
||||||
|
* Fixed calculation of indent range start for RTL paragraphs
|
||||||
|
* Fixed an issue with parsing props in plugin method for adding a content control
|
||||||
|
* Fixed display of days of the week in the Date Picker Content Controls in
|
||||||
|
the RTL UI mode
|
||||||
|
* Fixed display of arrows of the Increase / Decrease indent buttons in
|
||||||
|
the RTL UI mode
|
||||||
|
* Fixed display of the Line Numbers button in the RTL UI mode
|
||||||
|
|
||||||
|
#### Spreadsheet Editor
|
||||||
|
|
||||||
|
* Fixed stopping work of the editor when inserting a new row if several other rows
|
||||||
|
are selected in the `XLSX`file
|
||||||
|
* Fixed stopping work of the editor when applying changes to the document after
|
||||||
|
inserting a hyperlink to a new worksheet
|
||||||
|
* Fixed crash of the editor when entering some variations of the `IF` formula
|
||||||
|
* Fixed missing chart when opening some `ODS` files
|
||||||
|
* Fixed an error that occurred in third-party editors when opening some exported
|
||||||
|
`XLSX` files with external links
|
||||||
|
* Fixed display of the WMF images when opening some `ODS` files
|
||||||
|
* Fixed copying/pasting the Locked Cell property in the Protect Sheet mode
|
||||||
|
* Fixed an error that occurred when opening some `XLSX` files for viewing
|
||||||
|
|
||||||
|
#### Presentation Editor
|
||||||
|
|
||||||
|
* Fixed an error that occurred in third-party editors when opening some exported
|
||||||
|
`PPTX` files
|
||||||
|
* Fixed using the Merge shapes option in Fast co-editing mode when opening some
|
||||||
|
`PPTX` files
|
||||||
|
* Fixed work of the Eraser Screen option in the Presenter window
|
||||||
|
* Fixed highlighting of the active color in the Ink color menu of the Draw tool in
|
||||||
|
the Presenter window
|
||||||
|
* Fixed display of the Ink color menu of the Draw tool for the window boundary values
|
||||||
|
in the Presenter window
|
||||||
|
|
||||||
|
#### PDF Editor
|
||||||
|
|
||||||
|
* Fixed stopping work of the editor when clicking on the background area of the document
|
||||||
|
when opening some `PDF` files
|
||||||
|
|
||||||
|
#### PDF Form
|
||||||
|
|
||||||
|
* Fixed an issue with clearing forms related to the specified role
|
||||||
|
* Fixed an issue with using the Next/Prev buttons to navigate only to forms
|
||||||
|
associated with the role (If the role is specified)
|
||||||
|
* Fixed changing roles order
|
||||||
|
|
||||||
|
#### Convert
|
||||||
|
|
||||||
|
* Fixed stopping the process of converting some `PAGES` files to `PNG`
|
||||||
|
* Fixed stopping the process of converting some `HTM` and `HTML` files to
|
||||||
|
the binary format
|
||||||
|
* Fixed stopping the process of converting some `HWPX` files to the binary format
|
||||||
|
* Fixed stopping the process of converting some `POT` files to `PPTT`
|
||||||
|
* Fixed stopping the process of converting some `PPTX` files to `PPTT`
|
||||||
|
* Fixed stopping the process of converting some `PDF` files
|
||||||
|
* Fixed stopping the process of converting some `DOCX` files to most formats
|
||||||
|
* Fixed stopping the process of converting some `XLS` files to `XLSB`
|
||||||
|
* Fixed stopping the process of converting some `ODS` files to `XLSB`
|
||||||
|
|
||||||
## 8.3.1
|
## 8.3.1
|
||||||
|
|
||||||
### New features
|
### New features
|
||||||
|
|||||||
+1
-1
Submodule core updated: 3d7638c3cc...74b21f5b4c
+1
-1
Submodule desktop-apps updated: d44ad1da25...9b861adc7f
+1
-1
Submodule desktop-sdk updated: 8cf475efe1...4de86ab3f4
+1
-1
Submodule dictionaries updated: 25e1e985e4...d3223bbb77
+1
-1
Submodule sdkjs updated: a788980bc8...402d39a0f8
+1
-1
Submodule web-apps updated: 090ef83bed...13b5c5fb9b
Reference in New Issue
Block a user