Skip to content

Commit

Permalink
official rename
Browse files Browse the repository at this point in the history
  • Loading branch information
Noiredd committed Jan 31, 2019
1 parent 1c2c62e commit 6fe2881
Show file tree
Hide file tree
Showing 14 changed files with 5 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
5 changes: 3 additions & 2 deletions fw-local/gui.py → filmatyk/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,12 +127,13 @@ def _cancelClick(self):
self.window.withdraw()

class Main(object):
filename = 'filmatyk.dat' # will be created in user documents/home directory
filename = 'filmatyk.dat' # will be created in user documents/home directory
wintitle = '{}Filmatyk' # format with debug flag

def __init__(self, debugMode=False):
self.debugMode = debugMode
self.root = root = tk.Tk()
root.title('FW local' + (' DEBUG' if self.debugMode else ''))
root.title(self.wintitle.format('[DEBUG] ' if self.debugMode else ''))
# construct the window: first the notebook for tabbed view
self.notebook = ttk.Notebook(root)
self.notebook.grid(row=0, column=0, padx=5, pady=5, sticky=tk.NW)
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions fw-local.bat
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ IF %ERRORLEVEL% NEQ 0 (
)

REM First of all, execute the dependency check tool
%pyexe% fw-local\dependency_test.py
%pyexe% filmatyk\dependency_test.py
REM If it left a list of packages to install - pass it to pip
IF EXIST install.txt (
REM Tester can leave a list of missing packages. In this case - install them,
Expand All @@ -21,7 +21,7 @@ IF EXIST install.txt (
)

REM Only now trust the dependencies to be satisfied and launch
CD fw-local
CD filmatyk
SET command=pythonw gui.py

IF [%1]==[] GOTO launch
Expand Down

0 comments on commit 6fe2881

Please sign in to comment.