diff --git a/docal_tkinter/menubar.py b/docal_tkinter/menubar.py index 1d8533c..672d2ca 100644 --- a/docal_tkinter/menubar.py +++ b/docal_tkinter/menubar.py @@ -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()