docs: point branch references at master

rust-ui is being merged into master and retired as the primary branch.
Update README, ARCHITECTURE, and CONTRIBUTING to reference master.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Skyler Lehmkuhl 2026-06-21 18:13:02 -04:00
parent 149760e9c0
commit 2c40858663
3 changed files with 8 additions and 9 deletions

View File

@ -52,7 +52,7 @@ Lightningbeam is a 2D multimedia editor combining vector animation, audio produc
Lightningbeam is undergoing a rewrite from a Tauri/JavaScript prototype to pure Rust. The original architecture hit IPC bandwidth limitations when streaming decoded video frames. The new Rust UI eliminates this bottleneck by handling all rendering natively. Lightningbeam is undergoing a rewrite from a Tauri/JavaScript prototype to pure Rust. The original architecture hit IPC bandwidth limitations when streaming decoded video frames. The new Rust UI eliminates this bottleneck by handling all rendering natively.
**Current Status**: Active development on the `rust-ui` branch. Core UI, tools, and undo system are implemented. Audio integration in progress. **Current Status**: Active development on the `master` branch. Core UI, tools, undo system, and audio integration are implemented.
## Technology Stack ## Technology Stack

View File

@ -130,17 +130,16 @@ lightningbeam-2/
### Branching Strategy ### Branching Strategy
- `main` - Stable branch - `master` - Main development branch
- `rust-ui` - Active development branch for Rust UI rewrite - Feature branches - Create from `master` for new features
- Feature branches - Create from `rust-ui` for new features
### Before You Start ### Before You Start
1. Check existing issues or create a new one to discuss your change 1. Check existing issues or create a new one to discuss your change
2. Make sure you're on the latest `rust-ui` branch: 2. Make sure you're on the latest `master` branch:
```bash ```bash
git checkout rust-ui git checkout master
git pull origin rust-ui git pull origin master
``` ```
3. Create a feature branch: 3. Create a feature branch:
```bash ```bash
@ -241,7 +240,7 @@ this solution.
### Pull Request Process ### Pull Request Process
1. Push your branch to GitHub or Gitea 1. Push your branch to GitHub or Gitea
2. Open a pull request against `rust-ui` branch 2. Open a pull request against `master` branch
- GitHub: https://github.com/skykooler/lightningbeam - GitHub: https://github.com/skykooler/lightningbeam
- Gitea: https://git.skyler.io/skyler/lightningbeam - Gitea: https://git.skyler.io/skyler/lightningbeam
3. Provide a clear description of: 3. Provide a clear description of:

View File

@ -48,7 +48,7 @@ A free and open-source 2D multimedia editor combining vector animation, audio pr
## Project Status ## Project Status
Lightningbeam is under active development on the `rust-ui` branch. The project has been rewritten from a Tauri/JavaScript prototype to a pure Rust application to eliminate IPC bottlenecks and achieve better performance for real-time video and audio processing. Lightningbeam is developed on the `master` branch. The project has been rewritten from a Tauri/JavaScript prototype to a pure Rust application to eliminate IPC bottlenecks and achieve better performance for real-time video and audio processing.
**Current Status:** **Current Status:**
- ✅ Core UI panes (Stage, Timeline, Asset Library, Info Panel, Toolbar) - ✅ Core UI panes (Stage, Timeline, Asset Library, Info Panel, Toolbar)