Routing Compose Versions Save

Routing feature for Compose Web, Compose HTML and Desktop

v0.2.14

2 months ago

What's Changed

Full Changelog: https://github.com/hfhbd/routing-compose/compare/v0.2.13...v0.2.14

v0.2.14-1.6.0-beta01

3 months ago

Summary

  • Bump Compose to 1.6.0-beta01

What's Changed

Full Changelog: https://github.com/hfhbd/routing-compose/compare/v0.2.13...v0.2.14-1.6.0-beta01

v0.2.13

3 months ago

Summary

  • Bump Compose to 1.5.12
  • Bump Kotlin to 1.9.22

What's Changed

Full Changelog: https://github.com/hfhbd/routing-compose/compare/v0.2.12...v0.2.13

v0.2.12

1 year ago

Summary

Compatibility release for Kotlin 1.8.20/Compose 1.4.0-rc03

What's Changed

Full Changelog: https://github.com/hfhbd/routing-compose/compare/v0.2.11...v0.2.12

v0.2.11

1 year ago

What's Changed

This is a technical release using Kotlin 1.8.0 and Compose for Web 1.3.0-rc02.

PRs

New Contributors

Full Changelog: https://github.com/hfhbd/routing-compose/compare/v0.2.10...v0.2.11

v0.2.10

1 year ago

Summary

Just updating Compose to 1.2.1 and Kotlin to 1.7.20

What's Changed

Full Changelog: https://github.com/hfhbd/routing-compose/compare/v0.2.9...v0.2.10

v0.2.9

1 year ago

What's Changed

Full Changelog: https://github.com/hfhbd/routing-compose/compare/v0.2.8...v0.2.9

v0.2.8

1 year ago

Breaking Changes

DesktopRouter, HashRouter, and BrowserRouter are now internal classes. Use the Composable functions instead. The reason is to prevent creating a new Router instance, which results in wrong navigation. Please create an issue with your use case if you need to instantiate a Router without actually adding it to the Composable hierarchy.

What's Changed

Full Changelog: https://github.com/hfhbd/routing-compose/compare/v0.2.7...v0.2.8

v0.2.7

1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/hfhbd/routing-compose/compare/v0.2.6...v0.2.7

v0.2.6

1 year ago

Add Boolean parameter to attrs scope of NavLink

Instead hardcoding active, it now possible to use the boolean lambda parameter for customization when the current path starts with to.

NavLink(to = "/users", { isActive ->
  if (isActive) {
    classes("active")
  }
}) {
  Text("Users")
}

What's Changed

Full Changelog: https://github.com/hfhbd/routing-compose/compare/v0.2.5...v0.2.6