mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2025-02-07 09:07:00 -05:00
Add Linux build info to README (#163)
This commit is contained in:
parent
f13433f299
commit
050faf2c06
26
README.md
26
README.md
@ -29,13 +29,20 @@ To run the project, run `go run .` from the root folder.
|
|||||||
|
|
||||||
You can also open the root folder in VSCode. Make sure you have the `ms-vscode.go` plugin installed.
|
You can also open the root folder in VSCode. Make sure you have the `ms-vscode.go` plugin installed.
|
||||||
|
|
||||||
|
### Linux
|
||||||
|
|
||||||
|
There are several dependencies which need to be installed additionally.
|
||||||
|
To install them you can use `run.sh` in the project root folder - this script takes care of the installation for you.
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
||||||
The imports for this project utilize `github.com/OpenDiablo2/OpenDiablo2`. This means that even if you clone the repo, changes will not be taken as it will
|
The imports for this project utilize `github.com/OpenDiablo2/OpenDiablo2`. This means that even if you clone the repo, changes will not be taken as it will
|
||||||
still pull from the main repo's files. In order to use your local version, add the following to `go.mod` in the base folder:
|
still pull from the main repo's files. In order to use your local version, add the following to `go.mod` in the base folder:
|
||||||
|
|
||||||
```
|
```
|
||||||
replace github.com/OpenDiablo2/OpenDiablo2 => /your/forked/import/path
|
replace github.com/OpenDiablo2/OpenDiablo2 => /your/forked/import/path
|
||||||
```
|
```
|
||||||
|
|
||||||
This will tell go to use your local path instead of the official repo. Be sure to exclude this change from your pull requests!
|
This will tell go to use your local path instead of the official repo. Be sure to exclude this change from your pull requests!
|
||||||
|
|
||||||
If you find something you'd like to fix thats obviously broken, create a branch, commit your code, and submit a pull request. If it's a new or missing feature you'd like to see, add an issue, and be descriptive!
|
If you find something you'd like to fix thats obviously broken, create a branch, commit your code, and submit a pull request. If it's a new or missing feature you'd like to see, add an issue, and be descriptive!
|
||||||
@ -43,12 +50,12 @@ If you find something you'd like to fix thats obviously broken, create a branch,
|
|||||||
If you'd like to help out and are not quite sure how, you can look through any open issues and tasks, or ask
|
If you'd like to help out and are not quite sure how, you can look through any open issues and tasks, or ask
|
||||||
for tasks on our discord server.
|
for tasks on our discord server.
|
||||||
|
|
||||||
|
|
||||||
## VS Code Extensions
|
## VS Code Extensions
|
||||||
|
|
||||||
The following extensions are recommended for working with this project:
|
The following extensions are recommended for working with this project:
|
||||||
* ms-vscode.go
|
|
||||||
* defaltd.go-coverage-viewer
|
- ms-vscode.go
|
||||||
|
- defaltd.go-coverage-viewer
|
||||||
|
|
||||||
You can get to it by going to settings <kbd>Ctrl+,</kbd>, expanding `Extensions` and selecting `Go configuration`,
|
You can get to it by going to settings <kbd>Ctrl+,</kbd>, expanding `Extensions` and selecting `Go configuration`,
|
||||||
then clicking on `Edit in settings.json`. Just paste that section where appropriate.
|
then clicking on `Edit in settings.json`. Just paste that section where appropriate.
|
||||||
@ -66,9 +73,10 @@ the game in a different location, the base path may have to be adjusted.
|
|||||||
![Select Hero](docs/SelectHeroSS.png)
|
![Select Hero](docs/SelectHeroSS.png)
|
||||||
|
|
||||||
## Additional Credits
|
## Additional Credits
|
||||||
- Diablo2 Logo
|
|
||||||
- Jose Pardilla (th3-prophetman)
|
- Diablo2 Logo
|
||||||
- DT1 File Specifications
|
- Jose Pardilla (th3-prophetman)
|
||||||
- Paul SIRAMY (http://paul.siramy.free.fr/_divers/dt1_doc/)
|
- DT1 File Specifications
|
||||||
- Other Specifications and general info
|
- Paul SIRAMY (http://paul.siramy.free.fr/_divers/dt1_doc/)
|
||||||
- Various users on [Phrozen Keep](https://d2mods.info/home.php)
|
- Other Specifications and general info
|
||||||
|
- Various users on [Phrozen Keep](https://d2mods.info/home.php)
|
||||||
|
Loading…
Reference in New Issue
Block a user