Prepare release 0.3.0

This commit is contained in:
Rebecca Breu 2023-11-23 15:19:18 +01:00
parent 5f459ae09b
commit 2c8a6f6a44
6 changed files with 9 additions and 9 deletions

View file

@ -1,5 +1,5 @@
0.3.0 - (unreleased)
====================
0.3.0 - 2023-11-23
==================
Added
-----

View file

@ -44,7 +44,7 @@ Building the app
To build the app, run::
pyinstaller --onefile BeeRef.spec
pyinstaller BeeRef.spec
You will find the generated executable in the folder ``dist``.

View file

@ -58,7 +58,7 @@ This should tell you whether you need to install any additional libraries.
Features
--------
* Move, scale, rotate and flip images
* Move, scale, rotate, crop and flip images
* Mass-scale images to the same width, height or size
* Mass-arrange images vertically, horizontally or for optimal usage of space
* Add text notes

View file

@ -1,8 +1,8 @@
[Desktop Entry]
Name=BeeRef
Comment=BeeRef 0.3.0-dev
Comment=BeeRef 0.3.0
Terminal=false
Exec=/home/yourname/path/to/BeeRef-0.3.0-dev-linux
Exec=/home/yourname/path/to/BeeRef-0.3.0-linux
Type=Application
Icon=/home/yourname/path/to/logo.png
Name[en_US]=BeeRef

View file

@ -15,9 +15,9 @@
APPNAME = 'BeeRef'
APPNAME_FULL = f'{APPNAME} Reference Image Viewer'
VERSION = '0.3.0-dev'
VERSION = '0.3.0'
WEBSITE = 'https://github.com/rbreu/beeref'
COPYRIGHT = 'Copyright © 2021 Rebecca Breu'
COPYRIGHT = 'Copyright © 2021-2023 Rebecca Breu'
COLORS = {
# Qt:

View file

@ -2,7 +2,7 @@ from setuptools import setup
setup(
name='BeeRef',
version='0.3.0-dev',
version='0.3.0',
author='Rebecca Breu',
author_email='rebecca@rbreu.de',
url='https://github.com/rbreu/beeref',