From 3d568ae8799066c1299fbaa1a31253cd6a5c05d6 Mon Sep 17 00:00:00 2001 From: accius Date: Thu, 29 Jan 2026 23:52:05 -0500 Subject: [PATCH] init commit --- CONTRIBUTING.md | 6 +++--- README.md | 15 ++++++++------- electron/main.js | 4 ++-- package.json | 6 +++--- scripts/setup-linux.sh | 4 ++-- scripts/setup-pi.sh | 2 +- scripts/setup-windows.ps1 | 2 +- 7 files changed, 20 insertions(+), 19 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c946159..1d813d6 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -25,7 +25,7 @@ This project and everyone participating in it is governed by our [Code of Conduc ### Good First Issues -Looking for something to work on? Check out issues labeled [`good first issue`](https://github.com/k0cjh/openhamclock/labels/good%20first%20issue) - these are great for newcomers! +Looking for something to work on? Check out issues labeled [`good first issue`](https://github.com/accius/openhamclock/labels/good%20first%20issue) - these are great for newcomers! ## How Can I Contribute? @@ -98,7 +98,7 @@ git clone https://github.com/YOUR_USERNAME/openhamclock.git cd openhamclock # Add upstream remote -git remote add upstream https://github.com/k0cjh/openhamclock.git +git remote add upstream https://github.com/accius/openhamclock.git # Install dependencies npm install @@ -209,8 +209,8 @@ Contributors will be recognized in: Feel free to: - Open a GitHub Discussion +- Email chris@cjhlighting.com - Reach out to maintainers -- Join the amateur radio community discussions --- diff --git a/README.md b/README.md index 8bdb8ed..02c72ee 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ OpenHamClock is a spiritual successor to the beloved HamClock application create ```bash # Clone the repository -git clone https://github.com/k0cjh/openhamclock.git +git clone https://github.com/accius/openhamclock.git cd openhamclock # Install dependencies @@ -91,19 +91,19 @@ npm start **Linux/macOS:** ```bash -curl -fsSL https://raw.githubusercontent.com/k0cjh/openhamclock/main/scripts/setup-linux.sh | bash +curl -fsSL https://raw.githubusercontent.com/accius/openhamclock/main/scripts/setup-linux.sh | bash ``` **Windows (PowerShell as Admin):** ```powershell -Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/k0cjh/openhamclock/main/scripts/setup-windows.ps1')) +Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/accius/openhamclock/main/scripts/setup-windows.ps1')) ``` ### 🍓 Raspberry Pi ```bash # Download and run the Pi setup script -curl -fsSL https://raw.githubusercontent.com/k0cjh/openhamclock/main/scripts/setup-pi.sh -o setup-pi.sh +curl -fsSL https://raw.githubusercontent.com/accius/openhamclock/main/scripts/setup-pi.sh -o setup-pi.sh chmod +x setup-pi.sh # Standard installation @@ -199,7 +199,7 @@ const CONFIG = { ```bash # Clone and setup -git clone https://github.com/k0cjh/openhamclock.git +git clone https://github.com/accius/openhamclock.git cd openhamclock npm install @@ -275,8 +275,9 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file ## 📞 Contact -- **GitHub Issues**: [Report bugs or request features](https://github.com/k0cjh/openhamclock/issues) -- **Discussions**: [Join the conversation](https://github.com/k0cjh/openhamclock/discussions) +- **Email**: chris@cjhlighting.com +- **GitHub Issues**: [Report bugs or request features](https://github.com/accius/openhamclock/issues) +- **Discussions**: [Join the conversation](https://github.com/accius/openhamclock/discussions) --- diff --git a/electron/main.js b/electron/main.js index 4266a96..11b3ea0 100644 --- a/electron/main.js +++ b/electron/main.js @@ -192,14 +192,14 @@ function createMenu() { { label: 'GitHub Repository', click: () => { - shell.openExternal('https://github.com/k0cjh/openhamclock'); + shell.openExternal('https://github.com/accius/openhamclock'); } }, { type: 'separator' }, { label: 'Report Issue', click: () => { - shell.openExternal('https://github.com/k0cjh/openhamclock/issues/new'); + shell.openExternal('https://github.com/accius/openhamclock/issues/new'); } }, { type: 'separator' }, diff --git a/package.json b/package.json index 4153f88..e7c564a 100644 --- a/package.json +++ b/package.json @@ -34,12 +34,12 @@ "license": "MIT", "repository": { "type": "git", - "url": "https://github.com/k0cjh/openhamclock.git" + "url": "https://github.com/accius/openhamclock.git" }, "bugs": { - "url": "https://github.com/k0cjh/openhamclock/issues" + "url": "https://github.com/accius/openhamclock/issues" }, - "homepage": "https://github.com/k0cjh/openhamclock#readme", + "homepage": "https://github.com/accius/openhamclock#readme", "dependencies": { "express": "^4.18.2", "cors": "^2.8.5", diff --git a/scripts/setup-linux.sh b/scripts/setup-linux.sh index b594d19..765da74 100644 --- a/scripts/setup-linux.sh +++ b/scripts/setup-linux.sh @@ -5,7 +5,7 @@ # Quick installation script for Linux and macOS systems # # Usage: -# curl -fsSL https://raw.githubusercontent.com/k0cjh/openhamclock/main/scripts/setup-linux.sh | bash +# curl -fsSL https://raw.githubusercontent.com/accius/openhamclock/main/scripts/setup-linux.sh | bash # # Or manually: # chmod +x setup-linux.sh @@ -69,7 +69,7 @@ setup_repo() { git pull else echo "Cloning repository..." - git clone https://github.com/k0cjh/openhamclock.git "$INSTALL_DIR" + git clone https://github.com/accius/openhamclock.git "$INSTALL_DIR" cd "$INSTALL_DIR" fi diff --git a/scripts/setup-pi.sh b/scripts/setup-pi.sh index 126fe41..475fb53 100644 --- a/scripts/setup-pi.sh +++ b/scripts/setup-pi.sh @@ -133,7 +133,7 @@ setup_repository() { git pull else echo "Cloning repository..." - git clone https://github.com/k0cjh/openhamclock.git "$INSTALL_DIR" + git clone https://github.com/accius/openhamclock.git "$INSTALL_DIR" cd "$INSTALL_DIR" fi diff --git a/scripts/setup-windows.ps1 b/scripts/setup-windows.ps1 index 5bd0264..96f412b 100644 --- a/scripts/setup-windows.ps1 +++ b/scripts/setup-windows.ps1 @@ -58,7 +58,7 @@ function Setup-Repository { } else { Write-Host "Cloning repository..." - git clone https://github.com/k0cjh/openhamclock.git $InstallDir + git clone https://github.com/accius/openhamclock.git $InstallDir Set-Location $InstallDir }