Compare commits
31 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ec9b377f2f | |||
| 898ecd8e6b | |||
| ce21e6e34e | |||
| 066c36ca91 | |||
| 60faf367e5 | |||
| f46fef1a6c | |||
| 8d98a5f2e6 | |||
| 7e064689aa | |||
| 4666f867c4 | |||
| d9c0d634c4 | |||
| e368915234 | |||
| 4cbe8b5c1b | |||
| 34fcde340a | |||
| 14c34f2fe8 | |||
| 0ccf45baaf | |||
| 6f61303572 | |||
| 9a371cfc09 | |||
| 372a4c09da | |||
| 981fa8bbdd | |||
| 0d7707caf8 | |||
| c192cecf11 | |||
| 1d73fad349 | |||
| 0390c661dd | |||
| fbd78b1fa4 | |||
| 9a8063384e | |||
| 79f018be5a | |||
| 007d5dd286 | |||
| 1073979d82 | |||
| c9bf5c1b11 | |||
| 316e57ea50 | |||
| b7465bb7b2 |
+31
-1
@@ -113,6 +113,7 @@ MacOS
|
||||
MacOs
|
||||
macOS
|
||||
MathType
|
||||
MathML
|
||||
mathType
|
||||
metafile
|
||||
mht
|
||||
@@ -366,4 +367,33 @@ xml
|
||||
ItextSharp
|
||||
Esc
|
||||
Callout
|
||||
PPSX
|
||||
PPSX
|
||||
HTM
|
||||
NoHistory
|
||||
PPTT
|
||||
TextArt
|
||||
autonumbering
|
||||
ur
|
||||
VSD
|
||||
VSDX
|
||||
VSTX
|
||||
autofitting
|
||||
woff
|
||||
Typograf
|
||||
LanguageTool
|
||||
DeepL
|
||||
Zotero
|
||||
Javascript
|
||||
autocorrecting
|
||||
Multiline
|
||||
AutoFit
|
||||
DOCT
|
||||
XLST
|
||||
md
|
||||
HEIF
|
||||
HWPML
|
||||
MCP
|
||||
checkboxes
|
||||
websocket
|
||||
textarea
|
||||
RCE
|
||||
@@ -15,12 +15,35 @@ 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
|
||||
- Linux (DEB package)
|
||||
- Linux (RPM package)
|
||||
- Windows
|
||||
- macOS
|
||||
- Linux
|
||||
validations:
|
||||
required: true
|
||||
- type: dropdown
|
||||
id: architecture
|
||||
attributes:
|
||||
label: Architecture
|
||||
description: "Select the architecture of the package you are using."
|
||||
options:
|
||||
- x86_64
|
||||
- arm64
|
||||
validations:
|
||||
required: true
|
||||
- type: dropdown
|
||||
id: package-type
|
||||
attributes:
|
||||
label: Package Type
|
||||
description: "Select the package type you are using."
|
||||
options:
|
||||
- exe
|
||||
- msi
|
||||
- dmg
|
||||
- deb
|
||||
- rpm
|
||||
- flatpak
|
||||
- snap
|
||||
- appimage
|
||||
validations:
|
||||
required: true
|
||||
- type: input
|
||||
@@ -55,11 +78,13 @@ body:
|
||||
placeholder: |
|
||||
Example:
|
||||
1. Change font size to 16
|
||||
2. Set font color to white
|
||||
2. Set font color to white
|
||||
3. Observe as the text is not white
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: additional
|
||||
attributes:
|
||||
label: "Additional information"
|
||||
description: "If you have any screenshots, videos, or other information that you feel is necessary to explain the issue, feel free to attach them here."
|
||||
placeholder: "Example: My screen resolution is 1920x1080p"
|
||||
placeholder: "Example: My screen resolution is 1920x1080p"
|
||||
@@ -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,9 +7,9 @@ jobs:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- name: Publish to WinGet
|
||||
uses: vedantmgoyal2009/winget-releaser@main
|
||||
uses: vedantmgoyal9/winget-releaser@main
|
||||
with:
|
||||
identifier: ONLYOFFICE.DesktopEditors
|
||||
installers-regex: '(x86|x64)\.(exe|msi)$'
|
||||
installers-regex: '(x86|x64|arm64)\.exe$'
|
||||
token: ${{ secrets.WINGET_TOKEN }}
|
||||
|
||||
|
||||
+604
@@ -1,5 +1,609 @@
|
||||
# Change log
|
||||
|
||||
## 9.2.1
|
||||
|
||||
### Fixes
|
||||
|
||||
#### Document Editor
|
||||
|
||||
* Fixed word break in Korean
|
||||
|
||||
#### Spreadsheet Editor
|
||||
|
||||
* Fixed an issue with data overlap when transferring sheets between documents
|
||||
via Move or Copy
|
||||
|
||||
#### PDF Editor
|
||||
|
||||
* Fixed an error when opening a PDF file
|
||||
* Fixed an error when scrolling pages in a PDF file
|
||||
* Fixed errors when copying, pasting, and undoing actions with the Find panel in
|
||||
PDF Editing mode
|
||||
* Fixed an error when deleting a page from a document while working with the Find
|
||||
panel in PDF Editing mode
|
||||
|
||||
#### Security
|
||||
|
||||
* Fixed the XSS injection in the Color theme name using a custom Prepared exploit
|
||||
* Fixed the XSS injection of JS code in the Font field for the Multilevel list
|
||||
settings window
|
||||
* Fixed a vulnerability in the textarea of the comment editing form
|
||||
* Fixed the possibility of memory manipulation when converting XLS to XLSX,
|
||||
which can lead
|
||||
to information leakage
|
||||
* Fixed issues with memory manipulation when converting XLS to XLSX, which can
|
||||
lead to RCE
|
||||
|
||||
## 9.2.0
|
||||
|
||||
### New features
|
||||
|
||||
#### All Editors
|
||||
|
||||
* Added AI Agent, enabling document generation, PDF form filling, document
|
||||
content reading, document analysis, local file operations, MCP Server connection,
|
||||
and online information search
|
||||
* Added the ability to customize keyboard shortcuts
|
||||
* Added the ability to record some executed actions as a macro in all editors,
|
||||
except for PDF
|
||||
|
||||
#### Presentation Editor
|
||||
|
||||
* Implemented insertion of equations from a third-party resource
|
||||
|
||||
#### Forms
|
||||
|
||||
* Added local PDF Forms templates
|
||||
* Implemented the ability to select the role for which new fields will be added
|
||||
* Implemented the ability to add labels for checkboxes and radio buttons. In
|
||||
the filling mode, clicking on the label works like clicking on the checkbox itself
|
||||
|
||||
#### PDF Editor
|
||||
|
||||
* Added the ability to change color for hidden text (Redact)
|
||||
* Implemented insertion of equations from a third-party resource
|
||||
|
||||
### Fixes
|
||||
|
||||
#### Security
|
||||
|
||||
* Fixed the vulnerability which allows adding a named range in the protected workbook
|
||||
via websocket
|
||||
|
||||
## 9.1.0
|
||||
|
||||
### New features
|
||||
|
||||
#### All Editors
|
||||
|
||||
* Added external data for charts. When copying between editors, it's possible to
|
||||
select either an embedded file or a link to the source
|
||||
* Added the ability to enable/disable chart elements
|
||||
* Added support for the Explosion option (separating a segment of pie and doughnut
|
||||
2d charts) for opening
|
||||
* Added support for the `HEIF` images
|
||||
* Added the ability to configure the display of resolved/open comments in
|
||||
the left panel
|
||||
* Added preview for cloud templates
|
||||
* Added the "Spelling language detection" option on the application settings
|
||||
page (macOS)
|
||||
* Added the ability to configure sending notifications from the application via
|
||||
the "Notifications & actions" system section for modern OS (Windows 10 and later)
|
||||
* Added the option to select color mode for the printer in the print preview menu
|
||||
|
||||
#### Document Editor
|
||||
|
||||
* Implemented support for breaking sections within block content controls
|
||||
with any nesting level
|
||||
* Added a full-featured chart editor. Embedded `XLSX` files are now opened
|
||||
instead of
|
||||
loading values from the chart cache
|
||||
* Added support for the `HWPML` text document format for viewing
|
||||
* Added support for inserting mathematical formulas from the MathML format
|
||||
|
||||
#### Spreadsheet Editor
|
||||
|
||||
* Add a setting for a general text direction in a cell
|
||||
* Added support for date filters in pivot tables
|
||||
* Added some Form Controls (Check Box, Combo Box, List Box, Spin Button, Scroll Bar,
|
||||
Button) for opening
|
||||
* Improved the logic of formulas for mixed data types
|
||||
* Reduced memory consumption during formula calculations
|
||||
* Optimized calculation of the `VLOOKUP` and `XLOOKUP` formulas
|
||||
* Added highlighting of active arguments when entering a formula
|
||||
* Added translation of formulas into Serbian (Cyrillic), Serbian (Latin) and
|
||||
Chinese (Traditional)
|
||||
* Added support for inserting mathematical formulas from the MathML format
|
||||
* Moved formatted table settings from the right panel to the Table Design tab of
|
||||
the top toolbar.
|
||||
The tab appears only when we are working within a table
|
||||
* Added the ability to rename a sheet by double-clicking on its name without opening
|
||||
additional windows
|
||||
|
||||
#### Presentation Editor
|
||||
|
||||
* Added a full-featured chart editor. Embedded `XLSX` files are now opened
|
||||
instead of
|
||||
loading values from the chart cache
|
||||
* Moved Master Slide settings from the Insert tab to a separate tab of the top toolbar
|
||||
* Added an audio/video player (macOS)
|
||||
|
||||
#### Forms
|
||||
|
||||
* Improved user experience when working with fields
|
||||
* Renamed the View Form and Manage Roles buttons to Preview and
|
||||
Manage Recipient Roles
|
||||
* Added support for inserting mathematical formulas from the MathML format
|
||||
|
||||
#### PDF Editor
|
||||
|
||||
* Added functionality for hiding confidential information - Redact
|
||||
* Added new annotation types to the Comment section
|
||||
* Implemented work with Smart Art
|
||||
* Added support for charts
|
||||
* Implemented copying and pasting graphic elements and forms
|
||||
|
||||
#### Convert
|
||||
|
||||
* Added the ability to convert `PDF` and `PPTX` to `TXT` directly
|
||||
|
||||
### Fixes
|
||||
|
||||
#### Security
|
||||
|
||||
* Fixed the XSS vulnerability when processing hyperlinks in documents
|
||||
|
||||
## 9.0.4
|
||||
|
||||
### New features
|
||||
|
||||
#### All Editors
|
||||
|
||||
* Added support for woff2 fonts
|
||||
* Added the Suggest a Feature item to the editors File menu
|
||||
* Added AI, Photo Editor, OCR, Typograf, Doc2md, LanguageTool, DeepL,
|
||||
Thesaurus and Zotero plugins to the distribution with ONLYOFFICE branding
|
||||
* Added creation of a marker file blocking when opening documents in other applications
|
||||
|
||||
#### Document Editor
|
||||
|
||||
* Improved usability when working with allowed areas
|
||||
|
||||
### Fixes
|
||||
|
||||
#### All Editors
|
||||
|
||||
* Fixed display of the scroll bar for the Modern Dark theme
|
||||
* Fixed display of the table creation matrix in the Insert -> Table menu for
|
||||
the Modern Light / Dark themes
|
||||
* Fixed display of the error window when the connection is broken after 2 minutes
|
||||
of waiting
|
||||
* Fixed incorrect undo after composite input of text into an autoshape in the
|
||||
Fast Co-editing mode
|
||||
* Fixed display of translations on the Home and About pages when changing the interface
|
||||
language without restarting the application
|
||||
* Fixed collapsing the toolbar in the More menu after pinning a document to
|
||||
the main window
|
||||
at 300% scale for Modern themes
|
||||
* Fixed display of preview for the "Invoice children's style" template in
|
||||
Templates > Documents
|
||||
in Arabic interface
|
||||
* Fixed the appearance of scroll when calling the context menu near the window
|
||||
borders for the "Recent files" list
|
||||
* Fixed menu for creating new files for the Dark theme
|
||||
* Fixed opening files for editing from Google Drive connected via Gnome
|
||||
online accounts (Linux)
|
||||
|
||||
#### Document Editor
|
||||
|
||||
* Fixed the sequence of recording table settings to the file
|
||||
* Forbidden execution of the Javascript code for a custom property in a document
|
||||
* Fixed re-applying text formatting in an autoshape using hotkeys
|
||||
* Fixed an error when reading a color with the "automatic" value or writing it
|
||||
to a file
|
||||
* Disabled the ability to delete text outside the allowed area for filling in
|
||||
* Fixed deletion of characters when opening the `TXT` file for editing
|
||||
* Fixed display of the password request window to remove file protection in MS Word
|
||||
* Fixed recalculating the position of an autoshape with the "Resize shape
|
||||
to fit text" flag
|
||||
when changing text formatting
|
||||
* Fixed crash when autocorrecting in a graphical formula (equation)
|
||||
* Fixed display of the Abstract Numbering Definition Identifier numbering
|
||||
in the `DOCX` file
|
||||
* Removed an incorrect item in the Paste options menu for the "Chart Editor" window
|
||||
* Fixed display of some hieroglyphs with bold settings on macOS
|
||||
|
||||
#### Spreadsheet Editor
|
||||
|
||||
* Fixed positioning of RTL text and graphics when saving the `XLSX` file to an image
|
||||
* Fixed hanging of the editor when copying rows / columns in some browsers
|
||||
* Fixed formatting change for several cells with mixed text format
|
||||
* Fixed the size of the pasted image of the copied area when scale is higher
|
||||
than 100%
|
||||
* Fixed display of scroll bars when uploading a new version of the `XLSX` file
|
||||
after connection break
|
||||
* Fixed crash when copying / pasting a cell with conditional formatting in
|
||||
the `XLSX` file
|
||||
* Fixed calculation of number of pages when saving the `ODS` file to `PNG`/`JPG`
|
||||
* Fixed display of percent sign (%) in combination with a number
|
||||
* Fixed an error when opening the saved `ODS` file in MS Excel
|
||||
* Fixed the position when pasting a copied cell range as a Picture (Paste options)
|
||||
for an RTL file
|
||||
* Fixed display of text in the Formula bar in RTL languages
|
||||
* Fixed crash when when opening a sheet with charts in the `XLSX` file where
|
||||
multiple gradient points are used
|
||||
* Fixed crash when when resizing a line chart with a lot of data in the `XLSX` file
|
||||
* Fixed printing the selection (Print range > Selection) to the `PDF` file
|
||||
* Fixed crash on memory when reading pivot tables in the `XLSX` file
|
||||
|
||||
#### Presentation Editor
|
||||
|
||||
* Fixed an error when clicking in the working area after deleting all slides
|
||||
in the `ODP` file
|
||||
* Fixed translation of the "Transitions" tab in Danish
|
||||
|
||||
#### Forms
|
||||
|
||||
* Fixed display of field names in Adobe Acrobat with the same name specified in Cyrillic
|
||||
* Fixed display of text for the field with the Password format
|
||||
* Fixed input of text in the form field if the page is rotated
|
||||
* Fixed locking of the Format list when the Multiline option is enabled
|
||||
for the Text field
|
||||
|
||||
#### PDF Editor
|
||||
|
||||
* Fixed opening of the context menu after connection break
|
||||
* Fixed adding comments to stamps
|
||||
* Fixed applying the AutoFit option if the Scroll Long Text is not enabled
|
||||
|
||||
#### Convert
|
||||
|
||||
* Fixed crash when converting some `PPTX` files to `JPG` / `PNG` / `PDF`
|
||||
* Fixed crash when converting the `XLSM` file to `XLSB` via x2t
|
||||
* Fixed crash when converting the `PPTX` file to `PNG` via x2t
|
||||
* Fixed crash when converting the `XLSM` file to `PNG` via x2t
|
||||
* Fixed display of the “x” symbol after converting the `DOC` file to `DOCX`
|
||||
* Fixed crash when converting the `DOCX` file to `JPG` / `PNG` / `PDF` via x2t
|
||||
* Fixed crash when converting the `ODT` file to `DOCT` via x2t
|
||||
* Fixed crash when converting the `ODS` file to `JPG` / `PNG` / `PDF` via x2t
|
||||
* Fixed crash when converting the `ODS` file to `XLST` via x2t
|
||||
* Fixed crash when converting a binary file containing an `SVG` image to `XLSX`
|
||||
via x2t
|
||||
* Fixed crash when converting the `KEY` file to `PPTT` via x2t
|
||||
|
||||
## 9.0.3
|
||||
|
||||
### Fixes
|
||||
|
||||
#### All Editors
|
||||
|
||||
* The display of the cursor and text selection is now limited by the size
|
||||
of the object/shape
|
||||
* Fixed some icons for Modern themes when the interface scale is higher than 200%
|
||||
* Improved appearance of the autoshape Merge/Flip icons for the Modern themes
|
||||
* Fixed the application freezes on the first launch during the template preview
|
||||
generation process
|
||||
* Fixed the ability to paste code in the Macros window
|
||||
* Fixed work of the Open existing file (Open Document) shortcut on the Home page
|
||||
* Improved display of icons for Clouds connection on the main page of the application
|
||||
* Changed the font for the Urdu Interface language
|
||||
* Fixed the position of the editor version line in the About window
|
||||
* Improved display of the main page of the application for Windows XP
|
||||
* Fixed pausing when connecting to the portal if the debug window is open
|
||||
* Fixed the Copyright line for editor files (Windows)
|
||||
|
||||
#### Document Editor
|
||||
|
||||
* Fixed stopping work of the editor when editing footer in some `DOCX` files
|
||||
* Fixed errors during Compare/Combine/Text from file operations with files
|
||||
containing images
|
||||
* Fixed a crash when restoring a placeholder with a list when deleting
|
||||
Content Control content
|
||||
* Fixed significant increasing of the file size due to including CJK fonts when
|
||||
exporting to `PDF`
|
||||
* Fixed auto-detection of the document language in the text with
|
||||
the Text Direction > RTL option
|
||||
|
||||
#### Spreadsheet Editor`
|
||||
|
||||
* Fixed stopping work of the editor when trying to reference a cell with a formula
|
||||
* Fixed appearing the #NAME error in the final file when using a custom
|
||||
function and exporting to `PDF`
|
||||
* Fixed a problem with saving custom function to a file
|
||||
* Fixed an issue with autofitting row height when changing column width if Wrap Text
|
||||
is applied to a cell
|
||||
* Fixed display of the Zoom option value in the bottom toolbar in RTL UI with
|
||||
the Sheet RTL option disabled
|
||||
* Fixed the incorrect position of the percent sign in the status bar for
|
||||
Zoom with Chinese (Simplified)
|
||||
* Fixed stopping work of the application when exporting a spreadsheet to `PDF`
|
||||
|
||||
#### Presentation Editor
|
||||
|
||||
* Fixed stopping work of the editor when applying some animations from
|
||||
the Emphasis Effects section to an image
|
||||
* Fixed the editor crash when deleting slides sequentially from preview panel
|
||||
* Fixed stopping work of the editor when copying all content on the slide in
|
||||
some `PPTX` files
|
||||
* Fixed incorrect translations of tools in the Draw menu of the Presenter View window
|
||||
* Fixed changing word order in the bidirectional text when opening some
|
||||
`PPTX` files in the application
|
||||
|
||||
#### Forms
|
||||
|
||||
* Fixed stopping work of the editor after applying the TextArt setting to
|
||||
the Signature field
|
||||
* Fixed stopping work of the editor when restoring a file connection after
|
||||
a long period of inactivity
|
||||
* Fixed cursor change for Content Control buttons
|
||||
* Fixed missing the Clear Fields icons in the form viewing mode for the Modern themes
|
||||
|
||||
#### PDF Editor
|
||||
|
||||
* Fixed stopping work of the editor when performing Cut/Paste operations
|
||||
simultaneously on the thumbnail panel
|
||||
* Fixed display of the text after breaking and restoring a session when working with
|
||||
some `PDF` files
|
||||
* Fixed saving form field settings when there are no other changes in the editor
|
||||
* Blocked the ability to change the contents of the document when the connection
|
||||
is lost
|
||||
* Fixed an error when trying to copy page contents from the thumbnail panel
|
||||
for `XPS/DjVu` formats
|
||||
* Blocked the ability to display of the form field titles in the embedded mode
|
||||
* Fixed display of the form field highlight when undoing and redoing actions
|
||||
* Fixed blocking the ability to enter text immediately after inserting a Text Comment
|
||||
* Fixed an error that occurred in the application when quickly opening
|
||||
several documents one after another
|
||||
|
||||
#### Diagram
|
||||
|
||||
* Fixed display of the slide in the working area when opening some `VSTX` files
|
||||
|
||||
#### Convert
|
||||
|
||||
* Fixed crash when converting some `DOCX` files to an image
|
||||
* Fixed crash when converting some `HWP` files to the binary format
|
||||
* Fixed endless conversion of some `HWP` files to the binary format
|
||||
* Fixed endless conversion of some `DOC` files to the binary format
|
||||
* Fixed the appearance of an error when opening the result of converting
|
||||
some `HWP` files to `DOCX` in third-party editors
|
||||
* Fixed crash when converting some `DOC` files to the binary format
|
||||
* Fixed the appearance of an error when opening the result of converting
|
||||
some `XLS` files to `XLSX` in third-party editors
|
||||
* Fixed crash when converting some `DOCX` files to the binary format
|
||||
* Fixed the difference in display of autoshapes after converting
|
||||
some `VSDX` files to `PNG`
|
||||
|
||||
## 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
|
||||
`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
|
||||
|
||||
@@ -1,11 +1,46 @@
|
||||
[](https://www.gnu.org/licenses/agpl-3.0.en.html)
|
||||
 
|
||||
 [](https://github.com/ONLYOFFICE/DesktopEditors/tags)
|
||||
|
||||
## Overview
|
||||
## Welcome to the ONLYOFFICE Desktop Editors repo!
|
||||
|
||||
[ONLYOFFICE Desktop Editors][4] is a free office suite that combines text, spreadsheet and presentation editors allowing to create, view and edit documents stored on your Windows/Linux PC or Mac without an Internet connection. It is fully compatible with Office Open XML formats: .docx, .xlsx, .pptx.
|
||||
[ONLYOFFICE Desktop Editors](https://www.onlyoffice.com/desktop.aspx?utm_source=github&utm_medium=cpc&utm_campaign=GitHubDesktop) is a free office suite that combines text, spreadsheet, presentation, and PDF editors & Diagram Viewer. The application allows creating, viewing and editing documents stored on your Windows/Linux PC or Mac without an Internet connection. It is fully compatible with Office Open XML formats: .docx, .xlsx, .pptx.
|
||||
|
||||
## Components
|
||||

|
||||
|
||||
## Features you'll love ✨
|
||||
|
||||
Take advantage of the powerful editors included in ONLYOFFICE Desktop Editors:
|
||||
|
||||
* [ONLYOFFICE Document Editor](https://www.onlyoffice.com/document-editor.aspx?utm_source=GitHub&utm_medium=social&utm_campaign=GitHubDesktop)
|
||||
* [ONLYOFFICE Spreadsheet Editor](https://www.onlyoffice.com/spreadsheet-editor.aspx?utm_source=GitHub&utm_medium=social&utm_campaign=GitHubDesktop)
|
||||
* [ONLYOFFICE Presentation Editor](https://www.onlyoffice.com/presentation-editor.aspx?utm_source=GitHub&utm_medium=social&utm_campaign=GitHubDesktop)
|
||||
* [ONLYOFFICE Form Creator](https://www.onlyoffice.com/form-creator.aspx?utm_source=GitHub&utm_medium=social&utm_campaign=GitHubDesktop)
|
||||
* [ONLYOFFICE PDF Editor](https://www.onlyoffice.com/pdf-editor.aspx?utm_source=GitHub&utm_medium=social&utm_campaign=GitHubDesktop)
|
||||
* [ONLYOFFICE Diagram Viewer](https://www.onlyoffice.com/diagram-viewer.aspx?utm_source=GitHub&utm_medium=social&utm_campaign=GitHubDesktop)
|
||||
|
||||
The suite empowers you to create, edit, save, and export text documents, spreadsheets, presentations, PDFs, fill out PDF forms, open diagrams, all while offering additional advanced features such as:
|
||||
|
||||
* Connection to the cloud (ONLYOFFICE, Moodle, Nextcloud, ownCloud, Seafile, Liferay, kDrive) for [real-time collaboration](https://www.onlyoffice.com/seamless-collaboration.aspx?utm_source=github&utm_medium=cpc&utm_campaign=GitHubDesktop) ☁️
|
||||
* [AI-powered assistants](https://www.onlyoffice.com/ai-assistants.aspx?utm_source=github&utm_medium=cpc&utm_campaign=GitHubDesktop) 🤖
|
||||
* Digital signatures ✍️🔏
|
||||
* Password protection 🔒🔑
|
||||
* Scalable UI options (including dark mode 🌓)
|
||||
|
||||
## Localization 🌐
|
||||
|
||||
ONLYOFFICE is constantly improving localization of the editors to make the suite accessible to all users, all over the world.
|
||||
|
||||
* Interface available in 46 languages
|
||||
* RTL support
|
||||
* Hieroglyph support 🈴
|
||||
|
||||
## Plugins 🧩
|
||||
|
||||
ONLYOFFICE Desktop Editors offer support for plugins allowing developers to add specific features to the editors that are not directly related to the OOXML format. For more information, see [our API](https://api.onlyoffice.com/docs/plugin-and-macros/get-started/overview/) or visit the [GitHub plugins repo](https://github.com/ONLYOFFICE/onlyoffice.github.io).
|
||||
|
||||
Would like to explore the existing plugins in details? You are welcome to visit our [Marketplace](https://www.onlyoffice.com/app-directory?utm_source=github&utm_medium=cpc&utm_campaign=GitHubDesktop).
|
||||
|
||||
## Components 📦
|
||||
|
||||
ONLYOFFICE Desktop Editors contain the following components:
|
||||
|
||||
@@ -16,42 +51,34 @@ ONLYOFFICE Desktop Editors contain the following components:
|
||||
* [web-apps](https://github.com/ONLYOFFICE/web-apps) - the frontend for [ONLYOFFICE Document Server][2] which is a part of ONLYOFFICE Desktop Editors that allows the user to create, edit, save and export text, spreadsheet and presentation documents using the common interface of a document editor.
|
||||
* [dictionaries](https://github.com/ONLYOFFICE/dictionaries) - the dictionaries of various languages used for spellchecking in ONLYOFFICE Desktop Editors.
|
||||
|
||||
## Plugins
|
||||
## Easy installation options
|
||||
|
||||
ONLYOFFICE Desktop Editors offer support for plugins allowing developers to add specific features to the editors that are not directly related to the OOXML format. For more information see [our API](https://api.onlyoffice.com/plugin/basic) or visit github [plugins repo](https://github.com/ONLYOFFICE/onlyoffice.github.io).
|
||||
Get set up quickly with deb, rpm, exe, or dmg packages from our [official website️](https://www.onlyoffice.com/download-desktop.aspx?utm_source=GitHub&utm_medium=social&utm_campaign=GitHubDesktop).
|
||||
|
||||
## Functionality
|
||||
Prefer other methods? Snap, Flatpak, or AppImage are all available!
|
||||
|
||||
ONLYOFFICE Desktop Editors include the following editors:
|
||||
* Snap package. Get on [snapcraft.io](https://snapcraft.io/onlyoffice-desktopeditors). The official [source code](https://github.com/ONLYOFFICE/snap-desktopeditors) for ONLYOFFICE Desktop Editors Snap package.
|
||||
* Flatpak. Get on [flathub.org](https://flathub.org/apps/details/org.onlyoffice.desktopeditors). The official [source code](https://github.com/flathub/org.onlyoffice.desktopeditors) for ONLYOFFICE Desktop Editors Flatpak.
|
||||
* AppImage. Get on [AppImageHub](https://appimage.github.io/ONLYOFFICE/). The official [source code](https://github.com/ONLYOFFICE/appimage-desktopeditors) for ONLYOFFICE Desktop Editors AppImage.
|
||||
|
||||
* [ONLYOFFICE Document Editor](https://www.onlyoffice.com/document-editor.aspx?utm_source=GitHub&utm_medium=social&utm_campaign=GitHubDesktop)
|
||||
* [ONLYOFFICE Spreadsheet Editor](https://www.onlyoffice.com/spreadsheet-editor.aspx?utm_source=GitHub&utm_medium=social&utm_campaign=GitHubDesktop)
|
||||
* [ONLYOFFICE Presentation Editor](https://www.onlyoffice.com/presentation-editor.aspx?utm_source=GitHub&utm_medium=social&utm_campaign=GitHubDesktop)
|
||||
* [ONLYOFFICE Form Creator](https://www.onlyoffice.com/form-creator.aspx?utm_source=GitHub&utm_medium=social&utm_campaign=GitHubDesktop)
|
||||
* [ONLYOFFICE PDF editor, reader & converter](https://www.onlyoffice.com/pdf-reader.aspx?utm_source=GitHub&utm_medium=social&utm_campaign=GitHubDesktop)
|
||||
## License 📄
|
||||
|
||||
The editors allow you to create, edit, save and export text, spreadsheet and presentation documents.
|
||||
ONLYOFFICE Desktop Editors is licensed under the GNU Affero Public License, version 3.0, ensuring its transparency and commitment to the open-source community.
|
||||
|
||||
## Installation methods
|
||||
See [LICENSE](https://onlyo.co/38YZGJh) for more information.
|
||||
|
||||
* Deb, rpm, exe, dmg on the [official website](https://www.onlyoffice.com/download-desktop.aspx?utm_source=GitHub&utm_medium=social&utm_campaign=GitHubDesktop)
|
||||
* Snap package. Get on [snapcraft.io](https://snapcraft.io/onlyoffice-desktopeditors). The official [source code](https://github.com/ONLYOFFICE/snap-desktopeditors) for ONLYOFFICE Desktop Editors Snap package
|
||||
* Flatpak. Get on [flathub.org](https://flathub.org/apps/details/org.onlyoffice.desktopeditors). The official [source code](https://github.com/flathub/org.onlyoffice.desktopeditors) for ONLYOFFICE Desktop Editors Flatpak
|
||||
* AppImage. Get on [AppImageHub](https://appimage.github.io/ONLYOFFICE/). The official [source code](https://github.com/ONLYOFFICE/appimage-desktopeditors) for ONLYOFFICE Desktop Editors AppImage
|
||||
## How to build 🛠
|
||||
|
||||
## License
|
||||
You can find the detailed instructions for building ONLYOFFICE Desktop Editors in [build_tools](https://github.com/ONLYOFFICE/build_tools#desktop-editors).
|
||||
|
||||
ONLYOFFICE Desktop Editors is licensed under the GNU Affero Public License, version 3.0. See [LICENSE](https://onlyo.co/38YZGJh) for more information.
|
||||
## 💡 Need help? User feedback and support
|
||||
|
||||
## How to Build
|
||||
If you face any issues or have questions about ONLYOFFICE Desktop Editors, please visit our official forum: [forum.onlyoffice.com][1].
|
||||
|
||||
Instructions for building ONLYOFFICE Desktop Editors are in [build_tools](https://github.com/ONLYOFFICE/build_tools#desktop-editors).
|
||||
You are also welcome to ask and answer ONLYOFFICE development questions on [Stack Overflow][3], as well as share your thoughts and suggestions on [feedback.onlyoffice.com](https://feedback.onlyoffice.com/forums/966080-your-voice-matters).
|
||||
|
||||
## User Feedback and Support
|
||||
|
||||
If you have any problems with or questions about ONLYOFFICE Desktop Editors, please visit our official forum to find answers to your questions: [forum.onlyoffice.com][1] or you can ask and answer ONLYOFFICE development questions on [Stack Overflow][3].
|
||||
Join [our Discord community](https://discord.gg/Hcgtf5n4uF) for connecting with fellow developers.
|
||||
|
||||
[1]: https://forum.onlyoffice.com
|
||||
[2]: https://github.com/ONLYOFFICE/DocumentServer
|
||||
[3]: https://stackoverflow.com/questions/tagged/onlyoffice
|
||||
[4]: https://www.onlyoffice.com/desktop.aspx?utm_source=github&utm_medium=cpc&utm_campaign=GitHubDesktop
|
||||
|
||||
+1
-1
Submodule core updated: 3d7638c3cc...d54f0326cd
+1
-1
Submodule desktop-apps updated: d44ad1da25...bbdd727ff5
+1
-1
Submodule desktop-sdk updated: 8cf475efe1...6bd2051287
+1
-1
Submodule dictionaries updated: 25e1e985e4...d3223bbb77
Binary file not shown.
|
After Width: | Height: | Size: 1014 KiB |
+1
-1
Submodule sdkjs updated: a788980bc8...1b1c0fd7f8
+1
-1
Submodule web-apps updated: 090ef83bed...1c8ca99878
Reference in New Issue
Block a user