diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 74d8248..f2c3033 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,8 @@ +0.3.3 - (unreleased) +==================== + + + 0.3.2 - 2024-01-21 ================== @@ -23,7 +28,7 @@ Fixed * Scene Export: Fix output image size and margins when scene had been scaled or moved. * Scene Export: Selecting filename without file extension now - automatically appends the extension from the selected filter istead + automatically appends the extension from the selected filter instead of resulting in a confusing error message. * The exemption from antialias/smoothing for images displayed at large zoom now also works on images that are flipped horizontally diff --git a/beeref.desktop b/beeref.desktop index e853a1f..8e7d25b 100644 --- a/beeref.desktop +++ b/beeref.desktop @@ -1,8 +1,8 @@ [Desktop Entry] Name=BeeRef -Comment=BeeRef 0.3.2 +Comment=BeeRef 0.3.3-dev Terminal=false -Exec=/home/yourname/path/to/BeeRef-0.3.2-linux +Exec=/home/yourname/path/to/BeeRef-0.3.3-dev-linux Type=Application Icon=/home/yourname/path/to/logo.png Name[en_US]=BeeRef diff --git a/beeref/constants.py b/beeref/constants.py index 4395437..24cbd81 100644 --- a/beeref/constants.py +++ b/beeref/constants.py @@ -15,7 +15,7 @@ APPNAME = 'BeeRef' APPNAME_FULL = f'{APPNAME} Reference Image Viewer' -VERSION = '0.3.2' +VERSION = '0.3.3-dev' WEBSITE = 'https://github.com/rbreu/beeref' COPYRIGHT = 'Copyright © 2021-2023 Rebecca Breu' diff --git a/org.beeref.BeeRef.appdata.xml b/org.beeref.BeeRef.appdata.xml index 7e2c616..11cb5be 100644 --- a/org.beeref.BeeRef.appdata.xml +++ b/org.beeref.BeeRef.appdata.xml @@ -18,6 +18,7 @@ + diff --git a/setup.py b/setup.py index f5f91e5..ddd9ac0 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='BeeRef', - version='0.3.2', + version='0.3.3-dev', author='Rebecca Breu', author_email='rebecca@rbreu.de', url='https://github.com/rbreu/beeref',