Skip to content

Commit

Permalink
Renaming to Vidify Web
Browse files Browse the repository at this point in the history
  • Loading branch information
pawKer committed Nov 6, 2020
1 parent 70f14be commit f9932e1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
12 changes: 10 additions & 2 deletions gui_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,25 @@ def __init__(self):
QMainWindow.__init__(self)

self.setMinimumSize(QSize(240, 120))
self.setWindowTitle("Vidify")
self.setWindowTitle("Vidify Web")

centralWidget = QWidget(self)
self.setCentralWidget(centralWidget)

gridLayout = QGridLayout()
centralWidget.setLayout(gridLayout)

title = QLabel("The app will start in your browser soon!", self)
title = QLabel("Vidify Web is now running. A new tab will be opened in your browser!", self)
title.setAlignment(QtCore.Qt.AlignCenter)
font = title.font()
font.setPointSize(15)
title.setFont(font)

stopInst = QLabel("To stop the app just close this window.", self)
stopInst.setAlignment(QtCore.Qt.AlignCenter)

gridLayout.addWidget(title, 0, 0)
gridLayout.addWidget(stopInst, 1, 0)
self.show()

if __name__ == '__main__':
Expand Down
2 changes: 1 addition & 1 deletion templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6 offset-3 float-md-center vertical-center">
<div class="jumbotron jumbotronCustom">
<h1 class="display-4">Vidify has started!</h1>
<h1 class="display-4">Vidify Web has started!</h1>
<p class="lead">Enjoy awesome visuals right in your browser while listening to the high-quality Spotify audio!</p>
<p class="lead">Maximize your browser for the best experience (<i>F11, fn + F11 or ^⌘F and ⇧⌘F</i>).</p>
<hr class="my-4">
Expand Down

0 comments on commit f9932e1

Please sign in to comment.