Skip to content
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
f5384c3
feat: add 1o1 encrypt
Bilb Oct 15, 2025
ab784e8
feat: added encode for a bunch for other destinations
Bilb Oct 15, 2025
9ffcc9d
feat: add working encryption for groups & communities
Bilb Oct 16, 2025
c055c5f
feat: added decrypt for community wrapping
Bilb Oct 20, 2025
74193c6
feat: added serverId to decryptCommunity
Bilb Oct 20, 2025
d25efc8
chore: fetch latest commit from doyle fork
Bilb Oct 20, 2025
43ee42f
fix: decrypt for 1o1 work as expected
Bilb Oct 21, 2025
1b8b269
feat: add decryptForGroup through MultiEncrypt
Bilb Oct 21, 2025
ebcb599
feat: add pro url constants
Aerilym Oct 23, 2025
16a256d
feat: add pro provider constants
Aerilym Oct 23, 2025
3ac1e0e
chore: create pro types
Aerilym Oct 23, 2025
78a46bb
chore: update libsession version
Aerilym Oct 23, 2025
a2007db
fix: add store other to nil
Aerilym Oct 23, 2025
70a4cc3
chore: fix space
Aerilym Oct 23, 2025
4072aab
Merge pull request #34 from session-foundation/aerilym/feat-app-pro-b…
Bilb Oct 23, 2025
5891fc3
feat: added generate master pro key & get/set pro config
Bilb Oct 23, 2025
c3bad38
Merge remote-tracking branch 'upstream/feat-add-pro-backend-fns' into…
Bilb Oct 23, 2025
a6bfefb
chore: cleanup
Bilb Oct 23, 2025
d603683
Merge pull request #35 from session-foundation/bilb/feat-add-pro-back…
Bilb Oct 23, 2025
fa808f1
feat: add pro utf stuff and move it to its own wrapper
Bilb Oct 24, 2025
94e4144
chore: fix import for session-desktop
Bilb Oct 24, 2025
fa8daef
Merge pull request #36 from session-foundation/bilb/feat-add-pro-back…
Bilb Oct 24, 2025
4980e28
fix: add proFeaturesForMessage linking
Bilb Oct 26, 2025
bfd89aa
chore: lint with clang format our files
Bilb Oct 26, 2025
f1bc003
chore: copy changes to work on clangd
Bilb Oct 27, 2025
56a0f57
chore: use clang-format-19 as libsession-util
Bilb Oct 27, 2025
61e0d1a
Merge pull request #37 from session-foundation/bilb/feat-add-pro-back…
Bilb Oct 27, 2025
38bb785
chore: fix build for clangd
Bilb Oct 27, 2025
2064c97
chore: run CI on our `dev` branch too
Bilb Oct 27, 2025
655738a
Merge pull request #39 from session-foundation/fix-build-clangd
Bilb Oct 27, 2025
dfd8373
feat: create pro backend wrapper for getting pro proofs
Aerilym Oct 27, 2025
0ac8165
fix: use buffer view for rotating key
Aerilym Oct 27, 2025
1ac97e8
fix: use new build_to_json method to construct proof request wrapper
Aerilym Oct 29, 2025
ce4429a
chore: add types for pro proof request
Aerilym Oct 29, 2025
195eda7
chore: return early with pro proof wrapper
Aerilym Oct 29, 2025
29699f6
Merge pull request #41 from session-foundation/feat/pro-backend-wrappers
Bilb Oct 29, 2025
60f407b
chore: update libsession-util so that build is passing
Bilb Oct 29, 2025
dfd0676
feat: add pro backend request response wrappers
Aerilym Oct 30, 2025
ffd5899
fix: add enum to string parsing functions
Aerilym Oct 30, 2025
972c3e4
fix: add enum to string utils to namespace
Aerilym Oct 30, 2025
e45798b
Merge pull request #43 from session-foundation/feat/pro-backend-reque…
Bilb Oct 30, 2025
687b3b4
feat: merged both PRs and fixed conflicts
Bilb Oct 30, 2025
a7da666
feat: finished wrapping most pro backend calls
Bilb Oct 30, 2025
bf910a7
fix: wrap up requestbody for pro backend
Bilb Oct 31, 2025
a97cb6b
chore: lint source
Bilb Oct 31, 2025
f9e8e2c
feat: update libsession-util and update proFeaturesForMessageReturnType
Bilb Nov 4, 2025
1bfab13
chore: disable builtin unreachable for windows
Bilb Nov 5, 2025
2f842fe
chore: fix the assert unreachable equivalent
Bilb Nov 5, 2025
68ca747
Merge pull request #42 from session-foundation/bilb/feat-add-pro-back…
Bilb Nov 5, 2025
e90aff5
fix: change pro provider enum for string union
Aerilym Nov 6, 2025
763c8a7
Merge pull request #44 from session-foundation/fix/remove_pro_enum
Bilb Nov 6, 2025
3f9f7d8
chore: bump to 0.6.0
Bilb Nov 7, 2025
23e08f2
Merge remote-tracking branch 'upstream/main' into feat-add-pro-backen…
Bilb Nov 7, 2025
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
1 change: 0 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ file(GLOB SOURCE_FILES src/*.cpp src/groups/*.cpp src/multi_encrypt/*.cpp)

add_subdirectory(libsession-util)


if(MSVC)
# Windows is horrible
add_compile_definitions(NOMINMAX)
Expand Down
1 change: 1 addition & 0 deletions include/groups/meta_group_wrapper.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ class MetaGroupWrapper : public Napi::ObjectWrap<MetaGroupWrapper> {
Napi::Value keysNeedsRekey(const Napi::CallbackInfo& info);
Napi::Value keyRekey(const Napi::CallbackInfo& info);
Napi::Value keyGetAll(const Napi::CallbackInfo& info);
Napi::Value keyGetEncryptionKeyHex(const Napi::CallbackInfo& info);
Napi::Value loadKeyMessage(const Napi::CallbackInfo& info);
Napi::Value keyGetCurrentGen(const Napi::CallbackInfo& info);
Napi::Value activeHashes(const Napi::CallbackInfo& info);
Expand Down
Loading
Loading