Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-06-11 | bump version info for release3.1.5 | Hubert Chathi | |
2020-06-11 | changelog for release | Hubert Chathi | |
2020-06-11 | update release instructions | Hubert Chathi | |
2020-06-11 | add list of bindings | Hubert Chathi | |
2020-05-19 | move -o option before source files, for better compatibility with LLVM | Hubert Chathi | |
2020-05-19 | Merge branch 'matthew/js-fixes' into 'master' | Hubert Chathi | |
Fix JS demos, which had bitrotted See merge request matrix-org/olm!12 | |||
2020-05-16 | fix group demo to work with Olm.init() | Matthew Hodgson | |
2020-05-16 | fix 1:1 demo to work with Olm.init() | Matthew Hodgson | |
2020-05-16 | spell out error msg if you don't Olm.init | Matthew Hodgson | |
2020-05-16 | fix build on latest emscripten | Matthew Hodgson | |
2020-05-15 | remove overzealous -D param to install which breaks build on macOS | Matthew Hodgson | |
2020-05-13 | add a note about calling Olm.init | Hubert Chathi | |
2020-05-07 | fix type signature of unpickle in Inbound/OutboundGroupSession | Hubert Chathi | |
Thanks to Dominic Fischer for spotting. | |||
2020-05-07 | Add wasm target to Makefile | stoically | |
Allows building an WASM-ready archive with emscripten. This allows e.g. to compile to the `wasm32-unknown-unknown` target with Rust. Related matrix-rust-sdk PR: https://github.com/matrix-org/matrix-rust-sdk/pull/31 Signed-off-by: stoically <stoically@protonmail.com> | |||
2020-04-29 | Merge branch 'uhoreg/typescript' into 'master' | Hubert Chathi | |
Add TypeScript definition file See merge request matrix-org/olm!11 | |||
2020-04-29 | add missing declaration for PkDecryption#decrypt and SAS class | Hubert Chathi | |
2020-04-24 | add declarations for Inbound/OutboundGroupSession | Hubert Chathi | |
2020-04-24 | initial TypeScript definition file | Hubert Chathi | |
2019-11-08 | Update signing.md to use operatorname | Richard van der Hoff | |
2019-11-08 | Merge branch 'rav/fix_math' into 'master' | Richard van der Hoff | |
Fix some math blocks See merge request matrix-org/olm!10 | |||
2019-11-08 | Update olm.md | Richard van der Hoff | |
2019-11-08 | Update signing.md | Richard van der Hoff | |
2019-11-08 | Update megolm.md | Richard van der Hoff | |
2019-10-23 | CMakeLists.txt: export include directories in install(TARGETS) | Alexey Rusakov | |
Without that, if olm is installed to a non-standard location, the user code might run CMake configuration fine but further building will fail. Signed-off-by: Alexey Rusakov <Alexey.Rusakov@pm.me> | |||
2019-10-09 | release 3.1.43.1.4 | Hubert Chathi | |
2019-10-09 | Merge branch 'dbkr/olm_session_describe' into 'master' | Hubert Chathi | |
Add olm_session_describe See merge request matrix-org/olm!9 | |||
2019-10-08 | check return value of snprintf, fix typo, add clarification | Hubert Chathi | |
2019-10-04 | Pass in a buffer to olm_session_describe | David Baker | |
instead of having a static one, as that could end up taking up a lot of memory if your app keeps olm sessions hanging about. | |||
2019-10-01 | doc string | David Baker | |
2019-10-01 | Add olm_session_describe | David Baker | |
As a way to dump the state of an olm session, ie. the chain indicies, so we can debug why olm sessions break and get out of sync. | |||
2019-09-30 | Merge branch 'dbkr/emscripten_is_picky_about_pic' into 'master' | Hubert Chathi | |
Build the js objects without PIC See merge request matrix-org/olm!8 | |||
2019-09-30 | Merge branch 'dbkr/wrong_comment_breaks_everything' into 'master' | Hubert Chathi | |
Fix comment and also js build See merge request matrix-org/olm!7 | |||
2019-09-30 | Build the js objects without PIC | David Baker | |
This confuses emscripten now | |||
2019-09-30 | Fix comment and also js build | David Baker | |
The python that searches the header files for exports isn't smart enough to know what is a comment and what isn't, so it picks this up too and emscripten then complains about it being undefined. | |||
2019-08-22 | Merge branch 'rav/megolm_doc_format' into 'master' | Hubert Chathi | |
Update megolm.md See merge request matrix-org/olm!6 | |||
2019-08-22 | Update megolm.md | Richard van der Hoff | |
2019-08-08 | Makefile: Overwrite symlinks in install and install-debug | Trygve Aaberge | |
Without this, it's not possible to run the install or install-debug rules multiple times. Signed-off-by: Trygve Aaberge <trygveaa@gmail.com> | |||
2019-07-03 | Merge branch 'python/drop-hypothesis' into 'master' | Hubert Chathi | |
tests: Drop hypothesis from the python tests. See merge request matrix-org/olm!5 | |||
2019-07-03 | CMakeLists.txt: add env vars to target_include_directories | Alexey Andreyev | |
2019-06-24 | release 3.1.33.1.3 | Hubert Chathi | |
2019-06-22 | Merge branch 'python/unicode_decode_errors' into 'master' | Matthew Hodgson | |
Python unicode decode errors when decrypting. See merge request matrix-org/olm!4 | |||
2019-06-20 | tests: Simplify the input parameter for the Unicode decoding tests. | Damir Jelić | |
2019-06-20 | tests: Use Unicode literals in the Unicode decoding tests. | Damir Jelić | |
This is needed because the function returns Unicode strings and the comparison will fail under python2 unless Unicode literals are used. | |||
2019-06-20 | tests: Simplify the sha256 tests for python. | Damir Jelić | |
Hypothesis isn't used anymore and the strings are now constants, meaning that the hashes should never match. | |||
2019-06-20 | tests: Drop hypothesis from the tests. | Damir Jelić | |
Hypothesis recently had some problems with the typing module breaking the tox tests. Since Hypothesis isn't really used much in the test this patch removes it from them as well as from the test-requirements. | |||
2019-06-20 | _compat: Make the encoding argument explicit in to_unicode_str(). | Damir Jelić | |
2019-06-20 | olm: Rename the errors function argument in the decryption functions. | Damir Jelić | |
2019-06-19 | Merge branch 'matthew/define-secrecy' into 'master' | Matthew Hodgson | |
explicitly define backward & forward secrecy See merge request matrix-org/olm!3 | |||
2019-06-20 | fix typo & more wording from luca | Matthew Hodgson | |
2019-06-19 | _compat: Remove the now unused native_str. | Damir Jelić | |