Fernando Pettinelli
2b7cfcc29a
Added ChatMessage fix.
2022-07-03 03:37:49 -04:00
Christian Koop
269aaa99b8
Update MethodMapping class for Minecraft 1.19
2022-06-28 12:19:12 +02:00
Christian Koop
f3b5b7c889
Merge branch 'development'
2022-06-28 12:17:18 +02:00
Fernando Pettinelli
2929c628ed
2.6.13 - Added Apache Commons Lang3 and Text. More 1.19 fixes.
2022-06-26 12:27:20 -04:00
Christian Koop
84515e7004
Minor code cleanup in SongodaYamlConfig constructor
...
keeps the logger effectively final + makes Codacity' static code analysis happy
2022-06-26 13:57:12 +02:00
Christian Koop
ed7b454625
Fix Exception when calling #emergencyStop inside onPluginEnable
2022-06-26 13:46:38 +02:00
Christian Koop
73685b62dd
Mark overwritten and empty config methods in SongodaPlugin as deprecated
...
The methods should not be used
2022-06-26 13:46:35 +02:00
Christian Koop
7ef00bb8f9
Adjust log levels in SongodaYamlConfig
...
Level.FINER is currently not logged anthough the Logger is set to ALL and isLoggable returns true for FINER.
There's an bug existing bug report at Spigot: https://hub.spigotmc.org/jira/browse/SPIGOT-7018
2022-06-26 13:46:29 +02:00
Christian Koop
532d96f6c1
Add adventure-api
to SongodaCore dependencies
2022-06-26 13:28:10 +02:00
Christian Koop
b0f006aed0
Fix SongodaYamlConfig not creating parent directory when saving
...
Caused an IOException if the PluginDataDir didn't exist yet.
2022-06-26 13:26:13 +02:00
Christian Koop
e7e3c3d21d
Disable test CompatibileMaterialTest#getMaterialForAllBukkitMaterials
...
It is highly version dependent and breaks often because of that
2022-06-26 13:25:10 +02:00
Christian Koop
c9a48387de
Fix SongodaYamlConfigTest leaving created backup files in tmp dir
2022-06-26 13:24:16 +02:00
Christian Koop
fce5c5c6a1
Remove Config related methods in SongodaPlugin
...
Escept for #getExtraConfigs which got renamed, the other methods are no longer required and have been removed.
Additionally the config methods defined by Bukkit's JavaPlugin class
have been overwritten with empty bodies.
This prevents the default behaviour trying to access stuff that's not there
or should not be considered a valid config to use.
2022-06-26 02:38:29 +02:00
Christian Koop
4bc0e991ab
Removes #getConsole in SongodaPlugin
2022-06-26 02:33:09 +02:00
Christian Koop
eb10b3f70a
Introduce new SongodaYamlConfig and ConfigEntry classes
...
This introduces an additional abstraction layer on top of the YamlConfiguration.
This is the class that should normally be used by plugins.
2022-06-26 01:51:53 +02:00
Christian Koop
8310541b91
Fix ServerVersion#UNKNOWN being treated like a normal version
...
This is required for unit tests (especially the `Bukkit#getServer != null` check).
But it seems faulty to even trat an unknown version like a normal one.
2022-06-26 01:39:39 +02:00
Christian Koop
02ab8d4bb2
Fix YamlConfiguration dumping null values and empty tree nodes
2022-06-26 01:39:39 +02:00
Christian Koop
885cc9a87e
Fix YamlConfiruration#getKeys("")
not returning root node keys
2022-06-26 01:39:39 +02:00
Christian Koop
2683bc12c0
Fix exception on loading empty file in YamlConfiguration
2022-06-26 01:39:39 +02:00
Christian Koop
2262652577
Make YamlConfiguration insertion-sorted
...
This ensured that the order of the keys is deterministic and be controlled by the developer.
2022-06-26 01:39:39 +02:00
Christian Koop
f6e207cdda
Rename IConfiguration#getOrDefault
to #getOr
2022-06-26 01:39:39 +02:00
Fernando Pettinelli
b110a69285
1.19 fixes
2022-06-25 17:59:06 -04:00
Christian Koop
2272fe7b97
Release v2.6.13-DEV
2022-06-20 17:27:01 +02:00
Christian Koop
88b0b03326
Add 1.19 Materials to CompatibleMaterial
2022-06-20 14:52:18 +02:00
Christian Koop
73c6b9a558
Fixes MathUtils unit tests
...
Started failing with changes in d25514743f
2022-06-16 20:59:50 +02:00
Christian Koop
d25514743f
Improve exception message for the Eval class
2022-06-16 13:21:58 +02:00
Christian Koop
c33987162e
Remove unused static Random in BBaseSpawnerImpl for Spiot 1.19
2022-06-07 20:08:33 +02:00
Christian Koop
c50b691c3c
pom.xml: Remove snapshot plugin repositories
2022-06-07 20:04:30 +02:00
Christian Koop
d5a63fd38a
GitHub-Actions: Fix missing Spigot 1.19 for SonarCloud Workflow
2022-06-07 19:53:49 +02:00
Christian Koop
547425dec9
Update maven-shade-plugin from 3.3.0-SNAPSHOT
to 3.3.0
2022-06-07 19:45:24 +02:00
Christian Koop
ee6b540a23
Update jacoco-maven-plugin from 0.8.8-SNAPSHOT
to 0.8.8
2022-06-07 19:33:52 +02:00
Christian Koop
fc658d51c0
Adds Spigot 1.19 NMS module
2022-06-07 19:31:32 +02:00
Christian Koop
41bd5c633a
Adds Enum support to YamlConfiguration class ( #41 )
2022-04-27 23:34:27 +02:00
Christian Koop
8f15df3601
Removes the default implementations for #save(File) and #load(File)
...
Overwriting an implementing class quickly becomes a potential hassle as there is no guarantee how they are implementend
#41
2022-04-27 23:31:53 +02:00
Christian Koop
6d6fa7210a
Replace Songoda's YAML Configuration wrapper with an own implementation
...
Because Spigot 1.18 still hasn't fixed a critical bug like PaperMC did, I recoded the current YAML Configuration classes and access SnakeYaml directly instead of using the Spigot wrapper.
This implementation approach also allows for adding node comments using the lib instead of some woodo string manipulation.
#41
// I might move this into my own library in the future, lets see :p
2022-04-27 21:42:20 +02:00
Christian Koop
2a037e2853
Update required snakeyaml version from 1.26 to 1.30 ( #41 )
...
We probably want to take a look at what Spigot 1.8 comes with and if we are compatible or if we want to shade the lib into the Core instead.
Maybe we can have some kind of automatic legacy system that downloads an addional jar automatically when an unsupported Spigot version is detected... Lets see what time brings
2022-04-27 21:42:20 +02:00
Christian Koop
5debcf20f9
Update junit-jupiter
dependency from v.5.8.1 to v5.8.2
2022-04-15 18:34:54 +02:00
Christian Koop
d1fafd301d
Configure pitest for mutation tests
2022-04-15 18:34:29 +02:00
Christian Koop
f6b091bb79
Uses the asyncPool in DataManagerAbstract#asyncFuture
( #22 )
2022-03-18 16:17:15 +01:00
Christian Koop
7a85bd7a2a
Merge pull request #22 from divios/patch-1
...
Added `DataManagerAbstract#asyncFuture`
2022-03-18 16:16:37 +01:00
Christian Koop
aa3455d6ba
Merge branch 'development'
2022-03-18 14:47:29 +01:00
Christian Koop
7ca814c747
Release v2.6.12
2022-03-18 14:47:22 +01:00
Christian Koop
a42d03aec3
Fixes empty slots in ConfigEditorGui item select
2022-03-18 14:33:50 +01:00
Christian Koop
a0050aadd6
Adds Minecraft 1.18.2 support
2022-03-18 14:33:50 +01:00
Christian Koop
8c0c281d9b
Deprecates Core's NBTItem implementations in favor of item-nbt-api
2022-03-18 14:33:50 +01:00
Christian Koop
22d0c395e4
Fixes typo in MethodMapping class
2022-03-18 14:33:50 +01:00
Christian Koop
e51da054bf
Merge pull request #36 from ItsAZZA/development
...
Add Otherside Music Disc to CompatibleMaterial
2022-03-17 09:08:54 +01:00
ItsAZZA
cffd47a58b
Merge branch 'development' of https://github.com/ItsAZZA/SongodaCore into development
2022-02-13 21:12:22 +02:00
ItsAZZA
33ef151c07
Adds missing Music Disc Otherside
2022-02-13 21:12:10 +02:00
Christian Koop
e57342ab2a
Fixes error reporting on plugin startup to not print Exception correctly
2022-02-10 18:57:19 +01:00