소스 검색

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

Lucas Nogueira 3 년 전
부모
커밋
170b96b3f3
5개의 변경된 파일14개의 추가작업 그리고 11개의 파일을 삭제
  1. 1 2
      docs/usage/development/debugging.md
  2. 1 2
      docs/usage/development/development.md
  3. 0 1
      docs/usage/development/publishing.md
  4. 1 1
      docs/usage/development/updating.md
  5. 11 5
      docs/usage/intro.md

+ 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'
 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'
 import Alert from '@theme/Alert'

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

@@ -1,6 +1,5 @@
 ---
 ---
 title: App Publishing
 title: App Publishing
-sidebar_label: 'App Publishing (4/4)'
 ---
 ---
 
 
 import Alert from '@theme/Alert'
 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'
 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.
 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
 ## Guides
 
 
 - [How to embed custom binaries](/docs/usage/guides/bundler/sidecar)
 - [How to embed custom binaries](/docs/usage/guides/bundler/sidecar)
 - [How to customize app icons](/docs/usage/guides/visual/icons)
 - [How to customize app icons](/docs/usage/guides/visual/icons)
+
+## Others
+- [Understanding Tauri Patterns](/docs/usage/patterns/about-patterns)
+-