Skip to content

Commit

Permalink
Fix changelog not showing after update
Browse files Browse the repository at this point in the history
  • Loading branch information
facelessuser committed Jun 16, 2020
1 parent 5a7821d commit e6d0982
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions docs/src/markdown/about/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

- **FIX**: Internal color fixes.
- **FIX**: Fix Rummage crashing with wxPython 4.1.X due to image sizing bug on macOS.
- **FIX**: Resolve issue where changelog would not show after an update.

## 4.11.0

Expand Down
1 change: 0 additions & 1 deletion rummage/lib/gui/data/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ def get_bitmap(file_name, tint=None, alpha=None):
"""

image = get_image(file_name, tint=tint, alpha=alpha).GetImage()
print(image)
scaled = image.Rescale(
int(image.GetWidth() / 2),
int(image.GetHeight() / 2)
Expand Down
2 changes: 1 addition & 1 deletion rummage/lib/gui/data/docs/.dochash
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0a73c3d057f0e16d3427520543c75ac4
ae8f6dba66780621412155f05acf7ac8
1 change: 1 addition & 0 deletions rummage/lib/gui/data/docs/about/changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ <h2 id="4111">4.11.1</h2>
<ul>
<li><strong>FIX</strong>: Internal color fixes.</li>
<li><strong>FIX</strong>: Fix Rummage crashing with wxPython 4.1.X due to image sizing bug on macOS.</li>
<li><strong>FIX</strong>: Resolve issue where changelog would not show after an update.</li>
</ul>
<h2 id="4110">4.11.0</h2>
<ul>
Expand Down
2 changes: 1 addition & 1 deletion rummage/lib/gui/dialogs/rummage_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -1895,7 +1895,7 @@ def on_loaded(self, refocus=False, resize=False):

if tuple(Settings.get_current_version()) < __meta__.__version_info__:
Settings.set_current_version(__meta__.__version_info__)
dlg = html_dialog.HTMLDialog(self, 'changelog.html', self.MENU_CHANGELOG)
dlg = html_dialog.HTMLDialog(self, 'about/changelog.html', self.MENU_CHANGELOG)
dlg.ShowModal()
dlg.Destroy()

Expand Down

0 comments on commit e6d0982

Please sign in to comment.