Skip to content

Commit 320b908

Browse files
authored
fix various issues in README
Capitalize numberguessinggame -> NumberGuessingGame, as changed in release 0.1.10 Remove unneeded statements that artifacts will be uploaded to github releases on a release creation
1 parent 646cbaf commit 320b908

1 file changed

Lines changed: 17 additions & 17 deletions

File tree

README.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -25,24 +25,24 @@ For Debian/Ubuntu and derivatives (recommended for terminal usage):
2525

2626
You can use curl to do it from the command line:
2727
```bash
28-
curl -s -L -o numberguessinggame.deb https://github.com/Project516/NumberGuessingGame/releases/latest/download/numberguessinggame.deb
28+
curl -s -L -o NumberGuessingGame.deb https://github.com/Project516/NumberGuessingGame/releases/latest/download/NumberGuessingGame.deb
2929
```
3030
2. Install it:
3131
```bash
3232
sudo apt update # Update packages
33-
sudo apt install ./numberguessinggame.deb # From directory with the deb package
33+
sudo apt install ./NumberGuessingGame.deb # From directory with the deb package
3434
sudo apt install -f # Install dependencies
3535
echo 'export PATH=$PATH:/usr/games' >> ~/.bashrc # Add games directory to user PATH
3636
source ~/.bashrc
3737
```
3838
3. Run from anywhere in your terminal:
3939
```bash
40-
numberguessinggame
40+
NumberGuessingGame
4141
```
4242

4343
To uninstall:
4444
```bash
45-
sudo apt remove numberguessinggame
45+
sudo apt remove NumberGuessingGame
4646
sudo apt autoremove -y # Remove dependencies
4747
```
4848

@@ -54,33 +54,33 @@ For Fedora, RHEL, CentOS, and other RPM-based distributions:
5454

5555
You can use curl to do it from the command line:
5656
```bash
57-
curl -s -L -o numberguessinggame.rpm https://github.com/Project516/NumberGuessingGame/releases/latest/download/numberguessinggame.rpm
57+
curl -s -L -o NumberGuessingGame.rpm https://github.com/Project516/NumberGuessingGame/releases/latest/download/NumberGuessingGame.rpm
5858
```
5959
2. Install it:
6060
```bash
61-
sudo dnf install ./numberguessinggame.rpm
61+
sudo dnf install ./NumberGuessingGame.rpm
6262
```
6363
Or on older systems:
6464
```bash
65-
sudo yum install ./numberguessinggame.rpm
65+
sudo yum install ./NumberGuessingGame.rpm
6666
```
6767
3. Run from anywhere in your terminal:
6868
```bash
69-
numberguessinggame
69+
NumberGuessingGame
7070
```
7171

7272
To uninstall:
7373
```bash
74-
sudo dnf remove numberguessinggame
74+
sudo dnf remove NumberGuessingGame
7575
```
7676
Or on older systems:
7777
```bash
78-
sudo yum remove numberguessinggame
78+
sudo yum remove NumberGuessingGame
7979
```
8080

8181
### Standalone Packages with Bundled JRE (Recommended)
8282

83-
Download the platform-specific package with bundled JRE from the [latest release](https://github.com/project516/numberguessinggame/releases):
83+
Download the platform-specific package with bundled JRE from the [latest release](https://github.com/project516/NumberGuessingGame/releases):
8484

8585
- **Windows**: `NumberGuessingGame-windows.zip`
8686
- **macOS**: `NumberGuessingGame-macos.zip`
@@ -96,7 +96,7 @@ Run `run.sh`
9696

9797
### Manual Installation (Requires Java)
9898

99-
Download the `archive.zip` from the [latest release](https://github.com/project516/numberguessinggame/releases)
99+
Download the `archive.zip` from the [latest release](https://github.com/project516/NumberGuessingGame/releases)
100100

101101
#### Requirements
102102

@@ -154,7 +154,7 @@ In console mode:
154154

155155
### High Scores
156156

157-
The game automatically tracks high scores (games won with the least guesses). High scores are stored in your home directory at `~/.numberguessinggame/highscores.properties`.
157+
The game automatically tracks high scores (games won with the least guesses). High scores are stored in your home directory at `~/.NumberGuessingGame/highscores.properties`.
158158

159159
- The top 10 scores are kept
160160
- Scores are sorted by the number of guesses (least is best)
@@ -195,21 +195,21 @@ Run `.\gradlew build` and `.\package.bat` from the project root.
195195
**On Linux/Mac:**
196196
Run `./package.sh` from the project root.
197197

198-
This will create `archive.zip` containing the application, run scripts, README, and LICENSE. The archive can be released to GitHub Releases.
198+
This will create `archive.zip` containing the application, run scripts, README, and LICENSE.
199199

200200
#### Debian Package
201201

202202
**On Linux:**
203203
Run `./package-deb.sh` from the project root.
204204

205-
This will create `numberguessinggame.deb` which can be installed via `apt`/`dpkg` on Debian-based systems. The package can be released to GitHub Releases for easy distribution.
205+
This will create `NumberGuessingGame.deb` which can be installed via `apt`/`dpkg` on Debian-based systems.
206206

207207
#### Fedora/RPM Package
208208

209209
**On Linux (requires rpm-build):**
210210
Run `./package-rpm.sh` from the project root.
211211

212-
This will create `numberguessinggame-1.0.0-1.noarch.rpm` which can be installed via `dnf`/`yum`/`rpm` on Fedora, RHEL, CentOS, and other RPM-based systems. The package can be released to GitHub Releases for easy distribution.
212+
This will create `NumberGuessingGame.rpm` which can be installed via `dnf`/`yum`/`rpm` on Fedora, RHEL, CentOS, and other RPM-based systems.
213213

214214
#### Platform-Specific Packages with Bundled JRE
215215

@@ -222,4 +222,4 @@ Run the following scripts to create platform-specific packages with bundled JRE:
222222
./package-linux.sh # Creates NumberGuessingGame-linux.tar.xz
223223
```
224224

225-
These packages include a bundled JRE and do not require Java to be installed on the target system. They are automatically built and uploaded to GitHub Releases via GitHub Actions.
225+
These packages include a bundled JRE and do not require Java to be installed on the target system.

0 commit comments

Comments
 (0)