Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
xzel23 committed Dec 20, 2024
1 parent 737f7dc commit 43d1c73
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ public class FxSheetViewDelegate extends SheetViewDelegate {
*
* @param owner The FxSheetView instance that this delegate will be associated with and
* responsible for managing.
* @param sheet The sheet to show.
*/
public FxSheetViewDelegate(
Sheet sheet,
Expand Down
4 changes: 1 addition & 3 deletions meja-ui/src/main/java/com/dua3/meja/ui/CellRenderer.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
import com.dua3.utility.data.Color;
import com.dua3.utility.math.geometry.Rectangle2f;
import com.dua3.utility.text.Alignment;
import com.dua3.utility.text.Font;
import com.dua3.utility.text.RichText;
import com.dua3.utility.text.VerticalAlignment;
import com.dua3.utility.ui.Graphics;
Expand Down Expand Up @@ -177,10 +176,9 @@ private void renderCellContent(Graphics g, Cell cell, Rectangle2f r, Rectangle2f
};

RichText text = cell.getAsText(delegate.getLocale());
Font font = cs.getFont();
boolean wrapping = cs.isStyleWrapping();

g.renderText(r, text, font, hAlign, vAlign, wrapping);
g.renderText(r, text, hAlign, vAlign, wrapping);
}

/**
Expand Down
8 changes: 4 additions & 4 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import org.gradle.internal.extensions.stdlib.toDefaultLowerCase

// define project name and version
rootProject.name = "dua3-meja"
val projectVersion = "6.2.1"
val projectVersion = "6.3.0-SNAPSHOT"

// define subprojects
include("meja")
Expand Down Expand Up @@ -30,12 +30,12 @@ dependencyResolutionManagement {

plugin("versions", "com.github.ben-manes.versions").version("0.51.0")
plugin("test-logger", "com.adarshr.test-logger").version("4.0.0")
plugin("spotbugs", "com.github.spotbugs").version("6.0.26")
plugin("spotbugs", "com.github.spotbugs").version("6.0.27")
plugin("cabe", "com.dua3.cabe").version("3.0.1")

version("dua3-utility", "15.0.2")
version("dua3-utility", "15.1.0-SNAPSHOT")
version("jspecify", "1.0.0")
version("log4j-bom", "2.24.2")
version("log4j-bom", "2.24.3")
version("poi", "5.3.0")

library("dua3-utility", "com.dua3.utility", "utility").versionRef("dua3-utility")
Expand Down

0 comments on commit 43d1c73

Please sign in to comment.