-
-
Notifications
You must be signed in to change notification settings - Fork 492
Expand file tree
/
Copy pathCODEOWNERS
More file actions
75 lines (69 loc) Β· 4.36 KB
/
Copy pathCODEOWNERS
File metadata and controls
75 lines (69 loc) Β· 4.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# Code owners for AprilNEA/OpenLogi.
#
# This is a personal repository, so every owner must be an individual account
# with write access β `@org/team` entries do not exist here, and an owner
# without write access is silently ignored by GitHub. Grant write access
# before adding someone below.
#
# The LAST matching pattern wins. The order is deliberate: a broad default,
# then delegated paths, then the high-risk paths that always narrow back to
# the maintainer.
# ββ Default ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
* @AprilNEA
# ββ Windows port βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Listed file by file rather than by a `*windows*` glob: in this repo the word
# means two different things, and `openlogi-gui/src/windows.rs` is the app's
# auxiliary-window registry (Settings, Add Device), not Win32 code.
#
# Windows-only branches living in multi-platform files (openlogi-agent's
# main.rs / autostart.rs / binary_watch/ / takeover.rs, hid/transport.rs,
# hook/lib.rs, β¦) stay with the maintainer: CODEOWNERS scopes by path, so it
# cannot hand out ownership of a single `#[cfg(windows)]` branch.
#
# The installer manifest (packaging/windows) and the signing workflow also stay
# with the maintainer β see the supply-chain block below.
/crates/openlogi-agent/src/resume_windows.rs @AprilNEA @davidbudnick
/crates/openlogi-agent/src/tray_windows.rs @AprilNEA @davidbudnick
/crates/openlogi-camera/src/capture_windows.rs @AprilNEA @davidbudnick
/crates/openlogi-camera/src/com_windows.rs @AprilNEA @davidbudnick
/crates/openlogi-camera/src/uvc_windows.rs @AprilNEA @davidbudnick
/crates/openlogi-hid/src/transport/windows.rs @AprilNEA @davidbudnick
/crates/openlogi-hid/src/windows_hid.rs @AprilNEA @davidbudnick
/crates/openlogi-hook/src/windows.rs @AprilNEA @davidbudnick
/crates/openlogi-inject/src/inject/windows.rs @AprilNEA @davidbudnick
# ββ Release, packaging, supply chain βββββββββββββββββββββββββββββββββββββββ
# Anything here can reach the release pipeline's signing and notarization
# credentials, or change what ends up inside a published artifact.
/.github/ @AprilNEA
/xtask/ @AprilNEA
/packaging/ @AprilNEA
/.config/ @AprilNEA
/.cargo/ @AprilNEA
/Cargo.toml @AprilNEA
/Cargo.lock @AprilNEA
/release-plz.toml @AprilNEA
/rust-toolchain.toml @AprilNEA
/rustfmt.toml @AprilNEA
/prek.toml @AprilNEA
/flake.nix @AprilNEA
/flake.lock @AprilNEA
/devenv.nix @AprilNEA
/devenv.yaml @AprilNEA
/devenv.lock @AprilNEA
# ββ Licensing and brand ββββββββββββββββββββββββββββββββββββββββββββββββββββ
# design/ is proprietary; the license files define the dual-license boundary.
/LICENSE-MIT @AprilNEA
/LICENSE-APACHE @AprilNEA
/design/ @AprilNEA
# ββ Cross-crate contracts ββββββββββββββββββββββββββββββββββββββββββββββββββ
# openlogi-ipc is an append-only wire format, openlogi-core is the shared
# config and device model, openlogi-hidpp is a hard fork with its own rules.
/crates/openlogi-ipc/ @AprilNEA
/crates/openlogi-core/ @AprilNEA
/crates/openlogi-hidpp/ @AprilNEA
/crates/openlogi-hidpp-derive/ @AprilNEA
# ββ Agent guides βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
/AGENTS.md @AprilNEA
/CLAUDE.md @AprilNEA
/.claude/ @AprilNEA
/.agents/ @AprilNEA