Skip to content

Commit

Permalink
ready for 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
christopher-roelofs committed Apr 19, 2017
1 parent e335b40 commit de7ea8d
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
13 changes: 13 additions & 0 deletions about.txt
Original file line number Diff line number Diff line change
@@ -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
7 changes: 7 additions & 0 deletions frontend.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit de7ea8d

Please sign in to comment.