Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 28 additions & 4 deletions v3/README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,33 @@
# v3 Alpha
# Wails v3 Beta

Thanks for wanting to help out with testing/developing Wails v3! This guide will help you get started.
Welcome to Wails v3! This is the beta release of the next major version of Wails.

## What Beta means

The v3 API in `v3/pkg/application` and related packages is stable. We will not make breaking changes without a deprecation cycle and clear migration guidance.

## Getting Started

All the instructions for getting started are in the v3 documentation directory: `mkdocs-website`.
Please read the README.md file in that directory for more information.
Full documentation is available at [v3.wails.io](https://v3.wails.io).

To get started with a new project:
```
Comment thread
Copilot marked this conversation as resolved.
Outdated
go install github.com/wailsapp/wails/v3/cmd/wails3@latest
wails3 init -n myapp
```
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated

## Beta scope — what's deferred

The following areas are still under active development and are **not** covered by the v3 stability guarantee:

- **iOS / Android**: Not production-ready in v3 beta; deferred to a future release.
- **GTK4 Linux backend**: Now the default on Linux but still in active stabilisation. Some rendering edge cases may remain.
- **Some niche AppKit APIs**: A small number of macOS-specific window APIs are still being finalised.

See [`v3/STABILITY.md`](STABILITY.md) for the full stability policy.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removed the dangling link — v3/STABILITY.md doesn't exist yet. Replaced with an inline note: 'The items listed above may have breaking changes without a deprecation cycle.' which conveys the same information without a broken cross-reference.

Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated

## Giving feedback

- **Bug reports**: [github.com/wailsapp/wails/issues](https://github.com/wailsapp/wails/issues)
- **Discussions**: [github.com/wailsapp/wails/discussions](https://github.com/wailsapp/wails/discussions)
- **Discord**: [wails.io/discord](https://wails.io/discord)
Loading