Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
ff23ea3
Implement ready-to-receive and send-files-to functionality in drop-co…
pushkarm029 Oct 14, 2025
acf0554
Enhance drop-core CLI with QR code support and credential handling
pushkarm029 Oct 17, 2025
6b9fb3e
clippy
pushkarm029 Oct 17, 2025
7ddecd0
cargo fmt
pushkarm029 Oct 17, 2025
0990177
fix CI
pushkarm029 Oct 17, 2025
2b34071
Merge branch 'main' into receive-qr
pushkarm029 Nov 28, 2025
69e299a
Refactor drop-core CLI and exchanges to unify dependencies and enhanc…
pushkarm029 Nov 28, 2025
d3f3ae7
Refactor file transfer cancellation and completion handling in drop-c…
pushkarm029 Nov 28, 2025
1288cfa
Add wait-to-receive and send-to commands to drop-core CLI
pushkarm029 Dec 9, 2025
5f501a3
Enhance error handling and logging in drop-core CLI and exchanges
pushkarm029 Dec 9, 2025
9a109c7
Implement send files to and ready to receive functionality in TUI
pushkarm029 Dec 11, 2025
cb61f6f
Enhance TUI functionality with clipboard support and code improvements
pushkarm029 Dec 11, 2025
183261f
Update TUI layout constraints for connection info and footer
pushkarm029 Dec 11, 2025
de34495
Remove unused async function for prompting peer credentials in handsh…
pushkarm029 Dec 11, 2025
b3d8c81
Add send-files-to and ready-to-receive functionality in drop-core
pushkarm029 Dec 24, 2025
aa23fa0
Refactor imports and comments for clarity in TUI and Uniffi modules
pushkarm029 Dec 29, 2025
5450614
Add disk space management step in Android bindings release workflow
pushkarm029 Dec 29, 2025
bc66daf
Refactor SenderFileDataAdapter structure in uniffi module
pushkarm029 Jan 3, 2026
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
11 changes: 11 additions & 0 deletions .github/workflows/arkdrop-android-bindings-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,17 @@ jobs:
working-directory: ./drop-core/uniffi/bindings/android

steps:
- name: Free Disk Space
uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
android: false
dotnet: true
haskell: true
large-packages: true
docker-images: true
swap-storage: true

- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2

Expand Down
4 changes: 2 additions & 2 deletions drop-core/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ name = "arkdrop-cli"
path = "src/main.rs"

[dependencies]
arkdrop-common = { path = "../common" }
arkdrop-common = { path = "../common" }
arkdropx-sender = { path = "../exchanges/sender" }
arkdropx-receiver = { path = "../exchanges/receiver" }
arkdropx-receiver = { path = "../exchanges/receiver" }

toml = "0.8"
anyhow = "1.0"
Expand Down
Loading
Loading