Skip to content

Commit

Permalink
Set naming to NeoVial.
Browse files Browse the repository at this point in the history
  • Loading branch information
am-zed committed Jan 5, 2025
1 parent 5c88ba5 commit 477c02e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion misc/README.pyinstaller.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ These are the command-line options used to generate the .spec file for pyinstall
```
pyi-makespec \
--specpath=misc \
--name=Vial \
--name=NeoVial \
--add-data="../src/main/resources/base/qmk_settings.json:resources/base" \
--add-data="../src/build/settings/base.json:resources/settings" \
--add-data="../src/build/settings/linux.json:resources/settings" \
Expand Down
4 changes: 2 additions & 2 deletions misc/Vial.desktop
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[Desktop Entry]
Name=Vial
Name=NeoVial
Type=Application
Exec=Vial
Exec=NeoVial
Terminal=false
NoDisplay=false
Categories=Utility;
Expand Down
2 changes: 1 addition & 1 deletion misc/build_spec.bat
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
REM Only useful to regenerate or add options to Vial.spec
pyi-makespec ^
--specpath=misc ^
--name=Vial ^
--name=NeoVial ^
--add-data="../src/main/resources/base/qmk_settings.json:resources/base" ^
--add-data="../src/build/settings/base.json:resources/settings" ^
--add-data="../src/build/settings/linux.json:resources/settings" ^
Expand Down
2 changes: 1 addition & 1 deletion src/main/python/editor/keymap_editor.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def export_as_svg(self, filename):
generator.setViewBox(QRect(0, 0, widget.width, widget.height * self.keyboard.layers))
generator.setFileName(filename)
generator.setTitle("My Keymap")
generator.setDescription("Keymap generated from Vial")
generator.setDescription("Keymap generated from NeoVial")
painter = QPainter()
painter.begin(generator)
current_layer = self.current_layer
Expand Down
6 changes: 3 additions & 3 deletions src/main/python/main_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ def init_menu(self):
if theme_group.checkedAction() is None:
theme_group.actions()[0].setChecked(True)

about_vial_act = QAction(tr("MenuAbout", "About Vial..."), self)
about_vial_act = QAction(tr("MenuAbout", "About NeoVial..."), self)
about_vial_act.triggered.connect(self.about_vial)
self.about_keyboard_act = QAction("", self)
self.about_keyboard_act.triggered.connect(self.about_keyboard)
Expand Down Expand Up @@ -425,8 +425,8 @@ def on_tab_changed(self, index):
self.current_tab = new_tab

def about_vial(self):
title = "About Vial"
text = 'Vial {}<br><br>Python {}<br>Qt {}<br><br>' \
title = "About NeoVial"
text = 'NeoVial {}<br><br>Python {}<br>Qt {}<br><br>' \
'Licensed under the terms of the<br>GNU General Public License (version 2 or later)<br><br>' \
'<a href="https://get.vial.today/">https://get.vial.today/</a>' \
.format(qApp.applicationVersion(),
Expand Down

0 comments on commit 477c02e

Please sign in to comment.