Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/dev' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
GamerVII-NET committed Oct 12, 2024
2 parents 6bff98c + a859571 commit 50c4011
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 1 deletion.
1 change: 1 addition & 0 deletions Gml.Launcher.sln
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "common", "common", "{09A802
load-repositories.bat = load-repositories.bat
load-repositories.sh = load-repositories.sh
.github\workflows\dotnet.yml = .github\workflows\dotnet.yml
src\Gml.Client\README.md = src\Gml.Client\README.md
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Gml.Launcher", "src\Gml.Launcher\Gml.Launcher.csproj", "{F2771E71-C782-4713-862F-217694DDDFF5}"
Expand Down
66 changes: 66 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,69 @@
GamerVII Launcher
=======
The Minecraft Launcher is a user-friendly application designed to streamline the process of launching Minecraft and managing game settings. It provides an intuitive interface and essential features to enhance the Minecraft gaming experience.

## Installation

### Prerequisites

Before installing the GamerVII Launcher, ensure you have the following prerequisites:

- **.NET 8.0 SDK:** You need to have .NET 8.0 SDK installed on your system. You can download it
from [Microsoft's official website](https://dotnet.microsoft.com/download/dotnet/8.0) or use a package manager
suitable for your operating system.

- **Git:** Ensure Git is installed on your system. You can download it from
the [Git website](https://git-scm.com/downloads) or use a package manager.

### Steps to Install GamerVII Launcher

1. **Clone the Repository:**
Open a terminal and clone the repository using Git with the `--recursive` option:
```bash
git clone --recursive https://github.com/GamerVII-NET/minecraft-launcher.git
cd minecraft-launcher
```

2. **Build the Project:**
Restore the dependencies and build the project using the .NET CLI:
```bash
dotnet restore
dotnet build
```

3. **Run the Launcher:**
Once the project is built, you can run the launcher using the following command:
```bash
dotnet run --project path/to/your/project
```

### Troubleshooting

If you encounter any issues during the installation, ensure the following:

- Ensure the .NET SDK is correctly installed and the `DOTNET_HOME` environment variable is set.
- Ensure Git is correctly installed and available in the terminal.
- Make sure you have the necessary permissions to run the build and execute the application.

For additional help, check the project's issue tracker or community forums.

### Updating

To update the GamerVII Launcher to the latest version, navigate to the project directory and pull the latest changes
from the repository:

```bash
git pull origin main
git submodule update --recursive --remote
dotnet build
```

Then, run the launcher again using the command mentioned earlier.

### Uninstallation

To uninstall the GamerVII Launcher, simply delete the project directory:

```bash
rm -rf minecraft-launcher
```
2 changes: 1 addition & 1 deletion src/Gml.Client

0 comments on commit 50c4011

Please sign in to comment.