Go to file
Christian Koop f545dcc2d9
Fix charset not being detected correctly on UTF-8 files (SD-7843)
With this patch, the tested bytes are whole words/lines. This ensures that multi-byte characters (like in UTF-8) are not detected as malformed input and `ISO-8859-1` being detected because it just doesn't care about anything and replaces everything it doesn't know with something it does... Why no error? Would like to know that too :/

This *should* not be able to break existig files or plugins.
2021-04-06 18:46:56 +02:00
.github/workflows Create maven.yml 2021-01-19 12:24:57 -06:00
.idea version 2.4.46 2021-02-22 09:50:36 -06:00
Core Fix charset not being detected correctly on UTF-8 files (SD-7843) 2021-04-06 18:46:56 +02:00
NMS version 2.4.49 2021-04-05 13:49:27 -05:00
.gitignore Updated git ignore. 2020-06-25 00:10:35 -05:00
assembly.xml copy nms into main jar 2019-09-12 15:41:51 -05:00
LICENSE.md Initial commit 2019-04-25 18:09:38 -04:00
pom.xml version 2.4.49 2021-04-05 13:49:27 -05:00
README.md version 2.4.49 2021-04-05 13:49:27 -05:00

SongodaCore GitHub Workflow Status (branch) GitHub Workflow Status (branch)

An elaborate multi functional general Spigot plugin compatibility core and general use API.

Maven Information

  • Repository
<repository>
    <id>Songoda</id>
    <url>https://repo.songoda.com/repository/public/</url>
</repository>
  • Artifact Information:
<dependency>
    <groupId>com.songoda</groupId>
    <artifactId>SongodaCore</artifactId>
    <version>2.4.49</version>
    <scope>provided</scope>
</dependency>

Gradle Information

  • Repository:
repositories {
    maven {
        url 'https://repo.songoda.com/repository/public/'
    }
}
  • Artifact:
dependencies {
    compileOnly 'com.songoda:SongodaCore:2.4.49'
}