diff --git a/about.txt b/about.txt new file mode 100644 index 0000000..809b479 --- /dev/null +++ b/about.txt @@ -0,0 +1,13 @@ +FunKiiU Frontend + +A frontend for FunKiiU written in Python. + +Thanks to cearp for writing FunKiiU,cerea1killer for his re-write of FunKiiU, and dojafoja for +FunkiiUI which I took inspiration from and a couple pieces of code. + +https://github.com/llakssz/FunKiiU +https://github.com/dojafoja/FunKii-UI + +Changelog + +4-19-17 v1.0 initial release \ No newline at end of file diff --git a/frontend.py b/frontend.py index d7602c6..cf281c5 100644 --- a/frontend.py +++ b/frontend.py @@ -504,6 +504,13 @@ def update_rss(): about_tab = Frame(note) about_tab.rowconfigure(0,weight=1) about_tab.columnconfigure(0,weight=1) +aboutbox= Text(about_tab) +aboutbox.grid(row=0, column=0, sticky="nsew") +with open("about.txt") as about: + for line in about: + aboutbox.insert(END,line) +aboutbox.config(state="disabled") + def handler(): root.destroy()