Files
radiance/radiance-svg-transcoder-8.0.0.pom
Fridrich Strba 7b890f50e5 Accepting request 1288123 from home:urbic:branches:Java:packages
- Update to v8.0.0
  * A new color system
    Project Chroma - adding color palettes in Radiance
    + Color tokens
    + Color token association kinds
    + Color tokens bundles
    + Dependency on Ephemeral Chroma library
    + The migration guide covers all the breaking API changes in
      RadianceSkin, RadianceThemingSlices, painters and more
  * Theming
    + Use "Minimize" rather than "Iconify" terminology for
      window-level actions
    + Fix application window jumps when moving between displays
    + Fix exception in setting fonts for JTree components
    + Consistent handling of selection highlights of disabled
      renderer-based components (lists, tables, trees)
    + Always show scroll thumb for scrollable content
    + Fix issues with slider track and thumb during printing
    + Fix visuals of internal frame header areas under skins that
      use matte decoration painter
  * Component
    + Update flow ribbon bands to accept a BaseProjection as
      components
    + Fix user interaction with comboboxes in minimized ribbon
      content
    + Fix application of icon filter strategies to ribbon
      application menu commands
    + Fix passing command overlays to secondary menu commands
    + Fix crash when some ribbon bands start in collapsed state
    + Fix active rollover / pressed state visuals for disabled
      command buttons
    + Fix command buttons to be updated when secondary content
      model is updated
    + Fix display of key tips in collapsed ribbon bands hosted in
      popups
  * Dependency updates
    + Kotlin : 2.0.0 -> 2.1.20
    + Kotlin coroutines : 1.8.1 -> 1.10.2
    + Dokka : 1.9.20 -> 2.0.0
    + Batik : 1.17 -> 1.19
    + Retrofit : 2.11.0 -> 3.0.0
    + Gradle : 8.8 -> 8.14

OBS-URL: https://build.opensuse.org/request/show/1288123
OBS-URL: https://build.opensuse.org/package/show/Java:packages/radiance?expand=0&rev=3
2025-06-24 12:03:35 +00:00

62 lines
2.3 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<!-- This module was also published with a richer model, Gradle metadata, -->
<!-- which should be used instead. Do not delete the following line which -->
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
<!-- that they should prefer consuming it instead. -->
<!-- do_not_remove: published-with-gradle-metadata -->
<modelVersion>4.0.0</modelVersion>
<groupId>org.pushing-pixels</groupId>
<artifactId>radiance-svg-transcoder</artifactId>
<version>8.0.0</version>
<name>Radiance vector icon transcoder</name>
<description>Building modern, elegant and fast Swing applications</description>
<url>https://github.com/kirill-grouchnikov/radiance</url>
<inceptionYear>2018</inceptionYear>
<licenses>
<license>
<name>BSD 3-Clause License</name>
<url>https://opensource.org/licenses/BSD-3-Clause</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>kirill-grouchnikov</id>
<name>Kirill Grouchnikov</name>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/kirill-grouchnikov/radiance</connection>
<developerConnection>scm:git:ssh://git@github.com/kirill-grouchnikov/radiance</developerConnection>
<url>https://github.com/kirill-grouchnikov/radiance</url>
</scm>
<dependencies>
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-all</artifactId>
<version>1.19</version>
<scope>runtime</scope>
<exclusions>
<exclusion>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.pushing-pixels</groupId>
<artifactId>radiance-common</artifactId>
<version>8.0.0</version>
<scope>runtime</scope>
<exclusions>
<exclusion>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>