Skip to content

Commit ee2e401

Browse files
committed
Rename application to ChiselPDF in UI and packaging
1 parent d00c2c0 commit ee2e401

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
5151
- name: Package with Velopack
5252
run: |
53-
vpk pack --packId kelltom.pdfpageselector --packVersion ${{ steps.version.outputs.VERSION }} --packDir .\dist --mainExe PDF-Page-Selector.exe
53+
vpk pack --packId ChiselPDF --packVersion ${{ steps.version.outputs.VERSION }} --packDir .\dist --mainExe PDF-Page-Selector.exe
5454
5555
- name: Create Release and Upload Assets
5656
uses: softprops/action-gh-release@v1

main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ def __init__(self):
329329
self.init_ui()
330330

331331
def init_ui(self):
332-
self.setWindowTitle("PDF Page Selector")
332+
self.setWindowTitle("ChiselPDF")
333333
self.setMinimumSize(400, 580)
334334
self.resize(400, 580)
335335
self.setStyleSheet(load_stylesheet())
@@ -344,7 +344,7 @@ def init_ui(self):
344344
layout.setSpacing(15)
345345

346346
# Title
347-
title = QLabel("PDF Page Selector")
347+
title = QLabel("ChiselPDF")
348348
title.setFont(QFont("", 18, QFont.Weight.Bold))
349349
title.setAlignment(Qt.AlignmentFlag.AlignCenter)
350350
layout.addWidget(title)

0 commit comments

Comments
 (0)