Skip to content

Commit 25d7fa2

Browse files
committed
Renames
1 parent c5b1156 commit 25d7fa2

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

TOOL_DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This guide explains how to add new tools or modify existing tools in the JW Tool
77
The application now uses the following structure for tools:
88

99
```
10-
jwtools/
10+
khmtools/
1111
├── main.js # Main Electron application
1212
├── preload.js # Preload script for IPC
1313
├── renderer.js # Frontend JavaScript

buildreadme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ Before building the application, ensure you have the following installed:
1616
1. Clone the repository:
1717

1818
```bash
19-
git clone https://github.com/advenimus/jwtools.git
20-
cd jwtools
19+
git clone https://github.com/advenimus/khmtools.git
20+
cd khmtools
2121
```
2222
2. Install dependencies:
2323

dev-app-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
provider: github
22
owner: advenimus
3-
repo: jwtools
3+
repo: khmtools

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/auto-updater.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ function initAutoUpdater(mainWindow) {
1111
autoUpdater.setFeedURL({
1212
provider: 'github',
1313
owner: 'advenimus',
14-
repo: 'jwtools'
14+
repo: 'khmtools'
1515
});
1616

1717
autoUpdater.allowPrerelease = false;
@@ -23,7 +23,7 @@ function initAutoUpdater(mainWindow) {
2323
console.log('Checking for updates...');
2424

2525
// Log the GitHub repository URL being used
26-
const repo = `https://github.com/advenimus/jwtools/releases`;
26+
const repo = `https://github.com/advenimus/khmtools/releases`;
2727
console.log('Update repository:', repo);
2828

2929
// Check for updates after a short delay to ensure window is ready

updatereadme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,14 @@ This will create distribution packages in the `dist` directory.
5050

5151
### 6. Create a GitHub Release
5252

53-
1. Go to your GitHub repository: https://github.com/advenimus/jwtools
53+
1. Go to your GitHub repository: https://github.com/advenimus/khmtools
5454
2. Click on "Releases" in the right sidebar
5555
3. Click "Create a new release"
5656
4. Select the tag you just pushed (e.g., v1.0.2)
5757
5. Set the release title (e.g., "JW Tools v1.0.2")
5858
6. Add release notes describing the changes in this version
5959
7. Upload the distribution files from your `dist` folder:
60-
- For Windows: `.exe` installer (e.g., `jwtools-1.0.2-arm64.exe`)
60+
- For Windows: `.exe` installer (e.g., `khmtools-1.0.2-arm64.exe`)
6161
- For macOS: `.dmg` file
6262
- For Linux: `.AppImage`, `.deb`, and/or `.rpm` files
6363
8. Click "Publish release"
@@ -110,7 +110,7 @@ If updates aren't working:
110110
2. Verify that the GitHub release is published and contains the correct files
111111
3. Ensure the release tag matches the version in `package.json` (with 'v' prefix)
112112
4. Check the application logs for any error messages related to updates
113-
- Logs are stored in `~/Library/Logs/jwtools/main.log` on macOS
113+
- Logs are stored in `~/Library/Logs/khmtools/main.log` on macOS
114114
- The app expects files to be named consistently (e.g., `JW-Tools-1.0.2-arm64.dmg`)
115115
5. Verify that the GitHub repository URL in `package.json` is correct
116116

0 commit comments

Comments
 (0)