Skip to content

Commit 693a803

Browse files
committed
Preset generation. Other improvements
1 parent d27d405 commit 693a803

17 files changed

Lines changed: 2668 additions & 2498 deletions

.gitignore

Lines changed: 35 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,35 @@
1-
# Eclipse stuff
2-
.classpath
3-
.project
4-
.settings/
5-
6-
# netbeans
7-
nbproject
8-
9-
# gradle
10-
.gradle/
11-
12-
# vim
13-
.*.sw[a-p]
14-
15-
# various other potential build files
16-
/build/
17-
/out
18-
19-
# Mac filesystem dust
20-
.DS_Store
21-
22-
# intellij
23-
*.iml
24-
*.ipr
25-
*.iws
26-
.idea/
27-
28-
# generated
29-
/repo/
30-
/bin/
1+
# Eclipse stuff
2+
.classpath
3+
.project
4+
.settings/
5+
6+
# netbeans
7+
nbproject
8+
9+
# gradle
10+
.gradle/
11+
12+
# vscode
13+
.vscode/
14+
15+
# vim
16+
.*.sw[a-p]
17+
18+
# various other potential build files
19+
/build/
20+
/out
21+
22+
# Mac filesystem dust
23+
.DS_Store
24+
25+
# intellij
26+
*.iml
27+
*.ipr
28+
*.iws
29+
.idea/
30+
31+
# generated
32+
/repo/
33+
/bin/
34+
35+
test/

LICENSE

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
MIT License
2-
3-
Copyright (c) 2023 Lassebq
4-
5-
Permission is hereby granted, free of charge, to any person obtaining a copy
6-
of this software and associated documentation files (the "Software"), to deal
7-
in the Software without restriction, including without limitation the rights
8-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9-
copies of the Software, and to permit persons to whom the Software is
10-
furnished to do so, subject to the following conditions:
11-
12-
The above copyright notice and this permission notice shall be included in all
13-
copies or substantial portions of the Software.
14-
15-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
1+
MIT License
2+
3+
Copyright (c) 2023 Lassebq
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# WrappedJSONGen
2-
3-
An utility used to generate Minecraft version JSONs with [LaunchWrapper](https://github.com/MCPHackers/LaunchWrapper) as the launch method.
4-
5-
It also includes a set of updated libraries, like [LWJGL](https://github.com/LWJGL/lwjgl) and [Paulscode Sound System](http://www.paulscode.com/forum/index.php?topic=4.0), which work better with legacy Minecraft versions.
6-
1+
# WrappedJSONGen
2+
3+
An utility used to generate Minecraft version JSONs with [LaunchWrapper](https://github.com/MCPHackers/LaunchWrapper) as the launch method.
4+
5+
It also includes a set of updated libraries, like [LWJGL](https://github.com/LWJGL/lwjgl) and [Paulscode Sound System](http://www.paulscode.com/forum/index.php?topic=4.0), which work better with legacy Minecraft versions.
6+
77
Currently supported range of versions: `rd-132211` - `1.12.2`

build.gradle

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
plugins {
2-
id 'java'
3-
id 'eclipse'
4-
}
5-
6-
repositories {
7-
mavenCentral()
8-
}
9-
10-
group = 'lbq'
11-
archivesBaseName = 'versionjsons'
12-
version = '1.0'
13-
sourceCompatibility = 1.8
14-
15-
dependencies {
16-
implementation 'org.json:json:20220924'
17-
}
18-
19-
artifacts {
20-
archives jar
21-
}
1+
plugins {
2+
id 'java'
3+
id 'eclipse'
4+
}
5+
6+
repositories {
7+
mavenCentral()
8+
}
9+
10+
group = 'lbq'
11+
archivesBaseName = 'versionjsons'
12+
version = '1.0'
13+
sourceCompatibility = 1.8
14+
15+
dependencies {
16+
implementation 'org.json:json:20220924'
17+
}
18+
19+
artifacts {
20+
archives jar
21+
}
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Sat Jun 20 12:56:50 EDT 2015
2-
distributionBase=GRADLE_USER_HOME
3-
distributionPath=wrapper/dists
4-
zipStoreBase=GRADLE_USER_HOME
5-
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
1+
#Sat Jun 20 12:56:50 EDT 2015
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip

0 commit comments

Comments
 (0)