This repository has been archived by the owner on Dec 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathchangelog.txt
1068 lines (911 loc) · 60.4 KB
/
changelog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Doggy Talents - Changelog
Update List Key
(+) A new feature
(-) A removed feature
(#) A changed feature
(*) A bug fix
(/) Other
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
MC 1.15.2
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
1.15.2.3 | 20th February 2020
+ Added config option to disable dogs eating food on the ground
+ Added Korean translations (thanks to MilkissWhite from github)
# Improved German translations (thanks to sigy4444 from curseforge)
# Dogs will now be smarter when they eat food on the ground (only when less than 50% health or is missing at least 2/3rds of the value of the food item)
* Fixed treat bags sometimes loosing it's items (thanks to pau101 from github)
/ Added safe guards to stop a malicious user being able to exploit the packets to change any dog regardless of ownership (pau101)
/ Added API hook to make items dog food and callback when the food is eaten
Built on Forge-1.15.2-31.1.0
1.15.2.2 | 16th February 2020
* Fixed bone fetch item render & bed finder outline render (thanks to pau101 from github)
1.15.2.1 | 1st February 2020
* Fixed crash on server when feeding or giving treats to dogs (#213)
1.15.2.0 | 28th January 2020
Requires forge 30.0.0 or higher
Initial release, parent version 1.14.4-1.15.2.0
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
MC 1.14.4
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
1.15.2.0 | 2nd October 2019
+ Added config option for the revive item, default still cake
* Fixed tactical whistle not working
* Fixed dogs attacking all entities not just monsters in berserker mode (#193)
* Fixed being forced dismount when in water even on level 5 swimmer dog
+ Added an API to add talents, bed materials etc (will try to get some docs out)
1.15.1.7 | 13th September 2019
Requires forge 28.1.0 or higher
* Fixed crash with 1.14.4 forge RB
1.15.1.6 | 8th September 2019
* Fixed treats not converting wolves into dogs
1.15.1.5 | 8th September 2019
Requires forge 28.0.92 or higher
+ Added message when a dog mounts a player (bed finder talent)
# (Internal) Use item stack capabilities instead of IInventory
# Remove sided proxies and reorganise loading/registration which should...
# Dogs in Berserker mode will no longer attack other untamed dogs
* Fixed crash related to Talent registry type not existing
* Fixed crash due to breaking change in forge
* Fixed spider eye usage being available at all levels not just level 5 posion fang
1.15.1.4 | 1st September 2019
+ Added German language file (de_de.json), thanks to Creepingpasta from github
* Fixed obey others option causing dogs not to attack any entities
1.15.1.3 | 15th August 2019
* Fix shearing baby dogs turning into adult wolves
1.15.1.2 | 14th August 2019
* I have been getting reports of the render of the dog bed crashing the game. This appears to be due to a bug in optifine, this DT version disables the proper rendering of the dog bed when optifine of installed.
1.15.1.1 | 7th August 2019
Requires forge 28.0.45 or higher
# Changed dog bed particles to use the forge ModelData system
* Fixed crash with newer versions of forge
1.15.1.0 | 22nd July 2019
Requires forge 28.0.11 or higher
Initial release, parent version 1.14.3-1.15.0.7
+ Readded vanilla leaping as this was fixed in 1.14.4
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
MC 1.14.3
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
1.15.0.7 | 12th July 2019
# Upon changing mode dogs will reset attack target and pathing
* Fixed dogs attacking each other and other pets in berseker mode.
1.15.0.6 | 5th July 2019
* Fix possible crash due to missing registy
1.15.0.5 | 26th June 2019
+ Add some secret dog stat tracking in the background (more coming soon)
+ Add help message when trying to feed food to incapacitated dog
- Remove buggy vanilla leaping for now till a fix is found
# Improve dog bed material API
# Recode fetch item, so fetch items now keep nbt tag and will allow easy addition of more throwable items in the future
# Sync talent ids so we can use ids in entity datasync to reduce payload
* Fixed dogs attacking players when obey others is on
* Fixed dog not sitting when on head
* Fixed dog bed custom particles being sent to far away players
* Fixed dogs still attacking entities when incapacitated
1.15.0.4 | 25th June 2019
Requires forge 27.0.2 or higher
Initial release, parent version 1.14.2-1.15.0.4
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
MC 1.14.2
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
1.15.0.4 | 25th June 2019
Requires forge 26.0.63 or higher
+ Add summary of treat bag contents to tooltip
* Fix change mode actually changing gender
* Correct bone render for child dog
1.15.0.3 | 24th June 2019
+ Readded JEI intergration (dog bed recipes and seperation in item list)
+ Remove max id limit on talent registry and disable sync
+ Play hearts effect when dog is fed
# Reduced size of dog data payload sent to client
# Change log level of registration events to 'debug'
# Dogs respect pickup delay on fetch items and pack puppy
# Cleaned up gender dog and added unisex gender
* Fix crash when registering block/item colors
* Fix inverted hunger setting
* Fix fisher dogs dropping fish in rain
* Fix dog model going crazy when shaking and death animation starts
1.15.0.2 | 23rd June 2019
Requires forge 26.0.61 or higher
* Fixed dog bed rendering
* Fixed friendly fire not working
* Fixed incompatibility with latest versions of forge
1.15.0.0-pr6 | 15th June 2019
+ Dog Bath, Bed and Bowl can now all be waterlogged
+ Can use pick block button on dog with gives doggycharm
+ Fix dogs wandering when trying to follow owner
# Change entity tracking param to be less demanding
* Fix incorrect bounding box for different dog sizes
1.15.0.0-pr5 | 13th June 2019
* Fixed being unable to connect to servers (that was a pesky bug to track down)
* Fixed dogs being able to attack tamed cats
* Skeletons run from dogs like wolves
* Dogs run to water when on fire
* Fixed swimmer dog
* Beg, items, packpuppy blacklist now use Item tags
1.15.0.0-pr4 | 12th June 2019
* Added two new doggy textures
* Improved follow AI
* Use Tags for item lists
* Change roaring gale msgs to status msg
* Don't display UUID if owner unknown
* Updated ru_ru lang file
1.15.0.0-pr3 | 11th June 2019
* Fix pack puppy not rendering dog and incorrect number of slots
* Fix sunglasses not rendering properly
* Implement config properly and change config option names and add a few more.
* Fix tactical beam being invisible
* Fix crash on server
* Others
* Re-added ability to disable talents in server-config/doggytalents-talents.toml
* You can now fill glass bottles on dog bath
* Updated zh_cn lang file
1.15.0.0-pr2 | 9th June 2019
Requires forge 26.0.12 or higher
* GUI's are working now
* Fixed bed recipe and dye-able collar/cape recipes
1.15.0.0-pr1 | 8th June 2019
Initial release, parent version 1.13.2-1.15.0.0
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
MC 1.13.2
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
1.15.0.2 | 15th June 2019
+ Can use pick block button on dog with gives doggycharm
+ Fix dogs wandering when trying to follow owner
# Change entity tracking param to be less demanding
* Fix incorrect bounding box for different dog sizes
1.15.0.1 | 13th June 2019
+ Untamed dogs (don't mistake dogs with wolves) can also be tamed with training treats
+ When untaming a dog with collar shears it will drop it's pack puppy inventory
+ Add two new dog textures
+ Can now Fill bottles from dog bath
+ Dogs now run to water when on fire
+ Update zh_cn lang file (Thanks to mcBegins2Snow from github)
+ Update zh_cn lang file (Thanks to kellixon from github)
# Redone config file and options
# Changed roaring whistle errors messages from chat messages to status update messsages
# Improve last owner name tag (shift to see owner tag below dog name)
# Change roaring gale chat messages to status messages
# Improved follow AI
# Beg, items, packpuppy blacklist now use Item tags
* Fix not dismounting dog in water and not being able to stay underwater for long (swimmerdog)
1.15.0.0 | 31st May 2019
+ The whistle now has different modes (shift click to change mode), replaces command emblem and is also used for shepherd dog and roaring gale talent.
+ Added whistle sounds
+ Shepherd Dog Talent now works, use the shepherd whistle and dogs will round up animals so they follow you and stay at the back keeping them in check. Level 1 allows 1 animal to follow while level 5 allows 16 animals to follow.
+ Wandering mode now works properly, if close enought to it's bowl will stay within 5 blocks, otherwise will continue to follow you until you get back to the bowl
+ Added Dog Owner changer, will change any dog to be yours
+ Using the doggy charm on a dog will spawn a tamed baby (creative only)
+ Using a stick will on an incapacitated dog will tell you how to revive your dog
+ Improved radar messages and it will now give info about dogs in other dimensions
+ Added tooltips to creative collar and creative radar
+ Added help message when using stick on incapacitated dogs
- Removed command emblem - whistle has the command emblem features
- Dogs no longer take damage when on 0 hunger
# Changed versioning protocol
# Reduce the general wander range from 10 to 7 blocks
# Default config option for spawning with doggy charm is now false
# Roaring gale talent now uses the Roaring whistle
# Lots of under the hood changes
# Changed most lang translation keys
* Fixed format error in talents with description including a % symbol
* Fixed warning message due to way DataParameter objects were registered
* Can no longer attack a dog you are riding
* Fixed crash on server startup
- Removed the abiltiy to disable talents for now
1.14.3.451 | 29th April 2019
+ Added config option so that puppies will get some levels from parents up to a max of 20.
* Set max stacksize of treat bag to 1 to fix item duplication bug
1.14.3.438 | 9th April 2019
+ Added config option to disable dog skins and always use default (this is client only so will only affect you, other players can still use the textures)
+ Added config options to disable the rendering of the pack puppy chest and wolf mount saddle
# The first dt skin is now the default minecraft skin, so if you use a texture pack your dog will fit in better :)
# Moved saddle and pack puppy chest texture to their own .png file
+ Readded Chinese translation files in new .json format
+ Readded Russian translation files in new .json format and add new translation keys (thanks to Just-random-user off github)
# Enabled repeat keyboard events in dog info screen, so you holding down a key continuously does an action
1.14.3.425 | 2nd April 2019
* Fixed translation key for packpuppy gui being wrong
- Removed the accidentally included JEI api code
1.14.3.424 | 1st April 2019
+ Added creative radar, will let you know where your dogs are no matter if they have a radio collar on
+ Moved client only config (mainy render options) to their own config file "doggytalents-client.toml" in config folder.
+ Added JEI Intergration, now all dog beds show up in the JEI item list and all recipes for dog beds show
# To open the pack puppy gui you now shift while holding nothing.
1.14.3.418 | 30th March 2019
Initial release, parent version 1.14.2.396
+ Radar is now fully functional, will now inform you of the location of your dogs. Just remember to put a radio collar on them! Aesthetics and refinements to come :)
# To open the pack puppy gui you now shift instead of holding a plank.
* Fixed dogs still being susceptible to posion even above level 3 posion fang
- Removed mod support for itemphysic, foresty, biomesoplenty, extratrees, terraqueous, natura, botania since they have not been updated to 1.13 yet
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
MC 1.12.2
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
1.15.1.4 | 1st September 2019
+ Added German language file (de_de.json), thanks to Creepingpasta from github
1.15.1.3 | 15th August 2019
* Fix shearing baby dogs turning into adult wolves
# Upon changing mode dogs will reset attack target and pathing
1.15.0.6 | 5th July 2019
* Fix broken throw stick & bone recipes
1.15.0.5 | 26th June 2019
+ Add some secret dog stat tracking in the background (more coming soon)
+ Add help message when trying to feed food to incapacitated dog
# Improve dog bed material API
# Recode fetch item, so fetch items now keep nbt tag and will allow easy addition of more throwable items in the future
* Fixed dogs attacking players when obey others is on
* Fixed dog not sitting when on head
* Fixed dog bed custom particles being sent to far away players
* Fixed dogs still attacking entities when incapacitated
1.15.0.4 | 25th June 2019
+ Add summary of treat bag contents to tooltip
+ Remove max id limit on talent registry
+ Play hearts effect when dog is fed
# Reduced size of dog data payload sent to client
# Change log level of registration events to 'debug'
# Dogs respect pickup delay on fetch items and pack puppy
# Cleaned up gender dog and added unisex gender
# Change time for dog pups to 2 minecraft days (can change in config)
* Fix dog bed, dog bath and food bowl staying when block below is destroyed
* Fix fisher dogs dropping fish in rain
* Fix dog model going crazy when shaking and death animation starts
* Correct bone render for child dog
1.15.0.2 | 15th June 2019
+ Can use pick block button on dog with gives doggycharm
+ Fix dogs wandering when trying to follow owner
# Change entity tracking param to be less demanding
* Fix natura fusewood casing texture
* Remove inventory string in treat bag GUI
* Fix incorrect bounding box for different dog sizes
1.15.0.1 | 13th June 2019
+ Untamed dogs (don't mistake dogs with wolves) can also be tamed with training treats
+ When untaming a dog with collar shears it will drop it's pack puppy inventory
+ Add two new dog textures
+ Can now Fill bottles from dog bath
+ Dogs now run to water when on fire
+ Update zh_cn lang file (Thanks to mcBegins2Snow from github)
+ Update zh_cn lang file (Thanks to kellixon from github)
# Redone config file and options
# Changed roaring whistle errors messages from chat messages to status update messsages
# Improve last owner name tag (shift to see owner tag below dog name)
# Change roaring gale chat messages to status messages
# Improved follow AI
* Fix not dismounting dog in water and not being able to stay underwater for long (swimmerdog)
1.15.0.0 | 31st May 2019
Requires forge 14.23.5.2826 or higher
+ The whistle now has different modes (shift click to change mode), replaces command emblem and is also used for shepherd dog and roaring gale talent.
+ Added whistle sounds
+ Shepherd Dog Talent now works, use the shepherd whistle and dogs will round up animals so they follow you and stay at the back keeping them in check. Level 1 allows 1 animal to follow while level 5 allows 16 animals to follow.
+ Wandering mode now works properly, if close enought to it's bowl will stay within 5 blocks, otherwise will continue to follow you until you get back to the bowl
+ Added Dog Owner changer, will change any dog to be yours
+ Using the doggy charm on a dog will spawn a tamed baby (creative only)
+ Using a stick will on an incapacitated dog will tell you how to revive your dog
+ Improved radar messages and it will now give info about dogs in other dimensions
+ Added tooltips to creative collar and creative radar
+ Added help message when using stick on incapacitated dogs
- Removed command emblem - whistle has the command emblem features
- Dogs no longer take damage when on 0 hunger
# Changed versioning protocol
# Reduce the general wander range from 10 to 7 blocks
# Default config option for spawning with doggy charm is now false
# Roaring gale talent now uses the Roaring whistle
# Lots of under the hood changes
# Changed most lang translation keys
* Fixed format error in talents with description including a % symbol
* Fixed warning message due to way DataParameter objects were registered
* Can no longer attack a dog you are riding
* Fixed crash on server startup
1.14.2.451 | 29th April 2019
+ Added config option so that puppies will get some levels from parents up to a max of 20.
+ Added config option to disable dog bed being able to use mod planks to reduce the amount of beds
* Set max stacksize of treat bag to 1 to fix item duplication bug
1.14.2.438 | 9th April 2019
+ Radar is now fully functional, will now inform you of the location of your dogs. Just remember to put a radio collar on them! Aesthetics and refinements to come :)
+ Added creative radar, will let you know where your dogs are no matter if they have a radio collar on
+ Added config option to disable dog skins and always use default (this is client only so will only affect you, other players can still use the textures)
+ Added config options to disable the rendering of the pack puppy chest and wolf mount saddle
# The first dt skin is now the default minecraft skin, so if you use a texture pack your dog will fit in better :)
# Moved saddle and pack puppy chest texture to their own .png file
# To open the pack puppy gui you now shift while holding nothing instead of holding a plank.
# Updated Russian translation files with new translation (thanks to Just-random-user off github)
* Fixed dogs still being susceptible to posion even above level 3 posion fang
1.14.2.396 | 15th February 2019
* Fixed crash with older versions and newer versions of CreativeCore
/ Updated source code to MCP mappings stable_39
1.14.2.382 | 10th December 2018
# Renamed Doggy Settings to Dog Behavior settings
# Moved Talents config category under Dog Behavior Category
# Changed lang text for general settings category and dog behavior (former doggy settings) category
1.14.2.381 | 10th December 2018
* Fixed #114
* Corrected PuppyEyes phrase 1 string error
1.14.2.380 | 8th December 2018
+ Added ability to toggle rather a dog whines when it is low on hunger
- Removed empty General settings category until further notice
* Fixed textues for Pack Puppy and Dog Bowl, #111
1.14.2.379 | 6th October 2018
* Fixed puppies running backwards forever, #110
* Small amount of code cleanup
1.14.2.321 | 6th August 2018
* Fixed dogs suddenly disappearing on the server side, #106
1.14.2.320 | 4th August 2018
* Fixed dogs not following when the player is holding a bone, #104
* Fixed issue with Roaring Gale not affecting certain mobs, #102
# Made dogs check for master order items in either the active hand or the off hand, #102
+ Dogs can now eat off the ground, #103
1.14.2.319 | 1st August 2018
* Fixed post initalization crash with newest version of CreativeCore #99
* Fixed some bed casings from ExtraTrees not showing up
# Changed casing name to match Foresty
# Improve registery logging
- Removed Dendrology support
1.14.2.318 | 1st July 2018
* Fixed some bugs in #86, made the dog's legs move only when it is moving while being ridden.
/ Beginning work on WorldSaveData in order to get the whistle to function
1.14.2.317 | 31th May 2018
* Fixed bug #65, made Fisher dog talent and water bath work again!
* Fixed item interaction bug
+ Added genders! Which are configurable
+ Added dog basic info, will show the dog's health, gender (if true), speed, age, and owner!
+ Added Roaring Gale talent
/ Updated to latest version of Forge: 14.23.4.2705
1.15.0*** | March 2018
Only supported version is now MC 1.12.2 and above
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
MC 1.8.9, 1.9.4, 1.10.2, 1.11.2, 1.12, 1.12.1 and 1.12.2
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
1.14.2.314 | 6th December 2017
* Fixed items not stacked when being picked up by the Pack Puppy Talent
* Fixed crash with Terraqueous when trees are disabled
1.14.2.311 | 20th October 2017
+ Added recipe for throw stick, same as throw bone but sticks instead of bones
# Updated Russian Translation files to be more accurate and include some of the newer translations keys
* Fixed crash when holding no items and clicking on a wolf
* Fixed crash when holding no items the pressing the arrow keys
* Fixed dogs been able to attack creepers even when they are not level 5 CreeperSweeper
1.14.2.308 | 26th August 2017
+ Added support for MC 1.12.2
+ Added a constant purple and black 'glitch' texture
# Updated Chinese Translation files to be more accurate and include some of the newer translations keys
* Fixed crash on server startup with CraftTweaker 4.0.4+ on MC 1.12+
1.14.2.298 | 20th July 2017
+ Two new dog skins that look like dobermans species - thanks to oitsjustjose
* Fixed dogs disapearing when loading up from older versions of the mod - v1.10.0a (only 1.8.9)
1.14.2.295 | 15th July 2017
- Removed unnecessary model files that are not required for the version you are on
# Wings only render at level 5 pillow paw
# Changed crafting recipes of spotted and multicollar collar so that they work in all versions - now need some string
* Fixed creative, spotted and multicoloured collar being in all the creative tabs in MC 1.12
* Fixed name off multicoloured collar being only multicolour collar
1.14.2.290 | 15th July 2017
+ Added Dog Sunglasses
+ Added Dog Leather Jacket - turn your dog into a secret agent!
+ Added Creative Collar which gives your dog 1000 points to spend on talents (only available in creative obviously)
+ Added Spotted Collar and Multicolour Collar
+ Readded doggy texture index (for now) you can add your own skins assets/doggytalents/textures/mob/dog/doggytex$NO.png up to 128 textures
+ Added 8 new textures for dogs - 2 of the textures are from an old mod "Extended Wolves". We are trying to contact the owner, it is unlikely he will reply, he hasn't been on his MCF account in over a year. Hopefully he doesn't mind, if he wants us to remove them we will.
+ Added dyeable capes that you can put on the dog
+ Added tartan cape that you can put on the dog
+ Added throw stick that you can play fetch with your dog
+ Collar shears now remove all items on your dog
+ Added wings on your dog when you have level 5 Pillow paw (can be disabled in config file/gui)
+ Added 3D saddle when you have at least 1 level in wolf mount
+ Added Tiny Bone and Big Bone this decreases and increases your dogs size respectively
+ Added support for MC 1.8.9
+ Added support for the wooden planks from Botania mod to be used as casing in dog bed
+ Added lots more translation keys to the language files
# Changed incapacitated blood to look much better
* Fixed no message being displayed when riding a dog and it runs out of hunger
Special thanks to knuckles001 for lots of the content in this update
1.14.1.240 | 6th August 2017
+ Added support for MC 1.12.1
* Fixed dog bed dropping in creative mode
* Dog bed now uses its casing (plank) texture for all its particle effects
* Fixed the bounding box of DT blocks not been know server side causing you get stuck in the block
1.14.1.228 | 3rd August 2017
+ Added support for the wooden planks from Natura mod to be used as casing in dog bed
+ Added support for the wooden planks from Ancient Trees L (Dendrology) mod to be used as casing in dog bed
+ Added options to disable each talent in the config file
1.14.1.214 | 31st July 2017
+ Added support for the wooden planks from ExtraTrees mod to be used as casing in dog bed
+ Added support for the wooden planks from Terraqueous mod to be used as casing in dog bed
+ Added Chinese translation file zh_CN.lang, thanks to 317620111 of the MC forums
* Fixed crash when ItemPhysic Lite is loaded without CreativeCore
1.14.0.206 | 29th July 2017
* Fixed dog glitch when playing with the throw bone
1.14.0.200 | 25th July 2017
+ Added treat bag recipe LCL, LLL C = Chew Stick, L = Leather
* Fixed there being no wool collar recipe on MC < 1.12
* Fixed possible crash on 1.12 server
1.14.0.196 | 24th July 2017
+ All minecraft versions above now use the same basic code, this will mean that updates for all these version with be released simulationously. The only thing I have to do is click compile 4 times for the different MC versions
+ Add chew stick recipe SW, WS W = Wheat, S = Sugar
+ As a reminder MC 1.9.4 - 1.11.2 now have the new dyeable collar feature and treat bag which original was only in MC 1.12 version. Now it is in all version as they use the same code
+ Updated ru_RU.lang file
# Changed the speed doggy dash gives, a bit faster and more noticable
# Mod version now indicates which git commit it was built from (the last number)
* Fixed dogs trying to attack their owner when spamming the command emblem
* Fixed dogs attacking your pet wolfs
* Fixed max dog health not being persistent
* Fixed dog movespeed not being persistent
* Fixed there being no lang translation for entity dog
* Fixed others layers retaining collar colour
* Fixed dyes turning collar black
* Fixed food bowl pos not reseting when destroyed
- Removed dogs getting 0.05 extra speed when they become level 30 dire dog
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
MC 1.12
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
v1.13.3c | 15th July 2017
* Fixed dogs not attacking anything you attacked (for all hostile modes)
* Fixed crash because of BedFinder Talent
v1.13.3b | 15th July 2017
+ Added the Treat Bag which is an extra 5 slots where you can store food, right clicking on a dog will feed the dog from the first slot with food in. Right clicking on a food bowl will put all the contents into the food bowl.
+ Added the Chew stick, this restores 10HP and gives your dog some fancy potion effects
# Changed all reference to GL11 to use GlStateManager - not sure what effect this has but its what you should do
* Fixed dog collars losing their colour in survival mode
* Fixed any player being able to dye a dog collar even when they are not allowed
v1.13.3a | 15th July 2017
+ Added Wool Collars, crafted with 8 string in the outline of square. This means by default a dog doesnt have a collar.
+ You can dye these collars just like leather armour in the crafting table as well as when the collar is on the dog
+ Wool Collars can be removed by using the collar shears on your dog, if you click again on the dog it will turn it into a wolf like before
+ Added a Whistle item in the creative menu. Currently it does nothing apart from look cool
- Removed the dog texture index system, for the moment you will not be able to turn your dog into the brown species
* Using AxisAlignedBB#grow instead of AxisAlignedBB#expand, from 1.11.2 to 1.12 there remained a method named 'expand' but its functionally changed, equivalent in 1.12 is AxisAlignedBB#grow
* Fixed dogs not attack mobs in any mode, due to ^^
* Fixed CreeperSweeper, PestFighter and Puppy Eyes not working as intended, due to ^^
* Fixed dog hunger being able to go above 120 HP and below 0 HP
v1.13.2a | 12th July 2017
+ Added option in dog info screen, you can now enable to disable friendly fire. If the dog is set to obey others they will also not beable to damage it
* Fixed wandering mode, they will walk around their bowl. If they are too far from their bowl when you set them to wandering mode they will stand still.
* Fixed crash with Animalium mod and other mods
v1.13.1g | 5th July 2017
+ Added support for ItemPhysic mod, items that you would expect to float now float and blocks that burn now burn
+ Readded support for the wooden planks from Forestry mod to be used as casing in dog bed
+ Readded support for the wooden planks and bamboo thatching from BiomesoPlenty mod to be used as casing in dog bed
+ Added a whole new creative tab just for dog beds, there are hundreds of combinations!
+ Added Russian language file - thanks to MrShadowJasonRus for the translation
* Fixed crash on server startup
* Fixed dog bed not displaying their tooltip
v1.13.1f | 30th June 2017
+ Now works with the recommended version of MinecraftForge (there have been alot of internal changes) - build on version #1.12-14.21.1.2387
# Increased the accuracy of the doggy Command Emblem
v1.13.1e | 17th June 2017
Initial release, parent version v1.12.1d
+ You can now use Cooked Salmon instead of/as well as Cooked Fish in the breeding bone recipe
# Improved checks for wheather a block is solid when a dog tries to teleport
* Fixed passengers taking the full amount of fall damage when riding a dog - you will now take the same as your dog, if your dog is immune you are too while riding it
* Fixed crash after using collar shears and sneaking
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
MC 1.11.2
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
v1.12.2a | 14th July 2017
+ Added option in dog info screen, you can now enable to disable friendly fire. If the dog is set to obey others they will also not beable to damage it
+ Readded support for the wooden planks and bamboo thatching from BiomesoPlenty mod to be used as casing in dog bed
* Fixed wandering mode, they will walk around their bowl. If they are too far from their bowl when you set them to wandering mode they will stand still.
* Fixed crash with Animalium mod and other mods
v1.12.1g | 5th July 2017
+ Added support for ItemPhysic mod, items that you would expect to float now float and blocks that burn now burn
+ Readded support for the wooden planks from Forestry mod to be used as casing in dog bed
+ Added a whole new creative tab just for dog beds, there are hundreds of combinations!
+ Added Russian language file - thanks to MrShadowJasonRus for the translation
# Block/Item registration now uses the event registry system
# Entity renderer registration is now how it should be
* Fixed crash on server startup
* Fixed dog bed not displaying their tooltip
v1.12.1e | 17th June 2017
* Fixed passengers taking the full amount of fall damage when riding a dog - you will now take the same as your dog, if your dog is immune you are too while riding it
* Fixed crash after using collar shears and sneaking
v1.12.1d | 20th April 2017
+ Dog will now vary their distance from you based on if you have a tool or sword in your hand
+ Dog now holds a bone in his mouth once he has picked up the throw bone
* Fixed throw bone not working in survival
* Cleaning up dog code
* Fetch bone ai is much less derpy
* Fixed head not rotation when playing fetch
v1.12.1c | 5th April 2017
+ Added a config gui to the forge mod list menu, you can now change the mods/doggy settings in game
# Changed the jump height for each level of Wolf mount so at max rank you will no longer take fall damage when jumping on a static y plane (lvl 1-4: starting at half a block going up to 2 blocks high jump, lvl 5: 3 block high jump)
* Fixed the dog model being shifted over 1 pixel to the left
* Fixed the dogs nose being too long
* Fixed training treat spawning two dogs and consuming 2 items
v1.12.1b | 2nd April 2017
+ Food bowl will now output redstone signal using a comparator based on how many items are in the bowl (same as vanilla inventories)
+ Added code for dog bed that can allow it to be flipped and rotated by other mods
# Food Bowl and Dog Bath can only be broken by pickaxe, and it is much better to use an axe on a wooden dog bed :P
* Fixed food bowl not dropping its contents when broken
* Fixed dog bed not dropping anything
* Fixed pick block on dog bed
* Fixed time to break some blocks (food bowl) being instant
- Removed old redundant custom version checker
v1.12.1a | 2nd April 2017
# Version checker now uses the forge version checker so when you look at the list of mods it will alert you to an update and have the changelog as well
# Dogs can now be removed from your head by sneaking
* Fixed not been able to jump when riding dogs with Wolf Mount
* Fixed bed finder not highlighting your bed when a dog is on your head (now highlights in yellow colour)
* Fixed not being able to mount a dog with Wolf Mount
* Fixed some internal code using null instead of ItemStack.EMPTY (new to 1.11.2) which was causing some bugs
* Fixed dogs drowning in water when pillow paw is level 5
* Fixed dogs responding to holding wheat and picking up animals even when no points where put in Shepherd Dog
* Fixed Doggy Dash not really increasing the speed at which dogs run by much - should notice it more now when riding and as they follow you
v1.12.0a | 1st April 2017
Initial release, parent version v1.11.0b
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
MC 1.10.2
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
v1.11.2a | 14th July 2017
+ Added option in dog info screen, you can now enable to disable friendly fire. If the dog is set to obey others they will also not beable to damage it
+ Readded support for the wooden planks and bamboo thatching from BiomesoPlenty mod to be used as casing in dog bed
* Fixed wandering mode, they will walk around their bowl. If they are too far from their bowl when you set them to wandering mode they will stand still.
* Fixed crash with Animalium mod and other mods
v1.11.1g | 5th July 2017
+ Added support for ItemPhysic mod, items that you would expect to float now float and blocks that burn now burn
+ Readded support for the wooden planks from Forestry mod to be used as casing in dog bed
+ Added a whole new creative tab just for dog beds, there are hundreds of combinations!
+ Added Russian language file - thanks to MrShadowJasonRus for the translation
# Block/Item registration now uses the event registry system
# Entity renderer registration is now how it should be
* Fixed crash on server startup
* Fixed dog bed not displaying their tooltip
v1.11.1e | 17th June 2017
* Fixed passengers taking the full amount of fall damage when riding a dog - you will now take the same as your dog, if your dog is immune you are too while riding it
* Fixed crash after using collar shears and sneaking
v1.11.1d | 20th April 2017
+ Dog will now vary their distance from you based on if you have a tool or sword in your hand
+ Dog now holds a bone in his mouth once he has picked up the throw bone
* Fixed throw bone not working in survival
* Cleaning up dog code
* Fetch bone ai is much less derpy
* Fixed head not rotation when playing fetch
v1.11.1c | 5th April 2017
+ Added a config gui to the forge mod list menu, you can now change the mods/doggy settings in game
# Changed the jump height for each level of Wolf mount so at max rank you will no longer take fall damage when jumping on a static y plane (lvl 1-4: starting at half a block going up to 2 blocks high jump, lvl 5: 3 block high jump)
* Fixed the dog model being shifted over 1 pixel to the left
* Fixed the dogs nose being too long
* Fixed training treat spawning two dogs and consuming 2 items
v1.11.1b | 2nd April 2017
+ Food bowl will now output redstone signal using a comparator based on how many items are in the bowl (same as vanilla inventories)
+ Added code for dog bed that can allow it to be flipped and rotated by other mods
# Food Bowl and Dog Bath can only be broken by pickaxe, and it is much better to use an axe on a wooden dog bed :P
* Fixed food bowl not dropping its contents when broken
* Fixed dog bed not dropping anything
* Fixed pick block on dog bed
* Fixed time to break some blocks (food bowl) being instant
- Removed old redundant custom version checker
v1.11.1a | 2nd April 2017
# Version checker now uses the forge version checker so when you look at the list of mods it will alert you to an update and have the changelog as well
# Dogs can now be removed from your head by sneaking
* Fixed not been able to jump when riding dogs with Wolf Mount
* Fixed bed finder not highlighting your bed when a dog is on your head (now highlights in yellow colour)
* Fixed dogs drowning in water when pillow paw is level 5
* Fixed dogs responding to holding wheat and picking up animals even when no points where put in Shepherd Dog
* Fixed Doggy Dash not really increasing the speed at which dogs run by much - should notice it more now when riding and as they follow you
v1.11.0b | 1st April 2017
# Changed the file names of some textures
* Fixed the collision box of dog beds
v1.11.0a | 1st April 2017
Initial release, parent version v1.10.0a
+ Added some missing localisation no more entity.doggytalent.doggytalent:dog.name etc!
# Changed the way the radar works, when you right click it will tell you how the distance and direction your dog is away from you along with their name so you can identify them has a range of ~ 150 blocks
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
MC 1.9.4
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
v1.10.2a | 14th July 2017
+ Added option in dog info screen, you can now enable to disable friendly fire. If the dog is set to obey others they will also not beable to damage it
+ Readded support for the wooden planks and bamboo thatching from BiomesoPlenty mod to be used as casing in dog bed
* Fixed wandering mode, they will walk around their bowl. If they are too far from their bowl when you set them to wandering mode they will stand still.
* Fixed crash with Animalium mod and other mods
This is the last offical update for MC 1.9.4
v1.10.1g | 5th July 2017
+ Added support for ItemPhysic mod, items that you would expect to float now float and blocks that burn now burn
+ Readded support for the wooden planks from Forestry mod to be used as casing in dog bed
+ Added a whole new creative tab just for dog beds, there are hundreds of combinations!
+ Added Russian language file - thanks to MrShadowJasonRus for the translation
v1.10.1e | 18th June 2017
+ Dog will now vary their distance from you based on if you have a tool or sword in your hand
+ Dog now holds a bone in his mouth once he has picked up the throw bone
* Fixed throw bone not working in survival
* Cleaning up dog code
* Fetch bone ai is much less derpy
* Fixed head not rotation when playing fetch
* Fixed passengers taking the full amount of fall damage when riding a dog - you will now take the same as your dog, if your dog is immune you are too while riding it
* Fixed crash after using collar shears and sneaking
v1.10.1c | 5th April 2017
Initial release, parent version v1.10.1c
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
MC 1.8.9
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
1.14.1.242 | 7th August 2017
+ Dog now holds a bone in his mouth once he has picked up the throw bone
* Fixed dogs having no step sound
Initial release, parent version 1.7.10-1.14.1.240
v1.10.0a | 16th April 2016
Initial release, parent version v1.9.1g
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
MC 1.8
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
v1.9.1g - 16th July 2015
* Fixed crash on server startup
v1.9.1f - 16th July 2015
+ Added new talent swimmer dog
+ When dogs have been sitting for a while they will regen hunger up to 60 NP and can stop being incapcitated
+ Added hunger icons when riding dogs to see what NP they are on
+ Added air icons when riding dogs to see how much breath they have left
# The version checker is not more reliable and will provide a link you can click on in chat to send you to the download page
* Fixed bug when registering bed casing and bedding
* Fixed being able to access other peoples dog without permission
* Fixed localisation data being missing for foresty wood casing tool tips
* Fixed dogs been able to teleport to you even when they were sat down
* Fixed some abilities still working when a dog was incapcitated
* Fixed players being able to mount other peoples dogs regardless
* Fixed error message with dog bath having no texture when it wasn't needed
* FINALLY Fixed constantly getting doggy charms and command emblems on respawn, you now will only get them once
* Fixed pillow paw talent now working
v1.9.1e - 18th March 2015
* Fixed compatibly issue with Copious Dogs
v1.9.1d - 15th March 2015
+ Readded the rendering for the radio collar and the incapacitated blood on the dog
# Optimized the code for rendering the dog bed to improve performance
* Fixed the dog not acting correctly when it was dire level 30 (no particles, 15 less points to spend)
* Fixed dogs moving things they are riding
* Fixed crash when right clicking on a non-tamed dog with an empty hand
* Fixed the dog bath not dropping itself as an item when the block below was removed
* Fixed the dog bowl not dropping itself as an item when the block below was removed
v1.9.1c - 28th February 2015
* Fixed mcmod.info file now working and having invalid data in it
* Fixed the talent happy eater not affecting what the dog and eat and the NP value
* Fixed the talent doggy dash not affecting the speed at which the dog moves
* Fixed dogs being inside you when the was meant to be on your head
* Fixed dogs being 1 block under minecarts when they were meant to be in the them
* Fixed the dog standing still when holding wheat if they have no points in shepherd dog
v1.9.1b - 27th February 2015
+ Added a recipe for dog bath - water bucket surrounded by iron ingots
* Fixed not spawning with the Doggy Charm and command emblem in new worlds
* Fixed there sometimes only being one talent in the talent gui
* Mod will not load with forge version 11.14.0.1292 or lower to avoid crashes
v1.9.1a - 16th February 2015
Initial release, parent version v1.9.0b
* Fixed crash when sneaking and looking at a dogs label in multiplayer if the owner of the do was not on the server
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
MC 1.7.10
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
1.14.3. |
* Set max stacksize of treat bag to 1 to fix item duplication bug
1.14.3.317 | 20th March 2018
* Fixed radar not showing up in creative tab
1.14.2.317 | 14th January 2018
* Fixed multiple issues with the Doggy Bowl
* Fixed crash when trying to ride a dog that is on your head
1.14.2.314 | 6th December 2017
* Fixed items not stacked when being picked up by the Pack Puppy Talent
1.14.2.311 | 20th October 2017
+ Added recipe for throw stick, same as throw bone but sticks instead of bones
# Updated Russian Translation files to be more accurate and include some of the newer translations keys
* Fixed crash when holding no items and clicking on a wolf
* Fixed crash when holding no items the pressing the arrow keys
* Fixed dogs been able to attack creepers even when they are not level 5 CreeperSweeper
1.14.2.308 | 26th August 2017
+ Added a constant purple and black 'glitch' texture
# Updated Chinese Translation files to be more accurate and include some of the newer translations keys
1.14.2.298 | 20th July 2017
+ Two new dog skins that look like dobermans species - thanks to oitsjustjose
* Fixed dogs disapearing when loading up from older versions of the mod - v1.9.0h
1.14.2.295 | 15th July 2017
+ Added Dog Sunglasses
+ Added Dog Leather Jacket - turn your dog into a secret agent!
+ Added Creative Collar which gives your dog 1000 points to spend on talents (only available in creative obviously)
+ Added Spotted Collar and Multicolour Collar
+ Readded doggy texture index (for now) you can add your own skins assets/doggytalents/textures/mob/dog/doggytex$NO.png up to 128 textures
+ Added 8 new textures for dogs - 2 of the textures are from an old mod "Extended Wolves". We are trying to contact the owner, it is unlikely he will reply, he hasn't been on his MCF account in over a year. Hopefully he doesn't mind, if he wants us to remove them we will.
+ Added dyeable capes that you can put on the dog
+ Added tartan cape that you can put on the dog
+ Added throw stick that you can play fetch with your dog
+ Collar shears now remove all items on your dog
+ Added wings on your dog when you have level 5 Pillow paw (can be disabled in config file/gui)
+ Added 3D saddle when you have at least 1 level in wolf mount
+ Added Tiny Bone and Big Bone this decreases and increases your dogs size respectively
+ Added support for MC 1.8.9
+ Added support for the wooden planks from Botania mod to be used as casing in dog bed
+ Added lots more translation keys to the language files
# Changed incapacitated blood to look much better
* Fixed no message being displayed when riding a dog and it runs out of hunger
* Fixed dogs not having a step sound
* Fixed crash with PuppyEyes talent
Special thanks to knuckles001 for lots of the content in this update
1.14.1.240 | 6th August 2017
+ Added options to disable each talent in the config file
* Fixed dog bed dropping in creative mode
* Fixed dog bed not using correct particle for hit effects
1.14.1.229 | 3rd August 2017
+ Added new talent swimmer dog
+ When dogs have been sitting for a while they will regen hunger up to 60 NP and can stop being incapcitated
+ Added hunger icons when riding dogs to see what NP they are on
+ Added air icons when riding dogs to see how much breath they have left
+ Added a recipe for dog bath - water bucket surrounded by iron ingots
+ Dog will now vary their distance from you based on if you have a tool or sword in your hand
+ Added a whole new creative tab just for dog beds, there are hundreds of combinations!
+ Added Russian language file - thanks to MrShadowJasonRus for the translation
+ Added option in dog info screen, you can now enable to disable friendly fire. If the dog is set to obey others they will also not beable to damage it
+ Added Wool Collars, crafted with 8 string in the outline of square. This means by default a dog doesnt have a collar.
+ You can dye these collars just like leather armour in the crafting table as well as when the collar is on the dog
+ Wool Collars can be removed by using the collar shears on your dog, if you click again on the dog it will turn it into a wolf like before
+ Added a Whistle item in the creative menu. Currently it does nothing apart from look cool
+ Added the Treat Bag which is an extra 5 slots where you can store food, right clicking on a dog will feed the dog from the first slot with food in. Right clicking on a food bowl will put all the contents into the food bowl.
+ Added the Chew stick, this restores 10HP and gives your dog some fancy potion effects
+ Add chew stick recipe SW, WS W = Wheat, S = Sugar
+ Added treat bag recipe LCL, LLL C = Chew Stick, L = Leather
+ Added Chinese translation file zh_CN.lang, thanks to 317620111 of the MC forums
* Many bug fixes just look at all then changes from ~July 2015 to present
v1.9.0h - 16th July 2015
* Fixed crash on server startup
v1.9.0g - 16th July 2015
+ Added new talent swimmer dog
+ When dogs have been sitting for a while they will regen hunger up to 60 NP and can stop being incapcitated
+ Added hunger icons when riding dogs to see what NP they are on
+ Added air icons when riding dogs to see how much breath they have left
+ You can now make beds using planks from biomesoplenty, extrautilies, thaumcraft, tropicraft and twilight forest
# The version checker is not more reliable and will provide a link you can click on in chat to send you to the download page
* Fixed bug when registering bed casing and bedding
* Fixed being able to access other peoples dog without permission
* Fixed Forestry addon not registering planks for the dog casing
* Fixed localisation data being missing for foresty wood casing tool tips
* Fixed dogs been able to teleport to you even when they were sat down
* Fixed some abilities still working when a dog was incapcitated
* Fixed players being able to mount other peoples dogs regardless
* Fixed error message with dog bath having no texture when it wasn't needed
* FINALLY Fixed constantly getting doggy charms and command emblems on respawn, you now will only get them once
v1.9.0f - 18th March 2015
* Fixed compatibly issue with Copious Dogs
v1.9.0e - 15th March 2015
* Fixed the dog not acting correctly when it was dire level 30 (no particles, 15 less points to spend)
* Fixed dogs moving things they are riding
* Fixed crash when right clicking on a non-tamed dog with an empty hand
* Fixed the dog bath not dropping itself as an item when broken or when the block below was removed
* Fixed the dog bowl not dropping itself as an item when the block below was removed
v1.9.0d - 28th February 2015
* Fixed mcmod.info file now working and having invalid data in it
* Fixed crash when sneaking and looking at a dogs label in multiplayer if the owner of the do was not on the server
* Fixed the talent happy eater not affecting what the dog and eat and the NP value
* Fixed the talent doggy dash not affecting the speed at which the dog moves
* Fixed dogs being inside you when the was meant to be on your head
* Fixed dogs being 1 block under minecarts when they were meant to be in the them
* Fixed the dog standing still when holding wheat if they have no points in shepherd dog
v1.9.0c - 27th February 2015
+ Added a recipe for dog bath - water bucket surrounded by iron ingots
* Fixed not spawning with the Doggy Charm and command emblem in new worlds
* Fixed there sometimes only being one talent in the talent gui
v1.9.0b - 08th February 2015
* Fixed NEI and TMI overlapping with the doggy info screen
v1.9.0a - 08th February 2015
+ Added dog bath for aesthetic purposes
# Changed many numbers due to the massive code redo
# Changed the max stack size of the dog bed to 64 not 1
# Changed the way bed finder shows the bed, instead of the dog facing it the bed is highlighted in black
# Updated for the lastest version of forestry
* Fixed crash when clicking space
v1.8.3a - 18th October 2014
+ For every level of talent doggymount you now can jump half a block more (basicly need 2 level to jump 1 block, level 5 is about 4 blocks)
# Changed the layout of the changelog and added dates of release to early versions of the mod
* Fixed cake not getting the dog out of incapacitated mode
* Fixed jumping with you dog when you are riding him with wolf mount
* Fixed the talent pillowpaw at level 5 not making the dog float when you jumped
* Fixed the talent doggydash not increasing the speed when you are riding your dog
* Fixed the dog not standing up when you mounted it
* Fixed dogs not being able to attack creepers at level 5
* Fixed creepers sometimes exploding when dogs are attacking them
v1.8.2a - 17th October 2014
* Fixed Forestry addon not registering planks for the dog casing
v1.8.1a - 16th October 2014
+ Added Radio Collar which can be put on a dog
+ Added Radar with shows any dogs within 128 blocks which have a radio collar on
+ Added config option to check if you want to check for updates or not
# Improved version checker so it will will only tell you new versions available for the version of minecraft you are on
* Fixed crash on server due to dog bed casing
* Fixed a glitch where you could duplicate items with the packpuppy talent
* Fixed dogs not begging when holding a master treat
* Fixed crash with foresty
v1.8.0a - 12th October 2014
+ Added acacia and dark oak plank casing for dog beds
+ Added a visual indicator to show when the talent packpuppy is present, tiny chests on the dogs side! Thanks to 'knuckles001'
+ Added 2 more ears (side ears and flat ears on top of head) and a shorter tail to the dog model so you can texture appropriately to have the ear size you want, thanks to 'knuckles001'
+ When using a plank to open a dogs inventory it will make the chest opening sound
+ Increased the amount of skins you can have from 17 to 128 to add new skins use make the skin and put it in the "/assets/doggytalents/textures/mob/" folder and name it doggytex50.png etc (up to 127)
+ Added 2 new skins doggytex17.png and doggytex18.png
# The different plank types for dog beds now uses the ore dictionary to look up planks, thanks to 'mezz'
* Fixed packpuppy talent at level 5 not automatically picking up items from the floor
* Fixed dogs not begging (tilting their head) when holding food
* Fixed the spelling of 'Poison' from 'Posion'.
* Fixed the talent shepherd dog not working
* Fixed a baby wolf being turned straight into a adult dog not a baby dog
* Fixed the name of the owner (when shifting looking at a dog) being the UUID id not the users in game name
* Fixed various spelling and grammatical mistakes
v1.7.3a - 24th July 2014
+ Added zh_CN language file, thanks to 'crafteverywhere'
* Fixed the NEI intergration not working
v1.7.2a - 9th July 2014
* Fixed crash when opening inventory with NEI installed
* Fixed mcmod.info file not working
v1.7.1a - 8th July 2014
* Fixed doggy charm spawning a dog you can't interact with
v1.7.0a - 8th July 2014
Initial release, parent version v1.6.1a
# Updated owner name system to cater for upcoming name changes
# Removed some unused classes
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
MC 1.7.2
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
v1.6.2a - 19th March 2015
+ Updated the 1.7.2 to have the lastest bug fixes and features in the most recent versions (v1.9.0f)
* Fixed bug when registering bed casing and bedding
v1.6.1a - 24th July 2014
+ Added zh_CN language file, thanks to 'crafteverywhere'
* Fixed the NEI intergration not working
v1.6.0a - 10th February 2014
Initial release, parent version v1.5.1a
# Most text is now in the .lang files so other languages can edit them
* Fixed crash on server (In first version of this version)
* Fixed some small bugs on the way
NOTE: This was a straight port to 1.7 no features were changed, in the next update quite a lot will change :D.
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Old Versions