chore: update launch options/readme

This commit is contained in:
Ryan Dowling 2019-06-09 21:19:52 +10:00
parent 1d65ffbe36
commit f34cbaaacd
No known key found for this signature in database
GPG key ID: 5539FCDB88950EFD
3 changed files with 24 additions and 5 deletions

5
.vscode/launch.json vendored
View file

@ -1,4 +1,7 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
@ -6,7 +9,7 @@
"name": "Launch",
"request": "launch",
"mainClass": "com.atlauncher.App",
"projectName": "atlauncher",
"projectName": "ATLauncher",
"args": "--debug --debug-level 3 --working-dir=test"
}
]

View file

@ -9,10 +9,10 @@ ModPacks easily and quickly.
## Links
* [ATLauncher Website](https://www.atlauncher.com)
* [ATLauncher Facebook](http://www.facebook.com/ATLauncher)
* [ATLauncher Reddit](http://www.reddit.com/r/ATLauncher)
* [ATLauncher Twitter](http://twitter.com/ATLauncher)
- [ATLauncher Website](https://www.atlauncher.com)
- [ATLauncher Facebook](http://www.facebook.com/ATLauncher)
- [ATLauncher Reddit](http://www.reddit.com/r/ATLauncher)
- [ATLauncher Twitter](http://twitter.com/ATLauncher)
## Coding Standards & Styling Guidelines
@ -37,6 +37,17 @@ To build this project, simply run:
This will build the application and output the resulting files for Windows, Linux and OSX in the
`dist` directory.
## Running in test
If you want to run the launcher while developing with it, you can use your IDE (if you have one) to
do that for you.
Alternatively you can run:
```sh
./gradlew run --args="--debug --debug-level 3 --working-dir=test"
```
## Plugging In Your Data
To get started with the code and plug in your own data, you need to edit the

View file

@ -1,5 +1,6 @@
plugins {
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '5.0.0'
id 'edu.sc.seis.macAppBundle' version '2.3.0'
@ -32,6 +33,10 @@ dependencies {
testCompile 'junit:junit:4.11'
}
application {
mainClassName = 'com.atlauncher.App'
}
jar {
manifest {
attributes(