Skip to content

Commit 4b708cc

Browse files
committed
Don't show version info in the UI's title
1 parent 514f123 commit 4b708cc

File tree

5 files changed

+10
-3
lines changed

5 files changed

+10
-3
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.0.1-alpha.3 (2018-10-02)
9+
10+
### Changed
11+
12+
- Stop showing the version in the UI's title.
13+
- Update the image in the README.
14+
815
## 0.0.1-alpha.2 (2018-10-02)
916

1017
### Fixed

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ those patterns.
1212

1313
Here's my clone of Herbert.
1414

15-
.. image:: https://github.com/dwayne/herbert-python/blob/master/data/images/herbert.png
15+
.. image:: https://raw.githubusercontent.com/dwayne/herbert-python/master/data/images/herbert.png
1616

1717
Enjoy!
1818

data/images/herbert.png

-1.09 KB
Loading

herbert/constants.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
PROGRAM_NAME = 'Herbert'
2-
VERSION = '0.0.1-alpha.2'
2+
VERSION = '0.0.1-alpha.3'

herbert/ui.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ def __init__(self):
266266
super().__init__(0, 0, curses.COLS, 1)
267267

268268
def draw(self):
269-
self.add_string(1, 0, '%s %s' % (constants.PROGRAM_NAME, constants.VERSION))
269+
self.add_string(1, 0, '%s' % constants.PROGRAM_NAME)
270270
super().draw()
271271

272272

0 commit comments

Comments
 (0)