Skip to content

Commit

Permalink
add releases url in about
Browse files Browse the repository at this point in the history
  • Loading branch information
K1DV5 committed Jan 24, 2020
1 parent a776a9e commit f393394
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions docal_tkinter/menubar.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,12 +197,14 @@ def about(self):
win.title('About')
Label(win, text='docal', font=(None, 24)).grid(sticky='w')
Label(win, text='Version 2.2.1').grid(sticky='w')
Label(win, text='New releases can be found at').grid(sticky='w')
Label(win, text='http://github.com/K1DV5/docal-tkinter/releases', fg='blue').grid(row=2, column=1, sticky='w')
Label(win, text='\nProject URLs').grid(sticky='w')
Label(win, text='http://github.com/K1DV5/docal', fg='blue').grid(sticky='w')
Label(win, text=' (Core project)').grid(row=3, column=1, sticky='w')
Label(win, text=' (Core project)').grid(row=4, column=1, sticky='w')
Label(win, text='http://github.com/K1DV5/docal-tkinter', fg='blue').grid(sticky='w')
Label(win, text=' (UI project)').grid(row=4, column=1, sticky='w')
Label(win, text=' (UI project)').grid(row=5, column=1, sticky='w')
Label(win, text='http://github.com/K1DV5/tkinter-math', fg='blue').grid(sticky='w')
Label(win, text=' (Math renderer project, for the UI)').grid(row=5, column=1, sticky='w')
Label(win, text=' (Math renderer project, for the UI)').grid(row=6, column=1, sticky='w')
win.protocol('WM_DELETE_WINDOW', lambda: win.destroy())
win.mainloop()

0 comments on commit f393394

Please sign in to comment.