Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
0e06bcb
pull in iroh-share
dignifiedquire Jul 7, 2022
9f7e962
integrate backup sending via iroh into the repl
dignifiedquire Jul 7, 2022
14fc7b7
implement receive-backup
dignifiedquire Jul 7, 2022
364e06d
update deps
dignifiedquire Jul 7, 2022
679242d
remove unused event
dignifiedquire Jul 7, 2022
63872fc
generate qr codes
dignifiedquire Jul 7, 2022
995bf6f
update deltachat.h
dignifiedquire Jul 7, 2022
0aa4e21
proper shutdown and progress reports
dignifiedquire Jul 11, 2022
4ff746e
fix "the trait `Add<&&str>` is not implemented for `std::string::Stri…
r10s Jul 11, 2022
94c16ef
repl: documentation and tab-completion for the new send-backup commands
r10s Jul 11, 2022
17f01e5
fix: make passphrase work for repl's send-backup
r10s Jul 11, 2022
e61ee76
document ffi wrt sending and receiving backups
r10s Jul 11, 2022
0ed3348
add `dc_receive_backup` ffi (#3504)
r10s Jul 13, 2022
411d0a7
dc_reveive_backup() ffi just takes the qr-code again instead of sever…
r10s Jul 14, 2022
1633b2f
clear config cache before receiving a backup (with new config values)
r10s Jul 14, 2022
f696f3e
update iroh-share & cleanup api
dignifiedquire Jul 28, 2022
6c6499f
apply updates
dignifiedquire Aug 29, 2022
ba869a2
ci: protoc fix (#3566)
Arqu Aug 30, 2022
09d5cbe
update deps
dignifiedquire Sep 19, 2022
26719ee
apply CR
dignifiedquire Sep 19, 2022
1f4384b
fixup
dignifiedquire Sep 19, 2022
c9cd4c9
clippy fixes
dignifiedquire Sep 19, 2022
b2c68c7
fixup rebase
dignifiedquire Oct 5, 2022
b6e8c9f
clippy
dignifiedquire Oct 5, 2022
1fd4e8e
fixup
dignifiedquire Nov 23, 2022
415279c
update dependencies, including iroh to 0.1.1
dignifiedquire Nov 23, 2022
2056452
update github workflows
dignifiedquire Nov 23, 2022
0bcba98
Merge remote-tracking branch 'origin/master' into iroh-share
dignifiedquire Dec 2, 2022
94b50f6
update to released iroh version
dignifiedquire Dec 2, 2022
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
24 changes: 19 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ jobs:
toolchain: stable
components: clippy
override: true
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.20.1'
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Cache rust cargo artifacts
uses: swatinem/rust-cache@v1
- uses: actions-rs/clippy-check@v1
Expand All @@ -55,6 +60,11 @@ jobs:
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.20.1'
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Install rust stable toolchain
uses: actions-rs/toolchain@v1
with:
Expand All @@ -77,24 +87,28 @@ jobs:
include:
# Currently used Rust version, same as in `rust-toolchain` file.
- os: ubuntu-latest
rust: 1.61.0
rust: 1.63.0
python: 3.9
- os: windows-latest
rust: 1.61.0
rust: 1.63.0
python: false # Python bindings compilation on Windows is not supported.

# Minimum Supported Rust Version = 1.57.0
# Minimum Supported Rust Version = 1.63.0
#
# Minimum Supported Python Version = 3.7
# This is the minimum version for which manylinux Python wheels are
# built.
- os: ubuntu-latest
rust: 1.57.0
rust: 1.63.0
python: 3.7
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@master

- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.20.1'
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Install ${{ matrix.rust }}
uses: actions-rs/toolchain@v1
with:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/jsonrpc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ jobs:
override: true
- name: Add Rust cache
uses: Swatinem/rust-cache@v1.3.0
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.20.1'
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: npm install
run: |
cd deltachat-jsonrpc/typescript
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/node-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ jobs:
cargo -vV
npm --version
node --version

- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.20.1'
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Cache node modules
uses: actions/cache@v2
with:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/node-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ jobs:
cargo -vV
npm --version
node --version

- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.20.1'
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Cache node modules
uses: actions/cache@v2
with:
Expand Down
Loading