Skip to content

Commit ec10f4e

Browse files
authored
Move non-plugins guides into learn section (tauri-apps#2963)
1 parent ea3ae71 commit ec10f4e

File tree

6 files changed

+16
-5
lines changed

6 files changed

+16
-5
lines changed

Diff for: netlify.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@ to = "https://v1.tauri.app/:locale/v1/:splat"
44

55
[[redirects]]
66
from = "/v1/*"
7-
to = "https://v1.tauri.app/v1/:splat"
7+
to = "https://v1.tauri.app/v1/:splat"
8+
9+
# More redirects in /public/_redirects and astro.config.mjs

Diff for: public/_redirects

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# Refer to astro.config.mjs
1+
# These redirects are handled by netlify: https://docs.netlify.com/routing/redirects/
2+
# Refer to astro.config.mjs for i18n sensitive redirects
23

34
# Decommissioned locales
45
/ko/* /:splat 302
@@ -21,13 +22,13 @@
2122
/guides/upgrade-migrate/* /start/upgrade--migrate/:splat 301
2223

2324
/references/v2/cli /references/cli 301
24-
/references/v2/acl /references/acl/capability 301
25+
/references/v2/acl /references/acl/capability 301
2526
/references/v2/config /references/config 301
2627
/references/v2/js /references/javascript/api 301
2728
/references/v2/js/* /references/javascript/api/:splat 301
2829
/references/v2/* /references/:splat 301
2930

30-
/2/reference/js/core/namespacepath /references/javascript/api/namespacepath 301
31+
/2/reference/js/core/namespacepath /references/javascript/api/namespacepath 301
3132
/2/reference/ /references/ 301
3233

3334

@@ -40,3 +41,7 @@
4041
/guides/features /guides/feature 301
4142
/features /plugin 301
4243
/start/upgrade--migrate /start/migrate 301
44+
45+
# mid v2 docs restructuring
46+
/plugin/system-tray /learn/system-tray 301
47+
/plugin/window-customization /learn/window-customization 301

Diff for: src/content/docs/concept/architecture.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ sidebar:
88

99
Tauri is a polyglot and generic toolkit that is very composable and allows engineers to make a wide variety of applications. It is used for building applications for desktop computers using a combination of Rust tools and HTML rendered in a Webview. Apps built with Tauri can ship with any number of pieces of an optional JS API and Rust API so that webviews can control the system via message passing. Developers can extend the default API with their own functionality and bridge the Webview and Rust-based backend easily.
1010

11-
Tauri apps can have [tray-type interfaces](/plugin/system-tray/). They can be [updated](/plugin/updater/) and are managed by the user's operating system as expected. They are very small because they use the OS's webview. They do not ship a runtime since the final binary is compiled from Rust. This makes the [reversing of Tauri apps not a trivial task](/security/).
11+
Tauri apps can have [tray-type interfaces](/learn/system-tray/). They can be [updated](/plugin/updater/) and are managed by the user's operating system as expected. They are very small because they use the OS's webview. They do not ship a runtime since the final binary is compiled from Rust. This makes the [reversing of Tauri apps not a trivial task](/security/).
1212

1313
### What Tauri is Not
1414

Diff for: src/content/docs/plugin/system-tray.mdx renamed to src/content/docs/learn/system-tray.mdx

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
title: System Tray
3+
sidebar:
4+
order: 1
35
tableOfContents:
46
maxHeadingLevel: 4
57
---

Diff for: src/content/docs/plugin/window-customization.mdx renamed to src/content/docs/learn/window-customization.mdx

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
title: Window Customization
3+
sidebar:
4+
order: 1
35
tableOfContents:
46
maxHeadingLevel: 4
57
---

0 commit comments

Comments
 (0)