Compare commits
27 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 |
@@ -9,7 +9,9 @@ autocomplete
|
|||||||
AutoCorrect
|
AutoCorrect
|
||||||
autocorrection
|
autocorrection
|
||||||
autofill
|
autofill
|
||||||
|
autofilling
|
||||||
Autofilter
|
Autofilter
|
||||||
|
AutoFilter
|
||||||
autofilter
|
autofilter
|
||||||
autofilters
|
autofilters
|
||||||
Autofit
|
Autofit
|
||||||
@@ -340,3 +342,36 @@ LoadExternal
|
|||||||
CSvmFile
|
CSvmFile
|
||||||
commandSetPassword
|
commandSetPassword
|
||||||
reconnection
|
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."
|
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
|
|
||||||
@@ -6,9 +6,10 @@ jobs:
|
|||||||
publish:
|
publish:
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: vedantmgoyal2009/winget-releaser@v2
|
- name: Publish to WinGet
|
||||||
|
uses: vedantmgoyal9/winget-releaser@main
|
||||||
with:
|
with:
|
||||||
identifier: ONLYOFFICE.DesktopEditors
|
identifier: ONLYOFFICE.DesktopEditors
|
||||||
installers-regex: '\.exe$'
|
installers-regex: '(x86|x64)\.(exe|msi)$'
|
||||||
token: ${{ secrets.WINGET_TOKEN }}
|
token: ${{ secrets.WINGET_TOKEN }}
|
||||||
|
|
||||||
|
|||||||
+784
@@ -1,5 +1,789 @@
|
|||||||
# 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
|
||||||
|
|
||||||
|
### New features
|
||||||
|
|
||||||
|
#### PDF Editor
|
||||||
|
|
||||||
|
* Added the ability to move pages in `PDF` files
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
|
||||||
|
#### All Editors
|
||||||
|
|
||||||
|
* Fixed the “Segmentation fault (Core dumped)” error when launching or closing
|
||||||
|
the application (Linux)
|
||||||
|
* Fixed transferring focus to a document when opening it via the “Open with”
|
||||||
|
menu (Windows)
|
||||||
|
* Fixed missing translations of some interface elements after changing the application
|
||||||
|
language before restarting it
|
||||||
|
* Fixed kDrive unavailability after connecting the integrator in the application
|
||||||
|
* Fixed the ability to choose the application for opening `HWPX` files (macOS)
|
||||||
|
* Fixed display of the application icon when calling “Open with” from third-party
|
||||||
|
applications (Windows)
|
||||||
|
|
||||||
|
#### Document Editor
|
||||||
|
|
||||||
|
* Fixed stopping work of the editor when pasting a large amount of copied data
|
||||||
|
* Fixed crash after entering the minus sign after the equation
|
||||||
|
* Fixed crash after entering a character before the division sign
|
||||||
|
* Fixed stopping work of the editor when building some `DOCX` files where the table
|
||||||
|
of contents was updated
|
||||||
|
* Fixed an issue with undone changes when turning off and on the “Show changes from
|
||||||
|
other users” option in the live viewer
|
||||||
|
* Fixed crash of the editor when pasting text in the Track Changes mode in
|
||||||
|
some `DOCX` files
|
||||||
|
* Fixed stopping work of the editor when removing a paragraph in the Track Changes
|
||||||
|
mode in some `DOCX` files
|
||||||
|
* Fixed reset of the Text direction > RTL option when placing the cursor in a new
|
||||||
|
paragraph using Double click
|
||||||
|
* Fixed incorrect display of characters when entering text in RTL before saving
|
||||||
|
the document
|
||||||
|
* Fixed replacing the less than sign to the greater than sign when opening a document
|
||||||
|
with RTL contents
|
||||||
|
* Fixed the movement of picture content control with track handler
|
||||||
|
* Fixed selecting table cells after removing a comment added to the cells
|
||||||
|
* Fixed display of Content Controls frames nested within another one if the cursor
|
||||||
|
is positioned in one of the nested ones
|
||||||
|
* Fixed the calculation of line breaks in the East-Asian text
|
||||||
|
* Fixed changing text alignment when opening some `DOCX` files
|
||||||
|
* Fixed line break position when there is an inline math equation when opening
|
||||||
|
some `DOCX` files
|
||||||
|
|
||||||
|
#### Spreadsheet Editor
|
||||||
|
|
||||||
|
* Fixed stopping work of the editor when entering data in some `XLSX` files
|
||||||
|
* Fixed crash of the editor after redoing the sheet movement
|
||||||
|
* Fixed stopping work of the editor after trying to select a value in a cell in
|
||||||
|
some `XLSX` files
|
||||||
|
* Fixed incorrect recalculation of the `TAKE` function in some formulas
|
||||||
|
* Fixed loss of a hyperlink in the resulting workbook when using the `IMPORTRANGE`
|
||||||
|
formula
|
||||||
|
* Fixed the #NAME error when recalculating the `IF` function in some `XLSX` files
|
||||||
|
* Fixed the imaginary ability to continue editing after connection break
|
||||||
|
* Fixed the #NAME error after adding an external link to a named range
|
||||||
|
* Fixed work of the Scale with document options for headers and footers when printing
|
||||||
|
if the document scale is set to Fit All Columns on One Page
|
||||||
|
* Fixed appearing the warning after entering a formula via the Insert Function window
|
||||||
|
* Fixed activation of the Undo button after an incorrect attempt to enter a formula
|
||||||
|
* Fixed the “Invalid regular expression” error when creating Calculates Items in
|
||||||
|
some `XLSX` files
|
||||||
|
* Fixed the “There are one or more circular references where a formula refers”
|
||||||
|
error when opening some `XLSX` files
|
||||||
|
* Fixed errors in formula calculations when opening some `XLS` files
|
||||||
|
* Fixed saving the Freeze Panes position after reloading the `XLSX` document
|
||||||
|
* Fixed filling of filtered/hidden data in cells in the view mode (Sheet View)
|
||||||
|
* Fixed appearing the empty row after moving between two others
|
||||||
|
* Fixed the ability to scroll the sheet when filling cells with data on HiDPI monitors
|
||||||
|
* Fixed work of horizontal sheet scrolling with `Shift` + `Mouse Wheel` on macOS
|
||||||
|
* Fixed loss of a link to named ranges that refer to external files
|
||||||
|
|
||||||
|
#### Presentation Editor
|
||||||
|
|
||||||
|
* Fixed crash of the editor when opening some `PPSX` files
|
||||||
|
* Fixed stopping work of the editor when exporting some `PPTX` files to `PDF`
|
||||||
|
* Fixed data loss when copying a placeholder with a slide number to other slides
|
||||||
|
* Fixed the ability to exit the Slideshow mode using `Esc` after drawing
|
||||||
|
* Fixed display of a new theme name after applying the Rename Master option without
|
||||||
|
reloading the editor page
|
||||||
|
* Fixed an issue with table display when exporting some `PPTX` files to `ODP`
|
||||||
|
* Fixed display of the first characters of a word when using the Morph transition
|
||||||
|
with the Words / Letters parameter
|
||||||
|
* Fixed changing the Flip parameter for images after exporting some
|
||||||
|
`PPTX` files to `ODF`
|
||||||
|
* Fixed loss of digital signature after drawing in the Slideshow mode
|
||||||
|
|
||||||
|
#### Forms
|
||||||
|
|
||||||
|
* Fixed conversion of a form file to a regular `PDF` file when exporting
|
||||||
|
* Fixed display of the Required field frame for a nested field in the Complex field
|
||||||
|
|
||||||
|
#### PDF Editor
|
||||||
|
|
||||||
|
* Fixed stopping work of the editor when inserting a stamp if the cursor is positioned
|
||||||
|
in a text comment
|
||||||
|
* Fixed crash when undoing adding a Text Comment in some `PDF` files
|
||||||
|
* Fixed stopping work when clicking Edit Text in some `PDF` files
|
||||||
|
* Fixed crash when clicking in Text Callout
|
||||||
|
* Fixed the ability to save the `PDF` file if the cursor is positioned in
|
||||||
|
the Text Comment window
|
||||||
|
* Fixed data loss when opening some `PDF` files created in the ItextSharp library
|
||||||
|
* Fixed data loss after copying contents of some `PDF` files and pasting the contents
|
||||||
|
into the Document Editor
|
||||||
|
* Fixed adding a stamp outside the page after rotating it
|
||||||
|
* Fixed saving annotations in `PDF` files opened from the portal
|
||||||
|
|
||||||
|
#### Convert
|
||||||
|
|
||||||
|
* Fixed an issue that caused an error when opening the result of converting some
|
||||||
|
`XLS` files to `XLSX` in third-party editors
|
||||||
|
* Fixed appearing a table in the header when converting some `ODT` files to `DOCX`
|
||||||
|
* Fixed losing graphic objects when opening a file in third-party editors after
|
||||||
|
converting some `DOCX` files to `ODT`
|
||||||
|
* Fixed losing text in autoshapes when converting some `ODT` files to `DOCX`
|
||||||
|
* Fixed offset of multilevel list items when opening some `ODT` files
|
||||||
|
* Fixed changing the fill when converting some `ODP` files to `PPTX`
|
||||||
|
* Fixed changing the text style when converting some `ODT` files to `DOCX`
|
||||||
|
* Fixed changing the indents of table of contents numbering when converting
|
||||||
|
some `ODT` files to `DOCX`
|
||||||
|
* Fixed applying the footnote property to the text following it when converting
|
||||||
|
some `ODT` files to `DOCX`
|
||||||
|
* Fixed removal of headings numbering when converting some `ODT` files to `DOCX`
|
||||||
|
* Fixed losing an image when converting some `ODT` files to `DOCX`
|
||||||
|
* Fixed changing the appearance of an arrow when converting some `DOCX`
|
||||||
|
files to `PDF`
|
||||||
|
* Fixed display of images when opening some `ODS` files
|
||||||
|
* Fixed missing images when opening some `Pages` files
|
||||||
|
* Fixed changing the font size when converting some `ODT` files to `DOCX`
|
||||||
|
|
||||||
|
## 8.3.0
|
||||||
|
|
||||||
|
### New features
|
||||||
|
|
||||||
|
#### All Editors
|
||||||
|
|
||||||
|
* Added support for logical operations on shapes (unite, combine, fragment,
|
||||||
|
intersect, subtract)
|
||||||
|
* Added the `Opacity` option for images
|
||||||
|
* Added the ability to reset Crop for images in the right panel and context menu
|
||||||
|
* Added the interface translation into `Albanian` (sq-AL, Albanian (Albania))
|
||||||
|
* Added new languages to the list of exceptions for text `AutoCorrect`
|
||||||
|
* Blocking dialogues that require the editor restart are replaced with notifications
|
||||||
|
* Connection status notifications are moved from the status bar
|
||||||
|
to the top of the editor
|
||||||
|
* The `RTL Interface` option is hidden in the settings and automatically
|
||||||
|
applied when selecting the corresponding language from the list
|
||||||
|
* Added the context menu for documents in tabs and separate windows (Windows, Linux)
|
||||||
|
|
||||||
|
#### Document Editor
|
||||||
|
|
||||||
|
* Implemented support for `customXml` and `dataBinding`, when the content of
|
||||||
|
the content control is bound to an element in a custom xml
|
||||||
|
* When editing protected documents, the tools available for the selected
|
||||||
|
part are activated
|
||||||
|
* Added the ability to change the main direction of the paragraph
|
||||||
|
* Add the support of the `HWP` and `HWPX` formats for opening in the editors
|
||||||
|
* Added support for opening the `Pages` (.pages) file format
|
||||||
|
* Added a setting for character-by-character comparing and merging documents
|
||||||
|
* Implemented the ability to edit the complex field instruction in
|
||||||
|
the context of the editor itself
|
||||||
|
|
||||||
|
#### Spreadsheet Editor
|
||||||
|
|
||||||
|
* Added support for opening the `Numbers` (.numbers) file format
|
||||||
|
* Added support for `Calculated items` for Pivot tables
|
||||||
|
* Updated the appearance of the function wizard and argument descriptions
|
||||||
|
* Added the weekdays/month/years options when autofilling cells
|
||||||
|
* In the Advanced Settings, added the `Default sheet direction` option when
|
||||||
|
creating a new sheet
|
||||||
|
* In the External links window, added the option to automatically update
|
||||||
|
external links
|
||||||
|
* Added the feature to automatically detect a separator when opening CSV files
|
||||||
|
* Added the ability to undo basic actions when co-editing
|
||||||
|
* Added the `Show horizontal/vertical scroll bar` options to the Advanced Settings
|
||||||
|
|
||||||
|
#### Presentation Editor
|
||||||
|
|
||||||
|
* Added support for opening the `Keynote` (.key) file format
|
||||||
|
* The Themes, Colors and Slide size tools are moved from the Home panel to
|
||||||
|
the new `Design` tab
|
||||||
|
* Added the `Rename Master/Layout` options to the slide context menu of
|
||||||
|
the Slide Master mode
|
||||||
|
* Added the `Hand/Select` buttons for switching the cursor type in
|
||||||
|
the Slideshow mode
|
||||||
|
* Added the `Start slideshow from the beginning` button to the Quick Access toolbar
|
||||||
|
* Added the ability to draw on slides in the Slideshow/Presenter View modes
|
||||||
|
|
||||||
|
#### Forms
|
||||||
|
|
||||||
|
* Increased the default size of the fixed text field
|
||||||
|
* Changed logic for calculating the top indent for multi-line text fields
|
||||||
|
with small height
|
||||||
|
|
||||||
|
#### PDF Editor
|
||||||
|
|
||||||
|
* Added support for Stamp annotations
|
||||||
|
* Improved processing of images cropped using shapes
|
||||||
|
* Added support for gradients
|
||||||
|
* Improved text recognition
|
||||||
|
* Added the function to undo actions in the co-editing mode
|
||||||
|
* Added the ability to select several pages on the thumbnail panel using
|
||||||
|
Ctrl/Shift for group actions
|
||||||
|
* Added the `Opacity` option for Highlight/Strikeout/Underline annotations
|
||||||
|
* Added a quick panel to change color, add a comment or delete
|
||||||
|
the Highlight/Strikeout/Underline annotation
|
||||||
|
|
||||||
|
## 8.2.2
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
|
||||||
|
#### All Editors
|
||||||
|
|
||||||
|
* Fixed displaying some chart types when opening the `DOCX` or `PPTX` documents
|
||||||
|
* Fixed availability of buttons on the right panel when the zoom is higher than 200%
|
||||||
|
* Fixed application launch on macOS Big Sur with the Apple Silicone architecture
|
||||||
|
* Fixed crash of the editor when detaching a tab with a document, opened from
|
||||||
|
the cloud portal, into a separate window
|
||||||
|
* Fixed the ability to return to the current document from the version history or
|
||||||
|
show the file if a new version was build on the portal DocSpace/Workspace
|
||||||
|
|
||||||
|
#### Document Editor
|
||||||
|
|
||||||
|
* Fixed stopping work of the editor when working with the Text box in the Header
|
||||||
|
if it contains the page number
|
||||||
|
* Fixed slow scrolling of documents if the document extends the visible area
|
||||||
|
* Fixed stopping work of the editor when comparing some `DOCX` documents
|
||||||
|
* Fixed text selection when clicking on a paragraph with Justified alignment
|
||||||
|
|
||||||
|
#### Spreadsheet Editor
|
||||||
|
|
||||||
|
* Fixed stopping work of the editor when deleting a formula from a cell in
|
||||||
|
some `XLSX` files
|
||||||
|
* Fixed disappearing formulas when opening some `XLSX` files
|
||||||
|
* Fixed the ability to scroll a sheet horizontally using `Shift` + `Mouse wheel`
|
||||||
|
* Fixed stopping work of the editor when merging all cells on a sheet
|
||||||
|
* Fixed loss of graphic objects rendering after rotating them in the Sheet
|
||||||
|
Right-to-left mode
|
||||||
|
* Fixed missing the Multi-Select/Clear Filter of Slicer buttons after scrolling
|
||||||
|
horizontally or vertically
|
||||||
|
|
||||||
|
#### PDF Editor
|
||||||
|
|
||||||
|
* Fixed stopping work of the editor when adding a matrix in a math equation
|
||||||
|
* Fixed the short-term absence of an image added by one of the users in co-editing
|
||||||
|
* Fixed incorrect selection of paragraphs/columns in the Select tool mode when
|
||||||
|
opening `XPS`/`OXPS`/`PDF` files
|
||||||
|
|
||||||
|
#### Forms
|
||||||
|
|
||||||
|
* Fixed the status of unsaved changes presence when clicking Complete & Submit
|
||||||
|
quickly during filling in a form in DocSpace
|
||||||
|
|
||||||
|
## 8.2.1
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
|
||||||
|
#### All Editors
|
||||||
|
|
||||||
|
* Fixed appearance of an extra argument when switching from a linear equation
|
||||||
|
to a professional one
|
||||||
|
* Fixed navigation via menu instead of moving around text when using the Alt key
|
||||||
|
and keyboard arrows
|
||||||
|
* Fixed inconsistency in the appearance of labels as compared to other editors when
|
||||||
|
opening some documents with charts
|
||||||
|
* Fixed the ability to add some `TIF`/`TIFF` images to documents
|
||||||
|
* Fixed switching to an incorrect directory when selecting the Open file location
|
||||||
|
option for an unsaved template
|
||||||
|
* Fixed an incorrect format when exporting a document to an image if the application
|
||||||
|
is connected to DocSpace
|
||||||
|
* Fixed an incorrect format when repeated exporting a document from the portal
|
||||||
|
if it was previously exported to an image
|
||||||
|
* Fixed a problem with parallel installation of `EXE`/`MSI` x86 packages on a 64-bit
|
||||||
|
system (Windows)
|
||||||
|
* Fixed switching the application to the RTL interface
|
||||||
|
* Fixed installing the application with the English (United Kingdom) localization
|
||||||
|
instead of English (United States) (macOS Intel Chip)
|
||||||
|
* Fixed repeated switching of the application theme to the system one (macOS)
|
||||||
|
* Fixed inconsistency in displaying mathematical equations to the Dark document
|
||||||
|
mode (macOS)
|
||||||
|
* Fixed inconsistency between scroll bar styles in the Local templates section and
|
||||||
|
the selected application theme
|
||||||
|
* Fixed inconsistency in the Document Info page styles on Windows XP
|
||||||
|
|
||||||
|
#### Document Editor
|
||||||
|
|
||||||
|
* Fixed an issue with calculating spacing before for a paragraph in block-level sdt
|
||||||
|
* Fixed an issue with cell selection after removing table rows
|
||||||
|
* Fixed calculating footnotes in the extreme case when there is no space even
|
||||||
|
for 1 line
|
||||||
|
* Fixed an issue with the exact row height support when opening `DOCX` files
|
||||||
|
* Fixed the input window overlay on text in the Japanese (Microsoft IME) layout
|
||||||
|
* Fixed inconsistency in displaying numbered lists as compared to other editors
|
||||||
|
when opening some `DOCX` documents
|
||||||
|
* Fixed appearance of a frame around the paragraph inserted from other sources
|
||||||
|
* Fixed the presence of artifacts when applying strikethrough or double
|
||||||
|
strikethrough in a formula
|
||||||
|
* Fixed calculation of a math equation that was split into multiple lines
|
||||||
|
* Fixed text offset in autoshapes when opening some `DOCX` files
|
||||||
|
* Fixed table offset in header when opening some `DOCX` files
|
||||||
|
* Fixed text offset when opening some `DOCX` files
|
||||||
|
* Fixed saving some `SVG` images when exporting `DOCX` to `PDF`
|
||||||
|
* Fixed removing a section break after converting some `RTF` files to `DOCX`
|
||||||
|
* Fixed removing the Title and Tag properties when moving the Content Control
|
||||||
|
that contains an image
|
||||||
|
* Fixed losing the Drop-down list that was added and modified in the Reviewing mode
|
||||||
|
* Fixed duplicating an input field when moving the Content Control using the mouse
|
||||||
|
* Fixed shifting focus from the Check Box to other elements after changing
|
||||||
|
its state in some `DOCX` documents
|
||||||
|
* Fixed losing the OLE object contents when exporting some `DOCX` files to `HTML`
|
||||||
|
|
||||||
|
#### Spreadsheet Editor
|
||||||
|
|
||||||
|
* Fixed correct work of data validation specified with the `LEFT` formula
|
||||||
|
* Fixed consideration of the time zone when inserting a date using `Ctrl` + `;`
|
||||||
|
* Fixed stopping work of the editor when copying the cell, containing
|
||||||
|
a link to an external file
|
||||||
|
* Fixed stopping work of the editor when changing the column width using a stylus
|
||||||
|
* Fixed long opening of some `XLSX` files which causes stopping work of the editor
|
||||||
|
* Fixed displaying autoshapes containing a macro mechanism
|
||||||
|
* Fixed losing changes when using special paste after building some `XLSX` files
|
||||||
|
* Fixed the value type error when recalculating the `IF` function in some
|
||||||
|
`XLSX` files
|
||||||
|
* Fixed appearance of extra pages when previewing or printing some `XLSX` files
|
||||||
|
* Fixed appearance of borders after inserting cells copied from third-party applications
|
||||||
|
* Fixed appearance of an extra warning when editing a link to an external data source
|
||||||
|
* Fixed selecting fractional numbers using Goal Seek
|
||||||
|
* Fixed incorrect rounding when using the `ROUNDUP` function
|
||||||
|
* Fixed creating data array as a result of calculating the `VLOOKUP` function
|
||||||
|
if the argument is not an array
|
||||||
|
* Fixed the rendering artifacts for some cases when scrolling the content of
|
||||||
|
the sheet
|
||||||
|
* Fixed the dependence of the scroll step on the system scale
|
||||||
|
* Fixed displaying the drop-down list button
|
||||||
|
* Fixed the ability to apply the AutoFilter to an imported range
|
||||||
|
* Fixed the ability to use the space in a name of a protected range
|
||||||
|
* Fixed jumps when scrolling a sheet using selection with the `Shift` key and
|
||||||
|
keyboard arrows
|
||||||
|
* Fixed the ability to choose cells after scrolling an area frozen with
|
||||||
|
the Freeze Panes option if there are other cells below them
|
||||||
|
* Fixed the position of the comment window when expanding the panel with them
|
||||||
|
* Fixed overlapping the cell content by a comment in the Sheet Right-to-left mode
|
||||||
|
* Fixed layering of line number when scrolling a sheet in the Sheet
|
||||||
|
Right-to-left mode
|
||||||
|
* Fixed duplicating the comment marker in the Sheet Right-to-left mode
|
||||||
|
* Fixed shifting of column guides when resizing them in the Sheet Right-to-left mode
|
||||||
|
* Fixed shifting of graphic objects when opening the toolbar in the Sheet
|
||||||
|
Right-to-left mode
|
||||||
|
* Fixed shifting of the equation field when entering values in the Sheet
|
||||||
|
Right-to-left mode
|
||||||
|
* Fixed highlighting of an added equation after after restarting the editor
|
||||||
|
* Fixed displaying the equation auxiliary menu when switching to the Sheet
|
||||||
|
Right-to-left mode
|
||||||
|
* Fixed displaying the comment after activating the Sheet Right-to-left mode
|
||||||
|
* Fixed shifting of conditional formatting icons after enabling the Sheet
|
||||||
|
Right-to-left mode
|
||||||
|
* Fixed missing graphic objects in some `XLSX` files on horizontal scrolling
|
||||||
|
in the Sheet Right-to-left mode
|
||||||
|
* Fixed moving graphic objects after their rotation in the Sheet Right-to-left mode
|
||||||
|
* Fixed the displayed number of rows or columns exceeding specification limits
|
||||||
|
* Fixed inconsistency between the style of row and column headers and the Gray
|
||||||
|
application theme
|
||||||
|
|
||||||
|
#### Presentation Editor
|
||||||
|
|
||||||
|
* Fixed missing a chart when opening some `PPTX` files
|
||||||
|
* Fixed inline check and numbering bullet check in presentation mode for math equations
|
||||||
|
* Fixed the watermark position when using protection in the DocSpace room
|
||||||
|
* Fixed missing graphic elements in the presenter mode when demonstrating some
|
||||||
|
`PPTX` files
|
||||||
|
* Fixed changing the color scheme when opening some `PPTX` files
|
||||||
|
* Fixed the ability to apply columns for a group of SmartArt objects
|
||||||
|
* Fixed applying object formatting performed on a parent slide in
|
||||||
|
the Slide Master mode
|
||||||
|
|
||||||
|
#### Forms
|
||||||
|
|
||||||
|
* Fixed the ability to delete the field with the Lock property if
|
||||||
|
the Fixed size setting is enabled
|
||||||
|
* Fixed the absence of the ability to submit a completed form if it contains
|
||||||
|
the Date & Time field with the Required property
|
||||||
|
* Fixed the work of composite input in fields with the Comb of characters property
|
||||||
|
* Fixed the ability to insert an image from storage or URL to the form field
|
||||||
|
* Fixed the absence of the ability to go to the Signature field using
|
||||||
|
the toolbar buttons
|
||||||
|
* Fixed the ability to put the cursor to the same paragraph after creating
|
||||||
|
an Inline Text Field
|
||||||
|
* Fixed moving a form field located in a table after activating the Fixed size
|
||||||
|
field property
|
||||||
|
* Fixed the size of the Signature field track when switching from the Edit to
|
||||||
|
View mode and vice versa
|
||||||
|
* Fixed stopping navigation through fields using the Previous/Next Field buttons
|
||||||
|
in some forms
|
||||||
|
|
||||||
|
#### PDF Editor
|
||||||
|
|
||||||
|
* Reworked loading of fonts required for page rendering due to page
|
||||||
|
hang out in collaborative mode
|
||||||
|
* Fixed stopping work of the editor when printing some `PDF` files
|
||||||
|
* Fixed stopping work of the editor when opening some `PDF` files
|
||||||
|
* Fixed stopping work of the editor after receiving an autoshape with text in co-editing
|
||||||
|
* Fixed the issue with different text shaping in collaboration mode
|
||||||
|
* Fixed different appearance of documents after transferring an image in co-editing
|
||||||
|
* Fixed the appearance of a deleted page after re-saving some `PDF` files
|
||||||
|
* Fixed shifting of a table when adding rows using Tab
|
||||||
|
* Fixed applying fill when creating some formulas
|
||||||
|
* Fixed displaying styles of some formulas in co-editing
|
||||||
|
* Fixed clearing all elements when erasing one of them with the Erase tool
|
||||||
|
* Fixed missing Text call out after the file formation
|
||||||
|
* Fixed losing a comment in co-editing if another user replied to it
|
||||||
|
* Fixed the distortion of the bulleted list after editing some `PDF` files
|
||||||
|
* Fixed missing notifications about inactivity when working with `PDF` files for
|
||||||
|
a long time
|
||||||
|
* Fixed recording of checkbox state changes in `PDF` files
|
||||||
|
* Fixed losing an autoshape shadow when opening some `PDF` files
|
||||||
|
* Fixed changing the color of some images after inserting them and saving the
|
||||||
|
`PDF` file
|
||||||
|
* Fixed changing the color of hieroglyphs when exporting some `PDF` files to images
|
||||||
|
* Fixed rotation of the modified page content after saving some `PDF` files
|
||||||
|
* Fixed missing added changes on preview or after printing some `PDF` files
|
||||||
|
from the portal
|
||||||
|
* Fixed incorrect selector behavior when selecting lines in some `PDF` files
|
||||||
|
* Fixed the ability to enter text after pasting from the clipboard
|
||||||
|
* Fixed the appearance of a warning when pasting text via the Paste button on
|
||||||
|
the toolbar
|
||||||
|
* Fixed missing contents on the preview of the added page when editing some
|
||||||
|
`PDF` files
|
||||||
|
|
||||||
|
#### Convert
|
||||||
|
|
||||||
|
* Fixed the appearance of an error when opening the result of converting
|
||||||
|
`PDF` to `DOCX` in third-party editors
|
||||||
|
* Fixed stopping work of the editor after opening the result of converting some
|
||||||
|
`XLSX` to `XLSB`
|
||||||
|
* Fixed endless conversion of some `ODP` files to `PPTX`
|
||||||
|
* Fixed the Segmentation fault error during the conversion of some `ODP`
|
||||||
|
files to `OTP`
|
||||||
|
* Fixed the Segmentation fault error during the conversion of some `DOCX` files to
|
||||||
|
`HTML`/`DJVU`/`EPUB`
|
||||||
|
* Fixed crash when converting some `DOCX` files to `HTML`/`DJVU`/`EPUB` or
|
||||||
|
image file formats
|
||||||
|
* Fixed an error when converting some `XLS` to `XLSX`
|
||||||
|
* Fixed the appearance of an error when opening the result of converting `XPS` to
|
||||||
|
`DOCX` in third-party editors
|
||||||
|
* Fixed the appearance of an error when opening the result of converting `ODP`/`OTP`/`FODT`
|
||||||
|
to `PPTX` in third-party editors
|
||||||
|
* Fixed the appearance of an error when opening the result of converting `ODT` to
|
||||||
|
`DOCX` in third-party editors
|
||||||
|
* Fixed data loss in a table when converting `DOCX` to `RTF`
|
||||||
|
* Fixed layering of hieroglyphs in the `EMF` images when opening some `XLSX` files
|
||||||
|
* Fixed document structure corruption when opening some `EPUB` documents
|
||||||
|
* Fixed cropping the `EMF` images after converting some `DOCX` files to an image
|
||||||
|
* Fixed writing the formula calculation result when exporting `XLSX` to `CSV`
|
||||||
|
* Fixed considering the availability of the VBA macros when converting
|
||||||
|
the `XLSB` files
|
||||||
|
* Fixed corruption of links to sheets containing non-Latin characters after
|
||||||
|
exporting to the `ODS` format
|
||||||
|
|
||||||
|
## 8.2.0
|
||||||
|
|
||||||
|
### New features
|
||||||
|
|
||||||
|
#### All Editors
|
||||||
|
|
||||||
|
* Optimization of script loading to speed up opening all editors
|
||||||
|
* Own rendering of some SmartArt objects instead of recorded images in the file
|
||||||
|
* Updated dictionaries for Spellcheck and Hyphenation
|
||||||
|
* Support for new types of charts for opening: Histogram, Waterfall, and Funnel
|
||||||
|
* Improved display of Chart labels for Date axes, Values, and Categories
|
||||||
|
* Improved touch screen support in the full version of editors
|
||||||
|
* A gray theme has been added to the settings page
|
||||||
|
* Menu items in the File menu have been regrouped and icons have been added
|
||||||
|
* Theme and toolbar settings are moved to a separate Appearance category in
|
||||||
|
the File menu - Advanced Settings
|
||||||
|
* Added the Tab style setting - view of tabs (Fill or Line) in
|
||||||
|
the File menu - Advanced Settings
|
||||||
|
* Added the Use toolbar color as tabs background setting
|
||||||
|
* Ability to add custom fields to the file information
|
||||||
|
* Ability to view/add/edit custom fields without pressing the Apply button
|
||||||
|
* Reorganized fields with file information in the File menu - Info
|
||||||
|
* Improved work with the Lists of languages - the name of the language and region
|
||||||
|
is now duplicated in English
|
||||||
|
* Implemented search in the Language list by name and in the target
|
||||||
|
language, as well as in English
|
||||||
|
* The installation path selection page is disabled for security reasons;
|
||||||
|
forced display of the page is possible using the `/enabledirpage` key (EXE package)
|
||||||
|
* Added support for local templates; currently restricted to creating
|
||||||
|
documents from preinstalled templates only
|
||||||
|
* Added the application translation into English (Great Britain, en-GB)
|
||||||
|
* Updated icons of formats in the Create New and Recent files list
|
||||||
|
* A hint in English has been added to the Interface language list on
|
||||||
|
the settings page
|
||||||
|
|
||||||
|
#### Document Editor
|
||||||
|
|
||||||
|
* Support for old CheckBox types
|
||||||
|
* Added the ability to Insert the contents of a third-party document
|
||||||
|
* New numbered list presets for Arabic interface
|
||||||
|
* Added the highlight of deleted text in the selected file version
|
||||||
|
* Ability to add and edit complex fields using field instructions
|
||||||
|
|
||||||
|
#### Spreadsheet Editor
|
||||||
|
|
||||||
|
* Improved support for smooth scroll
|
||||||
|
* Support for iterative calculations
|
||||||
|
* Added the ability to switch the direction of cell placement
|
||||||
|
* Added a button for setting the number format with separators to the toolbar
|
||||||
|
* Ability to display pages in real scale in the Print preview window
|
||||||
|
* The Pivot Table toolbar tab is only displayed when using the pivot table,
|
||||||
|
and is otherwise hidden
|
||||||
|
* The Pivot Table settings right panel now unfolds when adding a new Pivot Table
|
||||||
|
* Added the ability to display trendlines (Equation on chart) to
|
||||||
|
the Chart - Advanced Settings
|
||||||
|
* Added preview window when opening local `CSV` files
|
||||||
|
|
||||||
|
#### Presentation Editor
|
||||||
|
|
||||||
|
* Acceleration of opening files due to rendering the slide before loading of images
|
||||||
|
* Implemented a more visual way of selecting animation from the extended list
|
||||||
|
* Added the `Random` transition
|
||||||
|
|
||||||
|
#### Forms
|
||||||
|
|
||||||
|
* Added a Signature field with the ability to upload a prepared image
|
||||||
|
|
||||||
|
#### PDF Editor
|
||||||
|
|
||||||
|
* Added ability to save `PDF` files to the storage
|
||||||
|
* Added correct processing of cropped/combined shapes when opening files
|
||||||
|
* Added Gradient support
|
||||||
|
* Improved text recognition
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
|
||||||
|
#### Security
|
||||||
|
|
||||||
|
* Fixed the XSS injection in the Tooltip of the Animation Pane
|
||||||
|
* Fixed the vulnerabilities in the `FormattedDiskPagePAPX`,
|
||||||
|
`SectionPropertiesMapping`, `FormattedDiskPageCHPX`, and `XORCrypt` functions leading
|
||||||
|
to Heap Buffer Overflow when converting to the `DOC` format
|
||||||
|
* Fixed the vulnerabilities in the `ECMADecryptor`, and `DirTree` functions
|
||||||
|
leading to Buffer over-read when converting to the `DOC` format
|
||||||
|
* Fixed the vulnerability in the Update Service leading to Directory
|
||||||
|
Traversal Escalation of Privilege
|
||||||
|
* Fixed the vulnerabilities in the `findNextBorderPixel` and `pixFewColorsOctcubeQuantMixed`
|
||||||
|
functions, leading to Heap-buffer overflow (CVE-2020-36278, CVE-2020-36281)
|
||||||
|
|
||||||
## 8.1.1
|
## 8.1.1
|
||||||
|
|
||||||
### 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: baf9fb4a93...74b21f5b4c
+1
-1
Submodule desktop-apps updated: a2b16e3d0b...9b861adc7f
+1
-1
Submodule desktop-sdk updated: d8b4c44431...4de86ab3f4
+1
-1
Submodule dictionaries updated: 25e1e985e4...d3223bbb77
+1
-1
Submodule sdkjs updated: 79ab08824c...402d39a0f8
+1
-1
Submodule web-apps updated: 8b6e1dbf6f...13b5c5fb9b
Reference in New Issue
Block a user