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: 4 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ jobs:
with:
persist-credentials: false

- name: Setup Rust
if: matrix.language == 'rust'
uses: ./.github/actions/setup-rust

- name: Initialize CodeQL
uses: github/codeql-action/init@a60c4df7a135c7317c1e9ddf9b5a9b07a910dda9
with:
Expand Down
2 changes: 1 addition & 1 deletion crates/adapter-ipc-grpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "adapter-ipc-grpc"
version.workspace = true
version = "2.1.0"
edition.workspace = true
license.workspace = true

Expand Down
2 changes: 1 addition & 1 deletion crates/app-services/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "app-services"
version.workspace = true
version = "2.1.0"
edition.workspace = true
license.workspace = true

Expand Down
2 changes: 1 addition & 1 deletion crates/daemon-host/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "daemon-host"
version.workspace = true
version = "2.1.0"
edition.workspace = true
license.workspace = true

Expand Down
1 change: 0 additions & 1 deletion crates/daemon/src/hotkeys.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ use std::{
use anyhow::{Context, Result, bail};
#[cfg(windows)]
use platform_windows::input::is_virtual_key_down;
#[cfg(windows)]
use platform_windows::runtime::lock_workstation;
#[cfg(windows)]
use tokio::time;
Expand Down
2 changes: 1 addition & 1 deletion crates/peer-transport/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "peer-transport"
version.workspace = true
version = "2.1.0"
edition.workspace = true
license.workspace = true

Expand Down
2 changes: 1 addition & 1 deletion crates/platform-windows/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "platform-windows"
version.workspace = true
version = "2.1.0"
edition.workspace = true
license.workspace = true

Expand Down
6 changes: 5 additions & 1 deletion crates/platform-windows/src/input.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
use core_input::InputEvent;

#[cfg(windows)]
use anyhow::{Context, Result, bail};
use core_input::{InputEvent, KeyState, MouseButton};
#[cfg(windows)]
use core_input::{KeyState, MouseButton};

#[cfg(windows)]
mod hook_capture;
Expand Down
4 changes: 3 additions & 1 deletion crates/platform-windows/src/runtime.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ use std::{
task::{Context as TaskContext, Poll},
};

use anyhow::{Context, Result};
#[cfg(windows)]
use anyhow::Context;
use anyhow::Result;

#[cfg(windows)]
use tokio::{
Expand Down
25 changes: 25 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@
"path": "Cargo.toml",
"jsonpath": "$.workspace.package.version"
},
{
"type": "toml",
"path": "crates/adapter-ipc-grpc/Cargo.toml",
"jsonpath": "$.package.version"
},
{
"type": "toml",
"path": "crates/app-services/Cargo.toml",
"jsonpath": "$.package.version"
},
{
"type": "toml",
"path": "crates/cli/Cargo.toml",
Expand Down Expand Up @@ -54,11 +64,26 @@
"path": "crates/daemon/Cargo.toml",
"jsonpath": "$.package.version"
},
{
"type": "toml",
"path": "crates/daemon-host/Cargo.toml",
"jsonpath": "$.package.version"
},
{
"type": "toml",
"path": "crates/ipc-api/Cargo.toml",
"jsonpath": "$.package.version"
},
{
"type": "toml",
"path": "crates/peer-transport/Cargo.toml",
"jsonpath": "$.package.version"
},
{
"type": "toml",
"path": "crates/platform-windows/Cargo.toml",
"jsonpath": "$.package.version"
},
{
"type": "toml",
"path": "crates/tray/Cargo.toml",
Expand Down
Loading