diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
deleted file mode 100644
index f3a597df33..0000000000
--- a/.github/CODEOWNERS
+++ /dev/null
@@ -1,5 +0,0 @@
-# Order is important; the last matching pattern takes the most precedence.
-* @tauri-apps/wg-doc
-
-# Disabled until wg-devops has active members
-# .github @tauri-apps/wg-devops
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
deleted file mode 100644
index 1127829cd2..0000000000
--- a/.github/CONTRIBUTING.md
+++ /dev/null
@@ -1,133 +0,0 @@
-# Contributing
-
-Welcome to Tauri Docs! We're excited to have you 🥳
-
-[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/tauri-apps/tauri-docs/tree/v2)
-[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/tauri-apps/tauri-docs/tree/v2)
-
-There are a number of ways to get involved:
-
-- See if there are any [good first issues](https://github.com/tauri-apps/tauri-docs/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22) that catch your eye
-- [Write a guide or recipe](#write-documentation)
-- [Translating existing documentation](#translations-i18n)
-
-Reach out to us on [Discord](https://discord.com/invite/tauri) on the [`#docs` channel](https://discord.com/channels/616186924390023171/662624589037436928) if you have any questions!
-
-## Getting Started
-
-1. Clone this repo
-2. Run `pnpm i && pnpm dev:setup`
-3. Run `pnpm dev` to start the local server
-
-Note: Dynamically generated pages will result in a 404 error until you run `pnpm build` for the first time.
-
-### Gitpod
-
-[Allow Gitpod to open new tabs](https://www.gitpod.io/docs/configure/user-settings/browser-settings) so you immediately when the environment is done loading get a new tab popping up with the documentation.
-
-## Write Documentation
-
-We have the following types of documents that roughly follow the types defined by [Diátaxis](https://diataxis.fr/):
-
-- **[Guide](#guide)**: Learning-oriented
-- **[Recipe](#recipe)**: Task-oriented
-- **[Reference](#recipe)**: Information-oriented
-- **[Blog Post](#blog-post)**: Understanding-oriented
-
-Use this chart to help you figure out where the right place for your content is:
-
-| If the content describes… | …and serves the user's… | …then it must belong to… |
-| ------------------------- | ----------------------- | ------------------------- |
-| practical steps | study | [a guide](#guide) |
-| practical steps | work | [a recipe](#recipe) |
-| theoretical knowledge | work | [a reference](#reference) |
-| theoretical knowledge | study | [a blog post](#blog-post) |
-
-### Writing Style
-
-**Dictionary**
-
-| Word | Description |
-| -------- | ------------------------------------ |
-| app | A Tauri app, prefer over application |
-| web view | Where the UI is rendered |
-
-- Use an [oxford comma](https://www.grammarly.com/blog/what-is-the-oxford-comma-and-why-do-people-care-so-much-about-it/) in paragraphs, but not in headings and titles
-- Use [title case](https://apastyle.apa.org/style-grammar-guidelines/capitalization/title-case) for headings and titles
-- Make headings as succinct as possible to help the reader quickly find the content they need
-- Use [simple present tense](https://www.grammarly.com/blog/simple-present/) for verbs
-
-### New Features / Version Display
-
-When writing about a new feature, display the version it was introduced.
-Use the `SinceVersion` component for this, located at [`src/components/SinceVersion.astro`](../src//components/SinceVersion.astro).
-Place it directly under the header, which describes the new feature.
-When creating a new page add a Badge with the text `New` and variant `tip`.
-The lifetime of this badge should not exceed 6 Months.
-
-#### Example
-Example file `my-new-page.mdx`
-```mdx
----
-title: My New Page
-sidebar:
- badge:
- text: New
- variant: tip
----
-import SinceVersion from '../path/to/SinceVersion.astro';
-
-
-
-Documentation about 'My New Page'...
-
-```
-
-### Guide
-
-Located in [`/src/content/docs/plugin/`](https://github.com/tauri-apps/tauri-docs/tree/v2/src/content/docs/plugin)
-
-Guides are learning-oriented and take the reader through a specific journey such as starting a new project, and overview of a specific feature, or how to follow a specific flow such as building and bundling their app. They follow a similar philosophy to [tutorials in Diátaxis](https://diataxis.fr/tutorials).
-
-The reader should be familiar with the concepts covered by the end of the guide and should set them up with the knowledge required to being experimenting with that topic themselves.
-
-### Recipe
-
-Located in [`/src/content/docs/learn/`](https://github.com/tauri-apps/tauri-docs/tree/v2/src/content/docs/learn)
-
-Recipes are designed to guide the reader through a specific task similar and have a clear outcome and objective. This could be something like setting up authentication using Firebase, adding a Python binary using sidecar, or requesting admin access on a user's machine. They are similar to [how-to guides in Diátaxis](https://diataxis.fr/how-to-guides) (not to be confused with our own guides mentioned above).
-
-The prerequisites for a recipe should be clearly stated. If there are a lot of steps required before getting into the relevant information about the recipe then you may want to link out to another guide, recipe, or external resource and state those as a prerequisite at the top of the recipe.
-
-### Reference
-
-Located in [`/src/content/docs/reference/`](https://github.com/tauri-apps/tauri-docs/tree/v2/src/content/docs/reference), although they should be auto-generated when possible.
-
-References are where all the nuts and bolts of Tauri's API are documented. These should be generated from upstream repos when possible and written following the best practices described by [references in Diátaxix](https://diataxis.fr/reference).
-
-These should be as succinct and to the point as possible so that the reader can quickly find the relevant information.
-
-If you'd like to view the API references locally then you must run `pnpm dev:setup` before `pnpm dev` to initialize all of the submodules. Now the `http://localhost:3000/2/reference/` routes are available to preview.
-
-### Blog Post
-
-Located in [`/src/content/docs/blog/`](https://github.com/tauri-apps/tauri-docs/tree/v2/src/content/docs/blog)
-
-Topics that are around understanding something can be written as a blog post (we welcome submissions to the Tauri blog from anyone). Blog posts are a good option because they help the reader understand that information is accurate at the time of writing (and of course can always be updated later if it becomes stale). Blog posts follow the goals of [explanation in Diátaxis](https://diataxis.fr/explanation), but not all blog posts necessarily fit this specific format.
-
-### Diagrams
-
-We use [Astro D2](https://astro-d2.vercel.app/) to generate diagrams. Because Netlify does not support compiling the diagrams in its end we have to push the prebuilt images manually. This is annoying, but not the end of the world seeing as we've previously been pushing the images manually anyway.
-
-If you make an update to a diagram you'll need to [install D2](https://github.com/terrastruct/d2/blob/master/docs/INSTALL.md) on your system, then when you run either the `build` or `dev` commands you'll need to enable building the diagrams by setting the environment variable `CONTEXT=d2`.
-
-```sh
-# Adapt the command as relevant for your system to define the variable
-CONTEXT=d2 pnpm dev
-```
-
-## Translations (i18n)
-
-Thanks for your interest in helping to translate the documentation! Visit the [translation status page](https://v2.tauri.app/contribute/translate-status) to see which docs are ready for translation, need updated, or need reviewed.
-
-Read the [Translating Guide](./TRANSLATING.md) for more information.
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
deleted file mode 100644
index a3128a4691..0000000000
--- a/.github/ISSUE_TEMPLATE/config.yml
+++ /dev/null
@@ -1,9 +0,0 @@
-# Copyright 2019-2024 Tauri Programme within The Commons Conservancy
-# SPDX-License-Identifier: Apache-2.0
-# SPDX-License-Identifier: MIT
-
-blank_issues_enabled: true
-contact_links:
- - name: 💬 Discord Chat
- url: https://discord.com/invite/tauri
- about: Ask questions and talk to other Tauri users and the maintainers
diff --git a/.github/ISSUE_TEMPLATE/page_request.yml b/.github/ISSUE_TEMPLATE/page_request.yml
deleted file mode 100644
index 92b1b378b4..0000000000
--- a/.github/ISSUE_TEMPLATE/page_request.yml
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 2019-2024 Tauri Programme within The Commons Conservancy
-# SPDX-License-Identifier: Apache-2.0
-# SPDX-License-Identifier: MIT
-
-name: 🤔 v2 Page Request
-title: '[request] '
-description: Request a new page or updated content
-labels:
- - enhancement
- - discuss
-
-body:
- - type: input
- id: question
- attributes:
- label: Question you want answered
- description: The question you were trying to get answered by going to the website and couldn't find. Even if you weren't looking to get a specific question answered try to encapsulate the essence of your issue in the form of a question.
- placeholder: "How do I register a new State?"
- validations:
- required: true
-
- - type: textarea
- id: answer
- attributes:
- label: Where did you look for an answer?
- description: Think back on how you navigate the site in order to find the answer to your question so we get a better idea of how people interact with the site.
- placeholder: First I tried searching for the issue, then I went to the sidebar to find a relevant page...
- validations:
- required: true
-
- - type: input
- id: url
- attributes:
- label: Page URL
- description: If applicable, copy-paste the URL to the page you want updated.
- placeholder: "https://v2.tauri.app/some/specific/page"
-
- - type: textarea
- id: context
- attributes:
- label: Additional context
- description: Add any other context about the problem here.
-
- - type: checkboxes
- attributes:
- label: Are you willing to work on this yourself?
- description: If so don't hesitate to reach out on Discord to us, we're more than happy to help you get set up with contributing!
- options:
- - label: I want to work on this myself
- required: false
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
deleted file mode 100644
index 2c4cdb3ec8..0000000000
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-#### Description
-
-- What does this PR change? Give us a brief description.
-- Closes #
-
-
diff --git a/.github/TRANSLATING.md b/.github/TRANSLATING.md
deleted file mode 100644
index 1fb11de321..0000000000
--- a/.github/TRANSLATING.md
+++ /dev/null
@@ -1,88 +0,0 @@
-# Translations (i18n)
-
-Thanks for your interest in helping translate the Tauri docs! Visit the [translation status page](https://v2.tauri.app/contribute/translate-status) to see which docs are ready for translation, need updated, or need reviewed.
-
-To ensure a translation is consistent across multiple contributions, be sure to [communicate with others contributors in the `#docs` channel on Discord](https://discord.com/invite/tauri) and consult with reliable external resources such as [Microsoft terminology search](https://msit.powerbi.com/view?r=eyJrIjoiODJmYjU4Y2YtM2M0ZC00YzYxLWE1YTktNzFjYmYxNTAxNjQ0IiwidCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsImMiOjV9) during translation.
-
-## Enabling a Language
-
-If you seek to contribute but find your language missing please let us know in https://github.com/tauri-apps/tauri-docs/issues/1611. Once we have enough support for a particular language then we'll be able to enable it with the community's support.
-
-### Maintainer Checklist for Adding New Languages
-
-- Update https://github.com/tauri-apps/tauri-docs/blob/v2/locales.json
-- Update https://github.com/tauri-apps/tauri-docs/blob/v2/.github/labeler.yml
-
-## Starting a Translation
-
-Before you start working on a translation, look through the [open pull requests](https://v2.tauri.app/contribute/translate-status#needs-review) to see if anyone else is already working on the page for that language.
-
-If that page isn't in the list, then now it's time for you to lead the effort! So here's how to start:
-
-1. Head to [translation status page](https://v2.tauri.app/contribute/translate-status).
-2. Look for missing translation in corresponding languages.
-3. Make sure no one else has been working on the corresponding page.
-4. Click `Create page +` which will help you automagically fork the repository and create the corresponding page. You might want to copy the contents of English page as a starting point.
-5. Translate the page following the [translation guidelines](#translation-guidelines).
-6. Once your translation is done, initiate a pull request.
-
-Note that you may submit a draft pull request before your translation is complete: e.g., you may want to ask for help with translations or simply indicate to others that you're already translating a specific page. However, your pull request will not be merged until the translation is complete.
-
-## Updating a Translation
-
-### Corrections
-
-If you notice spelling or grammar errors, typos, or opportunities for better phrasing, open a pull request with your suggested fix. If you see a problem that you aren't sure of or don't have time to fix, open an issue.
-
-### Broken Links
-
-When broken links are found, try to fix them across all translations. Ideally, only update the linked URLs, so that translation review will not be necessary.
-
-## Translation Guidelines
-
-Here are some guidelines to help with the translation.
-
-**Markdown Formatting**
-
-- [ ] Preserve the Markdown formatting. This includes headers (#, ##, etc.), lists (*, -, 1.), and inline styles like bold, italic, and code.
-- [ ] Ensure that links ([link text](URL)) remain functional and direct to the correct locations.
-- [ ] Ensure code blocks (triple backticks ```) are unchanged in terms of their syntax and content.
-- [ ] Double-check tables, making sure their structure remains intact. Using the Prettier formatter is a great way to do this.
-
-**Terminology**
-
-- [ ] Familiarize yourself with key Tauri terms and ensure they're translated consistently. It may be helpful to look at other, already translated pages as a reference.
-- [ ] For some terms, it might be appropriate to keep them in English and provide a translation in parentheses.
-- [ ] If a term has no definitive way to translate, be sure to [communicate with others contributors in the `#docs` channel on Discord](https://discord.com/invite/tauri) or through pull request and consult with reliable external resources such as [Microsoft terminology search](https://msit.powerbi.com/view?r=eyJrIjoiODJmYjU4Y2YtM2M0ZC00YzYxLWE1YTktNzFjYmYxNTAxNjQ0IiwidCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsImMiOjV9).
-
-**Code and Command Examples**
-
-- [ ] Avoid translating code unless it contains explanatory comments. Translated comments should retain the original meaning.
-- [ ] Ensure command-line examples remain functional. Only translate the descriptive parts, not the actual commands.
-
-**Link Descriptions**
-
-- [ ] If link descriptions (text that appears when you hover over a link) are present, make sure to translate them, but ensure they still describe the link's destination correctly.
-
-**Consistency**
-
-- [ ] Ensure that the terminology and style are consistent throughout the document.
-- [ ] If the document refers to other sections within itself, double-check that these references are accurate post-translation.
-
-**Cultural Considerations**
-
-- [ ] Ensure that examples, metaphors, or idioms are culturally relevant or adapt them so that they are.
-- [ ] Avoid terms or examples that might be considered offensive or inappropriate in the target language or culture.
-
-**Images and Alt Text**
-
-- [ ] If the document contains images with text, consider whether the text in the image needs to be translated.
-- [ ] Translate the alt text (a description of the image for accessibility purposes) for each image.
-
-**Feedback**
-
-- [ ] If there are parts of the original document that are unclear or might be misunderstood, communicate with the original author or a knowledgeable person to seek clarity.
-
-Remember, the main goal of the translation is to make the content as accessible and clear to the new audience as it was to the original audience. Always prioritize clarity and accuracy.
-
-Thank you for your interest in contributing; we're excited to have you! Reach out on the [`#docs` channel on Discord](https://discord.com/invite/tauri) if you have any questions along the way.
diff --git a/.github/labeler.yml b/.github/labeler.yml
deleted file mode 100644
index fcaec757b4..0000000000
--- a/.github/labeler.yml
+++ /dev/null
@@ -1,19 +0,0 @@
-# See https://github.com/actions/labeler
-
-i18n:
- - src/content/docs/es/**/*
- - src/content/docs/fr/**/*
- - src/content/docs/it/**/*
- - src/content/docs/zh-cn/**/*
-
-"i18n: es":
- - src/content/docs/es/**/*
-
-"i18n: fr":
- - src/content/docs/fr/**/*
-
-"i18n: it":
- - src/content/docs/it/**/*
-
-"i18n: zh-cn":
- - src/content/docs/zh-cn/**/*
diff --git a/.github/sponsors/crabnebula.svg b/.github/sponsors/crabnebula.svg
deleted file mode 100644
index 94af70f6ef..0000000000
--- a/.github/sponsors/crabnebula.svg
+++ /dev/null
@@ -1,31 +0,0 @@
-
diff --git a/.github/workflows/assign.yml b/.github/workflows/assign.yml
deleted file mode 100644
index c4811e6d88..0000000000
--- a/.github/workflows/assign.yml
+++ /dev/null
@@ -1,24 +0,0 @@
-name: 'Auto Assign'
-
-on:
- pull_request_target:
- types: [opened]
-
-jobs:
- auto_assign:
- runs-on: ubuntu-latest
- steps:
- - name: Auto-assign PR to author
- if: ${{ github.event.pull_request.user.type != 'Bot' }}
- env:
- GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- # The gh cli currently does not consider the pr author an assignable user if they aren't part of the org
- run: gh api -X POST /repos/tauri-apps/tauri-docs/issues/${{ github.event.pull_request.number }}/assignees -f "assignees[]=${{ github.event.pull_request.user.login }}"
- #run: gh pr edit ${{ github.event.pull_request.number }} --add-assignee ${{ github.event.pull_request.user.login }} -R ${{ github.repository }}
-
- - name: Auto-assign Renovate PRs
- if: ${{ github.event.pull_request.user.type == 'Bot' && github.event.pull_request.user.login == 'renovate[bot]' }}
- env:
- GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- # The gh cli currently does not consider the pr author an assignable user if they aren't part of the org
- run: gh api -X POST /repos/tauri-apps/tauri-docs/issues/${{ github.event.pull_request.number }}/assignees -f "assignees[]=vasfvitor"
diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml
deleted file mode 100644
index c720392298..0000000000
--- a/.github/workflows/check.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-# Adapted from https://github.com/withastro/starlight/blob/main/.github/workflows/format.yml
-
-name: 'Check formatting'
-
-on:
- pull_request:
-
-jobs:
- format:
- runs-on: ubuntu-latest
- steps:
- - name: Check out code using Git
- uses: actions/checkout@v4
-
- - uses: pnpm/action-setup@v4
-
- - uses: actions/setup-node@v4
- with:
- node-version: 20
- cache: 'pnpm'
-
- - run: pnpm i
-
- - name: Check formatting
- run: pnpm format:check
diff --git a/.github/workflows/congrats.yml b/.github/workflows/congrats.yml
deleted file mode 100644
index 1c24dad45e..0000000000
--- a/.github/workflows/congrats.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-name: 'Congrats'
-
-on:
- push:
- branches: [v2]
-
-jobs:
- congrats:
- uses: tauri-apps/automation/.github/workflows/congrats.yml@main
- secrets:
- DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml
deleted file mode 100644
index 15b12e3ab8..0000000000
--- a/.github/workflows/labeler.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-name: 'Pull Request Labeler'
-
-on:
- pull_request_target:
-
-jobs:
- add_labels:
- permissions:
- contents: read
- pull-requests: write
- runs-on: ubuntu-latest
- env:
- NETLIFY_BUILD_KEY: ${{ secrets.NETLIFY_BUILD_KEY }}
- steps:
- - id: label-pr
- uses: actions/labeler@v4
- with:
- repo-token: '${{ secrets.GITHUB_TOKEN }}'
- # Trigger prod netlify re-build to refresh i18n dashboard
- - name: Rebuild i18n Dashboard
- if: contains(steps.label-pr.outputs.all-labels, 'i18n')
- run: curl -X POST -d {} https://api.netlify.com/build_hooks/$NETLIFY_BUILD_KEY
diff --git a/.github/workflows/priority.yml b/.github/workflows/priority.yml
deleted file mode 100644
index 5cc76f5368..0000000000
--- a/.github/workflows/priority.yml
+++ /dev/null
@@ -1,41 +0,0 @@
-name: 'Priority Updater'
-
-on:
- issues:
- types: [opened]
- pull_request_target:
- types: [opened]
-
-jobs:
- set_statuses:
- runs-on: ubuntu-latest
- if: ${{ !contains(github.event.issue.labels.*.name, 'manual') && !contains(github.event.pull_request.labels.*.name, 'manual') }}
- steps:
- - name: Get project data
- env:
- GH_TOKEN: ${{ secrets.TEST_TOKEN }}
- run: |
- echo "PROJECT_ID=$(gh project view 27 --owner tauri-apps --format json --jq '.id')" >> $GITHUB_ENV
- gh project field-list 27 --owner tauri-apps --format json > project_data.json
- echo 'PRIORITY_FIELD_ID='$(jq '.fields[] | select(.name== "Priority") | .id' project_data.json) >> $GITHUB_ENV
- echo 'LOW_PRIORITY_ID='$(jq '.fields[] | select(.name== "Priority") | .options[] | select(.name=="Low") | .id' project_data.json) >> $GITHUB_ENV
- echo 'MEDIUM_PRIORITY_ID='$(jq '.fields[] | select(.name== "Priority") | .options[] | select(.name=="Medium") | .id' project_data.json) >> $GITHUB_ENV
- echo 'HIGH_PRIORITY_ID='$(jq '.fields[] | select(.name== "Priority") | .options[] | select(.name=="High") | .id' project_data.json) >> $GITHUB_ENV
- echo 'CRITICAL_PRIORITY_ID='$(jq '.fields[] | select(.name== "Priority") | .options[] | select(.name=="Critical") | .id' project_data.json) >> $GITHUB_ENV
-
- - name: Default priority
- run: |
- echo 'PRIORITY_ID='${{ env.LOW_PRIORITY_ID }} >> $GITHUB_ENV
-
- - name: Add project item / Get item id
- env:
- GH_TOKEN: ${{ secrets.TEST_TOKEN }}
- run: |
- echo "ITEM_ID=$(gh project item-add 27 --owner tauri-apps --url https://github.com/tauri-apps/tauri-docs/issues/${{ github.event.pull_request.number || github.event.issue.number }} --format json --jq '.id')" >> $GITHUB_ENV
-
- - name: Set fields
- if: ${{ github.event.issue.status == 'open' || github.event.pull_request.status == 'open' }}
- env:
- GH_TOKEN: ${{ secrets.TEST_TOKEN }}
- run: |
- gh project item-edit --id ${{ env.ITEM_ID }} --project-id ${{ env.PROJECT_ID }} --field-id ${{ env.PRIORITY_FIELD_ID }} --single-select-option-id ${{ env.PRIORITY_ID }}
diff --git a/.github/workflows/status.yml b/.github/workflows/status.yml
deleted file mode 100644
index c84146a12b..0000000000
--- a/.github/workflows/status.yml
+++ /dev/null
@@ -1,62 +0,0 @@
-name: 'Status Updater'
-
-on:
- issues:
- pull_request_target:
-
-jobs:
- set_statuses:
- runs-on: ubuntu-latest
- if: ${{ !contains(github.event.issue.labels.*.name, 'manual') && !contains(github.event.pull_request.labels.*.name, 'manual') }}
- steps:
- - name: Get project data
- env:
- GH_TOKEN: ${{ secrets.TEST_TOKEN }}
- run: |
- echo "PROJECT_ID=$(gh project view 27 --owner tauri-apps --format json --jq '.id')" >> $GITHUB_ENV
- gh project field-list 27 --owner tauri-apps --format json > project_data.json
- echo 'STATUS_FIELD_ID='$(jq '.fields[] | select(.name== "Status") | .id' project_data.json) >> $GITHUB_ENV
- echo 'BACKLOG_STATUS_ID='$(jq '.fields[] | select(.name== "Status") | .options[] | select(.name=="🪵 Backlog") | .id' project_data.json) >> $GITHUB_ENV
- echo 'READY_STATUS_ID='$(jq '.fields[] | select(.name== "Status") | .options[] | select(.name=="💪 Ready") | .id' project_data.json) >> $GITHUB_ENV
- echo 'IN_PROGRESS_STATUS_ID='$(jq '.fields[] | select(.name== "Status") | .options[] | select(.name=="🏗️ In progress") | .id' project_data.json) >> $GITHUB_ENV
- echo 'IN_REVIEW_STATUS_ID='$(jq '.fields[] | select(.name== "Status") | .options[] | select(.name=="📋 In review") | .id' project_data.json) >> $GITHUB_ENV
- echo 'DONE_STATUS_ID='$(jq '.fields[] | select(.name== "Status") | .options[] | select(.name=="✅ Done") | .id' project_data.json) >> $GITHUB_ENV
-
- - name: Add project item / Get item id
- env:
- GH_TOKEN: ${{ secrets.TEST_TOKEN }}
- run: echo "ITEM_ID=$(gh project item-add 27 --owner tauri-apps --url https://github.com/tauri-apps/tauri-docs/issues/${{ github.event.pull_request.number || github.event.issue.number }} --format json --jq '.id')" >> $GITHUB_ENV
-
- #===== PULL REQUESTS =====#
- - name: Is In progress
- if: ${{ github.event_name == 'pull_request_target' && (github.event.pull_request.draft == true || github.event.pull_request.mergeable == false) }}
- run: echo 'STATUS_ID='${{ env.IN_PROGRESS_STATUS_ID }} >> $GITHUB_ENV
-
- - name: Is In review
- if: ${{ github.event_name == 'pull_request_target' && github.event.pull_request.draft == false && github.event.pull_request.mergeable == true }}
- run: echo 'STATUS_ID='${{ env.IN_REVIEW_STATUS_ID }} >> $GITHUB_ENV
- #===== END PULL REQUESTS =====#
-
- #===== ISSUES =====#
- - name: Is Ready
- if: ${{ github.event_name == 'issues' && (github.event.issue.labels[0] != null && github.event.issue.milestone != null) }}
- run: echo 'STATUS_ID='${{ env.READY_STATUS_ID }} >> $GITHUB_ENV
-
- - name: Is In progress
- if: ${{ github.event_name == 'issues' && (github.event.issue.labels[0] != null && github.event.issue.milestone != null && github.event.issue.assignees[0] != null) }}
- run: echo 'STATUS_ID='${{ env.IN_PROGRESS_STATUS_ID }} >> $GITHUB_ENV
-
- - name: Is In review
- if: ${{ github.event_name == 'issues' && (github.event.issue.labels[0] != null && github.event.issue.pull_request.merged_at != null) }}
- run: echo 'STATUS_ID='${{ env.IN_REVIEW_STATUS_ID }} >> $GITHUB_ENV
-
- - name: Is Backlog
- if: ${{ github.event_name == 'issues' && (github.event.issue.labels[0] == null || github.event.issue.milestone == null || contains(github.event.issue.labels.*.name, 'upstream') || contains(github.event.issue.labels.*.name, 'discuss')) }}
- run: echo 'STATUS_ID='${{ env.BACKLOG_STATUS_ID }} >> $GITHUB_ENV
- #===== END ISSUES =====#
-
- - name: Set fields
- if: ${{ github.event.issue.status == 'open' || github.event.pull_request.status == 'open' }}
- env:
- GH_TOKEN: ${{ secrets.TEST_TOKEN }}
- run: gh project item-edit --id ${{ env.ITEM_ID }} --project-id ${{ env.PROJECT_ID }} --field-id ${{ env.STATUS_FIELD_ID }} --single-select-option-id ${{ env.STATUS_ID }}
diff --git a/.gitmodules b/.gitmodules
deleted file mode 100644
index bcfed603f7..0000000000
--- a/.gitmodules
+++ /dev/null
@@ -1,12 +0,0 @@
-[submodule "packages/plugins-workspace"]
- path = packages/plugins-workspace
- url = https://github.com/tauri-apps/plugins-workspace.git
- branch = v2
-[submodule "packages/awesome-tauri"]
- path = packages/awesome-tauri
- url = https://github.com/tauri-apps/awesome-tauri
- branch = dev
-[submodule "packages/tauri"]
- path = packages/tauri
- url = https://github.com/tauri-apps/tauri.git
- branch = dev
diff --git a/.prettierrc b/.prettierrc
deleted file mode 100644
index d45484de76..0000000000
--- a/.prettierrc
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- "printWidth": 100,
- "semi": true,
- "singleQuote": true,
- "tabWidth": 2,
- "trailingComma": "es5",
- "useTabs": false,
- "plugins": ["prettier-plugin-astro"],
- "overrides": [
- {
- "files": "*.astro",
- "options": {
- "parser": "astro"
- }
- },
- {
- "files": ["*.json", "*.md", "*.toml", "*.yml"],
- "options": {
- "useTabs": false
- }
- },
- {
- "files": ["*.md", "*.mdx"],
- "options": {
- "printWidth": 80
- }
- }
- ]
-}
diff --git a/.vscode/extensions.json b/.vscode/extensions.json
deleted file mode 100644
index 22a15055d6..0000000000
--- a/.vscode/extensions.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "recommendations": ["astro-build.astro-vscode"],
- "unwantedRecommendations": []
-}
diff --git a/.vscode/launch.json b/.vscode/launch.json
deleted file mode 100644
index d642209762..0000000000
--- a/.vscode/launch.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "version": "0.2.0",
- "configurations": [
- {
- "command": "./node_modules/.bin/astro dev",
- "name": "Development server",
- "request": "launch",
- "type": "node-terminal"
- }
- ]
-}
diff --git a/.vscode/settings.json b/.vscode/settings.json
deleted file mode 100644
index e66e920719..0000000000
--- a/.vscode/settings.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "files.encoding": "utf8",
- "prettier.documentSelectors": ["**/*.astro"],
- "[astro]": {
- "editor.defaultFormatter": "astro-build.astro-vscode"
- }
-}
diff --git a/LICENSE b/LICENSE
index cac2185963..77895cc6fd 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,21 +1,136 @@
+Creative Commons Legal Code
+
+CC0 1.0 Universal
+
+ CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
+ LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN
+ ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS
+ INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES
+ REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS
+ PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM
+ THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED
+ HEREUNDER.
+
+Statement of Purpose
+
+The laws of most jurisdictions throughout the world automatically confer
+exclusive Copyright and Related Rights (defined below) upon the creator and
+subsequent owner(s) (each and all, an "owner") of an original work of authorship
+and/or a database (each, a "Work").
+
+Certain owners wish to permanently relinquish those rights to a Work for the
+purpose of contributing to a commons of creative, cultural and scientific works
+("Commons") that the public can reliably and without fear of later claims of
+infringement build upon, modify, incorporate in other works, reuse and
+redistribute as freely as possible in any form whatsoever and for any purposes,
+including without limitation commercial purposes. These owners may contribute to
+the Commons to promote the ideal of a free culture and the further production of
+creative, cultural and scientific works, or to gain reputation or greater
+distribution for their Work in part through the use and efforts of others.
+
+For these and/or other purposes and motivations, and without any expectation of
+additional consideration or compensation, the person associating CC0 with a Work
+(the "Affirmer"), to the extent that he or she is an owner of Copyright and
+Related Rights in the Work, voluntarily elects to apply CC0 to the Work and
+publicly distribute the Work under its terms, with knowledge of his or her
+Copyright and Related Rights in the Work and the meaning and intended legal
+effect of CC0 on those rights.
+
+1. Copyright and Related Rights. A Work made available under CC0 may be
+ protected by copyright and related or neighboring rights ("Copyright and
+ Related Rights"). Copyright and Related Rights include, but are not limited
+ to, the following:
+
+i. the right to reproduce, adapt, distribute, perform, display, communicate, and
+translate a Work; ii. moral rights retained by the original author(s) and/or
+performer(s); iii. publicity and privacy rights pertaining to a person's image
+or likeness depicted in a Work; iv. rights protecting against unfair competition
+in regards to a Work, subject to the limitations in paragraph 4(a), below; v.
+rights protecting the extraction, dissemination, use and reuse of data in a
+Work; vi. database rights (such as those arising under Directive 96/9/EC of the
+European Parliament and of the Council of 11 March 1996 on the legal protection
+of databases, and under any national implementation thereof, including any
+amended or successor version of such directive); and vii. other similar,
+equivalent or corresponding rights throughout the world based on applicable law
+or treaty, and any national implementations thereof.
+
+2. Waiver. To the greatest extent permitted by, but not in contravention of,
+ applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and
+ unconditionally waives, abandons, and surrenders all of Affirmer's Copyright
+ and Related Rights and associated claims and causes of action, whether now
+ known or unknown (including existing as well as future claims and causes of
+ action), in the Work (i) in all territories worldwide, (ii) for the maximum
+ duration provided by applicable law or treaty (including future time
+ extensions), (iii) in any current or future medium and for any number of
+ copies, and (iv) for any purpose whatsoever, including without limitation
+ commercial, advertising or promotional purposes (the "Waiver"). Affirmer
+ makes the Waiver for the benefit of each member of the public at large and to
+ the detriment of Affirmer's heirs and successors, fully intending that such
+ Waiver shall not be subject to revocation, rescission, cancellation,
+ termination, or any other legal or equitable action to disrupt the quiet
+ enjoyment of the Work by the public as contemplated by Affirmer's express .
+
+3. Public License Fallback. Should any part of the Waiver for any reason be
+ judged legally invalid or ineffective under applicable law, then the Waiver
+ shall be preserved to the maximum extent permitted taking into account
+ Affirmer's express . In addition, to the extent the Waiver is so judged
+ Affirmer hereby grants to each affected person a royalty-free, non
+ transferable, non sublicensable, non exclusive, irrevocable and unconditional
+ license to exercise Affirmer's Copyright and Related Rights in the Work (i)
+ in all territories worldwide, (ii) for the maximum duration provided by
+ applicable law or treaty (including future time extensions), (iii) in any
+ current or future medium and for any number of copies, and (iv) for any
+ purpose whatsoever, including without limitation commercial, advertising or
+ promotional purposes (the "License"). The License shall be deemed effective
+ as of the date CC0 was applied by Affirmer to the Work. Should any part of
+ the License for any reason be judged legally invalid or ineffective under
+ applicable law, such partial invalidity or ineffectiveness shall not
+ invalidate the remainder of the License, and in such case Affirmer hereby
+ affirms that he or she will not (i) exercise any of his or her remaining
+ Copyright and Related Rights in the Work or (ii) assert any associated claims
+ and causes of action with respect to the Work, in either case contrary to
+
+4. Limitations and Disclaimers.
+
+a. No trademark or patent rights held by Affirmer are waived, abandoned,
+surrendered, licensed or otherwise affected by this document. b. Affirmer offers
+the Work as-is and makes no representations or warranties of any kind concerning
+the Work, express, implied, statutory or otherwise, including without limitation
+warranties of title, merchantability, fitness for a particular purpose, non
+infringement, or the absence of latent or other defects, accuracy, or the
+present or absence of errors, whether or not discoverable, all to the greatest
+extent permissible under applicable law. c. Affirmer disclaims responsibility
+for clearing rights of other persons that may apply to the Work or any use
+thereof, including without limitation any person's Copyright and Related Rights
+in the Work. Further, Affirmer disclaims responsibility for obtaining any
+necessary consents, permissions or other rights required for any use of the
+Work. d. Affirmer understands and acknowledges that Creative Commons is not a
+party to this document and has no duty or obligation with respect to this CC0 or
+use of the Work.
+
+---
+
+Note: The above license applies only to the modifications made by PlayForm to
+the original work. The original work is licensed under the following licenses
+and is subject to their terms and conditions:
+
MIT License
Copyright (c) 2020-2023 Tauri Programme within the Commons Conservancy
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/README.md b/README.md
deleted file mode 100644
index 7053d67ad6..0000000000
--- a/README.md
+++ /dev/null
@@ -1,40 +0,0 @@
-![README Banner](https://github.com/tauri-apps/tauri-docs/assets/61861940/ab6fd2f5-07b7-46b2-9125-77cba0064c1b)
-
-[![Netlify Status](https://api.netlify.com/api/v1/badges/6dc81a5e-32ac-46f4-80c5-198f4a536e26/deploy-status)](https://app.netlify.com/sites/tauri-docs-starlight/deploys)
-
-Welcome to the home for Tauri 2.0 documentation - we're excited to have you! ✨
-
-This repo is used to build the docs for Tauri at https://tauri.app.
-
-If you are looking for the old v1 docs, see [here](https://github.com/tauri-apps/tauri-docs/tree/v1).
-
-[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/tauri-apps/tauri-docs/tree/v2)
-[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/tauri-apps/tauri-docs/tree/v2)
-
-## Get Involved
-
-- [Join us on Discord](https://discord.com/invite/tauri) in the [`#docs` channel](https://discord.com/channels/616186924390023171/662624589037436928) to ask any questions or give feedback
-- Check out the [Tauri 2.0 Documentation Roadmap](https://github.com/tauri-apps/tauri-docs/issues/1344) and see if there's anything you'd like to get involved in
-- Read the [contributing guidelines](.github/CONTRIBUTING.md) to learn how to get up and running
-
-## Partners
-
-