diff --git a/archivebox/core/urls.py b/archivebox/core/urls.py index d0d87a05..9e0ae852 100644 --- a/archivebox/core/urls.py +++ b/archivebox/core/urls.py @@ -43,7 +43,7 @@ urlpatterns = [ path("favicon.ico", static.serve, {"document_root": CONSTANTS.STATIC_DIR, "path": "favicon.ico"}), path("docs/", RedirectView.as_view(url="https://github.com/ArchiveBox/ArchiveBox/wiki"), name="Docs"), re_path(r"^admin/agent/?(?=$|opencode)", include("abx_plugins.plugins.opencode.urls")), - re_path(r"^assets/(?P.*)$", opencode_proxy_view, name="opencode-assets"), + re_path(r"^(?Passets/.*)$", opencode_proxy_view, name="opencode-assets"), path("public/", PublicIndexView.as_view(), name="public-index"), path("public.html", RedirectView.as_view(url="/public/"), name="public-index-html"), path("archive/", RedirectView.as_view(url="/")), diff --git a/etc/package.json b/etc/package.json index a1deee4d..22b3be97 100644 --- a/etc/package.json +++ b/etc/package.json @@ -1,6 +1,6 @@ { "name": "archivebox", - "version": "0.9.34rc50", + "version": "0.9.34rc51", "repository": "github:ArchiveBox/ArchiveBox", "license": "MIT", "dependencies": { diff --git a/pyproject.toml b/pyproject.toml index a4787f9b..786de1b9 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "archivebox" -version = "0.9.34rc50" +version = "0.9.34rc51" requires-python = ">=3.13" description = "Self-hosted internet archiving solution." authors = [{name = "Nick Sweeting", email = "pyproject.toml@archivebox.io"}]