Эх сурвалжийг харах

chore(docs): pull changes from tauri-docs/pull/283

Lucas Nogueira 3 жил өмнө
parent
commit
170b96b3f3

+ 1 - 2
docs/usage/development/debugging.md

@@ -1,6 +1,5 @@
 ---
-title: App Debugging
-sidebar_label: 'App Debugging (3/4)'
+title: Debugging
 ---
 
 import Alert from '@theme/Alert'

+ 1 - 2
docs/usage/development/development.md

@@ -1,6 +1,5 @@
 ---
-title: App Development
-sidebar_label: 'App Development (2/4)'
+title: Development Cycle
 ---
 
 import Alert from '@theme/Alert'

+ 0 - 1
docs/usage/development/publishing.md

@@ -1,6 +1,5 @@
 ---
 title: App Publishing
-sidebar_label: 'App Publishing (4/4)'
 ---
 
 import Alert from '@theme/Alert'

+ 1 - 1
docs/usage/development/updating.md

@@ -1,5 +1,5 @@
 ---
-title: Updating
+title: Updating Packages
 ---
 import Alert from '@theme/Alert'
 

+ 11 - 5
docs/usage/intro.md

@@ -6,15 +6,21 @@ This part of the documentation is dedicated to learning how to use Tauri.
 
 Tauri provides a [CLI](/docs/api/cli), a Rust API, and a [JavaScript API](/docs/api/js/index) that you can use in your project. Because raw docs can be quite scary to newcomers (especially people who have never played with Rust before), we've created this "learn by example" section.
 
-Here you will find guides and techniques to add to your own project in order to fulfill your goals.
+Here you will find guides and techniques to start a new project or add to your own project in order to fulfill your goals.
 
-## A Step Further
+## Tauri Development Workflow
 
-- [Understanding Tauri Patterns](/docs/usage/patterns/about-patterns)
-- [Add Tauri to my existing project](/docs/usage/development/integration)
-- [Tauri Development Cycle](/docs/usage/development/development)
+- [Integrate with Tauri](/docs/usage/development/integration)
+- [Development Cycle](/docs/usage/development/development)
+- [Debugging](/docs/usage/development/debugging)
+- [App Publishing](/docs/usage/development/publishing)
+- [Updating Packages](/docs/usage/development/updating)
 
 ## Guides
 
 - [How to embed custom binaries](/docs/usage/guides/bundler/sidecar)
 - [How to customize app icons](/docs/usage/guides/visual/icons)
+
+## Others
+- [Understanding Tauri Patterns](/docs/usage/patterns/about-patterns)
+-