Refactor changelogs (#99)

Co-authored-by: Semyon Bezrukov <semen.bezrukov@onlyoffice.com>
Co-committed-by: Semyon Bezrukov <semen.bezrukov@onlyoffice.com>
This commit is contained in:
Semyon Bezrukov
2024-12-18 14:01:07 +00:00
committed by Alexey Golubev
parent 4d85f1b540
commit 65a1c1d5c2
60 changed files with 15 additions and 3530 deletions

View File

@ -1,12 +1,11 @@
name: Spellcheck
name: Spellcheck changelogs
on:
workflow_dispatch:
push:
branches:
- '*'
- '**'
paths:
- 'win-linux/package/windows/update/changes/**'
- 'macos/ONLYOFFICE/update/updates/ONLYOFFICE/changes/**'
- '.aspell.*.pws'
@ -16,14 +15,16 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Setup aspell
run: sudo apt-get -y update && sudo apt-get -y install aspell aspell-en aspell-ru
- name: Run spellchecker for English Windows changelogs
run: |
sudo apt-get -y update && \
sudo apt-get -y install aspell aspell-en aspell-ru
- name: Run spellchecker for english changelogs
if: always()
run: |
for d in win-linux/package/windows/update/changes/*/ ; do
if [ -f ${d}en.html ]; then
echo "Checking ${d}en.html"
SPELLCHECK_OUT=$(cat ${d}en.html \
for d in macos/ONLYOFFICE/update/updates/ONLYOFFICE/changes/*/ ; do
if [ -f ${d}changes.html ]; then
echo "Checking ${d}changes.html"
SPELLCHECK_OUT=$(cat ${d}changes.html \
| aspell --lang=en --encoding=utf-8 \
--mode=html --personal=./.aspell.en.pws list)
if [ $(echo -n $SPELLCHECK_OUT | wc -c) -ne 0 ]; then
@ -32,43 +33,13 @@ jobs:
fi
done
exit ${RC:-0}
- name: Run spellchecker for Russian Windows changelogs
- name: Run spellchecker for russian changelogs
if: always()
run: |
for d in win-linux/package/windows/update/changes/*/ ; do
if [ -f ${d}ru.html ]; then
echo "Checking ${d}ru.html"
SPELLCHECK_OUT=$(cat ${d}ru.html \
| aspell --lang=ru --encoding=utf-8 \
--mode=html --personal=./.aspell.ru.pws list)
if [ $(echo -n $SPELLCHECK_OUT | wc -c) -ne 0 ]; then
echo $SPELLCHECK_OUT && RC=1
fi
fi
done
exit ${RC:-0}
- name: Run spellchecker for English macOS changelogs
if: always()
run: |
for d in macos/ONLYOFFICE/update/updates/ONLYOFFICE/changes/*/ ; do
if [ -f ${d}ReleaseNotes.html ]; then
echo "Checking ${d}ReleaseNotes.html"
SPELLCHECK_OUT=$(cat ${d}ReleaseNotes.html \
| aspell --lang=en --encoding=utf-8 \
--mode=html --personal=./.aspell.en.pws list)
if [ $(echo -n $SPELLCHECK_OUT | wc -c) -ne 0 ]; then
echo $SPELLCHECK_OUT && RC=1
fi
fi
done
exit ${RC:-0}
- name: Run spellchecker for Russian macOS changelogs
if: always()
run: |
for d in macos/ONLYOFFICE/update/updates/ONLYOFFICE/changes/*/ ; do
if [ -f ${d}ReleaseNotesRU.html ]; then
echo "Checking ${d}ReleaseNotesRU.html"
SPELLCHECK_OUT=$(cat ${d}ReleaseNotesRU.html \
for d in macos/ONLYOFFICE/update/updates/ONLYOFFICE/changes/*/ ; do
if [ -f ${d}changes.ru.html ]; then
echo "Checking ${d}changes.ru.html"
SPELLCHECK_OUT=$(cat ${d}changes.ru.html \
| aspell --lang=ru --encoding=utf-8 \
--mode=html --personal=./.aspell.ru.pws list)
if [ $(echo -n $SPELLCHECK_OUT | wc -c) -ne 0 ]; then

View File

@ -1,43 +0,0 @@
name: Initialize changelog files
on: create
jobs:
changelogs:
if: >-
${{ startsWith(github.ref, 'refs/heads/hotfix/v') ||
startsWith(github.ref, 'refs/heads/release/v') }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
token: ${{ secrets.PUSH_TOKEN }}
- name: Set version
run: |
REF="${{ github.ref }}"
echo "VERSION=${REF#*/v}" >> $GITHUB_ENV
- name: Create changelogs
run: |
CHANGES_WIN=win-linux/package/windows/update/changes
CHANGES_MAC=macos/ONLYOFFICE/update/updates/ONLYOFFICE/changes
CHANGES_LINUX=common/changes
rm -rfv $CHANGES_WIN/$VERSION $CHANGES_MAC/$VERSION $CHANGES_LINUX/$VERSION
cp -fRTv $CHANGES_WIN/0.0.0 $CHANGES_WIN/$VERSION
cp -fRTv $CHANGES_MAC/0.0.0 $CHANGES_MAC/$VERSION
cp -fRTv $CHANGES_LINUX/template $CHANGES_LINUX/$VERSION
# for changelog files for win, mac and linux replace '0.0.0' with VERSION,
# and replace '000' in the row included 'CHANGELOG' with VERSION without dots
find $CHANGES_WIN/$VERSION $CHANGES_MAC/$VERSION $CHANGES_LINUX/$VERSION -name "*.html" -print \
-exec sed -e 's/0.0.0/'${VERSION}'/g' -e '/CHANGELOG/s/000/'${VERSION//./}'/g' -i {} \;
- name: Commit changes
uses: EndBug/add-and-commit@v9
with:
author_name: github-actions[bot]
author_email: github-actions[bot]@users.noreply.github.com
message: Initialize changelogs for v${{ env.VERSION }}

View File

@ -1,100 +0,0 @@
<!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: #000000;
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 0.0.0<span class="releasedate"> - {{DATE}}</span></h1>
<h2>New Features</h2>
<h4>All Editors</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Document Editor</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Spreadsheet Editor</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Presentation Editor</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Forms</h4>
<ul>
<li>TODO</li>
</ul>
<h2>Fixes</h2>
<h4>All Editors</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Document Editor</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Spreadsheet Editor</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Presentation Editor</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Forms</h4>
<ul>
<li>TODO</li>
</ul>
<div class="more"><a href="https://github.com/ONLYOFFICE/DesktopEditors/blob/master/CHANGELOG.md#000" target="_blank">and a little more...</a></div>
</div>
</body>
</html>

View File

@ -1,100 +0,0 @@
<!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: #000000;
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 0.0.0<span class="releasedate"> - {{DATE}}</span></h1>
<h2>Новые функции</h2>
<h4>Все редакторы</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Редактор документов</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Редактор таблиц</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Редактор презентаций</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Формы</h4>
<ul>
<li>TODO</li>
</ul>
<h2>Исправления</h2>
<h4>Все редакторы</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Редактор документов</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Редактор таблиц</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Редактор презентаций</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Формы</h4>
<ul>
<li>TODO</li>
</ul>
<div class="more"><a href="https://github.com/ONLYOFFICE/DesktopEditors/blob/master/CHANGELOG.md#000" target="_blank">и прочее...</a></div>
</div>
</body>
</html>

View File

@ -1,7 +0,0 @@
<h2>Fixes</h2>
<ul>
<li>Fix several vulnerabilities in converting app (bugs #46348, #46352, 46353, #46384, #46434, #46436)</li>
<li>Fix vulnerability in TXT converter (Bug #46437)</li>
<li>Fix Path Traversal vulnerability via image upload params (Bug #46113)</li>
<li>Fix Path Traversal vulnerability via `savefile` param (Bug #46037)</li>
</ul>

View File

@ -1,7 +0,0 @@
<h2>Исправления</h2>
<ul>
<li>Исправлено несколько уязвимостей в приложении конвертации (Bugs #46348, #46352, 46353, #46384, #46434, #46436)</li>
<li>Исправлена уязвимость в конверторе TXT формата (Bug #46437)</li>
<li>Исправлена уязвимость "Path Traversal" в параметрах при загрузке изображений (Bug #46113)</li>
<li>Исправлена уязвимость "Path Traversal" в параметре `savefile` (Bug #46037)</li>
</ul>

View File

@ -1,30 +0,0 @@
<h2>New Features</h2>
<ul>
<li>Complete redone html-based formats (ePub, mht, html)</li>
<li>fb2 format can be opened in viewer</li>
<li>Redone gradient control and ability to set custom angle for gradient fill</li>
<li>New icons in context menu</li>
<li>Add support of AutoFormat as you type</li>
<li>Ability to copy comment from left sidebar</li>
</ul>
<h4>Document Editor</h4>
<ul>
<li>Ability to show line numbering</li>
<li>Ability to add cross-reference</li>
<li>Add support of endnotes</li>
<li>Ability to edit AutoCorrect list</li>
<li>Select Data button in Chart Editor</li>
</ul>
<h4>Spreadsheet Editor</h4>
<ul>
<li>Ability to work with sheet view (only with access to pro features)</li>
<li>Support of editing data ranges in Chart</li>
<li>Redone cell editor height change</li>
<li>New cursor for column\row hover</li>
<li>Ability to hide freeze pane shadow</li>
<li>Pivot Table can be inserted from Insert tab</li>
</ul>
<h2>Fixes</h2>
<ul>
<li>All editors received countless fixes</li>
</ul>

View File

@ -1,30 +0,0 @@
<h2>Новые функции</h2>
<ul>
<li>Полностью переделаны html-based форматы (ePub, mht, html)</li>
<li>Добавлена поддержка формата fb2 на чтение</li>
<li>Переделан компонент управления градиентом заливки</li>
<li>Обновлены и добавлены иконки в контекстное меню редакторов</li>
<li>Добавлена настройка автоформатирования при вводе</li>
<li>Копирование комментариев из левой панели инструментов</li>
</ul>
<h4>Редактор документов</h4>
<ul>
<li>Добавлена нумерация строк в документе</li>
<li>Реализована вставка перекрестных ссылок</li>
<li>Добавлена работа с концевыми сносками</li>
<li>Добавлена возможность редактирования списка автозамен</li>
<li>В редактор диаграмм добавлена кнопка "Выбрать источник данных"</li>
</ul>
<h4>Редактор таблиц</h4>
<ul>
<li>Добавлена работа с представлениями (после получения доступа к профессиональным функциям)</li>
<li>Добавлены дополнительные возможности редактирования данных диаграмм (серий и категорий)</li>
<li>Изменение высоты редактора ячейки (строки формул) кратно высоте строки</li>
<li>Изменен курсор при наведении на заголовок столбца/строки</li>
<li>Добавлена настройка отображения тени для закрепленных областей</li>
<li>На вкладку Insert добавлена кнопка вставки сводной таблицы</li>
</ul>
<h2>Исправления</h2>
<ul>
<li>Многочисленные исправления всех компонентов</li>
</ul>

View File

@ -1,27 +0,0 @@
<h2>New Features</h2>
<ul>
<li>Ability to use Tab/Shift+Tab in some dialog windows</li>
<li>Change color of loader to darker one</li>
<li>Ability to setup font size 300pt (409pt for Spreadsheets)</li>
</ul>
<h4>Document Editor</h4>
<ul>
<li>Ability to insert Table of Figures</li>
</ul>
<h4>Spreadsheet Editor</h4>
<ul>
<li>Ability to insert slicers in pivot tables</li>
<li>Data Validation settings</li>
<li>Ability to cancel auto-expansion of tables</li>
<li>Support of custom number format</li>
<li>GROWTH, TREND, LOGEST, UNIQUE, RANDARRAY functions support</li>
</ul>
<h4>Presentation Editor</h4>
<ul>
<li>Ability to setup auto-format as you type</li>
<li>Buttons for increase-decrease font size</li>
</ul>
<h2>Fixes</h2>
<ul>
<li>All editors received countless fixes</li>
</ul>

View File

@ -1,27 +0,0 @@
<h2>Новые функции</h2>
<ul>
<li>Добавлена возможность вручную задавать размер шрифта до 300 pt (409 pt в редакторе электронных таблиц).</li>
<li>Добавлена возможность навигации по контролам типа текстовое поле, комбобокс, список с помощью клавиатуры Tab/Shift+Tab.</li>
<li>Изменены лоадеры для длительных операций.</li>
</ul>
<h4>Редактор документов</h4>
<ul>
<li>Добавлена возможность вставки и редактирования списка иллюстраций.</li>
</ul>
<h4>Редактор таблиц</h4>
<ul>
<li>Доработано авторазвертывание форматированных таблиц.</li>
<li>Добавлена возможность вставки срезов для сводных таблиц.</li>
<li>Добавлены настройки проверки данных.</li>
<li>Добавлена возможность создания пользовательских числовых форматов.</li>
<li>Добавлены новые функции: GROWTH, TREND, LOGEST, UNIQUE, MUNIT, RANDARRAY.</li>
</ul>
<h4>Редактор презентаций</h4>
<ul>
<li>Добавлена функциональность автоформатирования при вводе в настройки правописания.</li>
<li>Добавлены кнопки увеличения и уменьшения размера шрифта на панель инструментов.</li>
</ul>
<h2>Исправления</h2>
<ul>
<li>Многочисленные исправления всех компонентов</li>
</ul>

View File

@ -1,40 +0,0 @@
<h2>New Features</h2>
<ul>
<li>Added Seafile provider connection options</li>
<li>Interface Themes support</li>
<li>150% interface scaling support (Windows, Linux)</li>
<li>Spellchecker implemented as SharedWorker. No more back-end service for spellchecker</li>
<li>Ability to add file to favorites (must be supported on DMS side)</li>
<li>Password protection support</li>
<li>New chart types (lines and scatter)</li>
<li>Check hyperlinks for 2083 symbol length</li>
</ul>
<h4>Document Editor</h4>
<ul>
<li>Wrapping for shapes in Top Toolbar</li>
<li>Indents settings in Paragraph Right Sidebar</li>
<li>Change Register operation in Top Toolbar</li>
<li>Change List Level operation</li>
<li>Export to html, fb2, ePub</li>
</ul>
<h4>Spreadsheet Editor</h4>
<ul>
<li>Add new chart type - combo</li>
<li>Redone Chart Advanced Setting with more axis settings</li>
<li>Add ability to set axis label format</li>
<li>New date format "YYYY-MM-DD" (ISO 8601)</li>
<li>Cell Indent setting in Table Right Sidebar</li>
<li>Opening of Microsoft Office XML 2003 files</li>
<li>Group and Ungroup operation for Pivot Tables</li>
<li>XLOOKUP function</li>
</ul>
<h4>Presentation Editor</h4>
<ul>
<li>Slide opacity setting</li>
<li>Setup columns in shape via Top Toolbar</li>
<li>Presentation Animations are saved after export from our editor</li>
</ul>
<h2>Fixes</h2>
<ul>
<li>All editors received countless fixes</li>
</ul>

View File

@ -1,22 +0,0 @@
<h2>Новые функции</h2>
<ul>
<li>Добавлены настройки для подключения к Seafile</li>
<li>Добавлена поддержка темной темы</li>
<li>Добавлена поддержка 150% системного масштабирования</li>
</ul>
<h4>Редактор документов</h4>
<ul>
<li></li>
</ul>
<h4>Редактор таблиц</h4>
<ul>
<li></li>
</ul>
<h4>Редактор презентаций</h4>
<ul>
<li></li>
</ul>
<h2>Исправления</h2>
<ul>
<li>Многочисленные исправления всех компонентов</li>
</ul>

View File

@ -1,40 +0,0 @@
<h2>New Features</h2>
<ul>
<li>Added Seafile provider connection options</li>
<li>Interface Themes support</li>
<li>150% interface scaling support (Windows, Linux)</li>
<li>Spellchecker implemented as SharedWorker. No more back-end service for spellchecker</li>
<li>Ability to add file to favorites (must be supported on DMS side)</li>
<li>Password protection support</li>
<li>New chart types (lines and scatter)</li>
<li>Check hyperlinks for 2083 symbol length</li>
</ul>
<h4>Document Editor</h4>
<ul>
<li>Wrapping for shapes in Top Toolbar</li>
<li>Indents settings in Paragraph Right Sidebar</li>
<li>Change Register operation in Top Toolbar</li>
<li>Change List Level operation</li>
<li>Export to html, fb2, ePub</li>
</ul>
<h4>Spreadsheet Editor</h4>
<ul>
<li>Add new chart type - combo</li>
<li>Redone Chart Advanced Setting with more axis settings</li>
<li>Add ability to set axis label format</li>
<li>New date format "YYYY-MM-DD" (ISO 8601)</li>
<li>Cell Indent setting in Table Right Sidebar</li>
<li>Opening of Microsoft Office XML 2003 files</li>
<li>Group and Ungroup operation for Pivot Tables</li>
<li>XLOOKUP function</li>
</ul>
<h4>Presentation Editor</h4>
<ul>
<li>Slide opacity setting</li>
<li>Setup columns in shape via Top Toolbar</li>
<li>Presentation Animations are saved after export from our editor</li>
</ul>
<h2>Fixes</h2>
<ul>
<li>All editors received countless fixes</li>
</ul>

View File

@ -1,36 +0,0 @@
<h2>Новые функции</h2>
<ul>
<li>Добавлены темная и светлая темы, изменена светлая классическая тема.</li>
<li>Добавлена возможность добавления/изменения/удаления пароля в онлайн-версии.</li>
<li>Добавлена возможность выставления масштаба 150%.</li>
<li>Добавлена кнопка для добавления файлов в папку Избранное.</li>
<li>Добавлены новые типы для линейных и точечных диаграмм.</li>
<li>Добавлены настройки комбинированных диаграмм.</li>
<li>Добавлена новая схема для средства проверки орфографии (локальная работа).</li>
</ul>
<h4>Редактор документов</h4>
<ul>
<li>На верхнюю панель инструментов вынесена возможность изменения контура обтекания фигуры (вкладка Макет).</li>
<li>В настройки абзаца на правой панели добавлены настройки для отступов.</li>
<li>Добавлена возможность изменения регистра текста.</li>
<li>Добавлена возможность изменения уровня списка.</li>
<li>Добавлена возможность скачивания/сохранения документа в форматах FB2, EPUB.</li>
<li>Добавлена возможность открывать файлы в формате XML.</li>
</ul>
<h4>Редактор таблиц</h4>
<ul>
<li>Добавлена функция XLOOKUP.</li>
<li>Добавлены новые форматы ячеек: dd/mm, dd/mm/yyyy, dd/mm/yy.</li>
<li>Добавлена новая валюта для формата ячеек - хорватская куна.</li>
<li>Добавлена группировка/разгруппировка данных в сводной таблице.</li>
</ul>
<h4>Редактор презентаций</h4>
<ul>
<li>В свойства слайда в правой панели добавлена настройка прозрачности.</li>
<li>В панель инструментов вынесена настройка колонок для текста в фигуре.</li>
<li>Добавлена возможность сохранения анимаций, уже добавленных в презентацию.</li>
</ul>
<h2>Исправления</h2>
<ul>
<li>Многочисленные исправления всех компонентов</li>
</ul>

View File

@ -1,41 +0,0 @@
<h2>New Features</h2>
<ul>
<li>Added ability to set UI theme dependent icon in config for cloud provider</li>
<li>Major improvements in support of chart styles</li>
<li>Ability to Resolve all comments</li>
<li>Change list symbols render</li>
<li>Add chart styles for users with visual impairment</li>
<li>Add ability to use tab\shift+tab in some controls</li>
<li>Ability to view unique user link count on info page</li>
<li>Improved render of CJK fonts in PDF files</li>
</ul>
<h4>Document Editor</h4>
<ul>
<li>Ability to convert text to table</li>
<li>Ability to convert table to text</li>
<li>Auto-capitalize first letter</li>
<li>New review mode: Simple markup</li>
</ul>
<h4>Spreadsheet Editor</h4>
<ul>
<li>Ability to add/remove/edit conditional formatting</li>
<li>Ability to add sparklines</li>
<li>Change select by pressing tab + enter</li>
<li>Data import from txt, csv</li>
<li>Ability to run macros on mouse click over graphic object</li>
<li>Add setting for hyperlink auto-correction</li>
<li>Freeze panes presets</li>
<li>Setting for show zeros in cells</li>
<li>Chain comments support</li>
<li>Add argument names to function wizard</li>
</ul>
<h4>Presentation Editor</h4>
<ul>
<li>Version History</li>
<li>Ability to hide notes panel</li>
<li>Auto-capitalize first letter</li>
</ul>
<h2>Fixes</h2>
<ul>
<li>All editors received countless fixes</li>
</ul>

View File

@ -1,41 +0,0 @@
<h2>Новые функции</h2>
<ul>
<li>Добавлена возможность установки иконки облачного провайдера, зависящей от темы приложения</li>
<li>Значительные улучшения в поддержке стилей диаграмм</li>
<li>Возможность решить все комментарии</li>
<li>Изменена отрисовка символов списков</li>
<li>Добавлены стили диаграмм для людей с нарушением зрения</li>
<li>Добавлена возможность использования tab\shift+tab в некоторых контролах</li>
<li>Возможность просматривать количество уникальных пользователей, получивших доступ по ссылкам, на странице с информацией</li>
<li>Улучшена отрисовка шрифтов CJK в файлах PDF</li>
</ul>
<h4>Редактор документов</h4>
<ul>
<li>Возможность конвертации текста в таблицу</li>
<li>Возможность конвертации таблицы в текст</li>
<li>Автозамена первой буквы предложения прописной буквой</li>
<li>Новый режим отображения рецензий: Исправления</li>
</ul>
<h4>Редактор таблиц</h4>
<ul>
<li>Возможность добавления / удаления / редактирования условного форматирования</li>
<li>Возможность добавления спарклайнов</li>
<li>Смена селекта после нажатия клавиш tab + enter</li>
<li>Импорт данных из txt, csv-файлов</li>
<li>Возможность запускать макросы при клике по графическому объекту</li>
<li>Добавлена настройка автокоррекции гиперссылок</li>
<li>Пресеты для закрепления областей</li>
<li>Настройка для отображения нулей в ячейках</li>
<li>Поддержка цепочек комментариев</li>
<li>Добавлены названия аргументов в мастер настройки функций</li>
</ul>
<h4>Редактор презентаций</h4>
<ul>
<li>История версий</li>
<li>Возможность скрыть панель с заметками</li>
<li>Автозамена первой буквы предложения прописной буквой</li>
</ul>
<h2>Исправления</h2>
<ul>
<li>Многочисленные исправления всех компонентов</li>
</ul>

View File

@ -1,5 +0,0 @@
<h2>Fixes</h2>
<ul>
<li>Fixed interaction with Community server</li>
<li>Fixed theme initialization in app loader</li>
</ul>

View File

@ -1,5 +0,0 @@
<h2>Исправления</h2>
<ul>
<li>Исправлены ошибки во взаимодействии с Community server</li>
<li>Исправлена инициализация темы при старте приложения</li>
</ul>

View File

@ -1,37 +0,0 @@
<h2>New Features</h2>
<ul>
<li>Added Liferay provider connection options</li>
<li>Added kDrive provider connection options</li>
<li>Added ability to launch editor in a single window</li>
<li>New UI languages (Belarusian, Bulgarian, Catalan, Danish, Dutch, Finnish, Greek, Hungarian, Indonesian, Japanese, Korean, Latvian, Norwegian, Romanian, Slovene, Swedish, Turkish, Ukrainian, Vietnamese, Lao)</li>
<li>125% and 175% interface scaling support (Windows, Linux)</li>
<li>Ability to setup editor launch mode</li>
</ul>
<h4>Document Editor</h4>
<ul>
<li>Completely new mode for creating, filling and sharing forms</li>
<li>Dark Mode (dark canvas background and other interface changes)</li>
<li>New settings to change review mode <code>Track Changes Display</code></li>
<li>Ability to select local file for <code>Mail Merge</code></li>
<li>New setting for AutoFormat as you type -> hyperlinks and network paths</li>
</ul>
<h4>Spreadsheet Editor</h4>
<ul>
<li>Version History</li>
<li>Ability to protect spreadsheet files and separate sheets</li>
<li>Ability to show other users cursor in co-edit mode</li>
<li>Ability to separate sheets and status bar</li>
<li><code>pt-br</code> formulas description and translation</li>
<li>Do not loose Query Table data</li>
<li>Copy sheet with drag-n-drop with holding ctrl</li>
</ul>
<h4>Presentation Editor</h4>
<ul>
<li>Ability to display animations</li>
<li>Slide animation settings moved to top Tab</li>
<li>Ability to save presentation to JPG and PNG</li>
</ul>
<h2>Fixes</h2>
<ul>
<li>All editors received countless fixes</li>
</ul>

View File

@ -1,37 +0,0 @@
<h2>Новые функции</h2>
<ul>
<li>Добавлены настройки подключения провайдера Liferay</li>
<li>Добавлены настройки подключения провайдера kDrive</li>
<li>Добавлена возможность запуска редактора в отдельном окне</li>
<li>Новые языки интерфейса (белорусский, болгарский, каталонский, датский, голландский, финский, греческий, венгерский, индонезийский, японский, корейский, латышский, норвежский, румынский, словенский, шведский, турецкий, украинский, вьетнамский, лаосский)</li>
<li>Поддержка масштаба интерфейса 125% и 175% (Windows, Linux)</li>
<li>Возможность настройки режима запуска редактора</li>
</ul>
<h4>Редактор документов</h4>
<ul>
<li>Абсолютно новый режим создания, заполнения форм и предоставления доступа к ним</li>
<li>Темный режим (темный фон канвы и другие изменения интерфейса)</li>
<li>Новые настройки для изменения режима <code>отображения рецензий</code></li>
<li>Возможность выбрать локальный файл для <code>Слияния</code></li>
<li>Новая настройка для Автоформата при вводе -> Адреса в Интернете и сетевые пути гиперссылками</li>
</ul>
<h4>Редактор таблиц</h4>
<ul>
<li>История версий</li>
<li>Возможность защиты файлов электронных таблиц и отдельных листов</li>
<li>Возможность показывать курсоры других пользователей в режиме совместного редактирования</li>
<li>Возможность разделять панель листов и строку состояния</li>
<li>Описания и переводы формул для бразильского варианта португальского языка (<code>pt-br</code>)</li>
<li>Исправление проблемы с потерей данных таблицы запросов</li>
<li>Копирование листа путем перетаскивания, удерживая клавишу ctrl</li>
</ul>
<h4>Редактор презентаций</h4>
<ul>
<li>Возможность отображения анимаций</li>
<li>Настройки анимации слайдов перенесены в верхнюю вкладку</li>
<li>Возможность сохранения презентации в форматы JPG и PNG</li>
</ul>
<h2>Исправления</h2>
<ul>
<li>Многочисленные исправления всех компонентов</li>
</ul>

View File

@ -1,32 +0,0 @@
<h2>New Features</h2>
<h4>All Editors</h4>
<ul>
<li>Spelling language detection</li>
</ul>
<h4>Spreadsheet Editor</h4>
<ul>
<li>French (Switzerland) regional setting (Bug #53978)</li>
</ul>
<h2>Fixes</h2>
<h4>Document Editor</h4>
<ul>
<li>Fix changes in text position (Bug #54485)</li>
<li>Fix JS error while changing font in some files (Bug #55280)</li>
<li>Fix the problem with calculating the position of flow objects lying in a table cell (Bug #51933)</li>
<li>Fix the problem with calculating the position of a drawing object in the header (Bug #55398)</li>
<li>Fix the problem with calculating header/footer. Forbid to change the page number of a header when calculation in progress (Bug #55403)</li>
<li>Fix the problem with calculating the position of a drawing lying in a table cell with vertical alignment to the bottom or center (Bug #55406)</li>
<li>Fix the problem with calculating page count stage (Bug #55458)</li>
<li>Fix the problem with text position calculation for rotated table cells (Bug #54200)</li>
<li>Fix Shift + '(' shortcut (Bug #55356)</li>
</ul>
<h4>Spreadsheet Editor</h4>
<ul>
<li>Fix opening protected workbook in Excel (Bug #55027)</li>
<li>Fix JS error while Find and Replace empty cell (Bug #54999)</li>
<li>Fix compatibility of some files with Excel (Bug #54956)</li>
</ul>
<h4>Presentation Editor</h4>
<ul>
<li>Fix shape position in slideshow mode (Bug #55068)</li>
</ul>

View File

@ -1,32 +0,0 @@
<h2>Новые функции</h2>
<h4>Все редакторы</h4>
<ul>
<li>Распознавания языка проверки правописания</li>
</ul>
<h4>Редактор таблиц</h4>
<ul>
<li>Français (Suisse) региональные настройки (Bug #53978)</li>
</ul>
<h2>Исправления</h2>
<h4>Редактор документов</h4>
<ul>
<li>Исправление изменений в позиции текста (Bug #54485)</li>
<li>Исправление JS ошибки при изменении шрифта в некоторых документах (Bug #55280)</li>
<li>Исправление ошибки вычисления позиции объекта в ячейке таблицы(Bug #51933)</li>
<li>Исправление ошибки вычисления позиции объекта, лежащего в колонтитуле (Bug #55398)</li>
<li>Исправление ошибки вычисления позиции колонтитулов. Запрещено изменять номер страницы в заголовке во время подсчета (Bug #55403)</li>
<li>Исправление ошибки вычисления позиции изображения в таблице, имеющей вертикальное выравнивание "по середине" и "по нижнему краю" (Bug #55406)</li>
<li>Исправление функции подсчета количества страниц (Bug #55458)</li>
<li>Исправление ошибки вычисления позиции текста в ячейке, имеющей поворот (Bug #54200)</li>
<li>Исправление горячих клавиш Shift + '(' (Bug #55356)</li>
</ul>
<h4>Редактор таблиц</h4>
<ul>
<li>Исправление открытия защищенной книги в Excel (Bug #55027)</li>
<li>Исправление JS ошибки при замене пустой ячейки с помощью "Поиск и Замена" (Bug #54999)</li>
<li>Исправление совместимости некоторых файлов с Excel (Bug #54956)</li>
</ul>
<h4>Редактор презентаций</h4>
<ul>
<li>Исправление позиции фигуры в режиме слайдшоу (Bug #55068)</li>
</ul>

View File

@ -1,51 +0,0 @@
<h2>New Features</h2>
<ul>
<li>Use system scaling option for screen on Windows 10 and later</li>
<li>New menu for inserting shapes (with list of recent used)</li>
<li>Ability to edit points of a selected shapes</li>
<li>Ability to open new diagram types: Pyramid, Bar (Pyramid), vertical and horizontal cylinders, vertical and horizontal cones</li>
<li>Ability to crop a selected image to shape</li>
<li>Ability to see your file protection password when entering it</li>
<li>Support for SmartArt objects without converting into a group of objects</li>
<li>New interface languages: Galego/Galician</li>
<li>Gradient fill icon shows the chosen colors</li>
</ul>
<h4>Document Editor</h4>
<ul>
<li>Ability to convert PDF/XPS files into editable files</li>
<li>New toolbar tab: View</li>
<li>Ability to accept/reject changes from the context menu</li>
<li>Ability to use special symbols when searching within documents</li>
<li>Ability to add a period with a double-space</li>
<li>Add Chinese/Japanese/Italian language to Watermark settings</li>
<li>New viewer for PDF, XPS, DJVU files with major performance improvements All operations are performed on the client side</li>
<li>Ability to use the Page Thumbnails panel and to display the document's contents on the left sidebar for PDF files</li>
<li>Support for external and internal links in PDF opening</li>
<li>Ability to use Hand/Select tools in PDF viewer</li>
<li>The Document Info section of the Data tab contains information about PDF, XPS, DJVU files</li>
</ul>
<h4>Spreadsheet Editor</h4>
<ul>
<li>Using a built-in preview panel before printing out a spreadsheet</li>
<li>New view settings: Combine sheet and status bars, Always show toolbar, Interface theme, Show frozen panes shadow</li>
<li>New currencies as per ISO 4217 without needing to change the locale</li>
<li>Using tips when working with formulas for tables</li>
<li>Ability to set a text qualifier when importing text from TXT/CSV</li>
<li>Support for XLSB files for opening</li>
</ul>
<h4>Presentation Editor</h4>
<ul>
<li>New toolbar tabs: Animation, View</li>
<li>Animations can be added to the presentation</li>
<li>Ability to duplicate slides using the Add slide menu</li>
<li>Ability to move a slide to beginning/end using a slide context menu</li>
<li>Ability to add a period with double-space</li>
</ul>
<h4>Forms</h4>
<ul>
<li>Ability to zoom a form</li>
</ul>
<h2>Fixes</h2>
<ul>
<li>All editors received countless fixes</li>
</ul>

View File

@ -1,52 +0,0 @@
<h2>Новые функции</h2>
<ul>
<li>Используются системные настройки масштабирования для монитора на Windows 10 и выше</li>
<li>Новое меню для вставки или изменения автофигур</li>
<li>Новый раздел с последними использованными автофигурами на вкладке Вставка</li>
<li>Возможность изменять точки выбранной автофигуры</li>
<li>Поддержка новых типов диаграмм: вертикальные и горизонтальные пирамиды, вертикальные и горизонтальные цилиндры, вертикальные и горизонтальные конусы</li>
<li>Возможность обрезки изображения по фигуре</li>
<li>Возможность просмотра пароля при вводе</li>
<li>Поддержка объектов SmartArt при открытии без конвертации в группу фигур</li>
<li>Новый язык интерфейса Galego</li>
<li>Миниатюры градиентной заливки генерируются в зависимости от выбранных цветов</li>
</ul>
<h4>Редактор документов</h4>
<ul>
<li>Возможность конвертации PDF и XPS файлов в редактируемые форматы</li>
<li>Новая вкладка Просмотр</li>
<li>Возможность принимать или отклонять рецензирование из контекстного меню</li>
<li>Возможность использовать спецсимволы для поиска</li>
<li>Возможность автозамены двойного пробела точкой</li>
<li>Китайский, японский, итальянский языки в настойках watermark</li>
<li>Новый просмотрщик PDF, XPS, DJVU файлов с многочисленными улучшениями</li>
<li>Возможность просмотра миниатюр и навигации по содержанию для режима просмотра PDF</li>
<li>Поддержка внешних и внутренних ссылок при открытии PDF</li>
<li>Возможность использования обычного курсора или курсора-руки при просмотре PDF</li>
<li>Расширенная информация в Сведениях о документе при открытии PDF, XPS, DJVU файлов</li>
</ul>
<h4>Редактор таблиц</h4>
<ul>
<li>Панель предварительного просмотра перед печатью</li>
<li>Новые настройки на вкладке Просмотр: объединение строки листов и состояния, Всегда отображать панель инструментов, Тема интерфейса, Показывать тень для закрепленных областей</li>
<li>Расширен список валют для денежного формата ячеек в соответствии с ISO 4217 без необходимости изменения локализации</li>
<li>Подсказки в формулах для форматированных таблиц</li>
<li>Возможность выбора разделителя при импорте TXT или CSV</li>
<li>Добавлено открытие файлов формата XLSB</li>
</ul>
<h4>Редактор презентаций</h4>
<ul>
<li>Добавлены вкладки Анимация и Просмотр</li>
<li>Возможность добавления анимации в презентацию</li>
<li>Возможность дублирования слайда из меню Добавить слайд</li>
<li>Возможность переместить слайд в начало или конец презентации, используя контекстное меню</li>
<li>Возможность автозамены двойного пробела точкой</li>
</ul>
<h4>Формы</h4>
<ul>
<li>Возможность изменения масштаба документа в режиме заполнения форм</li>
</ul>
<h2>Исправления</h2>
<ul>
<li>Многочисленные исправления всех компонентов</li>
</ul>

View File

@ -1,30 +0,0 @@
<h2>Fixes</h2>
<h4>All Editors</h4>
<ul>
<li>Fix rendering list of fonts if there is a lot of fonts (Bug #46495)</li>
<li>Fix rendering of some Chinese fonts (Bug #48564)</li>
<li>Update help entries</li>
</ul>
<h4>Document Editor</h4>
<ul>
<li>Fix lost text box in <code>Header</code> (Bug #56940)</li>
<li>Fix incorrect table width for some doc file (Bug #56901)</li>
<li>Fix convert of some docx files (Bug #57068, Bug #57177)</li>
<li>Fix color of SmartArt figures in <code>docx</code> -> <code>odt</code> convert (Bug #57104)</li>
<li>Fix page count in specific doc file (Bug #57334)</li>
<li>Fix insert page with merge cells and drag'n'drop (Bug #57305)</li>
<li>Fix zoom while touch-pad scrolling (Bug #56029)</li>
<li>Hide <code>"Create new"</code> for offline pdf/djvu/xps files</li>
</ul>
<h4>Spreadsheet Editor</h4>
<ul>
<li>Fix all sheets display while saving as <code>pdf</code> (Bug #49163)</li>
<li>Fix zoom change with touch-pad on <code>MacOS</code> (Bug #57249)</li>
</ul>
<h4>Presentation Editor</h4>
<ul>
<li>Fix re-save of some pptx files (Bug #57070)</li>
<li>Fix test align for some <code>odp</code> files (Bug #57214)</li>
<li>Fix saving SmartArt in groups (Bug #57112)</li>
<li>Fix crash on drawing animation labels by shape track</li>
</ul>

View File

@ -1,30 +0,0 @@
<h2>Исправления</h2>
<h4>Все редакторы</h4>
<ul>
<li>Исправлена отрисовка в списке шрифтов при большом количестве шрифтов (Bug #46495)</li>
<li>Исправлена отрисовка китайских шрифтов (Bug #48564)</li>
<li>Обновлены разделы справки</li>
</ul>
<h4>Редактор документов</h4>
<ul>
<li>Исправлено отображение текстового поля в колонтитуле (Bug #56940)</li>
<li>Исправлено некорректное отображение таблицы для определенных doc файлов (Bug #56901)</li>
<li>Исправлена конвертация некоторых docx файлов (Bug #57068, Bug #57177)</li>
<li>Исправлен цвет SmartArt автофигур при конвертации <code>docx</code> -> <code>odt</code> (Bug #57104)</li>
<li>Исправлено определение количества страниц для определенных doc файлов (Bug #57334)</li>
<li>Исправлена вставка страницы с объединенной ячейкой через drag'n'drop (Bug #57305)</li>
<li>Исправлено масштабирование во время прокрутки документа через сенсорную панель (Bug #56029)</li>
<li>Убрали опцию <code>"Создать новый..."</code> для оффлайн pdf/djvu/xps файлов</li>
</ul>
<h4>Редактор таблиц</h4>
<ul>
<li>Исправлено отображение листов в процессе сохранения в формат <code>pdf</code> (Bug #49163)</li>
<li>Исправлено изменение масштаба с помощью сенсорной панели на <code>MacOS</code> (Bug #57249)</li>
</ul>
<h4>Редактор презентаций</h4>
<ul>
<li>Исправлено повторное сохранение определенных pptx файлов (Bug #57070)</li>
<li>Исправлено выравнивание текста в определенных <code>odp</code> файлах (Bug #57214)</li>
<li>Исправлено сохранение <code>SmartArt</code> в группах (Bug #57112)</li>
<li>Исправлено падение при отрисовке надписей анимации во время перемещения фигуры</li>
</ul>

View File

@ -1,58 +0,0 @@
<h2>New Features</h2>
<ul>
<li>Show warning on macros execution if connection to another host. Fix CVE-2021-43446</li>
<li>Vector printing if the page does not contain gradient fills</li>
<li>Removed the restriction on the minimum window size</li>
<li>Top toolbar optimizations for smaller screens</li>
<li>Added the ability to choose <code>"Contrast Dark"</code> or <code>"System default"</code> interface theme </li>
<li>Redone of icons in header line</li>
<li>Redone of settings page in the editors</li>
<li>New interface languages - <code>"Portuguese (Portugal)"</code> and <code>"Armenian"</code></li>
<li>Improved color selection component</li>
<li>The ability to disable the alternative menu in the editors</li>
<li>Completely redesigned search inside the document</li>
<li>New hotkeys for <code>"Special Paste"</code></li>
<li>Added <code>"Cut"</code> and <code>"Select All"</code> buttons to the toolbar next to Copy/Paste</li>
<li>Major improvements in Font engine (For languages like Bengali or Sinhala) (only in Document Editor and Presentation Editor)</li>
<li>Ligatures support</li>
<li>Ability to insert tables as OLE object</li>
<li>Support for images as a bulleted list and the ability to work with them</li>
<li>Major improvements in <code>"EMF"</code> and <code>"WMF"</code> files rendering</li>
</ul>
<h4>Document Editor</h4>
<ul>
<li>Ability to remove Header/Footer from toolbar</li>
<li>Ability to insert current heading in TOC</li>
<li>New warning if there is no TOC in document</li>
<li>Navigation panel renamed to <code>"Headings"</code></li>
<li>Major improvements in <code>"pdf"</code>, <code>"djvu"</code>, <code>"xps"</code> convert to <code>"docx"</code></li>
<li>Correct display greek letters as numbered list items</li>
</ul>
<h4>Spreadsheet Editor</h4>
<ul>
<li>Ability to "Switch rows and columns" for Chart</li>
<li>New <code>"Italiano (Svizzera)"</code> language for regional settings</li>
<li>Row number highlight for filter</li>
<li>Remove "First sheet" and "Last sheet" from bottom toolbar</li>
<li>Selection of copied range</li>
<li>Pivot table option - <code>"Auto-fit column widths on update"</code></li>
<li>1904 date system support</li>
</ul>
<h4>Presentation Editor</h4>
<ul>
<li>Animation with Custom path</li>
<li>New advanced settings <code>"Placement"</code> tab for graphic images</li>
<li>Added VLC libs so codecs are not required for video and audio playback</li>
</ul>
<h4>Forms</h4>
<ul>
<li>Search in embedded and forms mode</li>
<li>Change field width for "Comb of characters"-enabled field</li>
<li>Ability to set tag for field</li>
<li>New <code>"Format"</code> and <code>"Allowed Symbols"</code> settings for field</li>
<li>New field types - <code>"Phone number"</code>, <code>"Email Address"</code> and <code>"Complex Field"</code></li>
</ul>
<h2>Fixes</h2>
<ul>
<li>All editors received countless fixes</li>
</ul>

View File

@ -1,58 +0,0 @@
<h2>Новые функции</h2>
<ul>
<li>Предупреждение с запросом разрешения пользователя при выполнении запросов из макросов (исправление CVE-2021-43446)</li>
<li>Векторная печать текста, если на странице нет градиентных заливок</li>
<li>Убран минимальный размер окна</li>
<li>Уменьшение кнопок на тулбаре за счет переноса текста</li>
<li><code>"Темная контрастная"</code> и <code>"Системная"</code> темы интерфейса</li>
<li>Обновлено поведение иконок на тулбаре</li>
<li>Обновленная страница "Дополнительные параметры"</li>
<li>Новые языки интерфейса - <code>"Армянский"</code> и <code>"Португальский (Португалия)"</code></li>
<li>Изменен компонент для выбора цвета</li>
<li>Возможность отключения вызова альтернативного меню в редакторах</li>
<li>Полностью изменен дизайн окна поиска в редакторах</li>
<li>Горячие клавиши для "Специальной вставки"</li>
<li>Добавлены кнопки <code>"Вырезать"</code> и <code>"Выделить все"</code> на главном тулбаре рядом с "Копировать" и "Вставить"</li>
<li>Значительно улучшена работа с текстом и шрифтами и добавлена поддержка таких языков как Бенгали и Сингальский (только в редакторе документов и презентаций)</li>
<li>Добавлена настройка лигатур</li>
<li>Возможность вставки электронных таблиц в виде OLE-объектов</li>
<li>Возможность выбора изображения в качестве маркера для списка</li>
<li>Значительно улучшено отображение <code>"EMF"</code> и <code>"WMF"</code> файлов</li>
</ul>
<h4>Редактор документов</h4>
<ul>
<li>Удаление колонтитулов из тулбара</li>
<li>Кнопка включения текущего заголовка в оглавление</li>
<li>Предупреждение при обновлении таблицы оглавления, если в документе его нет</li>
<li>Панель навигации переименована в <code>"Заголовки"</code></li>
<li>Значительное улучшение конвертации <code>"PDF"</code>, <code>"DjVu"</code> и <code>"XPS"</code> в <code>"DOCX"</code></li>
<li>Греческие символы в нумерованных списках на открытие</li>
</ul>
<h4>Редактор таблиц</h4>
<ul>
<li>Возможность "Переключить строку/столбец" в настройках диаграммы</li>
<li>В региональные настройки добавлен язык <code>"Italiano (Svizzera)"</code></li>
<li>Подсветка номеров строк при фильтрации данных</li>
<li>Убраны кнопки "Первый лист" и "Последний лист" из статус бара</li>
<li>Выделение скопированного диапазона</li>
<li>Настройка для отключения "Автоматически изменять ширину столбцов при обновлении"</li>
<li>Настройка системы дат 1904</li>
</ul>
<h4>Редактор презентаций</h4>
<ul>
<li>Добавлена анимация движения "Пользовательский путь"</li>
<li>Новая вкладка <code>"Положение"</code> для графических объектов</li>
<li>Библиотеки VLC для воспроизведения видео и аудио</li>
</ul>
<h4>Формы</h4>
<ul>
<li>Добавлено окно для поиска</li>
<li>Настройка ширины ячейки для форм с включенной опцией "Комбинировать символы"</li>
<li>Добавлена настройка <code>Тег</code> для полей</li>
<li>Новые настройки <code>"Формат"</code> и <code>"Допустимые символы"</code> для полей</li>
<li>Новые поля для ввода <code>"Номер телефона"</code>, <code>"Адрес Email"</code> и <code>"Составное поле"</code></li>
</ul>
<h2>Исправления</h2>
<ul>
<li>Многочисленные исправления всех компонентов</li>
</ul>

View File

@ -1,74 +0,0 @@
<h2>New Features</h2>
<ul>
<li>Add support for the <code>'REGISTER_NONE'</code> and <code>'REGISTER_<file type>'</code> parameters to set associations during silent installation of msi package (Windows only).</li>
</ul>
<h2>Fixes</h2>
<ul>
<li>Major improvements in the fonts render engine. Removal of <code>`Alternative input`</code> settings</li>
<li>Fix opening the <code>"Open Files"</code> window (Bug #33107)</li>
<li>Fix image loss when printing a file on Linux (Bug #59266)</li>
<li>Fix image cropping when printing a file (Bug #59263)</li>
<li>Fix the application crash when printing the <code>PPTX</code> file (Bug # 59354)</li>
<li>Fix the application crash when printing the <code>PDF</code> file which contains a raster image (Bug #59161)</li>
<li>Fix printing images in the <code>OXPS</code> files (Bug #59226)</li>
<li>Fix printing 3D charts (Bug #59187)</li>
<li>Fix printing the current page of the <code>XLSX</code> file (Bug #59208)</li>
<li>Fix proportions when printing on a sheet which does not coincide with the original format (Bug #59223)</li>
<li>Fix simultaneous opening of several application windows by shortcut (Bug # 36633)</li>
<li>Fix updating data about the VCRedist 2013 package installation (Bug #58771)</li>
<li>Fix switching to the correct tab when opening a file with Drag'n'Drop (Bug #59024)</li>
<li>Fix image rotation when printing a file (Bug #59258)</li>
<li>Fix closing a document which are opened in separate window using the context menu (Bug #58347)</li>
<li>Fix choosing a certificate when signing a document on Linux (Bug #59116)</li>
<li>Bring the Contrast Dark theme name to a single view in the application settings (Bug #58753)</li>
<li>Fix the problem with the window focus when clicking on the document area (Bug #56672)</li>
<li>Change the name of the system theme in the application settings from System default to Same as system (Bug #59010)</li>
</ul>
<h4>Document Editor</h4>
<ul>
<li>Fix numbering in <code>Portuguese</code> or <code>Basque</code> language (Bug #59091)</li>
<li>Fix the problem with review types when splitting a paragraph (Bug #58512)</li>
<li>Fix the problem with the special paste button (Bug #59149)</li>
<li>Fix crash on opening docx (Bug #59212)</li>
<li>Fix the problem with reading the <code>`rPrChange`</code> property and review such files (Bug #59205)</li>
<li>Fix scrolling in the co-edit view mode (Bug #57928)</li>
<li>Fix the problem with performing the global undo (Bug #59270)</li>
<li>Fix the problem with setting the bold property for text in the complex script (Bug #59289)</li>
<li>Fix the special paste position (Bug #59139)</li>
<li>Fix saving a document in the <code>Final / Original</code> modes (Bug #59347)</li>
<li>Fix the problem with updating content of a Ref field (Bug #58606, Bug #59278)</li>
</ul>
<h4>Spreadsheet Editor</h4>
<ul>
<li>Fix hangup on opening the xlsx file (Bug #58112)</li>
<li>Fix special paste via hotkeys (Bug #59148)</li>
</ul>
<h4>Presentation Editor</h4>
<ul>
<li>Fix animations problems (Bug #59301)</li>
<li>Fix opening the <code>pptx</code> file (Bug #59308)</li>
</ul>
<h4>PDF Viewer</h4>
<ul>
<li>Fix search highlight (Bug #59069)</li>
<li>Fix tooltip language for preview (Bug #59087)</li>
</ul>
<h4>Forms</h4>
<ul>
<li>Implement saving text field formats to <code>PDF</code> (Bug #58901)</li>
<li>Add a default form key when creating new forms</li>
<li>Fix image track display (Bug #59120)</li>
<li>Fix the problem with highlight of a fixed form (Bug #59105)</li>
<li>Fix duplicating fixed forms when saving to PDF</li>
<li>Fix saving a form field format (Bug #58901)</li>
<li>Fix the problem with converting a complex field to a fixed form (Bug #59262)</li>
<li>Fix field detection in selection (Bug #59278)</li>
<li>Fix the problem with entering text to a form (Bug #59290)</li>
<li>Fix the context menu for some forms files (Bug #59278)</li>
<li>Fix the problem with working with complex fields and simple fields (Bug #59345)</li>
<li>Fix keys list problems (Bug #59377)</li>
<li>Fix the problem with canceling filling in the form on form blur (Bug #59373)</li>
<li>Fix the problem with a key of complex forms (Bug #59374)</li>
<li>Fix the complex form filling problem for forms with the same key (Bug #59375)</li>
<li>Fix the problem with printing form borders filled with placeholders (Bug #59378)</li>
</ul>

View File

@ -1,64 +0,0 @@
<h2>Новые функции</h2>
<ul>
<li>Добавлена поддержка опций <code>'REGISTER_NONE'</code> и <code>'REGISTER_<тип_файла>'</code> для установки ассоциаций в режиме тихой установки msi на Windows.</li>
</ul>
<h2>Исправления</h2>
<ul>
<li>Значительные улучшения отрисовщика шрифтов. Убрана настройка альтернативного ввода <code>'Иероглифы'</code></li>
<li>Исправлен вызов окна <code>«Открыть Файл»</code> (Bug #33107)</li>
<li>Исправлена потеря изображений при печати Linux системах(Bug #59266)</li>
<li>Исправлена обрезка изображений при печати (Bug #59263)</li>
<li>Исправлено падение приложения при печати <code>PPTX</code> файла (Bug #59354)</li>
<li>Исправлено падение приложения при печати <code>PDF</code> файлов, содержащих растровые изображения (Bug #59161)</li>
<li>Исправлена печать изображений в <code>OXPS</code> файлах (Bug #59226)</li>
<li>Исправлена печать 3D диаграмм (Bug #59187)</li>
<li>Исправлена печать текущего листа в <code>XLSX</code> файлах (Bug #59208)</li>
<li>Исправлено непропорциональное растяжение листа <code>XLSX</code> файла при печати, если исходный формат отличается от формата принтера (Bug #59223)</li>
<li>Исправлено одновременное открытие нескольких главных окон приложения (Bug #36633)</li>
<li>Исправлено обновление данных о пакете VCRedist 2013 без его установки (Bug #58771) </li>
<li>Исправлено переключение приложения на документ, если он открыт переносом (Bug #59024) </li>
<li>Исправлено масштабирование и поворот изображения при печати (Bug #59258)</li>
<li>Исправлено закрытие отдельного окна приложения через контекстное меню панели задач (Bug #58347)</li>
<li>Исправлен вызов окна выбора сертификата при подписании документа, если он открыт в отдельном окне для Linux систем(Bug #59116)</li>
<li>Исправлена проблема с переключением фокуса после клика в документ в отдельном окне (Bug #56672)</li>
<li>Название системной темы в окне приложения и редакторах приведено к общему виду (Bug #59010) </li>
</ul>
<h4>Редактор документов</h4>
<ul>
<li>Исправлены проблемы с нумерацией на <code>португальском</code> или <code>баскском</code> языках (Bug #59091)</li>
<li>Исправлена проблема определения рецензирования при разрыве параграфа в процессе ввода текста (Bug #58512)</li>
<li>Исправлена проблема с отображением кнопки специальной вставки (Bug #59149)</li>
<li>Исправлено падение при открытии определенного <code>DOCX</code> (Bug #59212)</li>
<li>Исправлено чтение свойства `rPrChange` при открытии <code>DOCX</code> файлов (Bug #59205)</li>
<li>Исправлена прокрутка страницы в совместном редактировании и режиме просмотра с изменениями в реальном времени (Bug #57928)</li>
<li>Исправлены проблемы при выполнении общей отмены действий в режиме просмотра с изменениями в реальном времени (Bug #59270)</li>
<li>Исправлено применений свойства жирности для текста, введенного композитным вводом (Bug #59289) </li>
<li>Исправлена проблема с позицией кнопки специальной вставки (Bug #59139)</li>
<li>Исправлено сохранение документа в режимах <code>Измененный документ</code> / <code>Исходный документ</code> (Bug #59347) </li>
<li>Исправлена проблема с определением полей заголовков (Bug #59278, Bug #58606)</li>
</ul>
<h4>Редактор таблиц</h4>
<ul>
<li>Исправлено зависание приложения при открытии определенного <code>XLSX</code> файла (Bug #58112)</li>
<li>Исправлена работа горячих клавиш специальной вставки (Bug #59148)</li>
</ul>
<h4>Редактор презентаций</h4>
<ul>
<li>Исправлено применение анимации к объектам (Bug #59301)</li>
<li>Исправлено открытие определенного <code>PPTX</code> файла (Bug #59308)</li>
</ul>
<h4>Формы</h4>
<ul>
<li>Реализовано сохранение формата текстовых полей в <code>PDF</code> (Bug #58901)</li>
<li>Добавлен ключ по умолчанию при создании новой формы</li>
<li>Исправлено отображение трека поля изображение (Bug #59120)</li>
<li>Исправлена проблема с заливкой поля фиксированного размера (Bug #59105)</li>
<li>Исправлено дублирование полей при сохранении формы в <code>PDF</code></li>
<li>Исправлено заполнение составного поля фиксированного размера (Bug #59262)</li>
<li>Исправлена проблема при удалении композитного ввода в поле формы (Bug #59290)</li>
<li>Исправлены проблемы смешивания ключей полей разных типов (Bug #59377)</li>
<li>Исправлены проблемы при заполнении поля и ее отмены (Bug #59373)</li>
<li>Исправлено одновременное заполнение полей с различными ключами (Bug #59374)</li>
<li>Исправлено определение типов полей с различными ключами при их заполнении (Bug #59375)</li>
<li>Исправлена некорректная печать пустых составных полей (Bug #59378)</li>
</ul>

View File

@ -1,69 +0,0 @@
<h2>New Features</h2>
<ul>
<li>Unified appearance for tooltips (Windows, Linux)</li>
<li>Window shadow effect (Windows only)</li>
<li>Jump List (Tasks) for the application shortcut in the start menu and taskbar (Windows 7 and later)</li>
<li>Abandoning the third-party update window and reworking the Check for updates automatically option (Windows 7 and later)</li>
<li>Dialog windows (file manager and print) are replaced with the system ones (Linux only)</li>
<li>Support for xdg-desktop-portal in the file dialog window (Linux only)</li>
<li>Use the file name when printing to PDF by default (Linux only)</li>
<li>Equation quick access panel</li>
<li>3D Rotation settings for 3D charts</li>
<li>Display of chart error bars (for opening only)</li>
<li>Inserting Smart Art objects</li>
<li>Uzbek dictionaries for spell checking: `Uzbek (Cyrillic)` and `Uzbek (Latin)`</li>
<li>Presets for inserting horizontal and vertical text boxes</li>
<li>Ability to hide left and right panel on the `View` tab of the top toolbar</li>
<li>Width of the styles / themes panel now fits the whole number of items</li>
<li>Grouping for table templates</li>
<li>Cell styles in the OLE object editor</li>
<li>Ability to resize dialog windows for editing charts, OLE objects, and mail merge recipients</li>
<li>Unified appearance for dialog windows, context menus, toolbar, etc.</li>
<li>Optimizing display of comments</li>
<li>Changed metafiles conversion to SVG</li>
<li>Reading and writing PDF are combined in a single library to optimize work</li>
<li>Quick print function (Windows, Linux)</li>
<li>Changed default logic of work with local documents locked for editing (Windows, Linux)</li>
</ul>
<h4>Document Editor</h4>
<ul>
<li>Support for entering equations in two modes (Unicode and LaTeX)</li>
<li>Ability to protect a document by setting a restriction on editing</li>
<li>Button for accessing to statistics in the status bar</li>
<li>Support of relative links to local files</li>
</ul>
<h4>Spreadsheet Editor</h4>
<ul>
<li>Watch Window</li>
<li>Ability to select multiple items using Ctrl/Shift in the Watch Window</li>
<li>Support for new functions: `TEXTBEFORE`, `TEXTAFTER`, `TEXTSPLIT`, `VSTACK`, `HSTACK`, `TOROW`, `TOCOL`, `WRAPROWS`, `WRAPCOLS`, `TAKE`, `DROP`, `CHOOSEROWS`, `CHOOSECOLS`</li>
<li>Support for updating links to external files and the ability to create these links</li>
<li>Ability to add a link between files within the portal using Paste Special</li>
<li>Ability to insert data from the XML file (XML Spreadsheet 2003 is supported)</li>
<li>Changed preview size for cell styles</li>
<li>Support of relative links to local files</li>
</ul>
<h4>Presentation Editor</h4>
<ul>
<li>Support for entering equations in two modes (Unicode and LaTeX)</li>
<li>Guides and Gridlines settings in the `View` tab and the context menu</li>
<li>Tooltips when moving guides and the ability to remove the selected guide</li>
<li>Paste Special parameters for a slide</li>
<li>Ability to save a shape (graphic object) as a picture in the context menu</li>
</ul>
<h4>Forms</h4>
<ul>
<li>New fields: `Date and time`, `Zip Code`, `Credit Card`</li>
<li>Managing roles: adding, editing, removing roles, assigning them to fields</li>
<li>Ability to preview the `DOCXF` file from the point of view of each created role</li>
</ul>
<h2>Fixes</h2>
<ul>
<li>Fix the XSS vulnerability when creating a new style</li>
<li>Changed the Signature Setup window</li>
<li>New captions to fields</li>
<li>Show sign date option is enabled by default when adding a signature</li>
<li>Tip in the Instructions for signer field</li>
<li>Fixed application path when installing MSI in non-English locales (DesktopEditors#1157)</li>
<li>All editors received countless fixes</li>
</ul>

View File

@ -1,69 +0,0 @@
<h2>Новые функции</h2>
<ul>
<li>Всплывающие подсказки приведены к одному виду (Windows, Linux)</li>
<li>Добавлен эффект тени окна (Windows)</li>
<li>Добавлены Задачи для ярлыка приложения в меню Пуск и Панели задач (Windows 7 и выше)</li>
<li>Изменена опция «Проверять наличие обновлений автоматически» в настройках приложения (Windows 7 и выше)</li>
<li>Замена диалоговых окон (файлового менеджера и печати) приложения на системные (Linux)</li>
<li>Добавлена поддержка xdg-desktop-portal для файлового диалога (Linux)</li>
<li>При печати в PDF по умолчанию используется оригинальное имя файла (Linux)</li>
<li>Добавлена панель быстрого доступа к уравнениям</li>
<li>Добавлены настройки поворота для объемных диаграмм</li>
<li>Добавлено отображение планок погрешностей (только на открытие)</li>
<li>Добавлена возможность вставки SmartArt объектов</li>
<li>Добавлен узбекский словарь для проверки орфографии: «Uzbek (Cyrillic)» и «Uzbek (Latin)»</li>
<li>Добавлены шаблоны для вставки надписи</li>
<li>Во вкладку Вид верхней панели инструментов добавлены настройки скрытия правой и левой панелей</li>
<li>Ширина компонента со стилями и темами подстраивается под целое число элементов</li>
<li>Для шаблонов таблиц (во всех редакторах), сводных таблиц и стилей ячеек (в редакторе таблиц) добавлено разбиение по группам</li>
<li>В редактор OLE-объектов добавлены стили ячеек</li>
<li>Добавлена возможность изменять размеры окон диалогов редактирования диаграмм, OLE-объектов и получателей слияния</li>
<li>Реализован единый вид диалогов в редакторах, контекстных меню, тулбаре и т.п.</li>
<li>Оптимизировано отображения комментариев</li>
<li>Изменена конвертация метафайлов в SVG</li>
<li>Чтение и запись PDF объединено в одной библиотеке, для оптимизации работы</li>
<li>Добавлена функция быстрой печати (Windows, Linux)</li>
<li>Изменена логика работы по умолчанию с локальными документами, заблокированными для изменения (Windows, Linux)</li>
</ul>
<h4>Редактор документов</h4>
<ul>
<li>Добавлена поддержка набора формул в двух режимах Unicode и LaTeX</li>
<li>Добавлена возможность защитить документ, выставив ограничение на редактирование</li>
<li>В строку состояния добавлена кнопка для доступа к статистике документа</li>
<li>Добавлена поддержка относительных ссылок на локальные файлы</li>
</ul>
<h4>Редактор таблиц</h4>
<ul>
<li>Добавлено окно контрольного значения</li>
<li>В окне контрольного значения реализован множественный выбор элементов в списке (c Ctrl/Shift)</li>
<li>Добавлена поддержка новых функций: `TEXTBEFORE`, `TEXTAFTER`, `TEXTSPLIT`, `VSTACK`, `HSTACK`, `TOROW`, `TOCOL`, `WRAPROWS`, `WRAPCOLS`, `TAKE`, `DROP`, `CHOOSEROWS`, `CHOOSECOLS</li>
<li>Добавлена поддержка обновления ссылок на внешние файлы, а так же их создания</li>
<li>Добавлена возможность добавлять связь между файлами одного портала с помощью специальной вставки</li>
<li>Добавлена возможность вставки данных из XML файла (поддерживается XML Spreadsheet 2003)</li>
<li>Изменены размеры эскизов стилей ячеек</li>
<li>Добавлена поддержка относительных ссылок на локальные файлы</li>
</ul>
<h4>Редактор презентаций</h4>
<ul>
<li>Добавлена поддержка набора формул в двух режимах Unicode и LaTeX</li>
<li>Добавлены настройки направляющих и сетки на вкладку Вид и в контекстное меню слайда</li>
<li>Добавлены подсказки при перемещении направляющих и возможность удаления выбранной направляющей</li>
<li>Добавлены опции специальной вставки для слайда</li>
<li>В контекстное меню добавлена возможность сохранять фигуру (графический объект) как рисунок</li>
</ul>
<h4>Формы</h4>
<ul>
<li>Добавлены новые поля: «Дата и время», «Индекс», «Кредитная карта»</li>
<li>Добавлено управление ролями: добавление, редактирование, удаление и их назначение для полей</li>
<li>Возможность предварительного просмотра файла `DOCXF` с точки зрения каждой созданной роли</li>
</ul>
<h2>Исправления</h2>
<ul>
<li>Исправлена XSS уязвимость при добавлении нового стиля</li>
<li>Изменено окно Настройка подписи</li>
<li>Добавлены подписи к полям</li>
<li>При добавлении подписи по умолчанию устанавливается опция «Показывать дату подписи в строке подписи»</li>
<li>В поле «Инструкции для подписывающего» добавлена подсказка</li>
<li>Исправлен путь приложения при установке MSI для систем с языками отличными от английского (DesktopEditors#1157)</li>
<li>Многочисленные исправления всех компонентов</li>
</ul>

View File

@ -1,36 +0,0 @@
<h2>Fixes</h2>
<ul>
<li>Fix display of the editor window minimized in the <code>Maximize</code> mode (Bug 58402)</li>
<li>Fix moving the file placed in a separate window (for Linux) (Bug 45037)</li>
<li>Fix display of the application window when connecting the second monitor (Bug 60899)</li>
<li>Fix the year in the <code>About</code> section (for MacOS) (Bug 61421)</li>
<li>Fix the application vulnerability which allows to load a library from the home directory (for Linux) (Bug 60244)</li>
<li>Fix a new file name when creating in <code>Polish</code> interface language (Bug 60764)</li>
<li>Fix display of the <code>Help</code> contents (Bug 61144)</li>
<li>Fix an encrypted file name when saving, if it is specified in Cyrillic (Bug 61243)</li>
<li>Fix display of the <code>More</code> button when the application scaling is more than 100% (Bug 61219)</li>
<li>Fix crash of the editor when opening a document in a separate window (Bug 61262)</li>
<li>Fix display of the <code>Print to PDF</code> button in the Print preview window for German interface language (Bug 61510)</li>
</ul>
<h4>Spreadsheet Editor</h4>
<ul>
<li>Fix hangup of the editor when printing the <code>XLSX</code> file (Bug 61019)</li>
<li>Fix display of the Edit formatting rule window when the interface scaling is 125% and 175% (Bug 60952)</li>
<li>Fix printing a spreadsheet if the page size settings are specified (Bug 61214)</li>
<li>Fix changing the date format when saving the workbook to PDF (Bug 56499)</li>
<li>Fix saving data to the <code>PDF</code> format from the <code>XLSX</code> file (Bug 60334)</li>
</ul>
<h4>Presentation Editor</h4>
<ul>
<li>Fix crash when uploading a presentation to the Private Room (Bug 51001)</li>
<li>Fix display of the presentation themes in the Private Room with the Classic, Green leaf, Lines, Safari templates (Bug 61430)</li>
</ul>
<h4>PDF Viewer</h4>
<ul>
<li>Fix endless loading of the PDF file (Bug 60923)</li>
<li>Fix printing an empty sheet in the <code>PDF</code> files (Bug 61192)</li>
</ul>
<h4>Forms</h4>
<ul>
<li>Fix crash when opening the <code>OFORM</code> files (Bug 61142)</li>
</ul>

View File

@ -1,36 +0,0 @@
<h2>Исправления</h2>
<ul>
<li>Исправлено отображение окна редактора, свернутого в режиме <code>Maximize</code> (Bug 58402)</li>
<li>Исправлено перемещение файла, вынесенного в отдельное окно (для Linux) (Bug 45037)</li>
<li>Исправлено отображение окна приложения при подключении второго монитора (Bug 60899)</li>
<li>Исправлен год в разделе <code>«О программе»</code> (для MacOS) (Bug 61421)</li>
<li>Исправлена уязвимость приложения, позволяющая осуществить загрузку библиотеки из домашнего каталога (для Linux) (Bug 60244)</li>
<li>Исправлено имя нового файла при создании на польском языке интерфейса (Bug 60764)</li>
<li>Исправлено отображение содержимого в <code>Справке</code> (Bug 61144)</li>
<li>Исправлено имя зашифрованного файла при сохранении, если оно задано кириллицей, (Bug 61243)</li>
<li>Исправлено отображение кнопки <code>«Ещё»</code> при масштабе приложения более 100% (Bug 61219)</li>
<li>Исправлено падение редактора при открытии документа в отдельном окне (Bug 61262)</li>
<li>Исправлено отображение кнопки <code>«Печать в PDF»</code> в окне предварительного просмотра печати для немецкого языка интерфейса (Bug 61510)</li>
</ul>
<h4>Редактор таблиц</h4>
<ul>
<li>Исправлено зависание редактора при печати <code>XLSX</code> файла (Bug 61019)</li>
<li>Исправлено отображение окна <code>"Изменение правила форматирования"</code> при масштабе интерфейса 125% и 175% (Bug 60952)</li>
<li>Исправлена печать таблицы, если указаны настройки размера страницы (Bug 61214)</li>
<li>Исправлено изменение формата даты при сохранении книги в <code>PDF</code> (Bug 56499)</li>
<li>Исправлено сохранение данных в <code>PDF</code> формат XLSX файла (Bug 60334)</li>
</ul>
<h4>Редактор презентаций</h4>
<ul>
<li>Исправлено падение при загрузке презентации в приватную комнату (Bug 51001)</li>
<li>Исправлено отображение тем презентации приватной комнаты c шаблонами Classic, Green leaf, Lines, Safari (Bug 61430)</li>
</ul>
<h4>Формы</h4>
<ul>
<li>Исправлено падение при открытии <code>OFORM</code> файлов (Bug 61142)</li>
</ul>
<h4>PDF</h4>
<ul>
<li>Исправлена бесконечная загрузка <code>PDF</code> файла (Bug 60923)</li>
<li>Исправлена печать пустого листа в <code>PDF</code> файлах (Bug 61192)</li>
</ul>

View File

@ -1,122 +0,0 @@
<!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: #000000;
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 7.4.0<span class="releasedate"> - {{DATE}}</span></h1>
<h2>New Features</h2>
<h4>All Editors</h4>
<ul>
<li>The Templates section with online form search has been added to the main page</li>
<li>The application now uses system (native) dialog boxes</li>
<li>Added application update service for Windows systems</li>
<li>The pages in the File menu have been redesigned and correspond to a single style</li>
<li>The print preview window has added the ability to specify: page range, number of copies, printing on both sides and the Print to PDF button</li>
<li>The Draw tab has been added to the Editors toolbar</li>
<li>The Eyedropper tool and hints for color names have been added to the color selection menu</li>
<li>Added the ability to copy style between graphic objects</li>
<li>The Save as picture item has been added to the context menu of graphic objects</li>
<li>Added opacity settings for fill and borders of graphic objects; autoshapes, charts, images and others</li>
<li>Added support for Radar charts</li>
<li>Added formats for opening in Editors: MHTML, SXC, ET, ETT, SXI, DPS, DPT, SXW, STW, WPS, WPT</li>
<li>Column headers have been added in some dialog windows with lists</li>
<li>The number of results found has been added to the search box</li>
<li>Added regional settings for the Danish language da-DK (Dansk (Danmark))</li>
<li>Added help in Turkish</li>
<li>Added a new Plugin Manager</li>
</ul>
<h4>Document Editor</h4>
<ul>
<li>Added the ability to merge documents</li>
<li>The ability to change the width and spacing of each column independently has been added to the column settings window</li>
<li>Expanded the number of settings for numbered and multi-level lists</li>
<li>Added the Recently used section in the lists menu for the current document</li>
<li>Added the ability to apply the list from the List Options window</li>
<li>Added the ability to export a document as PNG/JPG images</li>
<li>Added a list of exceptions for autocorrect capital letters</li>
</ul>
<h4>Spreadsheet Editor</h4>
<ul>
<li>Add the support for new functions; SEQUENCE, XMATCH, EXPAND, FILTER, ARRAYTOTEXT, SORT</li>
<li>Added translation of formulas into Armenian</li>
<li>The ability to change the case of text has been added to the Home toolbar</li>
<li>Page Break Preview mode has been added to the View toolbar</li>
<li>In the Print range settings, the Current sheet option has been replaced with Active sheets</li>
<li>The ability to set First page number has been added to the print settings</li>
<li>Long/short date formats have been added to the drop-down list of cell formats</li>
<li>Items for working with pivot tables have been added to the context menu</li>
<li>The Protect sheet settings window now includes Allow edit ranges</li>
<li>Added the ability to export a spreadsheet as PNG/JPG images</li>
</ul>
<h4>Presentation Editor</h4>
<ul>
<li>Added a list of exceptions for autocorrect capital letters</li>
</ul>
<h4>Forms</h4>
<ul>
<li>The position of the forms with the Fixed size field option is now calculated from the beginning of the page</li>
<li>Fixed rendering of the frame at the active field for forms with the Fixed size field option</li>
<li>Ability to add a new form without leaving the current one</li>
<li>Filling in the view mode (the View Form button remains)</li>
<li>In Edit mode, the current shape has the same fill as all the others</li>
<li>It is forbidden to fill out forms inside a document sheet in Edit mode</li>
<li>Since it is forbidden to fill out forms in Edit mode, the default value setting (Default value) has been added to the right panel</li>
<li>Optimized the work of subforms inside complex forms</li>
</ul>
<h2>Fixes</h2>
<h4>All Editors</h4>
<ul>
<li>Same as system item has been removed from the application settings (Interface theme) for Linux systems</li>
</ul>
<div class="more"><a href="https://github.com/ONLYOFFICE/DesktopEditors/blob/master/CHANGELOG.md#740" target="_blank">and a little more...</a></div>
</div>
</body>
</html>

View File

@ -1,122 +0,0 @@
<!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: #000000;
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 7.4.0<span class="releasedate"> - {{DATE}}</span></h1>
<h2>Новые функции</h2>
<h4>Все редакторы</h4>
<ul>
<li>На главную страницу добавлен раздел Шаблоны с поиском форм онлайн</li>
<li>Приложение теперь использует системные диалоговые окна</li>
<li>Добавлен сервис обновления приложения для Windows систем</li>
<li>Страницы в меню Файл переработаны и соответствуют единому стилю</li>
<li>В окно предварительного просмотра печати добавлены возможности указать: диапазон страниц, количество копий, печать на обеих сторонах и кнопка Печать в PDF</li>
<li>На панель инструментов в редакторы добавлена вкладка Рисование</li>
<li>В меню выбора цвета добавлен инструмент Пипетка и подсказки для названий цветов</li>
<li>Добавлена возможность копировать стиль между графическими объектами</li>
<li>В контекстное меню графических объектов добавлен пункт Сохранить как рисунок</li>
<li>Добавлены настройки непрозрачности заливки и границ для графических объектов; автофигур, диаграмм, изображений и других</li>
<li>Добавлена поддержка лепестковых диаграмм</li>
<li>Добавлены форматы на открытие в редакторах: MHTML, SXC, ET, ETT, SXI, DPS, DPT, SXW, STW, WPS, WPT</li>
<li>В некоторых диалоговых окнах со списками добавлены заголовки столбцов</li>
<li>В окно поиска добавлено количество найденных результатов</li>
<li>Добавлены региональные настройки для датского языка da-DK (Dansk (Danmark))</li>
<li>Добавлена справка на турецком языке</li>
<li>Добавлен новый Менеджер плагинов</li>
</ul>
<h4>Редактор документов</h4>
<ul>
<li>Добавлена возможность слияния документов</li>
<li>В окно настройки колонок добавлена возможность изменять ширину и интервал каждой независимо</li>
<li>Расширено количество настроек для нумерованных и многоуровневых списков</li>
<li>Добавлен раздел Последние использованные в меню списков для текущего документа</li>
<li>Добавлена возможность применять список из окна Параметры списка</li>
<li>Добавлена возможность экспорта документа в виде изображений формата PNG/JPG</li>
<li>Добавлен список исключений для автозамены заглавных букв</li>
</ul>
<h4>Редактор таблиц</h4>
<ul>
<li>Добавлена поддержка новых функций; ПОСЛЕД, ПОИСКПОЗХ, РАЗВЕРНУТЬ, ФИЛЬТР, МАССИВВТЕКС, СОРТ</li>
<li>Добавлен перевод формул на армянский язык</li>
<li>На Главную панель инструментов добавлена возможность изменения регистра текста</li>
<li>На панели инструментов Вид добавлен Страничный режим</li>
<li>В настройках Диапазон печати опция Текущий лист заменена на Активные листы</li>
<li>В настройках печати добавлена возможность задавать Номер первой страницы</li>
<li>В раскрывающийся список форматов ячейки добавлены длинный/краткий форматы даты</li>
<li>В контекстное меню добавлены пункты для работы со сводными таблицами</li>
<li>Окно с настройками Защитить лист теперь включает в себя Разрешить редактировать диапазоны</li>
<li>Добавлена возможность экспорта электронной таблицы в виде изображений формата PNG/JPG</li>
</ul>
<h4>Редактор презентаций</h4>
<ul>
<li>Добавлен список исключений для автозамены заглавных букв</li>
</ul>
<h4>Формы</h4>
<ul>
<li>Позиция форм с опцией Поле фиксированного размера теперь рассчитывается от начала страницы</li>
<li>Исправлена отрисовка рамки у активного поля для форм с опцией Поле фиксированного размера</li>
<li>Возможность добавлять новую форму, не выходя из текущей</li>
<li>Заполнение в режиме просмотра (кнопка Посмотреть форму остается)</li>
<li>В режиме редактирования у текущей формы заливка такая же как и у всех остальных</li>
<li>Запрещено заполнение форм внутри листа документа в режиме редактирования</li>
<li>Поскольку запрещено заполнение форм в режиме редактирования, в правую панель добавлена настройка значения по-умолчанию (Значение по умолчанию)</li>
<li>Оптимизирована работа подформ внутри сложных форм</li>
</ul>
<h2>Исправления</h2>
<h4>Все редакторы</h4>
<ul>
<li>Из настроек приложения удалён пункт Системная (Тема интерфейса) для Linux систем</li>
</ul>
<div class="more"><a href="https://github.com/ONLYOFFICE/DesktopEditors/blob/master/CHANGELOG.md#740" target="_blank">и многое другое...</a></div>
</div>
</body>
</html>

View File

@ -1,86 +0,0 @@
<!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: #7.4.10;
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 7.4.1<span class="releasedate"> - {{DATE}}</span></h1>
<h2>Fixes</h2>
<h4>All Editors</h4>
<ul>
<li>Fixed vulnerabilities with checking the integrity of a digital signature, after manipulations with the document structure</li>
<li>Editors now display the correct error when trying to write a file, opened in another application</li>
<li>Fixed an error that occurs when opening multiple files using drag'n'drop</li>
<li>Fixed an issue when opening templates which contain slashes in their names</li>
<li>Fixed incorrect name for the next tab after closing and saving the document in front of it</li>
<li>The latest changes in the file are now included when sending via the Send plugin, if they have not been saved</li>
<li>Fixed the processing of the link, that ends with default.aspx, when connecting to the Workspace portal</li>
<li>The Open file location button for a document opened from the portal in a separate window without the main one now works</li>
<li>Fixed working with tabs when documents are opened from the portal and the user logs out on the Connect to cloud page</li>
<li>Fixed online help for macOS systems</li>
<li>Updated sets of application icons for Jump List (Tasks) on Windows systems</li>
<li>All components in Windows installation packages are now digitally signed</li>
<li>A large number of fixes and improvements to the MSI installation package</li>
</ul>
<h4>Document Editor</h4>
<ul>
<li>Fixed displaying of nonprinting characters after calling the print preview window</li>
</ul>
<h4>Spreadsheet Editor</h4>
<ul>
<li>Fixed displaying of a document when printing to PDF if the width/height of columns/rows were changed</li>
<li>Fixed the scrollbar display in the filtering window for legacy systems</li>
</ul>
<h4>Presentation Editor</h4>
<ul>
<li>Fixed an error during slideshow autorun and with system scale >200% when opening multiple files using drag'n'drop</li>
</ul>
<div class="more"><a href="https://github.com/ONLYOFFICE/DesktopEditors/blob/master/CHANGELOG.md#741" target="_blank">and a little more...</a></div>
</div>
</body>
</html>

View File

@ -1,86 +0,0 @@
<!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: #7.4.10;
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 7.4.1<span class="releasedate"> - {{DATE}}</span></h1>
<h2>Исправления</h2>
<h4>Все редакторы</h4>
<ul>
<li>Исправлены уязвимости с проверкой целостности цифровой подписи, после манипуляций со структурой документа</li>
<li>Редакторы теперь отображают корректную ошибку при попытке записать файл, открытый в другом приложении</li>
<li>Исправлена ошибка, возникающая при открытии нескольких файлов с помощью drag'n'drop</li>
<li>Исправлена проблема при открытии шаблонов, в имени которых присутствуют слэши</li>
<li>Исправлено некорректное имя для следующей вкладки после закрытия и сохранения документа перед ней</li>
<li>Последние изменения в файле теперь включаются при отправке через плагин Отправить, если не были сохранены</li>
<li>Исправлена обработка ссылки, которая заканчивается default.aspx, при подключении к Workspace порталу</li>
<li>Кнопка Открыть расположение файла для документа, открытого с портала в отдельном окне без главного, теперь работает</li>
<li>Исправлена работа с вкладками, когда документы открыты с портала и пользователь выходит из системы на странице Подключиться к облаку</li>
<li>Исправлена работа онлайн справки для macOS систем</li>
<li>Обновлены наборы иконок приложения для Списка Переходов (Задач) на системах Windows</li>
<li>Все компоненты в пакетах установки под Windows теперь имеют цифровую подпись</li>
<li>Большое количество исправлений и доработок пакета установки MSI</li>
</ul>
<h4>Редактор документов</h4>
<ul>
<li>Исправлено отображение непечатаемых символов после вызова окна предварительного просмотра печати</li>
</ul>
<h4>Редактор таблиц</h4>
<ul>
<li>Исправлено отображение документа при печати в PDF, если ширина/высота столбцов/строк были изменены</li>
<li>Исправлено отображение полосы прокрутки в окне фильтрации для устаревших систем</li>
</ul>
<h4>Редактор презентаций</h4>
<ul>
<li>Исправлена ошибка во время автозапуска слайдшоу и с системным масштабом >200%, при открытии нескольких файлов с помощью drag'n'drop</li>
</ul>
<div class="more"><a href="https://github.com/ONLYOFFICE/DesktopEditors/blob/master/CHANGELOG.md#741" target="_blank">и прочее...</a></div>
</div>
</body>
</html>

View File

@ -1,122 +0,0 @@
<!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: #000;
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 7.5.0<span class="releasedate"> - {{DATE}}</span></h1>
<h2>New Features</h2>
<h4>All Editors</h4>
<ul>
<li>Added support for interface scales >200% (225, 250, 275, 300, 350, 400, 450, 500)</li>
<li>Files from the "Recent files" list of the application have been added to the "File" > “Open Recent” section, according to the editor formats</li>
<li>Updated <code>VLC</code> libraries (for Windows)</li>
<li>Updated the <code>“About”</code> page and the “Check for updates” block (for Windows)</li>
<li>Added a list of changes to deb/rpm packages (for Linux)</li>
<li>The "Last used" option has been added to the editors settings for "Default Zoom Value"</li>
<li>Add a menu for quick access to the most popular symbols to the button for inserting symbols</li>
<li>Support for SVG images</li>
<li>Add a setting to hide the toolbar for equation</li>
<li>Add hints for images in SmartArt objects</li>
<li>Add the ability to open files protected with a password in the embedded viewer</li>
<li>Add the ability to edit points of the autoshape border to the right panel</li>
<li>Only <code>Ctrl + .</code>/<code>Ctrl + ,</code> keyboard shortcuts are now used for superscript/subscript characters</li>
<li>Change keyboard shortcuts for moving through the text on macOS</li>
</ul>
<h4>Document Editor</h4>
<ul>
<li>Automatic hyphenation</li>
<li>Change the selection logic, add the “Smart paragraph selection” option in Advanced Setting</li>
<li>Add the “Remove content control when contents are edited” option to content control settings</li>
<li>Change behavior of the <code>Accept/Reject</code> review buttons in the toolbar</li>
<li>Disable the Zoom out action for the <code>Ctrl + Numpad</code> keyboard shortcut due to the conflict with inserting an em dash</li>
<li>Change the keyboard shortcut for strikeout text formatting on macOS: <code>Ctrl + 5</code> replaced with <code>Cmd + Shift + X</code></li>
<li>Change the keyboard shortcut for inserting ellipsis on macOS: <code>Ctrl + Option + .</code> replaced with <code>Option + ;</code></li>
</ul>
<h4>Spreadsheet Editor</h4>
<ul>
<li>The ability to display only formulas in cells</li>
<li>Trace precedents / dependents</li>
<li>New function: <code>SORTBY</code></li>
<li>Added presets for "Margins" and the ability to show/hide "Print titles" in the "File" > "Print" menu</li>
<li>Add the ability to set a number format in the field settings for pivot tables</li>
<li>The Show details feature for working with a Pivot Table</li>
<li>Improvement of the ability to open data on a new sheet by double-clicking a value in a Pivot Table</li>
<li>Autocompletion for days of the week and months when stretching a cell value</li>
<li>Drag-and-drop for columns and rows</li>
<li>Add filters by date and the ability to display data with the "Date" format in the form of a tree in the Autofilter window</li>
<li>Inserting images into headers/footers</li>
<li>External data update for the currently edited source file</li>
<li>The last used Delimiter and Encoding setting for CSV files is now stored locally on the client side</li>
<li>The ability to insert page breaks from the Layout toolbar</li>
<li>Add the ability to open the source for external links</li>
<li>Add the <code>Alt + Down</code> keyboard shortcut for opening the Autofilter window when the header of a column with a filter is selected</li>
</ul>
<h4>Presentation Editor</h4>
<ul>
<li>Add the <code>"Morph"</code> transition</li>
<li>Assigning names to objects in advanced settings</li>
<li>The "Number slides from" option has been added to the slide size settings</li>
<li>Notes and Handouts in headers/footers settings</li>
<li>Slide placeholders have alternative descriptions</li>
<li>SmartArt insertion is available via a slide placeholder</li>
<li>Add the ability to navigate to the specific slide with the consecutive pressing of the *slide number* + Enter when previewing a presentation</li>
<li>Change the keyboard shortcut for starting a presentation on macOS: <code>Cmd + Shift + Return</code> is used</li>
</ul>
<h4>Forms</h4>
<ul>
<li>Bring settings on the right toolbar to unified appearance</li>
</ul>
<h4>PDF Editor</h4>
<ul>
<li>Support for the PDF form, annotations, comments and drawings</li>
</ul>
<div class="more"><a href="https://github.com/ONLYOFFICE/DesktopEditors/blob/master/CHANGELOG.md#750" target="_blank">and a little more...</a></div>
</div>
</body>
</html>

View File

@ -1,121 +0,0 @@
<!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: #000;
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 7.5.0<span class="releasedate"> - {{DATE}}</span></h1>
<h2>Новые функции</h2>
<h4>Все редакторы</h4>
<ul>
<li>Добавлена поддержка масштабов интерфейса >200% (225, 250, 275, 300, 350, 400, 450, 500)</li>
<li>В меню "Файл" > "Открыть недавние" добавлены файлы из списка "Последние файлы" приложения, по формату соответствующие редактору</li>
<li>Обновлены библиотеки VLC (для Windows)</li>
<li>Обновлена страница О программе и блок обновлений (для Windows)</li>
<li>Добавлен список изменений в deb/rpm пакеты (для Linux)</li>
<li>В "Дополнительные параметры" редакторов в список "Стандартное значение масштаба" добавлена опция "Последний использованный"</li>
<li>В кнопку вставки символов добавлено меню для быстрого доступа к наиболее популярным символам</li>
<li>Добавлена возможность вставки SVG изображений</li>
<li>Добавлена настройка, позволяющая скрыть тулбар для уравнений</li>
<li>Добавлены подсказки к изображениям в SmartArt</li>
<li>Добавлена возможность открытия файлов с паролем в embedded viewer</li>
<li>В правую панель добавлена возможность редактировать точки для границы автофигуры</li>
<li>Горячие клавиши для надстрочных/подстрочных знаков теперь только Ctrl + . / Ctrl + ,</li>
<li>Изменена работа перемещения по тексту с помощью горячих клавиш для macOS</li>
</ul>
<h4>Редактор документов</h4>
<ul>
<li>Добавлена возможность автоматической расстановки переносов</li>
<li>Изменена логика работы выделения, добавлена настройка "Использовать умное выделение абзацев"</li>
<li>Добавлена настройка "Удалять элемент управления содержимым при редактировании содержимого" в настройки элементов управления содержимым</li>
<li>Изменено поведение кнопок для рецензирования в тулбаре Принять/Отклонить</li>
<li>Отключено действие Уменьшить для Ctrl + Numpad из-за конфликта со вставкой короткого тире</li>
<li>Изменена клавиша применения Зачеркнутый c Ctrl + 5 на Cmd + Shift + X для macOS</li>
<li>Изменено сочетание для вставки многоточия для macOS с Ctrl + Option + . на Option + ;</li>
</ul>
<h4>Редактор таблиц</h4>
<ul>
<li>Добавлена возможность показать формулы в ячейках</li>
<li>Добавлена возможность отображения связей между формулами и ячейками</li>
<li>Добавлена поддержка новой функции СОРТПО</li>
<li>В меню "Файл" > "Печать" для опции "Поля" добавлены пресеты и возможность скрыть/показать для "Печатать залоговки"</li>
<li>В настройки полей для сводных таблиц добавлена возможность задать формат числа</li>
<li>В контекстное меню сводных таблиц добавлен пункт Показать детали для отображения подробных сведений о поле значений</li>
<li>Возможность показать детали двойным кликом по ячейке сводной таблицы</li>
<li>Добавлено автозаполнение днями недели и месяцами</li>
<li>Добавлена возможность перемещения строк и столбцов таблицы с помощью drag-n-drop</li>
<li>В окно Автофильтра добавлены фильтры по датам и вывод данных с форматом Дата в форме дерева</li>
<li>Добавлена возможность вставлять изображения в колонтитулы</li>
<li>Добавлена возможность обновления внешних данных в редакторе таблиц для файла-источника, который находится в процессе редактирования</li>
<li>Последние использованные настройки "Кодировка" и "Разделитель" для CSV-файлов теперь хранятся локально на стороне клиента</li>
<li>На панель инструментов "Макет" добавлена возможность вставлять разрывы страниц</li>
<li>Добавлена возможность открытия источника для внешних ссылок</li>
<li>Добавлена горячая клавиша Alt + Down для вызова окна Автофильтра, если выделен заголовок столбца с фильтром</li>
</ul>
<h4>Редактор презентаций</h4>
<ul>
<li>Добавлен переход "Трансформация"</li>
<li>В "Дополнительные параметры" для объектов на слайде добавлена возможность присваивать имена</li>
<li>В "Настройки размера слайда" добавлена опция "Нумеровать слайды с"</li>
<li>Добавлена вкладка Заметки и раздаточные материалы в настройки колонтитулов</li>
<li>Добавлены подсказки к плейсхолдерам на слайдах в редакторе презентаций</li>
<li>Добавлена возможность добавлять SmartArt через плейсхолдер на слайде</li>
<li>Добавлена возможность перехода к нужному слайду через последовательное нажатие *номер слайда* + Enter в режиме демонстрации</li>
<li>Запуск слайдшоу в редакторе презентаций для macOS изменен на Cmd + Shift + Return</li>
</ul>
<h4>Формы</h4>
<ul>
<li>Названия настроек на правой панели инструментов приведены к общему виду</li>
</ul>
<h4>Редактор PDF</h4>
<ul>
<li>Заполнение форм, аннотации, комментарии и рисование</li>
</ul>
<div class="more"><a href="https://github.com/ONLYOFFICE/DesktopEditors/blob/master/CHANGELOG.md#750" target="_blank">и прочее...</a></div>
</div>
</body>
</html>

View File

@ -1,94 +0,0 @@
<!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: #000;
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 7.5.1<span class="releasedate"> - {{DATE}}</span></h1>
<h2>Fixes</h2>
<h4>All Editors</h4>
<ul>
<li>Fixed print options (range) tuning for documents and presentations</li>
<li>Fixed some security issues</li>
<li>Fixed opening files with size more than 100 MB</li>
<li>Fixed some issues with composite input</li>
<li>Fixed issues preventing the application from working on MacOS version < 12.0</li>
<li>Fixed working with blocked text fields in dialog boxes</li>
<li>Improved quality of the SVG images added to the documents</li>
<li>Fixed the main window hanging when closing the application after working with several document tabs</li>
<li>Fixed signing of documents/spreadsheets using SVG images</li>
</ul>
<h4>Document Editor</h4>
<ul>
<li>Fixed incorrect painting inserted Text Art</li>
<li>Fixed an error when combining/comparing documents</li>
</ul>
<h4>Spreadsheet Editor</h4>
<ul>
<li>Fixed issue when cell border became hidden due to hide row with part of merged cell</li>
<li>Fixed equation transformation for Linear/Professional mode switching from context menu</li>
<li>Fixed print issue for Header/Footer</li>
<li>Fixed crashing of the editor after creating file from password protected XLTX</li>
</ul>
<h4>Presentation Editor</h4>
<ul>
<li>Fixed error on click Header & Footer in Insert tools panel</li>
<li>Fixed crashing in the Reporter mode on changing slide from end demonstration</li>
<li>Fixed saving presentations with media files for compatibility with other editors</li>
</ul>
<h4>PDF Editor</h4>
<ul>
<li>Fixed saving document through "Save copy"</li>
<li>Fixed incorrect processing editor's config (editorType)</li>
<li>Fixed issue for plugin "Send" when there is no email client installed</li>
<li>Fixed opening help for PDF editor and files opened for viewing (XPS, DjVu)</li>
</ul>
<div class="more"><a href="https://github.com/ONLYOFFICE/DesktopEditors/blob/master/CHANGELOG.md#751" target="_blank">and a little more...</a></div>
</div>
</body>
</html>

View File

@ -1,94 +0,0 @@
<!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: #000;
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 7.5.1<span class="releasedate"> - {{DATE}}</span></h1>
<h2>Исправления</h2>
<h4>Все редакторы</h4>
<ul>
<li>Исправлено применение настроек печати (диапазон) для документов и презентаций</li>
<li>Исправлено несколько уязвимостей, связанных с XSS</li>
<li>Исправлено открытие файлов размером более 100 MБ</li>
<li>Исправлено несколько проблем, связанных с композитным вводом</li>
<li>Исправлены проблемы, препятствующие работе приложения на MacOS до версии 12.0</li>
<li>Исправлена работа с заблокированными текстовыми полями в диалоговых окнах</li>
<li>Улучшено качество изображений SVG, добавляемых в документы</li>
<li>Исправлено зависание главного окна при закрытии приложения после работы с несколькими вкладками</li>
<li>Исправлено подписание документов или электронных таблиц с помощью изображений SVG</li>
</ul>
<h4>Редактор документов</h4>
<ul>
<li>Исправлено некорректное отображение вставленного Text Art</li>
<li>Исправлена ошибка при объединении/сравнении документов</li>
</ul>
<h4>Редактор таблиц</h4>
<ul>
<li>Исправлена проблема, при которой не отображалась граница при скрытии соседней строки с частью объединенной ячейки</li>
<li>Исправлено преобразование формул при переключении режимов Линейный/Профессиональный из контекстного меню</li>
<li>Исправлена проблема, при которой обрезается текст в колонтитулах при выводе на печать</li>
<li>Исправлен сбой в работе редактора после создания файла из защищенного паролем XLTX</li>
</ul>
<h4>Редактор презентаций</h4>
<ul>
<li>Исправлена ошибка при вставке колонтитула</li>
<li>Исправлено падение в режиме докладчика на переключении слайдов с конца демонстрации</li>
<li>Исправлено сохранение презентаций с медиафайлами для совместимости с другими редакторами</li>
</ul>
<h4>Редактор PDF</h4>
<ul>
<li>Исправлено сохранение файла через опцию "Сохранить копию"</li>
<li>Исправлена некорректная обработка конфига редактора (параметр editorType)</li>
<li>Исправлена проблема, связанная с плагином "Отправить", если в системе не установлен Email клиент</li>
<li>Исправлено открытие справки для редактора PDF и файлов, открытых для просмотра (XPS, DjVu)</li>
</ul>
<div class="more"><a href="https://github.com/ONLYOFFICE/DesktopEditors/blob/master/CHANGELOG.md#751" target="_blank">и еще...</a></div>
</div>
</body>
</html>

View File

@ -1,100 +0,0 @@
<!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: #7.6.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 7.6.0<span class="releasedate"> - {{DATE}}</span></h1>
<h2>New Features</h2>
<h4>All Editors</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Document Editor</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Spreadsheet Editor</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Presentation Editor</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Forms</h4>
<ul>
<li>TODO</li>
</ul>
<h2>Fixes</h2>
<h4>All Editors</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Document Editor</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Spreadsheet Editor</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Presentation Editor</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Forms</h4>
<ul>
<li>TODO</li>
</ul>
<div class="more"><a href="https://github.com/ONLYOFFICE/DesktopEditors/blob/master/CHANGELOG.md#760" target="_blank">and a little more...</a></div>
</div>
</body>
</html>

View File

@ -1,100 +0,0 @@
<!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: #7.6.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 7.6.0<span class="releasedate"> - {{DATE}}</span></h1>
<h2>Новые функции</h2>
<h4>Все редакторы</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Редактор документов</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Редактор таблиц</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Редактор презентаций</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Формы</h4>
<ul>
<li>TODO</li>
</ul>
<h2>Исправления</h2>
<h4>Все редакторы</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Редактор документов</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Редактор таблиц</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Редактор презентаций</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Формы</h4>
<ul>
<li>TODO</li>
</ul>
<div class="more"><a href="https://github.com/ONLYOFFICE/DesktopEditors/blob/master/CHANGELOG.md#760" target="_blank">и прочее...</a></div>
</div>
</body>
</html>

View File

@ -1,105 +0,0 @@
<!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: #000;
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.0.0<span class="releasedate"> - {{DATE}}</span></h1>
<h2>New Features</h2>
<h4>All Editors</h4>
<ul>
<li>Add the ability to encrypt `PDF` files</li>
<li>Add the Moodle provider</li>
<li>Add the ability to upload local themes to the Desktop Editors (Windows, Linux)</li>
<li>Add shortcuts to the Start menu for creating new files to EXE package (Windows)</li>
<li>Add a list of recent files and the ability to pin them via the context menu of the application in Jump List (Windows)</li>
<li>The draw.io plugin is excluded from the default installation package</li>
<li>All logos in the application and installation packages have been updated</li>
<li>VC Redist 2013 is excluded from the default installation package and is not required for the application to work (Windows)</li>
<li>Add the ability to Select/Deselect all formats on the MSI installer file associations page</li>
<li>Add OS compatibility manifests for executable files (Windows)</li>
<li>Improved the updates section and the update service for future versions of the application (Windows)</li>
<li>Adapt styles of window control buttons in accordance with OS design (Linux)</li>
<li>Change the widget for displaying downloads from the portal and the download indicator (Windows, Linux)</li>
<li>Move adding a comment to the entire document from the bottom of the comments panel to the settings button</li>
<li>Add a button for adding a comment to text to the header of the comments panel (similar to the button in the toolbar)</li>
<li>Add the interface translation into Arabic (ar-SA, Arabic - Saudi Arabia)</li>
<li>All buttons that do not fit in height should be placed into More button: category buttons, as well as plugins that were opened in the left panel</li>
<li>Add the setting to enable support for Screen readers</li>
<li>Add RTL support (beta) to the editors UI</li>
</ul>
<h4>Document Editor</h4>
<ul>
<li>Add partially support for bidirectional text</li>
</ul>
<h4>Spreadsheet Editor</h4>
<ul>
<li>Add the new Goal Seek functionality</li>
<li>Add the new Series tool for creating number sequences</li>
<li>Implement a wizard for inserting charts: display a list of recommended charts and previews for all types of charts based on the selected data</li>
<li>Expand cell filling settings</li>
<li>Add the Expand/Collapse menu item to the toolbar and the context menu of Pivot tables</li>
<li>Add the ability to center a sheet horizontally and vertically when printing</li>
<li>Add the ability to get a link to the selected range in the viewing mode</li>
</ul>
<h4>Presentation Editor</h4>
<ul>
<li>Add the ability to set the final color for animation effects that change color</li>
<li>Make animation effect icons inactive if the effect cannot be applied to an object</li>
<li>Add partially support for bidirectional text</li>
</ul>
<h4>Forms</h4>
<ul>
<li>Switching from the `OFORM` to `PDF` format containing forms in accordance with the OOXML format</li>
<li>Dialog for converting old `OFORM` files to `PDF`</li>
<li>For the radio button field, add the setting for the name of the selected element (Radio button choice)</li>
<li>Add a chain of tips when working with docxf files</li>
</ul>
<div class="more"><a href="https://github.com/ONLYOFFICE/DesktopEditors/blob/master/CHANGELOG.md#800" target="_blank">and a little more...</a></div>
</div>
</body>
</html>

View File

@ -1,106 +0,0 @@
<!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: #000;
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.0.0<span class="releasedate"> - {{DATE}}</span></h1>
<h2>New Features</h2>
<h4>All Editors</h4>
<ul>
<li>Add the ability to encrypt `PDF` files</li>
<li>Add the Moodle provider</li>
<li>Add the ability to upload local themes to the Desktop Editors (Windows, Linux)</li>
<li>Add shortcuts to the Start menu for creating new files to EXE package (Windows)</li>
<li>Add a list of recent files and the ability to pin them via the context menu of the application in Jump List (Windows)</li>
<li>The draw.io plugin is excluded from the default installation package</li>
<li>All logos in the application and installation packages have been updated</li>
<li>VC Redist 2013 is excluded from the default installation package and is not required for the application to work (Windows)</li>
<li>Add the ability to Select/Deselect all formats on the MSI installer file associations page</li>
<li>Add OS compatibility manifests for executable files (Windows)</li>
<li>Improved the updates section and the update service for future versions of the application (Windows)</li>
<li>Adapt styles of window control buttons in accordance with OS design (Linux)</li>
<li>Change the widget for displaying downloads from the portal and the download indicator (Windows, Linux)</li>
<li>Move adding a comment to the entire document from the bottom of the comments panel to the settings button</li>
<li>Add a button for adding a comment to text to the header of the comments panel (similar to the button in the toolbar)</li>
<li>Add the interface translation into Arabic (ar-SA, Arabic - Saudi Arabia)</li>
<li>All buttons that do not fit in height should be placed into More button: category buttons, as well as plugins that were opened in the left panel</li>
<li>Add the setting to enable support for Screen readers</li>
<li>Add RTL support (beta) to the editors UI</li>
</ul>
<h4>Document Editor</h4>
<ul>
<li>Add partially support for bidirectional text</li>
</ul>
<h4>Spreadsheet Editor</h4>
<ul>
<li>Add the new Goal Seek functionality</li>
<li>Add the new Series tool for creating number sequences</li>
<li>Implement a wizard for inserting charts: display a list of recommended charts and previews for all types of charts based on the selected data</li>
<li>Expand cell filling settings</li>
<li>Add the Expand/Collapse menu item to the toolbar and the context menu of Pivot tables</li>
<li>Add the ability to center a sheet horizontally and vertically when printing</li>
<li>Add the ability to get a link to the selected range in the viewing mode</li>
</ul>
<h4>Presentation Editor</h4>
<ul>
<li>Add the ability to set the final color for animation effects that change color</li>
<li>Make animation effect icons inactive if the effect cannot be applied to an object</li>
<li>Add partially support for bidirectional text</li>
</ul>
<h4>Forms</h4>
<ul>
<li>Switching from the `OFORM` to `PDF` format containing forms in accordance with the OOXML format</li>
<li>Dialog for converting old `OFORM` files to `PDF`</li>
<li>For the radio button field, add the setting for the name of the selected element (Radio button choice)</li>
<li>Add a chain of tips when working with docxf files</li>
</ul>
<div class="more"><a href="https://github.com/ONLYOFFICE/DesktopEditors/blob/master/CHANGELOG.md#800" target="_blank">и прочее...</a></div>
</div>
</body>
</html>

View File

@ -1,115 +0,0 @@
<!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: #000;
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.0.1<span class="releasedate"> - {{DATE}}</span></h1>
<h2>Fixes</h2>
<ul>
<li>Significantly increased the speed of unpacking the update package through the built-in update service for future releases (Windows)</li>
<li>Fixed the table alignment on a page after printing</li>
<li>Renamed the form template creation button to PDF Form</li>
<li>Changed the font family for Arabic language on the application main page</li>
<li>Fixed the Open Document dialog window language if the Arabic interface is set in the system</li>
<li>Fixed changing the text direction in the User Name field when changing the keyboard layout if the RTL UI is enabled</li>
<li>The RTL UI mode is hidden on Windows XP</li>
<li>Fixed applying a password when opening local files on Windows XP</li>
<li>Fixed the translation in the drop-down lists of options for the 'Disabled' state in the application settings</li>
<li>Fixed the description of the `DOCX` format in the Save As dialog</li>
</ul>
<h4>Document Editor</h4>
<ul>
<li>Fix crash when clicking comment inside a math equation</li>
<li>Fix crash when using the Insert caption feature with the Include chapter number option</li>
<li>Fix crash when inserting a copied image using Ctrl</li>
<li>Fix a problem with rendering collaboration highlight</li>
<li>Fix an issue with highlighting searching results in some `DOCX` files</li>
<li>Fix display of highlighting a comment added to RTL text</li>
<li>Fix text label for Table of Contents in the RTL UI</li>
<li>Fix an issue with shaping text with different direction (RTL and LTR)</li>
<li>Improve the calculation of the cursor position in case when it is between text with different directions (RTL and LTR)</li>
<li>Fix an issue with correction of a text selection when passing through a complex field</li>
<li>Fix an issue with calculating the current cursor position while selecting elements in table</li>
<li>Fix selection for the hidden part of complex fields</li>
<li>Fix an issue with selection draw and cursor positioning in complex fields</li>
<li>Fix position of diacritics when typing in Arabic</li>
<li>Hide non-printing characters in header/footer label</li>
<li>Decrease the height of the header/footer label</li>
</ul>
<h4>Spreadsheet Editor</h4>
<ul>
<li>Fix stopping work of the editor when exporting some `XLSX` files to `PNG`/`JPEG`</li>
<li>Fix display of the DBNum1 number format when opening some XLSX files</li>
<li>Fix display of the Currency format when exporting some `XLSX` to `ODS` and reopening</li>
<li>Fix appearing artifacts when inserting an image via Drag-n-Drop and moving it</li>
<li>Fix saving the current sheet only when exporting a work book to `PNG`/`JPEG`</li>
<li>Fix display of the #REF! error when adding the VLOOKUP formula with an argument which is a reference to another file</li>
</ul>
<h4>Presentation Editor</h4>
<ul>
<li>Fix stopping work of the editor when opening some `PPTX` files</li>
<li>Fixed the app crash when pressing the `Command` + `,` keyboard shortcut in Presenter View (macOS)</li>
<li>Fixed closing the application when opening a local presentation in the its own window mode and launching the Presenter View</li>
</ul>
<h4>Forms</h4>
<ul>
<li>Fix crash when expanding the Date field in the forms edited in third-party editors</li>
<li>Fix closing a drop-down list in some PDF forms with the Turn on screen reader support option enabled</li>
<li>Change the default date-time format for a DatePicker form</li>
</ul>
<h4>PDF Editor</h4>
<ul>
<li>Fix crash when opening some `DjVU` files</li>
<li>Fix annotations offset when exporting to PDF</li>
<li>Fix the color of the worksheet borders with the light interface theme</li>
</ul>
<div class="more"><a href="https://github.com/ONLYOFFICE/DesktopEditors/blob/master/CHANGELOG.md#801" target="_blank">and a little more...</a></div>
</div>
</body>
</html>

View File

@ -1,115 +0,0 @@
<!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: #000;
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.0.1<span class="releasedate"> - {{DATE}}</span></h1>
<h2>Fixes</h2>
<ul>
<li>Significantly increased the speed of unpacking the update package through the built-in update service for future releases (Windows)</li>
<li>Fixed the table alignment on a page after printing</li>
<li>Renamed the form template creation button to PDF Form</li>
<li>Changed the font family for Arabic language on the application main page</li>
<li>Fixed the Open Document dialog window language if the Arabic interface is set in the system</li>
<li>Fixed changing the text direction in the User Name field when changing the keyboard layout if the RTL UI is enabled</li>
<li>The RTL UI mode is hidden on Windows XP</li>
<li>Fixed applying a password when opening local files on Windows XP</li>
<li>Fixed the translation in the drop-down lists of options for the 'Disabled' state in the application settings</li>
<li>Fixed the description of the `DOCX` format in the Save As dialog</li>
</ul>
<h4>Document Editor</h4>
<ul>
<li>Fix crash when clicking comment inside a math equation</li>
<li>Fix crash when using the Insert caption feature with the Include chapter number option</li>
<li>Fix crash when inserting a copied image using Ctrl</li>
<li>Fix a problem with rendering collaboration highlight</li>
<li>Fix an issue with highlighting searching results in some `DOCX` files</li>
<li>Fix display of highlighting a comment added to RTL text</li>
<li>Fix text label for Table of Contents in the RTL UI</li>
<li>Fix an issue with shaping text with different direction (RTL and LTR)</li>
<li>Improve the calculation of the cursor position in case when it is between text with different directions (RTL and LTR)</li>
<li>Fix an issue with correction of a text selection when passing through a complex field</li>
<li>Fix an issue with calculating the current cursor position while selecting elements in table</li>
<li>Fix selection for the hidden part of complex fields</li>
<li>Fix an issue with selection draw and cursor positioning in complex fields</li>
<li>Fix position of diacritics when typing in Arabic</li>
<li>Hide non-printing characters in header/footer label</li>
<li>Decrease the height of the header/footer label</li>
</ul>
<h4>Spreadsheet Editor</h4>
<ul>
<li>Fix stopping work of the editor when exporting some `XLSX` files to `PNG`/`JPEG`</li>
<li>Fix display of the DBNum1 number format when opening some XLSX files</li>
<li>Fix display of the Currency format when exporting some `XLSX` to `ODS` and reopening</li>
<li>Fix appearing artifacts when inserting an image via Drag-n-Drop and moving it</li>
<li>Fix saving the current sheet only when exporting a work book to `PNG`/`JPEG`</li>
<li>Fix display of the #REF! error when adding the VLOOKUP formula with an argument which is a reference to another file</li>
</ul>
<h4>Presentation Editor</h4>
<ul>
<li>Fix stopping work of the editor when opening some `PPTX` files</li>
<li>Fixed the app crash when pressing the `Command` + `,` keyboard shortcut in Presenter View (macOS)</li>
<li>Fixed closing the application when opening a local presentation in the its own window mode and launching the Presenter View</li>
</ul>
<h4>Forms</h4>
<ul>
<li>Fix crash when expanding the Date field in the forms edited in third-party editors</li>
<li>Fix closing a drop-down list in some PDF forms with the Turn on screen reader support option enabled</li>
<li>Change the default date-time format for a DatePicker form</li>
</ul>
<h4>PDF Editor</h4>
<ul>
<li>Fix crash when opening some `DjVU` files</li>
<li>Fix annotations offset when exporting to PDF</li>
<li>Fix the color of the worksheet borders with the light interface theme</li>
</ul>
<div class="more"><a href="https://github.com/ONLYOFFICE/DesktopEditors/blob/master/CHANGELOG.md#801" target="_blank">и прочее...</a></div>
</div>
</body>
</html>

View File

@ -1,54 +0,0 @@
<!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.1.0<span class="releasedate"> - {{DATE}}</span></h1>
<h2 class="more"><a href="https://github.com/ONLYOFFICE/DesktopEditors/blob/master/CHANGELOG.md#810" target="_blank">See list of the changes</a></h2>
</div>
</body>
</html>

View File

@ -1,54 +0,0 @@
<!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.1.0<span class="releasedate"> - {{DATE}}</span></h1>
<h2 class="more"><a href="https://github.com/ONLYOFFICE/DesktopEditors/blob/master/CHANGELOG.md#810" target="_blank">Список изменений</a></h2>
</div>
</body>
</html>

View File

@ -1,54 +0,0 @@
<!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: #000;
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.1.1<span class="releasedate"> - {{DATE}}</span></h1>
<h2 class="more"><a href="https://github.com/ONLYOFFICE/DesktopEditors/blob/master/CHANGELOG.md#811" target="_blank">See list of the changes</a></h2>
</div>
</body>
</html>

View File

@ -1,54 +0,0 @@
<!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: #000;
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.1.1<span class="releasedate"> - {{DATE}}</span></h1>
<h2 class="more"><a href="https://github.com/ONLYOFFICE/DesktopEditors/blob/master/CHANGELOG.md#811" target="_blank">Список изменений</a></h2>
</div>
</body>
</html>

View File

@ -1,100 +0,0 @@
<!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.30;
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.1.3<span class="releasedate"> - {{DATE}}</span></h1>
<h2>New Features</h2>
<h4>All Editors</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Document Editor</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Spreadsheet Editor</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Presentation Editor</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Forms</h4>
<ul>
<li>TODO</li>
</ul>
<h2>Fixes</h2>
<h4>All Editors</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Document Editor</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Spreadsheet Editor</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Presentation Editor</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Forms</h4>
<ul>
<li>TODO</li>
</ul>
<div class="more"><a href="https://github.com/ONLYOFFICE/DesktopEditors/blob/master/CHANGELOG.md#813" target="_blank">and a little more...</a></div>
</div>
</body>
</html>

View File

@ -1,100 +0,0 @@
<!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.30;
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.1.3<span class="releasedate"> - {{DATE}}</span></h1>
<h2>Новые функции</h2>
<h4>Все редакторы</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Редактор документов</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Редактор таблиц</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Редактор презентаций</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Формы</h4>
<ul>
<li>TODO</li>
</ul>
<h2>Исправления</h2>
<h4>Все редакторы</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Редактор документов</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Редактор таблиц</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Редактор презентаций</h4>
<ul>
<li>TODO</li>
</ul>
<h4>Формы</h4>
<ul>
<li>TODO</li>
</ul>
<div class="more"><a href="https://github.com/ONLYOFFICE/DesktopEditors/blob/master/CHANGELOG.md#813" target="_blank">и прочее...</a></div>
</div>
</body>
</html>

View File

@ -1,54 +0,0 @@
<!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.0<span class="releasedate"> - {{DATE}}</span></h1>
<h2 class="more"><a href="https://github.com/ONLYOFFICE/DesktopEditors/blob/master/CHANGELOG.md#820" target="_blank">See list of the changes</a></h2>
</div>
</body>
</html>

View File

@ -1,54 +0,0 @@
<!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.0<span class="releasedate"> - {{DATE}}</span></h1>
<h2 class="more"><a href="https://github.com/ONLYOFFICE/DesktopEditors/blob/master/CHANGELOG.md#820" target="_blank">Список изменений</a></h2>
</div>
</body>
</html>

View File

@ -1,54 +0,0 @@
<!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.1<span class="releasedate"> - {{DATE}}</span></h1>
<h2 class="more"><a href="https://github.com/ONLYOFFICE/DesktopEditors/blob/master/CHANGELOG.md#821" target="_blank">See list of the changes</a></h2>
</div>
</body>
</html>

View File

@ -1,54 +0,0 @@
<!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.1<span class="releasedate"> - {{DATE}}</span></h1>
<h2 class="more"><a href="https://github.com/ONLYOFFICE/DesktopEditors/blob/master/CHANGELOG.md#821" target="_blank">Список изменений</a></h2>
</div>
</body>
</html>