Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenyay committed Dec 14, 2024
1 parent b7a0a75 commit 338038a
Show file tree
Hide file tree
Showing 4 changed files with 15 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 @@ -38,7 +38,7 @@
</screenshot>
</screenshots>
<releases>
<release version="4.0.0.947" date="2024-11-23" />
<release version="4.0.0.948" date="2024-12-14" />
<release version="4.0.0.946" date="2024-11-23" />
<release version="4.0.0.944" date="2024-11-16" />
<release version="4.0.0.942" date="2024-09-14" />
Expand Down Expand Up @@ -89,4 +89,4 @@
<content_attribute id="money-purchasing">none</content_attribute>
<content_attribute id="money-gambling">none</content_attribute>
</content_rating>
</component>
</component>
10 changes: 9 additions & 1 deletion need_for_build/versions.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
<?xml version='1.0' encoding='UTF-8'?>
<versions>
<version number="4.0.0.947" status="dev">
<version number="4.0.0.948" status="alpha" date="2024-12-14">
<changes>
<change>Added the ability to change the order of notes using the mouse.</change>
<change>Added the ability to change the color of notes in the notes tree.</change>
<change>Added the ability to change the font size in the notes tree.</change>
<change>Added the ability to scale the notes tree using the mouse wheel.</change>
</changes>

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

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 = "4.0.0.947"
version = "4.0.0.948"
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__ = (4, 0, 0, 947)
__status__ = 'dev'
__version__ = (4, 0, 0, 948)
__status__ = 'alpha'
__api_version__ = (4, 944)


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 338038a

Please sign in to comment.