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

This commit is contained in:
FabianLars 2022-01-13 17:34:31 +01:00 committed by GitHub
parent 85b738fe68
commit d5e6046756
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 8 additions and 8 deletions

View File

@ -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.

View File

@ -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)

File diff suppressed because one or more lines are too long

View File

@ -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>

View File

@ -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">

View File

@ -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(