Skip to content

Commit a6e56fb

Browse files
committed
Merge remote-tracking branch 'origin/v2' into feat/message-dialog-3-buttons
2 parents e3fc76e + c247410 commit a6e56fb

File tree

267 files changed

+4402
-2610
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

267 files changed

+4402
-2610
lines changed

.changes/fix-macos-cwd-single-instance.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changes/http-fix-204.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.github/CONTRIBUTING.md

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# Tauri Contributing Guide
2+
3+
Hi! We, the maintainers, are really excited that you are interested in contributing to Tauri. Before submitting your contribution though, please make sure to take a moment and read through the [Code of Conduct](CODE_OF_CONDUCT.md), as well as the appropriate section for the contribution you intend to make:
4+
5+
- [Issue Reporting Guidelines](#issue-reporting-guidelines)
6+
- [Pull Request Guidelines](#pull-request-guidelines)
7+
- [Development Guide](#development-guide)
8+
9+
## Issue Reporting Guidelines
10+
11+
- The issue list of this repo is **exclusively** for bug reports and feature requests. Non-conforming issues will be closed immediately.
12+
13+
- If you have a question, you can get quick answers from the [Tauri Discord chat](https://discord.com/invite/tauri).
14+
15+
- Try to search for your issue, it may have already been answered or even fixed in the development branch (`v2`).
16+
17+
- Check if the issue is reproducible with the latest stable version of Tauri. If you are using a pre-release, please indicate the specific version you are using.
18+
19+
- It is **required** that you clearly describe the steps necessary to reproduce the issue you are running into. Although we would love to help our users as much as possible, diagnosing issues without clear reproduction steps is extremely time-consuming and simply not sustainable.
20+
21+
- Use only the minimum amount of code necessary to reproduce the unexpected behavior. A good bug report should isolate specific methods that exhibit unexpected behavior and precisely define how expectations were violated. What did you expect the method or methods to do, and how did the observed behavior differ? The more precisely you isolate the issue, the faster we can investigate.
22+
23+
- Issues with no clear repro steps will not be triaged. If an issue labeled "need repro" receives no further input from the issue author for more than 5 days, it will be closed.
24+
25+
- If your issue is resolved but still open, don't hesitate to close it. In case you found a solution by yourself, it could be helpful for others to explain how you fixed it.
26+
27+
- Most importantly, we beg your patience: the team must balance your request against many other responsibilities — fixing other bugs, answering other questions, new features, new documentation, etc. The issue list is not paid support and we cannot make guarantees about how fast your issue can be resolved.
28+
29+
## Pull Request Guidelines
30+
31+
- You have to [sign your commits](https://docs.github.com/en/authentication/managing-commit-signature-verification/signing-commits).
32+
33+
- It's OK to have multiple small commits as you work on the PR - we will let GitHub automatically squash it before merging.
34+
35+
- If adding new feature:
36+
- Provide convincing reason to add this feature. Ideally you should open a suggestion issue first and have it greenlighted before working on it.
37+
38+
- If fixing a bug:
39+
- If you are resolving a special issue, add `(fix: #xxxx[,#xxx])` (#xxxx is the issue id) in your PR title for a better release log, e.g. `fix: update entities encoding/decoding (fix #3899)`.
40+
- Provide detailed description of the bug in the PR, or link to an issue that does.
41+
42+
- If the PR is meant to be released, follow the instructions in `.changes/readme.md` to log your changes. ie. [readme.md](https://github.com/tauri-apps/plugins-workspace/blob/v2/.changes/readme.md)
43+
44+
## Development Guide
45+
46+
**NOTE: If you have any question don't hesitate to ask in our Discord server. We try to keep this guide to up guide, but if something doesn't work let us know.**
47+
48+
### General Setup
49+
50+
First, [join our Discord server](https://discord.com/invite/tauri) 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.
51+
52+
To set up your machine for development, follow the [Tauri setup guide](https://v2.tauri.app/start/prerequisites/) to get all the tools you need to develop Tauri apps. The only additional tool you may need is [PNPM](https://pnpm.io/).
53+
54+
Next, [fork](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/fork-a-repo) and clone [this repository](https://github.com/tauri-apps/plugins-workspace/tree/v2).
55+
56+
### Developing and testing
57+
58+
The easiest way to test your changes is to use the [example app](https://github.com/tauri-apps/plugins-workspace/tree/v2/examples/api) example app. It automatically rebuilds and uses your local copy of the plugins. To run it follow the instructions inside [README.md](https://github.com/tauri-apps/plugins-workspace/blob/v2/examples/api/README.md).
59+
60+
To test local changes against your own application simply point the plugin create to your local repository, for example:
61+
62+
`tauri-plugin-sample = { path = "path/to/local/tauri-plugin-sample/" }`

.github/workflows/covector-version-or-publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,3 +83,4 @@ jobs:
8383
labels: 'version updates'
8484
branch: 'ci/release-${{ github.ref_name }}'
8585
body: ${{ steps.covector.outputs.change }}
86+
sign-commits: true

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,5 @@ pids
5757
*.sublime*
5858
.idea
5959
debug.log
60-
TODO.md
60+
TODO.md
61+
.aider*

0 commit comments

Comments
 (0)