Permalink
Please sign in to comment.
Browse files
Merge branch 'e2ee'
- Support for e2ee rooms - Implement categories & file logging - Let the user know when the app can't reach the server (#93) fixes #13 fixes #326
- Loading branch information...
Showing
with
3,760 additions
and 2,665 deletions.
- +37 −0 .ci/bintray-release.json
- +5 −2 .ci/install.sh
- +9 −5 .ci/linux/deploy.sh
- +4 −0 .ci/macos/deploy.sh
- +9 −1 .ci/script.sh
- +1 −0 .gitignore
- +17 −19 .travis.yml
- +39 −23 CMakeLists.txt
- +21 −4 Makefile
- +32 −18 README.md
- +37 −15 appveyor.yml
- +0 −26 cmake/CompilerFlags.cmake
- +0 −33 cmake/MatrixStructs.cmake
- +82 −0 deps/CMakeLists.txt
- +23 −0 deps/cmake/Boost.cmake
- +31 −0 deps/cmake/MatrixClient.cmake
- +25 −0 deps/cmake/MatrixStructs.cmake
- +34 −0 deps/cmake/Olm.cmake
- +107 −0 deps/cmake/OlmCMakeLists.txt
- +11 −0 deps/cmake/OlmConfig.cmake.in
- +22 −0 deps/cmake/SpdLog.cmake
- +10 −8 include/AvatarProvider.h
- +148 −2 include/Cache.h
- +61 −13 include/ChatPage.h
- +2 −0 include/CommunitiesList.h
- +21 −0 include/Logging.hpp
- +29 −4 include/LoginPage.h
- +1 −1 include/MainWindow.h
- +16 −275 include/MatrixClient.h
- +78 −0 include/Olm.hpp
- +5 −0 include/RegisterPage.h
- +2 −0 include/RoomList.h
- +10 −0 include/TextInputWidget.h
- +1 −1 include/dialogs/ReCaptcha.hpp
- +16 −8 include/dialogs/RoomSettings.hpp
- +10 −5 include/timeline/TimelineItem.h
- +86 −35 include/timeline/TimelineView.h
- +2 −4 include/timeline/TimelineViewManager.h
- +6 −1 include/timeline/widgets/AudioItem.h
- +6 −1 include/timeline/widgets/FileItem.h
- +8 −2 include/timeline/widgets/ImageItem.h
- +28 −22 src/AvatarProvider.cc
- +404 −63 src/Cache.cc
- +732 −294 src/ChatPage.cc
- +50 −14 src/CommunitiesList.cc
- +59 −0 src/Logging.cpp
- +54 −15 src/LoginPage.cc
- +29 −20 src/MainWindow.cc
- +19 −1,349 src/MatrixClient.cc
- +228 −0 src/Olm.cpp
- +97 −33 src/RegisterPage.cc
- +34 −20 src/RoomList.cc
- +0 −2 src/TextInputWidget.cc
- +8 −7 src/dialogs/PreviewUploadOverlay.cc
- +8 −7 src/dialogs/ReCaptcha.cpp
- +137 −48 src/dialogs/RoomSettings.cpp
- +32 −25 src/main.cc
- +37 −1 src/timeline/TimelineItem.cc
- +593 −76 src/timeline/TimelineView.cc
- +13 −40 src/timeline/TimelineViewManager.cc
- +18 −21 src/timeline/widgets/AudioItem.cc
- +28 −23 src/timeline/widgets/FileItem.cc
- +80 −70 src/timeline/widgets/ImageItem.cc
- +8 −9 src/timeline/widgets/VideoItem.cc
| @@ -0,0 +1,37 @@ | ||
| +{ | ||
| + "files": [ | ||
| + { | ||
| + "includePattern": "nheko-VERSION_NAME_VALUE.dmg", | ||
| + "matrixParams": { | ||
| + "override": 1 | ||
| + }, | ||
| + "uploadPattern": "VERSION_NAME_VALUE/nheko-VERSION_NAME_VALUE.dmg" | ||
| + }, | ||
| + { | ||
| + "includePattern": "nheko-VERSION_NAME_VALUE-x86_64.AppImage", | ||
| + "matrixParams": { | ||
| + "override": 1 | ||
| + }, | ||
| + "uploadPattern": "VERSION_NAME_VALUE/nheko-VERSION_NAME_VALUE-x86_64.AppImage" | ||
| + } | ||
| + ], | ||
| + "package": { | ||
| + "desc": "Desktop client for the Matrix protocol", | ||
| + "issue_tracker_url": "https://github.com/mujx/nheko/issues", | ||
| + "licenses": [ | ||
| + "GPL-3.0" | ||
| + ], | ||
| + "name": "nheko", | ||
| + "public_download_numbers": true, | ||
| + "public_stats": true, | ||
| + "repo": "matrix", | ||
| + "subject": "mujx", | ||
| + "vcs_url": "https://github.com/mujx/nheko", | ||
| + "website_url": "https://github.com/mujx/nheko" | ||
| + }, | ||
| + "publish": true, | ||
| + "version": { | ||
| + "name": "VERSION_NAME_VALUE", | ||
| + "vcs_tag": "VERSION_NAME_VALUE" | ||
| + } | ||
| +} |
36
.travis.yml
Oops, something went wrong.
0 comments on commit
8704265