Skip to content

Commit 0c2ef57

Browse files
authored
Merge branch 'master' into deb-and-dnf-fix
2 parents 3a09256 + 2124134 commit 0c2ef57

2 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/gradle.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
# Configure Gradle for optimal use in GitHub Actions, including caching of downloaded dependencies.
2929
# See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md
3030
- name: Setup Gradle
31-
uses: gradle/actions/setup-gradle@f29f5a9d7b09a7c6b29859002d29d24e1674c884 # v5.0.1
31+
uses: gradle/actions/setup-gradle@0723195856401067f7a2779048b490ace7a47d7c # v5.0.2
3232

3333
- name: Build with Gradle Wrapper
3434
run: ./gradlew build
@@ -61,4 +61,4 @@ jobs:
6161
# Generates and submits a dependency graph, enabling Dependabot Alerts for all project dependencies.
6262
# See: https://github.com/gradle/actions/blob/main/dependency-submission/README.md
6363
- name: Generate and submit dependency graph
64-
uses: gradle/actions/dependency-submission@f29f5a9d7b09a7c6b29859002d29d24e1674c884 # v5.0.1
64+
uses: gradle/actions/dependency-submission@0723195856401067f7a2779048b490ace7a47d7c # v5.0.2

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ For Debian/Ubuntu and derivatives:
3737
```
3838
3. Run from anywhere in your terminal (launches GUI by default):
3939
```bash
40-
numberguessinggame
40+
NumberGuessingGame
4141
```
4242

4343
To run in console mode, use the `-c` flag:
@@ -47,7 +47,7 @@ For Debian/Ubuntu and derivatives:
4747

4848
To uninstall:
4949
```bash
50-
sudo apt remove numberguessinggame
50+
sudo apt remove NumberGuessingGame
5151
sudo apt autoremove -y # Remove dependencies
5252
```
5353

@@ -71,7 +71,7 @@ For Fedora, RHEL, CentOS, and other RPM-based distributions:
7171
```
7272
3. Run from anywhere in your terminal (launches GUI by default):
7373
```bash
74-
numberguessinggame
74+
NumberGuessingGame
7575
```
7676

7777
To run in console mode, use the `-c` flag:
@@ -81,16 +81,16 @@ For Fedora, RHEL, CentOS, and other RPM-based distributions:
8181

8282
To uninstall:
8383
```bash
84-
sudo dnf remove numberguessinggame
84+
sudo dnf remove NumberGuessingGame
8585
```
8686
Or on older systems:
8787
```bash
88-
sudo yum remove numberguessinggame
88+
sudo yum remove NumberGuessingGame
8989
```
9090

9191
### Standalone Packages with Bundled JRE (Recommended)
9292

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

9595
- **Windows**: `NumberGuessingGame-windows.zip`
9696
- **macOS**: `NumberGuessingGame-macos.zip`
@@ -106,7 +106,7 @@ Run `run.sh`
106106

107107
### Manual Installation (Requires Java)
108108

109-
Download the `archive.zip` from the [latest release](https://github.com/Project516/NumberGuessingGame/releases)
109+
Download the `archive.zip` from the [latest release](https://github.com/project516/NumberGuessingGame/releases)
110110

111111
#### Requirements
112112

@@ -204,21 +204,21 @@ Run `.\gradlew build` and `.\package.bat` from the project root.
204204
**On Linux/Mac:**
205205
Run `./package.sh` from the project root.
206206

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

209209
#### Debian Package
210210

211211
**On Linux:**
212212
Run `./package-deb.sh` from the project root.
213213

214-
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.
214+
This will create `NumberGuessingGame.deb` which can be installed via `apt`/`dpkg` on Debian-based systems.
215215

216216
#### Fedora/RPM Package
217217

218218
**On Linux (requires rpm-build):**
219219
Run `./package-rpm.sh` from the project root.
220220

221-
This will create `NumberGuessingGame.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.
221+
This will create `NumberGuessingGame.rpm` which can be installed via `dnf`/`yum`/`rpm` on Fedora, RHEL, CentOS, and other RPM-based systems.
222222

223223
#### Platform-Specific Packages with Bundled JRE
224224

@@ -231,4 +231,4 @@ Run the following scripts to create platform-specific packages with bundled JRE:
231231
./package-linux.sh # Creates NumberGuessingGame-linux.tar.xz
232232
```
233233

234-
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.
234+
These packages include a bundled JRE and do not require Java to be installed on the target system.

0 commit comments

Comments
 (0)