Skip to content

Commit

Permalink
Update release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
Wemmy0 committed Nov 12, 2023
1 parent 48ae1b0 commit 8186ad6
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/FileView.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def __init__(self, path, colour_support):
self.file_rows = []
self.add_files(self.files)

def scan_files(self, path, extension, full_path=True):
def scan_files(self, path, extension):
out = []
for i in os.listdir(path):
if not isfile(path + "/" + i):
Expand Down
21 changes: 18 additions & 3 deletions src/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def change_file(self, file_viewer, row):
self.header.new_btn.show()
self.header.edit_btn.show()
self.header.save_btn.show()
self.header.info_btn.hide() # Hide the info button once a note is displayed to reduce clutter
self.header.info_btn.hide() # Hide the info button once a note is displayed to reduce clutter
# self.header.undo_btn.show()
self.header.export_btn.show()
file_path = file_viewer.files[file_viewer.file_rows.index(row)]
Expand Down Expand Up @@ -128,10 +128,25 @@ def __init__(self, config):
self.pack_end(self.info_btn)
about_dialogue = Adw.AboutWindow(application_name="Inkwell",
application_icon="org.gnome.gedit-symbolic",
version="1.2",
version="1.3.5",
license_type=Gtk.License.GPL_3_0,
developer_name="Thomas Hoggarth",
release_notes="<ul>"
release_notes="<p>This changelog maybe out of date. Please see: https://github.com/Wemmy0/Inkwell/commits/main</p>"
"<p>1.3.5:</p>"
"<ul>"
"<li>Invalid colours will default to the first found colour</li>"
"</ul>"
"<p>1.3:</p>"
"<ul>"
"<li>Added configuration.toml file</li>"
"<li>Fixed highlighting of task/list items</li>"
"<li>Sync, Elements, AI and more can be enabled/disabled in the config file</li>"
"<li>Fixed a crash when sync connection was invalid but was attempted to be closed anyway</li>"
"<li>Colours can be added/removed from the Assets/ folder</li>"
"</ul>"
"<p>1.2:</p>"
"<ul>"
"<li>Added undo button</li>"
"<li>Added undo button</li>"
"<li>Added styling to edit mode</li>"
"<li>Added body text element</li>"
Expand Down

0 comments on commit 8186ad6

Please sign in to comment.