docs: correct branch references to main (not master)

The primary branch is main; an earlier commit mistakenly wrote master.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Skyler Lehmkuhl 2026-06-21 21:19:53 -04:00
parent 273862c882
commit bf4331eed4
3 changed files with 8 additions and 8 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.
**Current Status**: Active development on the `master` branch. Core UI, tools, undo system, and audio integration are implemented.
**Current Status**: Active development on the `main` branch. Core UI, tools, undo system, and audio integration are implemented.
## Technology Stack

View File

@ -129,16 +129,16 @@ lightningbeam-2/
### Branching Strategy
- `master` - Main development branch
- Feature branches - Create from `master` for new features
- `main` - Main development branch
- Feature branches - Create from `main` for new features
### Before You Start
1. Check existing issues or create a new one to discuss your change
2. Make sure you're on the latest `master` branch:
2. Make sure you're on the latest `main` branch:
```bash
git checkout master
git pull origin master
git checkout main
git pull origin main
```
3. Create a feature branch:
```bash
@ -239,7 +239,7 @@ this solution.
### Pull Request Process
1. Push your branch to GitHub or Gitea
2. Open a pull request against `master` branch
2. Open a pull request against `main` branch
- GitHub: https://github.com/skykooler/lightningbeam
- Gitea: https://git.skyler.io/skyler/lightningbeam
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
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.
Lightningbeam is developed on the `main` 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:**
- ✅ Core UI panes (Stage, Timeline, Asset Library, Info Panel, Toolbar)