Skip to content

Commit

Permalink
Tag v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mini-ninja-64 committed Mar 13, 2023
1 parent d546a46 commit d329203
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
0.3.0 - (unreleased)
0.3.0 - 2023-03-13
====================

Added
Expand Down
4 changes: 2 additions & 2 deletions beeref.desktop
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion beeref/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

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'

Expand Down
1 change: 0 additions & 1 deletion beeref/view.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

from PyQt6 import QtCore, QtGui, QtWidgets
from PyQt6.QtCore import Qt
from PyQt6.QtGui import QPainter

from beeref.actions import ActionsMixin
from beeref import commands
Expand Down
3 changes: 2 additions & 1 deletion beeref/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ def sizeHint(self):
(self.sizeHintForRow(i) + 2) for i in range(len(self.files)))
size.setHeight(height)

width = max(self.sizeHintForColumn(i) for i in range(len(self.files)))
width = max(
self.sizeHintForColumn(i) for i in range(len(self.files)))
size.setWidth(width + 2)
return size

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='BeeRef',
version='0.3.0-dev',
version='0.3.0',
author='Rebecca Breu',
author_email='[email protected]',
url='https://github.com/rbreu/beeref',
Expand Down

0 comments on commit d329203

Please sign in to comment.