Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
mkdir -p "staging/${STAGE}"
cp "target/${{ matrix.target }}/release/microbridged" "staging/${STAGE}/"
cp "target/${{ matrix.target }}/release/microbridgectl" "staging/${STAGE}/"
cp README.md LICENSE-MIT LICENSE-APACHE INSTALL.md "staging/${STAGE}/"
cp README.md LICENSE INSTALL.md "staging/${STAGE}/"
tar -C staging -czf "${STAGE}.tar.gz" "${STAGE}"
echo "ASSET=${STAGE}.tar.gz" >> "$GITHUB_ENV"
- uses: actions/upload-artifact@v7
Expand Down Expand Up @@ -160,7 +160,7 @@ jobs:
STAGE="microbridge-ui-${GITHUB_REF_NAME}-${{ matrix.target }}"
mkdir -p "staging/${STAGE}" "ui-out"
cp -R "$APP" "staging/${STAGE}/"
cp README.md LICENSE-MIT LICENSE-APACHE INSTALL.md "staging/${STAGE}/"
cp README.md LICENSE INSTALL.md "staging/${STAGE}/"
tar -C staging -czf "ui-out/${STAGE}.tar.gz" "${STAGE}"

DMG=""
Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,7 @@ apps/microbridge-ui/src-tauri/gen/

# local working notes (not part of the public project)
/documentation/

# local tooling / debug artifacts (not part of the public project)
.playwright-mcp/
/settings-keys-twin.png
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ shape before you spend time.
feature. See [docs/architecture.md](docs/architecture.md#footprint-budget).
- **Protocol changes** must update `crates/mb-protocol` and
`docs/protocol.md` in the same PR, with a version bump if breaking.
- **No CLA.** Contributions are accepted under the project's dual
MIT/Apache-2.0 license (inbound = outbound).
- **No CLA.** Contributions are accepted under the project's
[MIT](LICENSE) license (inbound = outbound).

## Dev setup

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ members = [
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
license = "MIT"
repository = "https://github.com/DevVig/microbridge"
Comment on lines 11 to 15

[workspace.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion Formula/microbridge.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Microbridge < Formula
desc "Open-source control plane for the Codex Micro (menu bar + daemon)"
homepage "https://github.com/DevVig/microbridge"
version "0.1.0"
license any_of: ["MIT", "Apache-2.0"]
license "MIT"
head "https://github.com/DevVig/microbridge.git", branch: "main"

depends_on :macos
Expand Down
File renamed without changes.
202 changes: 0 additions & 202 deletions LICENSE-APACHE

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,4 +133,4 @@ This project is only possible because OpenAI chose to keep the Micro open — an

## License

Dual-licensed under [MIT](LICENSE-MIT) or [Apache-2.0](LICENSE-APACHE), at your option. Contributions are accepted under the same terms.
[MIT](LICENSE) licensed — a permissive, OSI-approved open source license. Contributions are accepted under the same terms (inbound = outbound).
Loading