Skip to content

Commit 058981e

Browse files
committed
1.7.10-3.0.1
1 parent bfcd2e3 commit 058981e

File tree

4 files changed

+58
-66
lines changed

4 files changed

+58
-66
lines changed

Changelog.txt

+52-47
Original file line numberDiff line numberDiff line change
@@ -1,94 +1,99 @@
1+
1.7.10-3.0.1
2+
3+
> Update to Forge 1.7.10-10.13.0.1207.
4+
> Update to Clashsoft Lib 1.7.10-2.5.0.
5+
16
1.7.10-3.0.0
27

3-
! Update to Minecraft 1.7.10
4-
! Update to Clashsoft Lib 1.7.10-2.3.0
5-
+ Added PotionAttributes
6-
+ Added DummyPotionTypes
7-
+ Added PotionTypeLists for easy modification
8-
+ Added custom Potion Type display names
9-
+ Tooltip colors are now configurable
10-
+ Water is now a PotionBase
11-
+ Standart operations are now PotionRecipes
12-
* Fixed some crashes
13-
* Fixed UpdateChecker not working
14-
* Improved Brewing Stand performance
15-
* Improved Brewing Stand shift-clicking
16-
* Changed creative brewing time from 3 to 4 seconds
17-
* Much Documentation
8+
> Update to Minecraft 1.7.10.
9+
> Update to Clashsoft Lib 1.7.10-2.3.0.
10+
+ Added PotionAttributes.
11+
+ Added DummyPotionTypes.
12+
+ Added PotionTypeLists for easy modification.
13+
+ Added custom Potion Type display names.
14+
+ Tooltip colors are now configurable.
15+
+ Water is now a PotionBase.
16+
+ Standart operations are now PotionRecipes.
17+
* Fixed some crashes.
18+
* Fixed UpdateChecker not working.
19+
* Improved Brewing Stand performance.
20+
* Improved Brewing Stand shift-clicking.
21+
* Changed creative brewing time from 3 to 4 seconds.
22+
* Much Documentation.
1823

1924
1.7.2-2.0.1
2025

21-
! Update to Clashsoft Lib 1.7.2-2.2.0
26+
> Update to Clashsoft Lib 1.7.2-2.2.0.
2227

2328
1.7.2-2.0.0
2429

25-
! Update to latest Clashsoft Lib
26-
+ Added a new potion recipe system
27-
+ Added "/potion add" and "/potion give" commands
28-
* Fixed potions not showing up in the creative search
29-
* Documentation
30-
* Bugfixes
30+
> Update to latest Clashsoft Lib.
31+
+ Added a new potion recipe system.
32+
+ Added "/potion add" and "/potion give" commands.
33+
* Fixed potions not showing up in the creative search.
34+
* Documentation.
35+
* Bugfixes.
3136

3237
1.7.2-1.0.1
3338

34-
* Fixed witch crash
35-
* Fixed potion not showing up in the creative search
39+
* Fixed witch crash.
40+
* Fixed potion not showing up in the creative search.
3641

3742
1.7.2-1.0.0
3843

39-
! Update to 1.7.2
40-
* Structure changes
41-
* Performance improvements
42-
* Rewritten the PotionType class
43-
* Fixed MANY bugs
44-
* Renamed /givepotion command to "/potion give"
44+
> Update to Minecraft 1.7.2.
45+
* Structure changes.
46+
* Performance improvements.
47+
* Rewritten the PotionType class.
48+
* Fixed MANY bugs.
49+
* Renamed /givepotion command to "/potion give".
4550

4651
1.6.4-5
4752

48-
* Structure changes
49-
* Fixed many bugs
50-
* Improved potion item description
53+
* Structure changes.
54+
* Fixed many bugs.
55+
* Improved potion item description.
5156

5257
1.6.4-4
5358

54-
+ Added /givepotion command
59+
+ Added /givepotion command.
5560

5661
1.6.4-3
5762

58-
+ Added automatic updates
63+
+ Added automatic updates.
5964

6065
1.6.4-2
6166

62-
+ Added update checking
67+
+ Added update checking.
6368

6469
1.6.4-1
6570

66-
! Update to 1.6.4
71+
> Update to Minecraft 1.6.4.
6772

6873
1.6.2-6
6974

70-
* Fixed some bugs
75+
* Fixed some bugs.
7176

7277
1.6.2-5
7378

74-
* Fixed brewing crash
79+
* Fixed brewing crash.
7580

7681
1.6.2-4
7782

78-
* Fixed some bugs
79-
* Fixed crash
83+
* Fixed some bugs.
84+
* Fixed crash.
8085

8186
1.6.2-3
8287

83-
* Fixed some bugs
84-
- Removed Clashsoft API dependency
88+
* Fixed some bugs.
89+
- Removed Clashsoft API dependency.
8590

8691
1.6.2-2
8792

88-
* Fixed crash
93+
* Fixed crash.
8994

9095
1.6.2-1
9196

92-
+ Added ability to register custom potions
93-
+ Added hooks for custom potion effects
94-
+ Added hooks for custom ingredient handlers
97+
+ Added ability to register custom potions.
98+
+ Added hooks for custom potion effects.
99+
+ Added hooks for custom ingredient handlers.

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ buildscript
2121
}
2222

2323
apply plugin: 'forge'
24-
version = "1.7.10-3.0.0"
24+
version = "1.7.10-3.0.1"
2525
group = "clashsoft.brewingapi"
2626
archivesBaseName = "BrewingAPI"
2727

src/main/java/clashsoft/brewingapi/BrewingAPI.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public class BrewingAPI extends ClashsoftMod
5959
public static final String MODID = "brewingapi";
6060
public static final String NAME = "Brewing API";
6161
public static final String ACRONYM = "bapi";
62-
public static final String VERSION = "1.7.10-3.0.0";
62+
public static final String VERSION = "1.7.10-3.0.1";
6363
public static final String DEPENDENCIES = CSLib.DEPENDENCY;
6464

6565
@Instance(MODID)

version.txt

+4-17
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,5 @@
1-
version=1.7.10-2.3.0
2-
url=https://github.com/Clashsoft/Brewing-API/releases/download/1.7.10-3.0.0/BrewingAPI-1.7.10-3.0.0.jar
1+
version=1.7.10-3.0.1
2+
url=https://github.com/Clashsoft/Brewing-API/releases/download/1.7.10-3.0.1/BrewingAPI-1.7.10-3.0.1.jar
33

4-
! Update to Minecraft 1.7.10
5-
! Update to Clashsoft Lib 1.7.10-2.3.0
6-
+ Added PotionAttributes
7-
+ Added DummyPotionTypes
8-
+ Added PotionTypeLists for easy modification
9-
+ Added custom Potion Type display names
10-
+ Tooltip colors are now configurable
11-
+ Water is now a PotionBase
12-
+ Standart operations are now PotionRecipes
13-
* Fixed some crashes
14-
* Fixed UpdateChecker not working
15-
* Improved Brewing Stand performance
16-
* Improved Brewing Stand shift-clicking
17-
* Changed creative brewing time from 3 to 4 seconds
18-
* Much Documentation
4+
> Update to Forge 1.7.10-10.13.0.1207.
5+
> Update to Clashsoft Lib 1.7.10-2.5.0.

0 commit comments

Comments
 (0)