-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e8d4121
commit a8f234b
Showing
4 changed files
with
364 additions
and
0 deletions.
There are no files selected for viewing
128 changes: 128 additions & 0 deletions
128
macos/ONLYOFFICE/update/updates/ONLYOFFICE/changes/8.2.2/changes.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>ONLYOFFICE Release Notes</title> | ||
<style type="text/css"> | ||
/* variables */ | ||
:root { | ||
--color-black: #141923; | ||
--color-white: #fff; | ||
--color-gray-100: #f7fafc; | ||
--color-gray-200: #edf2f7; | ||
--color-gray-300: #e2e8f0; | ||
--color-gray-400: #cbd5e0; | ||
--color-gray-500: #a0aec0; | ||
--color-gray-600: #718096; | ||
--color-gray-700: #4a5568; | ||
--color-gray-800: #2d3748; | ||
--color-gray-900: #1a202c; | ||
} | ||
body { | ||
background: var(--color-white); | ||
color: var(--color-gray-800); | ||
font: 12px "Lucida Grande", "Lucida Sans Unicode", Verdana, Lucida, Helvetica, sans-serif; | ||
} | ||
h1, h2, h3 { | ||
color: var(--color-gray-800); | ||
font-weight: normal; | ||
font-style: normal; | ||
} | ||
h1 { | ||
font-size: 1.7em; | ||
} | ||
h2 { | ||
font-size: 1.4em; | ||
font-weight: lighter; | ||
} | ||
h4 { | ||
font-size: 1.2em; | ||
font-weight: lighter; | ||
} | ||
code { | ||
background: var(--color-gray-200); | ||
font-family: monospace; | ||
padding: 1px 5px; | ||
} | ||
ul { | ||
padding: 8.1.3 20px; | ||
} | ||
li { | ||
margin-left: 20px; | ||
margin-bottom: 0.2em; | ||
padding: 0; | ||
} | ||
hr { | ||
margin: 20px 0; | ||
border: var(--color-gray-400) solid 0.5px; | ||
} | ||
.releasedate { | ||
color: var(--color-gray-600); | ||
font-weight: lighter; | ||
} | ||
|
||
/* prefers light mode */ | ||
@media (prefers-color-scheme: dark) { | ||
body { | ||
background: var(--color-gray-900); | ||
color: var(--color-gray-200); | ||
} | ||
|
||
h1, h2, h3 { | ||
color: var(--color-white); | ||
} | ||
|
||
code { | ||
background: var(--color-gray-800); | ||
color: var(--color-gray-200); | ||
} | ||
|
||
.releasedate { | ||
color: var(--color-gray-600); | ||
} | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="version"> | ||
<h1>ONLYOFFICE 8.2.2<span class="releasedate"> - {{DATE}}</span></h1> | ||
|
||
<h2>Fixes</h2> | ||
|
||
<h4>All Editors</h4> | ||
<ul> | ||
<li>Fixed displaying some chart types when opening the <code>DOCX</code> or <code>PPTX</code> documents</li> | ||
<li>Fixed availability of buttons on the right panel when the zoom is higher than 200%</li> | ||
<li>Fixed application launch on macOS Big Sur with the Apple Silicone architecture</li> | ||
<li>Fixed crash of the editor when detaching a tab with a document, opened from the cloud portal, into a separate window</li> | ||
</ul> | ||
<h4>Document Editor</h4> | ||
<ul> | ||
<li>Fixed stopping work of the editor when working with the Text box in the Header if it contains the page number</li> | ||
<li>Fixed slow scrolling of documents if the document extends the visible area</li> | ||
<li>Fixed stopping work of the editor when comparing some <code>DOCX</code> documents</li> | ||
<li>Fixed text selection when clicking on a paragraph with Justified alignment</li> | ||
<li>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</li> | ||
</ul> | ||
<h4>Spreadsheet Editor</h4> | ||
<ul> | ||
<li>Fixed stopping work of the editor when deleting a formula from a cell in some <code>XLSX</code> files</li> | ||
<li>Fixed disappearing formulas when opening some <code>XLSX</code> files</li> | ||
<li>Fixed the ability to scroll a sheet horizontally using <code>Shift</code> + <code>Mouse wheel</code></li> | ||
<li>Fixed stopping work of the editor when merging all cells on a sheet</li> | ||
<li>Fixed loss of graphic objects rendering after rotating them in the Sheet Right-to-left mode</li> | ||
<li>Fixed missing the Multi-Select/Clear Filter of Slicer buttons after scrolling horizontally or vertically</li> | ||
</ul> | ||
<h4>Forms</h4> | ||
<ul> | ||
<li>Fixed the status of unsaved changes presence when clicking Complete & Submit quickly during filling in a form in DocSpace</li> | ||
</ul> | ||
<h4>PDF Editor</h4> | ||
<ul> | ||
<li>Fixed stopping work of the editor when adding a matrix in a math equation</li> | ||
<li>Fixed the short-term absence of an image added by one of the users in co-editing</li> | ||
<li>Fixed incorrect selection of paragraphs/columns in the Select tool mode when opening <code>XPS</code>/<code>OXPS</code>/<code>PDF</code> files</li> | ||
</ul> | ||
</div> | ||
</body> | ||
</html> |
128 changes: 128 additions & 0 deletions
128
macos/ONLYOFFICE/update/updates/ONLYOFFICE/changes/8.2.2/changes.ru.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>История изменений ONLYOFFICE</title> | ||
<style type="text/css"> | ||
/* variables */ | ||
:root { | ||
--color-black: #141923; | ||
--color-white: #fff; | ||
--color-gray-100: #f7fafc; | ||
--color-gray-200: #edf2f7; | ||
--color-gray-300: #e2e8f0; | ||
--color-gray-400: #cbd5e0; | ||
--color-gray-500: #a0aec0; | ||
--color-gray-600: #718096; | ||
--color-gray-700: #4a5568; | ||
--color-gray-800: #2d3748; | ||
--color-gray-900: #1a202c; | ||
} | ||
body { | ||
background: var(--color-white); | ||
color: var(--color-gray-800); | ||
font: 12px "Lucida Grande", "Lucida Sans Unicode", Verdana, Lucida, Helvetica, sans-serif; | ||
} | ||
h1, h2, h3 { | ||
color: var(--color-gray-800); | ||
font-weight: normal; | ||
font-style: normal; | ||
} | ||
h1 { | ||
font-size: 1.7em; | ||
} | ||
h2 { | ||
font-size: 1.4em; | ||
font-weight: lighter; | ||
} | ||
h4 { | ||
font-size: 1.2em; | ||
font-weight: lighter; | ||
} | ||
code { | ||
background: var(--color-gray-200); | ||
font-family: monospace; | ||
padding: 1px 5px; | ||
} | ||
ul { | ||
padding: 8.1.3 20px; | ||
} | ||
li { | ||
margin-left: 20px; | ||
margin-bottom: 0.2em; | ||
padding: 0; | ||
} | ||
hr { | ||
margin: 20px 0; | ||
border: var(--color-gray-400) solid 0.5px; | ||
} | ||
.releasedate { | ||
color: var(--color-gray-600); | ||
font-weight: lighter; | ||
} | ||
|
||
/* prefers light mode */ | ||
@media (prefers-color-scheme: dark) { | ||
body { | ||
background: var(--color-gray-900); | ||
color: var(--color-gray-200); | ||
} | ||
|
||
h1, h2, h3 { | ||
color: var(--color-white); | ||
} | ||
|
||
code { | ||
background: var(--color-gray-800); | ||
color: var(--color-gray-200); | ||
} | ||
|
||
.releasedate { | ||
color: var(--color-gray-600); | ||
} | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="version"> | ||
<h1>ONLYOFFICE 8.2.2<span class="releasedate"> - {{DATE}}</span></h1> | ||
|
||
<h2>Fixes</h2> | ||
|
||
<h4>All Editors</h4> | ||
<ul> | ||
<li>Fixed displaying some chart types when opening the <code>DOCX</code> or <code>PPTX</code> documents</li> | ||
<li>Fixed availability of buttons on the right panel when the zoom is higher than 200%</li> | ||
<li>Fixed application launch on macOS Big Sur with the Apple Silicone architecture</li> | ||
<li>Fixed crash of the editor when detaching a tab with a document, opened from the cloud portal, into a separate window</li> | ||
</ul> | ||
<h4>Document Editor</h4> | ||
<ul> | ||
<li>Fixed stopping work of the editor when working with the Text box in the Header if it contains the page number</li> | ||
<li>Fixed slow scrolling of documents if the document extends the visible area</li> | ||
<li>Fixed stopping work of the editor when comparing some <code>DOCX</code> documents</li> | ||
<li>Fixed text selection when clicking on a paragraph with Justified alignment</li> | ||
<li>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</li> | ||
</ul> | ||
<h4>Spreadsheet Editor</h4> | ||
<ul> | ||
<li>Fixed stopping work of the editor when deleting a formula from a cell in some <code>XLSX</code> files</li> | ||
<li>Fixed disappearing formulas when opening some <code>XLSX</code> files</li> | ||
<li>Fixed the ability to scroll a sheet horizontally using <code>Shift</code> + <code>Mouse wheel</code></li> | ||
<li>Fixed stopping work of the editor when merging all cells on a sheet</li> | ||
<li>Fixed loss of graphic objects rendering after rotating them in the Sheet Right-to-left mode</li> | ||
<li>Fixed missing the Multi-Select/Clear Filter of Slicer buttons after scrolling horizontally or vertically</li> | ||
</ul> | ||
<h4>Forms</h4> | ||
<ul> | ||
<li>Fixed the status of unsaved changes presence when clicking Complete & Submit quickly during filling in a form in DocSpace</li> | ||
</ul> | ||
<h4>PDF Editor</h4> | ||
<ul> | ||
<li>Fixed stopping work of the editor when adding a matrix in a math equation</li> | ||
<li>Fixed the short-term absence of an image added by one of the users in co-editing</li> | ||
<li>Fixed incorrect selection of paragraphs/columns in the Select tool mode when opening <code>XPS</code>/<code>OXPS</code>/<code>PDF</code> files</li> | ||
</ul> | ||
</div> | ||
</body> | ||
</html> |
54 changes: 54 additions & 0 deletions
54
win-linux/package/windows/update/changes/8.2.2/changes.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>ONLYOFFICE Desktop Editors Release Notes</title> | ||
<style type="text/css"> | ||
body { | ||
background: white; | ||
font-size: 12px; | ||
font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, Lucida, Helvetica, sans-serif; | ||
} | ||
h1, h2, h3 { | ||
color: #8.1.00; | ||
font-family: "Helvetica"; | ||
font-weight: normal; | ||
font-style: normal; | ||
} | ||
h1 { | ||
font-size: 18px; | ||
} | ||
h2 { | ||
font-size: 16px; | ||
} | ||
h3 { | ||
font-size: 14px; | ||
} | ||
a { | ||
text-decoration: none; | ||
} | ||
code { | ||
background: var(--color-gray-200); | ||
font-family: monospace; | ||
padding: 1px 5px; | ||
} | ||
.releasedate { | ||
color: #888; | ||
font-size: medium; | ||
} | ||
.version { | ||
border-bottom: 1px solid #cfcfcf; | ||
} | ||
.more { | ||
margin-bottom: 20px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="version"> | ||
<h1>ONLYOFFICE Desktop Editors 8.2.2<span class="releasedate"> - {{DATE}}</span></h1> | ||
|
||
<h2 class="more"><a href="https://github.com/ONLYOFFICE/DesktopEditors/blob/master/CHANGELOG.md#822" target="_blank">See list of the changes</a></h2> | ||
</div> | ||
</body> | ||
</html> |
54 changes: 54 additions & 0 deletions
54
win-linux/package/windows/update/changes/8.2.2/changes_ru.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>История изменений ONLYOFFICE Desktop Editors</title> | ||
<style type="text/css"> | ||
body { | ||
background: white; | ||
font-size: 12px; | ||
font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, Lucida, Helvetica, sans-serif; | ||
} | ||
h1, h2, h3 { | ||
color: #8.1.00; | ||
font-family: "Helvetica"; | ||
font-weight: normal; | ||
font-style: normal; | ||
} | ||
h1 { | ||
font-size: 18px; | ||
} | ||
h2 { | ||
font-size: 16px; | ||
} | ||
h3 { | ||
font-size: 14px; | ||
} | ||
a { | ||
text-decoration: none; | ||
} | ||
code { | ||
background: var(--color-gray-200); | ||
font-family: monospace; | ||
padding: 1px 5px; | ||
} | ||
.releasedate { | ||
color: #888; | ||
font-size: medium; | ||
} | ||
.version { | ||
border-bottom: 1px solid #cfcfcf; | ||
} | ||
.more { | ||
margin-bottom: 20px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="version"> | ||
<h1>ONLYOFFICE Desktop Editors 8.2.2<span class="releasedate"> - {{DATE}}</span></h1> | ||
|
||
<h2 class="more"><a href="https://github.com/ONLYOFFICE/DesktopEditors/blob/master/CHANGELOG.md#822" target="_blank">Список изменений</a></h2> | ||
</div> | ||
</body> | ||
</html> |