Bump version to 0.2.0
This commit is contained in:
parent
960258eba3
commit
b54ae95452
3 changed files with 33 additions and 4 deletions
28
CHANGELOG.org
Normal file
28
CHANGELOG.org
Normal file
|
@ -0,0 +1,28 @@
|
|||
#+title: CHANGELOG
|
||||
|
||||
* Version 0.2.0
|
||||
|
||||
** Features
|
||||
|
||||
- It is now possible to clear/reset all input fields (cb139c6,
|
||||
2b9e229, ba3a575, 371ff3f, f51e5ed)
|
||||
- Clearing all fields is now also offered when closing the code
|
||||
dialog after copying the content at least once (3fe735e)
|
||||
- Focus input field after acting on the corresponding add-button
|
||||
and select text (38e0337)
|
||||
- It is now possible to active the "add" buttons with the enter key
|
||||
(dec5ccd)
|
||||
|
||||
** Bugfixes
|
||||
|
||||
- Display listings as unordered list (8077316)
|
||||
- Recipe name for source URL text (01f8bdd)
|
||||
- Allow ingredients without specifying an amount (094dd51)
|
||||
- Fixed typo "Variantionen" (32b4c7a)
|
||||
- Close without crashing (02f9129)
|
||||
- Provide custom close dialog for translated buttons (97b16d1,
|
||||
7b7b92b, 960258e)
|
||||
|
||||
* Version 0.1.0
|
||||
|
||||
- Initial release
|
|
@ -2,9 +2,10 @@
|
|||
|
||||
# Form implementation generated from reading ui file 'ui_about_dialog.ui'
|
||||
#
|
||||
# Created by: PyQt5 UI code generator 5.14.2
|
||||
# Created by: PyQt5 UI code generator 5.15.0
|
||||
#
|
||||
# WARNING! All changes made in this file will be lost!
|
||||
# WARNING: Any manual changes made to this file will be lost when pyuic5 is
|
||||
# run again. Do not edit this file unless you know what you are doing.
|
||||
|
||||
|
||||
from PyQt5 import QtCore, QtGui, QtWidgets
|
||||
|
@ -70,7 +71,7 @@ class Ui_About(object):
|
|||
About.setWindowTitle(_translate("About", "About"))
|
||||
self.l_title.setText(_translate("About", "WikiCookBook"))
|
||||
self.l_description.setText(_translate("About", "A graphical editor for creating cookbook entries using the MoinMoin wiki syntax"))
|
||||
self.label.setText(_translate("About", "Version 0.1.0"))
|
||||
self.label.setText(_translate("About", "Version 0.2.0"))
|
||||
self.l_basedon.setText(_translate("About", "<html><head/><body><p>Based on <a href=\"https://www.python.org/\"><span style=\" text-decoration: underline; color:#4c6b8a;\">Python</span></a> and <a href=\"https://www.riverbankcomputing.com/software/pyqt/intro\"><span style=\" text-decoration: underline; color:#4c6b8a;\">PyQt</span></a>.</p></body></html>"))
|
||||
self.l_copyright.setText(_translate("About", "<html><head/><body><p>2020 © Marcel Kapfer (opensource@mmk2410.org)<br/>Licensed under GPLv3</p></body></html>"))
|
||||
self.l_sourcecode.setText(_translate("About", "<html><head/><body><p>Sourcecode available at<br/><a href=\"https://git.mmk2410.org/mmk2410/wikicookbook\"><span style=\" text-decoration: underline; color:#4c6b8a;\">git.mmk2410.org/mmk2410/wikicookbook</span></a></p></body></html>"))
|
||||
|
|
|
@ -59,7 +59,7 @@
|
|||
<item>
|
||||
<widget class="QLabel" name="label">
|
||||
<property name="text">
|
||||
<string>Version 0.1.0</string>
|
||||
<string>Version 0.2.0</string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignCenter</set>
|
||||
|
|
Reference in a new issue