Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenyay committed May 28, 2022
1 parent b3c056b commit dfd6bb1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 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.903" date="2022-05-25" />
<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" />
<release version="3.1.0.896" date="2022-02-19" />
Expand Down Expand Up @@ -63,4 +63,4 @@
<content_attribute id="money-purchasing">none</content_attribute>
<content_attribute id="money-gambling">none</content_attribute>
</content_rating>
</component>
</component>
4 changes: 2 additions & 2 deletions need_for_build/versions.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version='1.0' encoding='UTF-8'?>
<versions>
<version number="3.2.0.903" status="dev">
<version number="3.2.0.904" status="beta" date="2022-05-28">
<changes>
<change>Added the support of nested subfolders for the [=%thumb%=] wiki command</change>
<change>Added the support of nested subfolders for the [=%thumb%=] wiki command.</change>
<change>Implemented highlighting the [=%thumb%=] wiki command on wiki pages.</change>
<change>Changed design of the dialog about overwriting of attached files.</change>
<change>Small GUI fixes.</change>
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, 903)
__status__ = 'dev'
__version__ = (3, 2, 0, 904)
__status__ = 'beta'
__api_version__ = (3, 904)


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 dfd6bb1

Please sign in to comment.