Skip to content

Commit

Permalink
Update changelogs
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenyay committed Jan 27, 2024
1 parent a6701f8 commit eb1548f
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 14 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 @@ -38,7 +38,7 @@
</screenshot>
</screenshots>
<releases>
<release version="3.3.0.933" date="2023-12-25"/>
<release version="3.3.0.934" date="2024-01-27" />
<release version="3.3.0.932" date="2023-12-24" />
<release version="3.3.0.930" date="2023-11-18" />
<release version="3.3.0.928" date="2023-09-30" />
Expand Down Expand Up @@ -82,4 +82,4 @@
<content_attribute id="money-purchasing">none</content_attribute>
<content_attribute id="money-gambling">none</content_attribute>
</content_rating>
</component>
</component>
12 changes: 9 additions & 3 deletions need_for_build/versions.xml
Original file line number Diff line number Diff line change
@@ -1,17 +1,23 @@
<?xml version='1.0' encoding='UTF-8'?>
<versions>
<version number="3.3.0.933" status="dev">
<version number="3.3.0.934" status="beta" date="2024-01-27">
<changes>
<change>Use new vector icons for buttons.</change>
<change>Added the ability to use vector icons for pages.</change>
<change>New preferences dialog.</change>
</changes>

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

<version number="3.3.0.932" status="beta" date="2023-12-24">
<changes>
<change>On tags cloud panel add a button to show applied tags only.</change>
<change>Add context menu for tags cloud.</change>
<change>Added context menu for tags cloud.</change>
<change>Updated the German localization.</change>
</changes>

Expand Down Expand Up @@ -49,4 +55,4 @@
<change>Улучшения в работе со стилями элементов списка.</change>
</changes>
</version>
</versions>
</versions>
2 changes: 1 addition & 1 deletion plugins/autorenamer/versions.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.1" encoding="UTF-8" ?>
<versions>
<version number="0.0.0.12">
<version number="0.0.0.12" date="2024-01-27">
<download href="https://jenyay.net/uploads/Outwiker/AutoRenamer/autorenamer-0.0.0.12.zip">
<requirements>
<api>3.934</api>
Expand Down
2 changes: 1 addition & 1 deletion plugins/externaltools/versions.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.1" encoding="UTF-8" ?>
<versions>
<version number="1.7.3">
<version number="1.7.3" date="2024-01-27">
<download href="https://jenyay.net/uploads/Outwiker/ExternalTools/externaltools-1.7.3.zip">
<requirements>
<api>3.934</api>
Expand Down
2 changes: 1 addition & 1 deletion plugins/pagetypecolor/versions.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.1" encoding="UTF-8" ?>
<versions>
<version number="1.4.2">
<version number="1.4.2" date="2024-01-27">
<download href="https://jenyay.net/uploads/Outwiker/PageTypeColor/pagetypecolor-1.4.2.zip">
<requirements>
<api>3.934</api>
Expand Down
2 changes: 1 addition & 1 deletion plugins/source/versions.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.1" encoding="UTF-8" ?>
<versions>
<version number="1.27">
<version number="1.27" date="2024-01-27">
<download href="https://jenyay.net/uploads/Outwiker/SourcePlugin/source-1.27.zip">
<requirements>
<api>3.934</api>
Expand Down
2 changes: 1 addition & 1 deletion plugins/texequation/versions.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.1" encoding="UTF-8" ?>
<versions>
<version number="2.6.9">
<version number="2.6.9" date="2024-01-27">
<download href="https://jenyay.net/uploads/Outwiker/TexEquation/texequation-2.6.9.zip">
<requirements>
<api>3.934</api>
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "outwiker"
version = "3.3.0.931"
version = "3.3.0.934"
description = "A cross-platform software for keeping your notes in a tree"
authors = [
{name = "Eugene Ilin (aka Jenyay)", email = "[email protected]"},
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, 3, 0, 933)
__status__ = 'dev'
__version__ = (3, 3, 0, 934)
__status__ = 'beta'
__api_version__ = (3, 934)


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 eb1548f

Please sign in to comment.