- Changed the dots (
...
) argument inrouter_ui()
to allow dynamically passing of arguments. Now, its possible to pass routes in dynamic way with dynamic dots (...
). - Fixed the issue where the 404 page was not working when a user opens a non-valid link without going to a valid one first.
- Added a new API that is compatible with Rhino. New functions
router_ui
androuter_server
are added.make_router
is deprecated.
- Fixed error with
shiny.router::disable_bootstrap_on_bookmark()
when used with development version of shiny by applyingshiny::createWebDependency()
beforerenderDependencies()
. - Fixed the issue displaying the main page bookmark on app start. Added update of hash path to be run once after default router page is being set-up.
- Resolve
htmltools::tagFunction()
returned bybootstrapLib()
withresolveDependencies()
before rendering to achieve dynamic disabling of bootstrap.
No changes.
- Page state is now remembered. Forced all pages to be rendered during run time, but between page state is remembered and not rendered again. Use
router$ui()
instead ofrouter_ui()
androuter$server(input, output, session)
instead ofrouter(input, output, session)
. - Prevented re-rendering the whole page every time the URL was changed.
- Modify
parse_url_path()
to support query strings following hashbang/path. - Fixed the issue when the root page is running twice on initial run.
- Used relative paths when creating router links.
- Allowed passing a common value for each server callback.
- First release