Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ec9b377f2f | |||
| 898ecd8e6b | |||
| ce21e6e34e | |||
| 066c36ca91 | |||
| 60faf367e5 | |||
| f46fef1a6c | |||
| 8d98a5f2e6 | |||
| 7e064689aa | |||
| 4666f867c4 | |||
| d9c0d634c4 |
+9
-1
@@ -113,6 +113,7 @@ MacOS
|
|||||||
MacOs
|
MacOs
|
||||||
macOS
|
macOS
|
||||||
MathType
|
MathType
|
||||||
|
MathML
|
||||||
mathType
|
mathType
|
||||||
metafile
|
metafile
|
||||||
mht
|
mht
|
||||||
@@ -388,4 +389,11 @@ Multiline
|
|||||||
AutoFit
|
AutoFit
|
||||||
DOCT
|
DOCT
|
||||||
XLST
|
XLST
|
||||||
md
|
md
|
||||||
|
HEIF
|
||||||
|
HWPML
|
||||||
|
MCP
|
||||||
|
checkboxes
|
||||||
|
websocket
|
||||||
|
textarea
|
||||||
|
RCE
|
||||||
@@ -15,13 +15,35 @@ 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 x64
|
- Windows
|
||||||
- Windows x86
|
- macOS
|
||||||
- macOS (ARM)
|
- Linux
|
||||||
- macOS (x86-64)
|
validations:
|
||||||
- Linux (DEB package)
|
required: true
|
||||||
- Linux (RPM package)
|
- type: dropdown
|
||||||
- other (specify in description)
|
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:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
- type: input
|
- type: input
|
||||||
@@ -56,11 +78,13 @@ body:
|
|||||||
placeholder: |
|
placeholder: |
|
||||||
Example:
|
Example:
|
||||||
1. Change font size to 16
|
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
|
3. Observe as the text is not white
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
- type: textarea
|
- type: textarea
|
||||||
id: additional
|
id: additional
|
||||||
attributes:
|
attributes:
|
||||||
label: "Additional information"
|
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."
|
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"
|
||||||
@@ -10,6 +10,6 @@ jobs:
|
|||||||
uses: vedantmgoyal9/winget-releaser@main
|
uses: vedantmgoyal9/winget-releaser@main
|
||||||
with:
|
with:
|
||||||
identifier: ONLYOFFICE.DesktopEditors
|
identifier: ONLYOFFICE.DesktopEditors
|
||||||
installers-regex: '(x86|x64)\.(exe|msi)$'
|
installers-regex: '(x86|x64|arm64)\.exe$'
|
||||||
token: ${{ secrets.WINGET_TOKEN }}
|
token: ${{ secrets.WINGET_TOKEN }}
|
||||||
|
|
||||||
|
|||||||
+153
@@ -1,5 +1,158 @@
|
|||||||
# Change log
|
# 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
|
## 9.0.4
|
||||||
|
|
||||||
### 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)
|
||||||
 
|
 [](https://github.com/ONLYOFFICE/DesktopEditors/tags)
|
||||||
|
|
||||||
## Welcome to the ONLYOFFICE Desktop Editors repo!
|
## Welcome to the ONLYOFFICE Desktop Editors repo!
|
||||||
|
|
||||||
|
|||||||
+1
-1
Submodule core updated: 82e281cf6b...d54f0326cd
+1
-1
Submodule desktop-apps updated: fd1b8e1305...bbdd727ff5
+1
-1
Submodule desktop-sdk updated: 322fde0c3c...6bd2051287
+1
-1
Submodule sdkjs updated: d169f841a7...1b1c0fd7f8
+1
-1
Submodule web-apps updated: f63e9674a5...1c8ca99878
Reference in New Issue
Block a user