mirror of
https://github.com/rbreu/beeref.git
synced 2026-03-11 08:54:28 +00:00
Prepare release 0.3.0
This commit is contained in:
parent
5f459ae09b
commit
2c8a6f6a44
6 changed files with 9 additions and 9 deletions
|
|
@ -1,5 +1,5 @@
|
|||
0.3.0 - (unreleased)
|
||||
====================
|
||||
0.3.0 - 2023-11-23
|
||||
==================
|
||||
|
||||
Added
|
||||
-----
|
||||
|
|
|
|||
|
|
@ -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``.
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Reference in a new issue