Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
tposejank committed May 23, 2024
2 parents fdeaa3d + 4dee86d commit 5b932e2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![Window icon](icon.ico)
![Window icon](big-icon.webp)
# Friday Night Funkin' Mod Porter

Ports FNF mods between engines using Python. Right now, there's only support for Psych Engine to the Base Game, but new modes are coming soon! It has a GUI, cross-platform support, and logs (check the logs folder).
Expand Down
Binary file added big-icon.webp
Binary file not shown.
6 changes: 3 additions & 3 deletions psychtobase/src/window.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ def __init__(self):
self.helpButton.clicked.connect(self.goToIssues)

self.gbButton = QPushButton("Gamebanana", self)
self.gbButton.setToolTip('https://gamebanana.com/tools/')
self.gbButton.setToolTip('https://gamebanana.com/tools/16982')
self.gbButton.move(240, 320)
self.gbButton.resize(100, 30)
self.gbButton.clicked.connect(self.goToGB)
Expand Down Expand Up @@ -422,7 +422,7 @@ def goToIssues(self):
webbrowser.open('https://github.com/gusborg88/fnf-porter/issues/new?body=Log+file+output+(check+logs+folder):%0A```%0A%0A```')

def goToGB(self):
_GB_ToolID = ''
_GB_ToolID = '16982'
webbrowser.open(f'https://gamebanana.com/tools/{_GB_ToolID}')

def openLogFile(self):
Expand Down Expand Up @@ -466,4 +466,4 @@ def prompt(prompt, body, inputs, file):

# How to use this damn function:

### window.prompt('input', 'Some text about the request', [['Some text about the purpose of this input', 'Placeholder (Gray text) on this input']], 'file.py')
### window.prompt('input', 'Some text about the request', [['Some text about the purpose of this input', 'Placeholder (Gray text) on this input']], 'file.py')

0 comments on commit 5b932e2

Please sign in to comment.