Skip to content

Commit

Permalink
Update changelog and versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenyay committed Jun 25, 2022
1 parent 9866fac commit cf2636a
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
4 changes: 2 additions & 2 deletions need_for_build/linux/net.jenyay.Outwiker.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</screenshot>
</screenshots>
<releases>
<release version="3.2.0.905" date="2022-05-28" />
<release version="3.2.0.906" date="2022-06-26" />
<release version="3.2.0.904" date="2022-05-28" />
<release version="3.2.0.902" date="2022-05-22" />
<release version="3.1.0.900" date="2022-04-16" />
Expand Down Expand Up @@ -64,4 +64,4 @@
<content_attribute id="money-purchasing">none</content_attribute>
<content_attribute id="money-gambling">none</content_attribute>
</content_rating>
</component>
</component>
4 changes: 3 additions & 1 deletion need_for_build/versions.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
<?xml version='1.0' encoding='UTF-8'?>
<versions>
<version number="3.2.0.905" status="dev">
<version number="3.2.0.906" status="beta" date="2022-06-26">
<changes>
<change>Added the ability to show hidden folders in attachments.</change>
</changes>

<changes lang="ru">
<change>Добавлена возможность отображения скрытых папок на панели с вложениями.</change>
</changes>
</version>

Expand Down
8 changes: 5 additions & 3 deletions plugins/thumbgallery/versions.xml
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
<?xml version="1.1" encoding="UTF-8" ?>
<versions>
<version number="1.6">
<version number="1.6" date="2022-06-26">
<download href="https://jenyay.net/uploads/Outwiker/ThumbGallery/thumbgallery-1.6.zip">
<requirements>
<api>3.906</api>
</requirements>
</download>
<changes>
<change></change>
<change>Added the ability to select files by mask.</change>
<change>Added the ability to select attachments in nested folders with the dialog.</change>
</changes>

<changes lang="ru">
<change></change>
<change>Добавлена возможность выбора файлов по маске.</change>
<change>Добавлена возможность выбора файлов во вложенных папках в диалоге.</change>
</changes>
</version>

Expand Down
6 changes: 3 additions & 3 deletions src/outwiker/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
__version__ = (3, 2, 0, 905)
__status__ = 'dev'
__version__ = (3, 2, 0, 906)
__status__ = 'beta'
__api_version__ = (3, 906)


def getVersionStr() -> str:
return '.'.join([str(item) for item in __version__]) + ' ' + __status__
return '.'.join([str(item) for item in __version__]) + ' ' + __status__

0 comments on commit cf2636a

Please sign in to comment.