Skip to content

Commit 54bb100

Browse files
committed
Complete code rename for ChiselPDF
1 parent a05faa2 commit 54bb100

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
3232
- name: Build with PyInstaller
3333
run: |
34-
pyinstaller --onefile --windowed --name "PDF-Page-Selector" --add-data "style.qss;." main.py
34+
pyinstaller --onefile --windowed --name "ChiselPDF" --add-data "style.qss;." main.py
3535
3636
- name: Set up .NET
3737
uses: actions/setup-dotnet@v4
@@ -50,7 +50,7 @@ jobs:
5050
5151
- name: Package with Velopack
5252
run: |
53-
vpk pack --packId ChiselPDF --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 ChiselPDF.exe
5454
5555
- name: Create Release and Upload Assets
5656
uses: softprops/action-gh-release@v1

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ A simple desktop application for working with PDF files. ChiselPDF allows you to
77
### Clone the Repository
88

99
```bash
10-
git clone https://github.com/kelltom/pdf-page-selector.git
11-
cd pdf-page-selector
10+
git clone https://github.com/kelltom/ChiselPDF.git
11+
cd ChiselPDF
1212
```
1313

1414
### Set Up Virtual Environment

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ def update_app():
250250
try:
251251
# Check for updates from GitHub releases
252252
# GitHub Actions will upload release files to the latest release
253-
manager = velopack.UpdateManager("https://github.com/kelltom/pdf-page-selector/releases/latest/download/")
253+
manager = velopack.UpdateManager("https://github.com/kelltom/ChiselPDF/releases/latest/download/")
254254
update_info = manager.check_for_updates()
255255

256256
if not update_info:

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["setuptools>=61.0", "wheel"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
6-
name = "pdf-page-selector"
6+
name = "ChiselPDF"
77
version = "1.0.0"
88
description = "A simple desktop application for working with PDF files"
99
readme = "README.md"
@@ -37,6 +37,6 @@ dev = [
3737
]
3838

3939
[project.urls]
40-
Homepage = "https://github.com/kelltom/pdf-page-selector"
41-
Repository = "https://github.com/kelltom/pdf-page-selector.git"
42-
Issues = "https://github.com/kelltom/pdf-page-selector/issues"
40+
Homepage = "https://github.com/kelltom/ChiselPDF"
41+
Repository = "https://github.com/kelltom/ChiselPDF.git"
42+
Issues = "https://github.com/kelltom/ChiselPDF/issues"

0 commit comments

Comments
 (0)