Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
2 changes: 2 additions & 0 deletions .mise/tasks/fetch-plugin-repos
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/usr/bin/env bash
gh api repos/caido/store/contents/plugin_packages.json?ref=main --jq '.content' | base64 -d | jq -r '.[].repository | "https://github.com/\(.)"'
16 changes: 8 additions & 8 deletions .vitepress/sidebars/concepts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const conceptsSidebar: DefaultTheme.SidebarItem[] = [
items: [
{
text: "UI Styling",
link: "/concepts/frontend/ui",
link: "/concepts/ui",
},
],
},
Expand All @@ -24,11 +24,11 @@ export const conceptsSidebar: DefaultTheme.SidebarItem[] = [
items: [
{
text: "Dealing with Binary",
link: "/concepts/backend/binary",
link: "/concepts/binary",
},
{
text: "Plugins vs Workflows",
link: "/concepts/backend/workflow",
link: "/concepts/workflow",
},
],
},
Expand All @@ -37,19 +37,19 @@ export const conceptsSidebar: DefaultTheme.SidebarItem[] = [
items: [
{
text: "Plugin Architecture",
link: "/concepts/essentials/package",
link: "/concepts/package",
},
{
text: "Tooling",
link: "/concepts/essentials/tooling",
link: "/concepts/tooling",
},
{
text: "Runtime",
link: "/concepts/essentials/runtime",
link: "/concepts/runtime",
},
{
text: "Signing",
link: "/concepts/essentials/signing",
link: "/concepts/signing",
},
],
},
Expand All @@ -58,7 +58,7 @@ export const conceptsSidebar: DefaultTheme.SidebarItem[] = [
items: [
{
text: "Child Process",
link: "/concepts/modules/child_process",
link: "/concepts/child_process",
},
],
},
Expand Down
40 changes: 20 additions & 20 deletions .vitepress/sidebars/guides.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,23 +23,23 @@ export const guidesSidebar: DefaultTheme.SidebarItem[] = [
items: [
{
text: "Creating a Page",
link: "/guides/components/page",
link: "/guides/page",
},
{
text: "Creating a Command",
link: "/guides/components/command",
link: "/guides/command",
},
{
text: "Customizing Context Menus",
link: "/guides/components/menu",
link: "/guides/menu",
},
{
text: "Storing Frontend Data",
link: "/guides/components/frontend_storage",
link: "/guides/frontend_storage",
},
{
text: "Using the Component Library",
link: "/guides/components/styling",
link: "/guides/styling",
},
],
},
Expand All @@ -48,43 +48,43 @@ export const guidesSidebar: DefaultTheme.SidebarItem[] = [
items: [
{
text: "Creating and Calling a Custom Function",
link: "/guides/components/rpc",
link: "/guides/rpc",
},
{
text: "Handling Backend Events",
link: "/guides/components/backend_events",
link: "/guides/backend_events",
},
{
text: "Fetching Proxied Requests",
link: "/guides/components/querying_requests",
link: "/guides/querying_requests",
},
{
text: "Sending HTTP Requests",
link: "/guides/components/request",
link: "/guides/request",
},
{
text: "Sending a Fetch Request",
link: "/guides/components/fetch",
link: "/guides/fetch",
},
{
text: "Sending Events to the Frontend",
link: "/guides/components/events",
link: "/guides/events",
},
{
text: "Spawning a Process",
link: "/guides/components/spawning_process",
link: "/guides/spawning_process",
},
{
text: "Storing Data in SQLite",
link: "/guides/components/sqlite",
link: "/guides/sqlite",
},
{
text: "Using Findings",
link: "/guides/components/findings",
link: "/guides/findings",
},
{
text: "Using Invalid UTF-8",
link: "/guides/components/utf",
link: "/guides/utf",
},
],
},
Expand All @@ -93,11 +93,11 @@ export const guidesSidebar: DefaultTheme.SidebarItem[] = [
items: [
{
text: "Adding Files",
link: "/guides/components/files",
link: "/guides/files",
},
{
text: "Using Environment Variables",
link: "/guides/components/env",
link: "/guides/env",
},
],
},
Expand All @@ -106,11 +106,11 @@ export const guidesSidebar: DefaultTheme.SidebarItem[] = [
items: [
{
text: "Setting Up Your Repository",
link: "/guides/distribution/repository",
link: "/guides/repository",
},
{
text: "Submitting to the Store",
link: "/guides/distribution/store",
link: "/guides/store",
},
],
},
Expand All @@ -119,7 +119,7 @@ export const guidesSidebar: DefaultTheme.SidebarItem[] = [
items: [
{
text: "Documentation",
link: "/guides/contributions/documentation",
link: "/guides/documentation",
},
],
},
Expand Down
4 changes: 2 additions & 2 deletions .vitepress/sidebars/reference.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ export const referenceSidebar: DefaultTheme.SidebarItem[] = [
items: [
{
text: "Authentication",
link: "/reference/cloud/authentication/",
link: "/reference/authentication",
},
{
text: "API",
link: "/reference/cloud/api/",
link: "/reference/api",
},
],
},
Expand Down
Loading