소스 검색

Fix broken links to tauri.studio docs (#3212)

FabianLars 3 년 전
부모
커밋
d5e6046756
6개의 변경된 파일7개의 추가작업 그리고 7개의 파일을 삭제
  1. 1 1
      .github/CONTRIBUTING.md
  2. 1 1
      README.md
  3. 0 0
      examples/api/dist/assets/index.cbdca1f1.js
  4. 1 1
      examples/api/dist/index.html
  5. 1 1
      examples/api/src/App.svelte
  6. 3 3
      tooling/create-tauri-app/src/index.ts

+ 1 - 1
.github/CONTRIBUTING.md

@@ -46,7 +46,7 @@ Hi! We, the maintainers, are really excited that you are interested in contribut
 
 First, [join our Discord server](https://discord.gg/SpmNs4S) and let us know that you want to contribute. This way we can point you in the right direction and help ensure your contribution will be as helpful as possible.
 
-To set up your machine for development, follow the [Tauri setup guide](https://tauri.studio/en/docs/getting-started/intro#setting-up-your-environment) to get all the tools you need to develop Tauri apps. The only additional tool you may need is [Yarn](https://yarnpkg.com/), it is only required if you are developing the Node CLI/API (`tooling/cli.js` and `api`). Next, fork and clone this repo. It is structured as a monorepo, which means that all the various Tauri packages are under the same repository. The development process varies depending on what part of Tauri you are contributing to, see the guides below for per-package instructions.
+To set up your machine for development, follow the [Tauri setup guide](https://tauri.studio/en/docs/get-started/intro#setting-up-your-environment) to get all the tools you need to develop Tauri apps. The only additional tool you may need is [Yarn](https://yarnpkg.com/), it is only required if you are developing the Node CLI/API (`tooling/cli.js` and `api`). Next, fork and clone this repo. It is structured as a monorepo, which means that all the various Tauri packages are under the same repository. The development process varies depending on what part of Tauri you are contributing to, see the guides below for per-package instructions.
 
 Some Tauri packages will be automatically built when running one of the examples. Others, however, will need to be built beforehand. To build these automatically, run the `.scripts/setup.sh` (Linux and macOS) or `.scripts/setup.ps1` (Windows) script. This will install the Rust and Node.js CLI and build the JS API. After that, you should be able to run all the examples. Note that the setup script should be executed from the root folder of the respository in order to run correctly.
 

+ 1 - 1
README.md

@@ -7,7 +7,7 @@
 
 [![Chat Server](https://img.shields.io/badge/chat-on%20discord-7289da.svg)](https://discord.gg/SpmNs4S)
 [![devto](https://img.shields.io/badge/blog-dev.to-black.svg)](https://dev.to/tauri)
-[![devto](https://img.shields.io/badge/documentation-tauri.studio-purple.svg)](https://tauri.studio/docs/getting-started/intro)
+[![devto](https://img.shields.io/badge/documentation-tauri.studio-purple.svg)](https://tauri.studio/docs/get-started/intro)
 [![https://good-labs.github.io/greater-good-affirmation/assets/images/badge.svg](https://good-labs.github.io/greater-good-affirmation/assets/images/badge.svg)](https://good-labs.github.io/greater-good-affirmation)
 [![support](https://img.shields.io/badge/sponsor-open%20collective-blue.svg)](https://opencollective.com/tauri)
 

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
examples/api/dist/assets/index.cbdca1f1.js


+ 1 - 1
examples/api/dist/index.html

@@ -5,7 +5,7 @@
     <link rel="stylesheet" href="/global.css" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
     <title>Svelte + Vite App</title>
-    <script type="module" crossorigin src="/assets/index.ab727ab4.js"></script>
+    <script type="module" crossorigin src="/assets/index.cbdca1f1.js"></script>
     <link rel="modulepreload" href="/assets/vendor.32016365.js">
     <link rel="stylesheet" href="/assets/index.b706bb41.css">
   </head>

+ 1 - 1
examples/api/src/App.svelte

@@ -115,7 +115,7 @@
   <div class="flex row noselect just-around" style="margin=1em;" data-tauri-drag-region>
     <img class="logo" src="tauri logo.png" height="60" on:click={onLogoClick} alt="logo" />
     <div>
-      <a class="dark-link" target="_blank" href="https://tauri.studio/en/docs/getting-started/intro">
+      <a class="dark-link" target="_blank" href="https://tauri.studio/en/docs/get-started/intro">
         Documentation
       </a>
       <a class="dark-link" target="_blank" href="https://github.com/tauri-apps/tauri">

+ 3 - 3
tooling/create-tauri-app/src/index.ts

@@ -147,10 +147,10 @@ const keypress = async (skip: boolean): Promise<void> => {
 const runInit = async (argv: Argv): Promise<void> => {
   const setupLink =
     platform() === 'win32'
-      ? 'https://tauri.studio/en/docs/getting-started/setup-windows/'
+      ? 'https://tauri.studio/en/docs/get-started/setup-windows/'
       : platform() === 'darwin'
-      ? 'https://tauri.studio/en/docs/getting-started/setup-macos/'
-      : 'https://tauri.studio/en/docs/getting-started/setup-linux/'
+      ? 'https://tauri.studio/en/docs/get-started/setup-macos/'
+      : 'https://tauri.studio/en/docs/get-started/setup-linux/'
 
   // prettier-ignore
   console.log(

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.