Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Submodule #2619

Merged
merged 1 commit into from
Jul 17, 2023
Merged
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
2 changes: 1 addition & 1 deletion jni/deltachat-core-rust
Submodule deltachat-core-rust updated 91 files
+44 −0 CHANGELOG.md
+23 −0 CONTRIBUTING.md
+640 −610 Cargo.lock
+7 −12 Cargo.toml
+1 −1 LICENSE
+9 −6 RELEASE.md
+5 −3 cliff.toml
+1 −1 deltachat-ffi/Cargo.toml
+40 −51 deltachat-ffi/deltachat.h
+16 −35 deltachat-ffi/src/lib.rs
+5 −5 deltachat-jsonrpc/Cargo.toml
+8 −16 deltachat-jsonrpc/src/api/mod.rs
+2 −2 deltachat-jsonrpc/src/api/types/chat.rs
+1 −1 deltachat-jsonrpc/src/api/types/chat_list.rs
+5 −5 deltachat-jsonrpc/src/api/types/message.rs
+1 −1 deltachat-jsonrpc/typescript/package.json
+3 −3 deltachat-repl/Cargo.toml
+19 −26 deltachat-repl/src/cmdline.rs
+373 −0 deltachat-rpc-client/LICENSE
+15 −0 deltachat-rpc-client/pyproject.toml
+2 −3 deltachat-rpc-client/src/deltachat_rpc_client/pytestplugin.py
+3 −3 deltachat-rpc-server/Cargo.toml
+9 −2 deny.toml
+0 −100 examples/simple.rs
+45 −81 fuzz/Cargo.lock
+0 −17 node/lib/context.ts
+0 −13 node/src/module.c
+1 −1 package.json
+1 −1 python/LICENSE
+8 −8 python/doc/api.rst
+2 −14 python/examples/group_tracking.py
+2 −1 python/pyproject.toml
+1 −1 python/src/deltachat/account.py
+1 −1 python/src/deltachat/events.py
+1 −1 python/src/deltachat/testplugin.py
+1 −1 python/src/deltachat/tracker.py
+59 −25 python/tests/test_1_online.py
+19 −7 python/tests/test_3_offline.py
+12 −11 python/tests/test_4_lowlevel.py
+1 −1 release-date.in
+4 −0 scripts/README.md
+3 −3 scripts/concourse/docs_wheels.yml
+21 −0 scripts/make-python-testenv.sh
+5 −4 src/authres.rs
+381 −268 src/chat.rs
+3 −3 src/chatlist.rs
+10 −0 src/config.rs
+5 −5 src/configure.rs
+1 −1 src/configure/auto_mozilla.rs
+111 −72 src/contact.rs
+10 −4 src/context.rs
+1 −1 src/decrypt.rs
+141 −55 src/dehtml.rs
+2 −3 src/download.rs
+5 −5 src/ephemeral.rs
+16 −16 src/html.rs
+49 −8 src/imap.rs
+4 −12 src/imex.rs
+3 −3 src/imex/transfer.rs
+1 −1 src/lib.rs
+4 −4 src/location.rs
+197 −367 src/message.rs
+38 −19 src/mimefactory.rs
+198 −42 src/mimeparser.rs
+26 −1 src/peerstate.rs
+50 −20 src/plaintext.rs
+1 −1 src/provider.rs
+2 −1 src/qr_code_generator.rs
+1 −1 src/quota.rs
+1 −1 src/reaction.rs
+127 −116 src/receive_imf.rs
+66 −75 src/receive_imf/tests.rs
+1 −1 src/scheduler.rs
+53 −41 src/securejoin.rs
+8 −0 src/securejoin/bob.rs
+1 −1 src/securejoin/bobstate.rs
+14 −10 src/simplify.rs
+6 −6 src/smtp.rs
+3 −3 src/sql.rs
+130 −76 src/stock_str.rs
+7 −22 src/summary.rs
+1 −1 src/sync.rs
+68 −8 src/test_utils.rs
+1 −0 src/tests.rs
+7 −23 src/tests/aeap.rs
+547 −0 src/tests/verified_chats.rs
+12 −14 src/tools.rs
+15 −28 src/webxdc.rs
+7 −0 test-data/golden/test_outgoing_mua_msg
+12 −0 test-data/golden/test_verified_oneonone_chat_enable_disable
+172 −0 test-data/spaces.html
Loading