Skip to content
Open
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
10 changes: 5 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@ Thanks for your interest in contributing to OWL Control! 🦉

## Building from Source

**Note for Linux developers**: See [LINUX_DEV_SETUP.md](./tools/vm/LINUX_DEV_SETUP.md) for instructions on setting up a Windows VM for development and testing.

Using PowerShell or Command Prompt:

1. Install [cargo](https://doc.rust-lang.org/cargo/getting-started/installation.html).

2. Clone the repo:

```powershell
git clone https://github.com/Wayfarer-Labs/owl-control.git
git clone https://github.com/Overworldai/owl-control.git
cd owl-control
```

Expand Down Expand Up @@ -154,13 +156,11 @@ cargo run -p bump-version -- 1.1.1-rc1
After creating a release candidate:

1. Push the RC tag to trigger the automated build
2. Share the RC with testers in the Discord server
3. Gather feedback and fix any issues
2. Gather feedback and fix any issues
4. Once validated, create the final release

## Questions?

If you have any questions or need help, feel free to:

- Open an issue on [GitHub Issues](https://github.com/Wayfarer-Labs/owl-control/issues)
- Join the discussion in the Discord server
- Open an issue on [GitHub Issues](https://github.com/Overworldai/owl-control/issues)
81 changes: 52 additions & 29 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 11 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
[workspace]
resolver = "3"
members = ["crates/*", "tools/*"]
exclude = ["tools/vm"]
default-members = ["."]

[workspace.package]
version = "1.5.0"
version = "1.6.0"

[workspace.dependencies]
input-capture = { path = "crates/input-capture" }
Expand Down Expand Up @@ -44,12 +45,11 @@ wgpu = "27.0.0"

obws = "0.14.0"
async-trait = "0.1"
libobs-wrapper = { git = "https://github.com/libobs-rs/libobs-rs.git", features = [
libobs-wrapper = { version = "9", features = [
"logging_crash_handler",
"enable_runtime",
], default-features = false }
libobs-simple = { git = "https://github.com/libobs-rs/libobs-rs.git" }
libobs-window-helper = { git = "https://github.com/libobs-rs/libobs-rs.git" }
libobs-simple = "8"
libobs-window-helper = "0.4"

[package]
name = "owl-control"
Expand Down Expand Up @@ -89,14 +89,14 @@ egui_extras = { version = "0.33", features = ["all_loaders", "datepicker"] }
egui-wgpu = "0.33"
egui-winit = "0.33"
egui_commonmark = { version = "0.22", features = ["macros"] }
# Wayfarer-owned forks for bumping egui version to 0.33. Will remove once updated.
egui_overlay = { git = "https://github.com/Wayfarer-Labs/egui_overlay.git", branch = "master", features = [
# Overworld-owned forks for bumping egui version to 0.33. Will remove once updated.
egui_overlay = { git = "https://github.com/Overworldai/egui_overlay.git", branch = "master", features = [
"egui_default",
"glfw_default",
] }
egui_window_glfw_passthrough = { git = "https://github.com/Wayfarer-Labs/egui_overlay.git", branch = "master" }
egui_render_three_d = { git = "https://github.com/Wayfarer-Labs/egui_overlay.git", branch = "master" }
catppuccin-egui = { git = "https://github.com/Wayfarer-Labs/catppuccin-egui.git", branch = "disable-build-script", default-features = false, features = [
egui_window_glfw_passthrough = { git = "https://github.com/Overworldai/egui_overlay.git", branch = "master" }
egui_render_three_d = { git = "https://github.com/Overworldai/egui_overlay.git", branch = "master" }
catppuccin-egui = { git = "https://github.com/Overworldai/catppuccin-egui.git", branch = "disable-build-script", default-features = false, features = [
"egui33",
] }
egui_virtual_list = "0.9.0"
Expand All @@ -112,6 +112,7 @@ reqwest = { version = "0.12.23", features = ["json", "stream"] }
tar = "0.4.44"
opener = { version = "0.8", features = ["reveal"] }
sha256 = "1.6.0"
backoff = { version = "0.4", features = ["tokio"] }
rfd = "0.14"
steamlocate.workspace = true

Expand Down
Loading