Skip to content

Commit b6f4d22

Browse files
authored
Update dev_pins.md
1 parent 1557684 commit b6f4d22

File tree

1 file changed

+18
-17
lines changed

1 file changed

+18
-17
lines changed

dev_pins.md

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ https://github.com/Shadows-of-Fire/How2Mod/blob/master/Instructions.txt/
2525

2626
https://github.com/TheGreyGhost/MinecraftByExample/ 1.8.9/1.10.2/1.11.2
2727

28-
https://web.archive.org/web/20170629194638/https://bedrockminer.jimdo.com/modding-tutorials 1.7.10/1.8.9
28+
[https://bedrockminer.jimdo.com/modding-tutorials](https://web.archive.org/web/20170629194638/https://bedrockminer.jimdo.com/modding-tutorials) 1.7.10/1.8.9
2929

30-
http://web.archive.org/web/20181007042911/http://www.wuppy29.com/minecraft/modding-tutorials/forge-modding/ 1.3.2/1.4/1.5.1/1.6/1.7.10/1.8.9
30+
[http://www.wuppy29.com/minecraft/modding-tutorials/forge-modding/](https://web.archive.org/web/20181007042911/http://www.wuppy29.com/minecraft/modding-tutorials/forge-modding/) 1.3.2/1.4/1.5.1/1.6/1.7.10/1.8.9
3131

3232
### Java for complete beginners
3333
https://www.youtube.com/playlist?list=PL9DF6E4B45C36D411
@@ -38,13 +38,13 @@ https://docs.oracle.com/javase/tutorial/java/javaOO/
3838

3939
https://docs.oracle.com/javase/tutorial/java/nutsandbolts/
4040

41-
The oracle docs can be technical at times, if you're an absolute beginner, you might find something like CodeAcademy to be more helpful.
41+
The Oracle docs can be technical at times, if you're an absolute beginner, you might find something like CodeAcademy to be more helpful.
4242

43-
### Gradle settings for minecraft
43+
### Useful Gradle settings for Minecraft
4444

45-
Where things go:
46-
The block itself goes in the minecraft block.
47-
the respective vars get defined in your gradle.properties, I suggest NOT putting the ones starting mc_ in your per project gradle.properties, do it in your user gradle.properties instead (That's the one in ~/.gradle on linux, or %userprofile%/.gradle on windows).
45+
Where things go:
46+
The block itself goes in the minecraft block.
47+
The respective vars get defined in your gradle.properties, I suggest NOT putting the ones starting mc_ in your per project gradle.properties, do it in your user gradle.properties instead (That's the one in ~/.gradle on linux, or %userprofile%/.gradle on windows).
4848

4949
What it does:
5050
1) Lets you define how much RAM is given to the client or server when they're run with gradlew runClient/runServer.
@@ -92,7 +92,7 @@ What it does:
9292

9393
### CurseForge
9494
endpoint
95-
```Gradle
95+
```gradle
9696
repositories {
9797
maven {
9898
//fallback for almost everything, this is CurseForge :P
@@ -112,14 +112,14 @@ dependencies {
112112
Adding Dependencies to your @Mod annotation is as simple as setting the dependencies field to this:
113113
dependencies="required-after:forge@[minVersion,maxVersion)"
114114

115-
multiple dependencies are separated using ;, min and max version are optional. [, ] = included, (,) = excluded versions. you can also leave the min or max fields empty or omit the whole version range.
115+
Multiple dependencies are separated using ;, min and max version are optional. [, ] = included, (,) = excluded versions. you can also leave the min or max fields empty or omit the whole version range.
116116
keywords
117117
after = load this mod after the one specified, if present
118118
before = load this mod before the one specified, if present.
119119

120-
keywords can be prefixed with required-, which will force the specified modid to be present.
120+
Keywords can be prefixed with required-, which will force the specified modid to be present.
121121

122-
for more info on the version ranges see https://docs.oracle.com/middleware/1212/core/MAVEN/maven_version.htm#MAVEN402
122+
For more info on the version ranges see https://docs.oracle.com/middleware/1212/core/MAVEN/maven_version.htm#MAVEN402
123123

124124
### Version ranges
125125
Format used in version ranges strings (for dependencies for example)
@@ -138,14 +138,15 @@ With the release of Forge 14.23.2.2638, a proper way to render items with GL was
138138
https://try.github.io/levels/1/challenges/1
139139

140140
###### Git clients
141-
Semi advanced
142-
https://www.gitkraken.com/
143-
144141
Easy for new users
145-
https://desktop.github.com/
142+
[Github Desktop](https://desktop.github.com/)
143+
144+
Mid-ranged
145+
[Sourcetree](https://www.sourcetreeapp.com/)
146+
147+
Semi-advanced
148+
[GitKraken](https://www.gitkraken.com)
146149

147-
Mid ranged
148-
https://www.sourcetreeapp.com/
149150

150151
###### Using Git
151152
To clone an entire repo.

0 commit comments

Comments
 (0)