Skip to content

Commit

Permalink
Version bump & misc changes
Browse files Browse the repository at this point in the history
  • Loading branch information
maltaisn committed Dec 30, 2022
1 parent 222a03c commit 9362e64
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/production/
/dev/

## IntelliJ
/.idea/
Expand Down
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
## v0.2.0
## v0.2.1 (2022-12-30)
- Updated LibGDX to 1.11.0.

## v0.2.0 (2019-11-07)
- MsdfFontLoader now parses font file to get `size` (in info tag) and `distanceRange`
(in common tag) attributes to avoid having to pass them in the loader parameter.
- Fixed font texture filters not set when loading without specifying parameter.

### v0.1.1
### v0.1.1 (2019-10-29)
- Changed antialiasing method, removing need for GL_OES_standard_derivatives OpenGL extensions in fragment shader which caused crashes on older OpenGL version/Open GL ES.

## v0.1.0
## v0.1.0 (2019-09-11)
- **Initial release**
- Shader for drawing MSDF text.
- Font style class with many options:
Expand Down
1 change: 0 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ plugins {

allprojects {
repositories {
jcenter()
google()
mavenCentral()
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ ktxVersion=1.11.0-rc3
junitVersion=4.13.1
# Publishing
libGroup=com.maltaisn
libVersion=0.2.0
libVersion=0.2.1
12 changes: 9 additions & 3 deletions lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ dependencies {

implementation("com.badlogicgames.gdx:gdx:$gdxVersion")

compileOnly("org.jetbrains:annotations:17.0.0")
compileOnly("org.jetbrains:annotations:23.1.0")

testImplementation("junit:junit:$junitVersion")
}

java {
sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8

withJavadocJar()
withSourcesJar()
Expand Down Expand Up @@ -74,3 +74,9 @@ publishing {
signing {
sign(publishing.publications["maven"])
}

tasks.javadoc {
if (JavaVersion.current().isJava9Compatible) {
(options as StandardJavadocDocletOptions).addBooleanOption("html5", true)
}
}

0 comments on commit 9362e64

Please sign in to comment.