-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from Hamster5295/dev
V0.1.0
- Loading branch information
Showing
7 changed files
with
505 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# ChangeLog | ||
This is the changelog of **Godo**, a version manager for [Godot Engine](https://github.com/godotengine/godot). | ||
|
||
## [1.0.0] - 2024-1-6 | ||
### Added | ||
* Basic command support | ||
* `install` - Install Godot Engine with specific version. | ||
* `uninstall` - Uninstall Godot Engine with specific version. | ||
* `available` - Show the list of the available Godot Engine versions. | ||
* `list` - List the installed Godot Engines. | ||
* `run` - Run Godot Engine with specific version. | ||
* Automatic installing, uninstalling and running features. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
[package] | ||
name = "godo" | ||
version = "0.1.0" | ||
authors = ["Hamster5295 <[email protected]>"] | ||
edition = "2021" | ||
description = "A version manager for Godot Engine." | ||
readme= "README.md" | ||
repository = "https://github.com/Hamster5295/godo" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,58 @@ | ||
# Godo | ||
A command-line tool for managing Godot Engines on local machine. | ||
A command-line tool for managing different versions of [Godot Engine](https://github.com/godotengine/godot)s. | ||
|
||
Written in Rust. | ||
**Currently Under Development** | ||
|
||
## Expected Features | ||
* Installing and uninstalling Godot by specified versions. | ||
* Running Godot instances from Cli. | ||
> [info] | ||
> Currently **Godo** supports Windows only, and will soon catch up with macos and linux :D | ||
## Quick Start | ||
Install the latest stable version of Godot: | ||
```Bash | ||
godo install | ||
``` | ||
|
||
...with **Mono** support: | ||
```Bash | ||
godo install -m | ||
``` | ||
|
||
Install 3.x version: | ||
```Bash | ||
godo install 3 | ||
``` | ||
|
||
|
||
Run Godot with latest stable version: | ||
```Bash | ||
godo run | ||
``` | ||
|
||
...with specified version: | ||
```Bash | ||
godo run 3 | ||
``` | ||
|
||
|
||
See what's available to install! | ||
```Bash | ||
godo available | ||
``` | ||
|
||
|
||
...with **prereleased** versions | ||
```Bash | ||
godo available -p | ||
``` | ||
|
||
|
||
What's already installed? | ||
```Bash | ||
godo list | ||
``` | ||
|
||
|
||
I don't want the version anymore! | ||
```Bash | ||
godo uninstall 4.2-stable | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.