Commit Graph

637 Commits (e93c83b9f232b4d86d737ea15fbe4546b9090bee)

Author SHA1 Message Date
Morgan Pretty 17a9e510c5 Further work on unit tests (and a couple of bug fixes found when testing)
Removed a couple remaining TODOs
Added 'standardUserDefaults' to the 'Dependencies' type
Tweaked the OpenGroupAPI to only update the 'lastOpen' timestamp if it successfully polls
Refactored a couple of methods in the ConversationViewItem into swift so we can clean up the OpenGroupAPI more
Updated the OpenGroupAPI so it no longer has static variables for state (shifted to the OpenGroupManager and made them instance variables)
Fixed an encoding issue with the Capabilities.Capability
2 years ago
Morgan Pretty af543b980b Made a couple of changes to how the ConfigurationMessage is generated and handled
Stopped configuration messages from automatically creating threads for sync'ed contacts (now they will only be created if there are messages)
Updated the ConfigurationMessage to stop truncating the list of contacts but filter the full set (also update the logic to include previously approved contacts)
2 years ago
Morgan Pretty f9468219d9 Code cleanup and database transaction tweaks
Updated the OpenGroupManager to be a bit more thread safe
Updated the OpenGroupManager "isModOrAdmin" check to better support the various keys of the current user
Fixed some blinding code to use an existing transaction rather than create it's own ones
Removed the Legacy API calls, handling and types
2 years ago
Morgan Pretty 81f563229f Renamed FileServerAPIV2 to FileServerAPI
Updated the direct file upload/download to use the non-base64 approaches as well
Updated the attachment 'serverId' value to be a string instead of a UInt64 (future-proofing)
Updated the OnionRequest V4 response handling to avoid converting the "response body" part to a string and processing that, instead just slice the byte array (ie. stopped it from being broken from multiple conversions)
Removed the base64-based file upload/download endpoints (no use including them when they are inefficient and we don't want to use them)
2 years ago
Morgan Pretty 1c474955de File upload working, further code cleanup
Got the updated file upload working
Removed the legacy 'room' header
Consolidated a number of types between SOGS, FileServer and general requests
Updated the OnionRequestAPI to deal with a Data payload (rather than encoding it to a string and then back to data)
2 years ago
Morgan Pretty 8ca00ca578 Fixed a number of bugs, resolved some TODOs and tested the outbox APIs
Updated the join open group method to retrieve the capabilities as part of the initial request
Updated the OpenGroupManager to require a transaction to be passed to the various 'handler' methods (allowing for everything to be processed within a single transaction)
Fixed a few issues where we weren't storing the timestamp for open group messages and DMs which could result in duplicate messages
Fixed an issue where we were setting the timestamp value for messages sent to an open group without converting it to be milliseconds to be consistent with other messages
Fixed an issue where the BatchRequestInfo could incorrectly flag it's response as failing to parse even though the type was optional
Fixed a bug where the open group would re-fetch all messages every other time
Fixed a bug where the long press context menu wouldn't appear after failing to delete a message
Fixed a bug where joining an open group would trigger the join behaviour and APIs twice
2 years ago
Ryan Zhao e8f996306d show call permission required modal when calls are nor enabled 2 years ago
Ryan Zhao 952a3d3414 minor fix for merging 2 years ago
Morgan Pretty 8a7db1d48f Started adding logic for the outbox endpoint
Moved the BlindedIdMapping retrieval logic to ContactUtilities so it's reusable
Added the 'outbox' endpoints (need testing as they aren't deployed to test yet)
2 years ago
Ryan Zhao 52407aec03 Merge branch 'ipad-support-1' into voice-calls-2 2 years ago
Morgan Pretty a26ee12f8d Further work on Id Blinding
Renamed the setter for the SOGS 'Server' object for consistency
Updated the Curve25519Kit repo to use an Oxen fork
Updated the MockDataGenerator to accomodate the latest changes
Updated the ConversationVC to better support getting replaced when the conversion from blinded to unblinded happens while on that screen
Added a cache for the mapping between blinded ids and standard ids (gets cached whenever a valid match is found)
Added a migration to remove the old 'authToken, 'lastMessageServerId' and 'lastDeletionServerId' collections (redundant in SOGS V4)
2 years ago
Morgan Pretty 3e97782d18 Merge branch 'dev' into feature/session-id-blinding-part-2
# Conflicts:
#	Session.xcodeproj/project.pbxproj
#	Session/Conversations/ConversationVC.swift
#	Session/Meta/Translations/de.lproj/Localizable.strings
#	Session/Meta/Translations/en.lproj/Localizable.strings
#	Session/Meta/Translations/es.lproj/Localizable.strings
#	Session/Meta/Translations/fa.lproj/Localizable.strings
#	Session/Meta/Translations/fi.lproj/Localizable.strings
#	Session/Meta/Translations/fr.lproj/Localizable.strings
#	Session/Meta/Translations/hi.lproj/Localizable.strings
#	Session/Meta/Translations/hr.lproj/Localizable.strings
#	Session/Meta/Translations/id-ID.lproj/Localizable.strings
#	Session/Meta/Translations/it.lproj/Localizable.strings
#	Session/Meta/Translations/ja.lproj/Localizable.strings
#	Session/Meta/Translations/nl.lproj/Localizable.strings
#	Session/Meta/Translations/pl.lproj/Localizable.strings
#	Session/Meta/Translations/pt_BR.lproj/Localizable.strings
#	Session/Meta/Translations/ru.lproj/Localizable.strings
#	Session/Meta/Translations/si.lproj/Localizable.strings
#	Session/Meta/Translations/sk.lproj/Localizable.strings
#	Session/Meta/Translations/sv.lproj/Localizable.strings
#	Session/Meta/Translations/th.lproj/Localizable.strings
#	Session/Meta/Translations/vi-VN.lproj/Localizable.strings
#	Session/Meta/Translations/zh-Hant.lproj/Localizable.strings
#	Session/Meta/Translations/zh_CN.lproj/Localizable.strings
2 years ago
Ryan Zhao f22672ccd7 Merge branch 'dev' of https://github.com/oxen-io/session-ios into preformance-improvement 2 years ago
Ryan Zhao c0615fe11d Merge branch 'dev' of https://github.com/oxen-io/session-ios into ipad-support-1 2 years ago
Morgan Pretty dbead5e3c8 Got the '/inbox' APIs and encryption/decryption/validation working
Added a few types to make the code more readable
Added the inbox request to the polling
Added a couple of properties to the TSContactThread to indicate the originating open group to support SOGS DMs
Added code to store the latest message id for an open group inbox
Added a bunch of documentation from the API docs into the OpenGroupAPI (and associated models)
Updated the OpenGroupAPI to match the latest docs
Fixed the incorrect structure of the SendDirectMessageRequest
Fixed an incorrect inbox endpoint path
Tweaked the batch response handling so it wouldn't fail to parse all responses if a single one failed
Renamed IdPrefix to SessionId.Prefix and cleaned up the type to be more readable & self-documenting
2 years ago
Ryan Zhao a8c7f517eb clean 2 years ago
Ryan Zhao ab0714af00 fix search bar cancel button for iPad 2 years ago
Morgan Pretty 582ff0997a Fixed a couple of crashes and added some mock data generation logic
Possibly fixed a crash due to a database deadlock
Fixed a crash when the first message requests gets added if there are no other threads
Added code to generate a bunch of random thread data (Needs some testing to ensure no data leaves the device)
2 years ago
Ryan Zhao eec3d31109 WIP: timer + main thread 2 years ago
Ryan Zhao 6d99976a9c database migrate for unread mention 2 years ago
Morgan Pretty 47314bd639 Added a notification to indicate the user has a new message request
Fixed a bug where the notification count could be increased for message requests
Fixed a bug where an approved contact could be 'unapproved' due to an order of execution issue when generating the config sync message
Fixed a check to avoid registering for push notifications when on the simulator (old check didn't cater for M1 Macs)
Moved the 'hasHiddenMessageRequests' into the group user defaults so it can be accessed within the notification extension
Added code to handle an edge case where an old client could incorrectly un-approve a contact via a legacy configuration message
2 years ago
Morgan Pretty 1edd500dab Updated to the latest blinding behaviour
Added a couple more dependencies for unit testing injection
Updated the MessageSender to set the sender of the message to the appropriate blinded/unblinded key
Updated the OpenGroup Message to handle verification of both blinded and unblinded messages
Updated the MessageSender to use dependency injection for it's sendToOpenGroupDestination method
Updated the JSONDecoder to support getting dependencies (for signature verification)
Fixed tests broken by updating the signing logic
2 years ago
Morgan Pretty ef09d4d5aa Additional encryption work on id blinding
Got the updated blinding logic working (at least when authenticating a request - still need to deal with message signing and verification)
Storing the server capabilities in the database now so we can correctly blind requests based on them
Renamed the remaining 'v2' functions and classes to just be 'OpenGroup' since there isn't a 'V2' anymore
Cleaned up a few TODOs and functions
2 years ago
Ryan Zhao a8fd6d9d18 fix home screen not reloading when coming into foreground 2 years ago
Ryan Zhao cc1b1e8c51 poll for open groups in NSE 2 years ago
Morgan Pretty b655882cbd Started resolving TODOs
Added some new properties to the OpenGroupV2
Moved a number of methods and variables from OpenGroupAPI to OpenGroupManager (anything doing actual logic)
Moved the message signing into the OpenGroupAPI (since that's the only place it happens)
Renamed remaining old model classes to start with 'Legacy' to make clean up easier
Updated the OpenGroupAPI poll method to use the same logic as it previously did to determine if it should retrieve recent messages or messages since the last one
2 years ago
Ryan Zhao 56d4d8e674 bump up version & build number 2 years ago
Morgan Pretty 8cc9caa0fd Renamed the OpenGroupPollerV2 and OpenGroupManagerV2 2 years ago
Morgan Pretty 63e6cdd9ec Renamed OpenGroupAPIV2 to OpenGroupAPI
Added the inbox endpoints
2 years ago
Morgan Pretty 4963a84ddd Added more unit tests for the OpenGroupAPI (fixed a couple bugs as well) 2 years ago
Morgan Pretty eb927c36a9 Started cleaning up some of the SOGS and Onion Requests structure
Cleaned up the OnionRequestAPI so we don't need the LegacyOnionRequestAPI
Added requests for the user endpoints
Added deprecated flags to the legacy endpoints and functions
Added some logic to start handling the new poll (batch) response
Started adding unit tests for the OpenGroupAPI functions
2 years ago
Morgan Pretty 051f03f4b4 PR comments and a few missed use cases
Disabled the attachments and voice message buttons for the first message
Disabled the Disappearing Messages flag for the until the conversation is approved
Fixed a bug where the recipient of a message request could incorrectly get the 'pending approval' state
Refactored some standard auto layout code to use the custom extension code
2 years ago
Morgan Pretty c90f346d6a Further SOGS V4 integration work
Added in the v4 onion requests logic
Added in the new pin/unpin APIs
Split up additional legacy methods to try and simplify the refactoring
Added a number of TODOs around usage of legacy request methods
2 years ago
Morgan Pretty 4f3900771e More work on getting SOGS V4 integrated
Updated the MessageSendJob to support V4 messages (V2 messages will be upgraded to V4 if they get re-encoded)
Renamed the Message+Destination from 'openGroup' & 'openGroupV2' to 'legacyOpenGroup' and 'openGroup'
Started plugging in more of the V4 APIs
Renamed a number of the V2 APIs to start with 'legacy'
2 years ago
Morgan Pretty 2284375fc0 Started work on updated SOGS support
Split the OpenGroupAPIV2 into separate files
Started working on the new auth and blinded-id approaches (new auth working with un-blinded id suggesting blinded-id code is incorrect)
Updated the SOGS request/response types to use Codable
Updated the SOGS Request type to use enums instead of strings for keys (to reduce likelihood of typos breaking things)
Updated SessionMessagingKit to use Codable and JSONEncoder/JSONDecoder instead of the legacy JSONSerialization
Cleaned up some naming conventions in the SessionMessagingKit (calling a URLRequest body 'parameters' is very confusing...)
Removed the custom TSRequest class (just using standard URLRequest everywhere instead)
Added a number of extension functions to enable some more functional-coding styles
Added extensions to Sodium methods to allow scalar multiplication and the ability to hash providing a salt and a personalisation value (both needed for new SOGS auth)
Fixed an issue where the legacy auth for SOGS could crash due to threading issues (multiple threads accessing the same variable)
Fixed an issue where if you were in two rooms in a single SOGS and deleted one of them, the other room would stop getting updates as the server public key was getting removed
2 years ago
Morgan Pretty 394b0646a3 Updated the code to support additional session id prefixes 2 years ago
Ryan Zhao be1767a4ba clean 2 years ago
Ryan Zhao 80b18f0715 fix local video view weird rotation behaviour 2 years ago
Ryan Zhao 782dd20ddd implement screen rotation for video calls 2 years ago
Ryan Zhao d8401165cc bump up version & build number 2 years ago
Ryan Zhao 2d9f962a97 Merge branch 'dev' of https://github.com/oxen-io/session-ios into voice-calls-2 2 years ago
Morgan Pretty cd61fb8df0 Merge branch 'dev' into feature/message-requests
# Conflicts:
#	Session.xcodeproj/project.pbxproj
#	SignalUtilitiesKit/Utilities/UIColor+Extensions.swift
2 years ago
Ryan Zhao b1c2802613 update pods 2 years ago
Ryan Zhao 69e464e8ae bump up version & build number 2 years ago
Morgan Pretty 4d62ddbd77 Merge branch 'dev' into fix/safari-sharing
# Conflicts:
#	Podfile.lock
2 years ago
Morgan Pretty 9db5083cc5 Built out the Message Request functionality
Added the MessageRequestsViewController
Added a 'Message Requests' button to the settings screen
Added accept/reject buttons for message requests to the ConversationVC
Added the ability to hide the message request item on the HomeVC (re-appears if you get a new message request)
Added code to handle an edge-case where the message request approval state wouldn't be returned to the sender due to the recipient running an old version of the app
Prevented contacts which aren't associated with an approved thread from appearing when creating a closed group
Disabled notifications for threads which aren't approved
Updated the app notification count to exclude unapproved messages
Updated the app to ignore closed group creation messages if the group has no admins which are approved contacts
Fixed up the keyboard avoidance behaviour in the ConversationVC
Fixed a couple of minor interaction issues which affected some devices
Fixed an issue where the database migrations would run on the 2nd launch when creating a new account (causing odd behaviours)
2 years ago
Ryan Zhao 18fea4ab73 Merge branch 'dev' into global-search 2 years ago
Morgan Pretty 09d63456b6 Merge branch 'dev' into fix/safari-sharing
# Conflicts:
#	Podfile
#	Podfile.lock
#	Session.xcodeproj/project.pbxproj
2 years ago
Ryan Zhao 85c4b3d745 show recent search result as default for global search screen 2 years ago
Ryan Zhao 68ec1654e8 rebuild global search UI 2 years ago
Morgan Pretty 03fb5cbeeb Cleanup and tweaks
Fixed some compilation issues.
Removed an unused dependency.
Cleaned up the Podfile to minimise duplication.
Pointed at an oxen fork of SignalCoreKit instead of a personal one.
2 years ago
ryanzhao fed1218538 WIP: global search UI 3 years ago
Morgan Pretty 61f809caee Fixed a couple of bugs and started UI refactoring
Refactored the UI creation and layout code in the attachments UI.
Started refactoring the UI in the MediaMessageView (converting the existing stuff and will then consolidate when done).
Fixed a bug where playing a video attachment would result in the zoom continually getting reset.
Fixed a bug where the attachment zoom scale would randomly change causing odd behaviours.
3 years ago
Morgan Pretty 4f3faa28bc Refactored SessionShareExtension code to Swift 3 years ago
Ryan Zhao 544881fa69 bump up build number 3 years ago
Ryan Zhao ef2749d72d bump up build number 3 years ago
Ryan Zhao 7a22c9d329 update build number 3 years ago
Ryan Zhao 19cb916fa1 update version & build number 3 years ago
ryanzhao 44cf3c4d46 update build number 3 years ago
Ryan Zhao 6ac075fa5a update build number 3 years ago
Ryan Zhao d754311395 update version & build number 3 years ago
Ryan Zhao 8443818020 bump up build number 3 years ago
Ryan Zhao 5e87e9ceeb bump up build number 3 years ago
Ryan Zhao 9e4e126ef3 add call missed tips 3 years ago
Ryan Zhao 570c3fbe3b add ringtone and other UI improvement 3 years ago
Ryan Zhao 9e6c81d28b improve call message UI 3 years ago
Ryan Zhao 0a3d84d5c8 WIP: Call message Ui improvements 3 years ago
Ryan Zhao 78971b7d09 ignore call messages over 60s 3 years ago
Ryan Zhao 75658e1720 update build number 3 years ago
Ryan Zhao af16416898 update .gitignore 3 years ago
Ryan Zhao 74ef42558b add turn server info 3 years ago
Ryan Zhao d3a2b456f1 handle permission request for voice and video calls 3 years ago
ryanzhao bd0a89184b update build number 3 years ago
ryanzhao a6e5eb6fd6 update version number 3 years ago
ryanzhao bef20e2f9a refactor for CallKit 3 years ago
ryanzhao 4db87992b2 refactor for voip push notification 3 years ago
ryanzhao 0ef7bdc9ce refactor to plug in callkit 3 years ago
ryanzhao 365231f309 update build number 3 years ago
ryanzhao e2de82a11d WIP: webRTC + callkit 3 years ago
ryanzhao dea57081c7 WIP: callkit & pushkit 3 years ago
ryanzhao e529e68cb2 update build number 3 years ago
ryanzhao 1231b9c20a add preview before staring video 3 years ago
ryanzhao 7b23b8f601 Merge branch 'dev' of https://github.com/oxen-io/session-ios into voice-calls-2 3 years ago
ryanzhao a31700865a update build number 3 years ago
ryanzhao ecf92ceeea fix PN sound settings not applying to remote PNs 3 years ago
ryanzhao e51bd3b819 update version number 3 years ago
ryanzhao 78497d7eec update build number 3 years ago
ryanzhao 9b9a5d7a39 improve vibration for incoming calls 3 years ago
ryanzhao a1f8e16eb3 WIP: add mini call floating view 3 years ago
ryanzhao 0eba1eb14f update build number 3 years ago
ryanzhao fbe5b12c9d WIP: incoming call banner 3 years ago
ryanzhao 36f3f83298 update build number 3 years ago
ryanzhao 3b545ca618 Merge branch 'dev' of https://github.com/oxen-io/session-ios into voice-calls-2 3 years ago
ryanzhao c85b9020b9 update version number 3 years ago
ryanzhao 7aa751ca45 share log files in settings vc 3 years ago
ryanzhao 23fb69ba6f add incoming/outgoing call message bubble 3 years ago
ryanzhao 9030710d9d add data channel 3 years ago
ryanzhao daee269a7a Merge branch 'dev' into voice-calls-2 3 years ago
ryanzhao 5ccb84bcf0 update build number 3 years ago
ryanzhao 7e89c28038 update build number 3 years ago
ryanzhao bfe24ee7bb update version number 3 years ago
ryanzhao e049d05891 update translations 3 years ago
ryanzhao 592dd7b3d8 update version number 3 years ago
ryanzhao 6e07c56e7d Merge branch 'master' of https://github.com/oxen-io/session-ios into voice-calls-2 3 years ago
ryanzhao d60bbdb315 update build number 3 years ago
ryanzhao a25ef77f9a update version number 3 years ago
Niels Andriesse d6f1553050 Update build number 3 years ago
Niels Andriesse fff117e633 Update build number 3 years ago
Niels Andriesse cb2fb4497d Update version number 3 years ago
Niels Andriesse 027f9b2a87 Install pods 3 years ago
Niels Andriesse e81e25d447 Merge branch 'dev' into voice-calls-2 3 years ago
Niels Andriesse e226b9a273 Fix copyright notice 3 years ago
Niels Andriesse 8280748b39 Improve logging 3 years ago
Niels Andriesse 3206ce380e Rename WebRTCWrapper → WebRTCSession 3 years ago
Niels Andriesse e899804b85 Rename CallVCV2 → CallVC 3 years ago
Niels Andriesse 525eb40d8d Make signaling happen using Session messages 3 years ago
Niels Andriesse 0749510f4e Minor refactoring & clean up WebRTC constraints 3 years ago
Niels Andriesse c00ddde64d Remove unused code 3 years ago
Niels Andriesse 662fc945e2 Refactor CallVC 3 years ago
Niels Andriesse 4dd218daf6 Delete unused MockTURNServer 3 years ago
Niels Andriesse 49d93b9cfd Clean up TestCallServer 3 years ago
Niels Andriesse 8b187641b8 Clean up TestCallConfig 3 years ago
Niels Andriesse 36962cc059 Clean up WebSocket 3 years ago
Niels Andriesse 876814dd43 Basic proof of concept 3 years ago
Niels Andriesse f1f48ec865 Further implement CallVC 3 years ago
Niels Andriesse eb2cba7410 Add MockCallServer 3 years ago
Niels Andriesse 74e9cacd58 Implement MockWebSocket 3 years ago
Niels Andriesse 32426f9005 Add CallVC 3 years ago
Niels Andriesse 9e70432ec9 Update project settings 3 years ago
Niels Andriesse 4fd720cbc9 Implement MockCallConfig 3 years ago
Niels Andriesse 9664274a21 Rename TURNServer → MockTURNServer 3 years ago
Niels Andriesse 170da7a276 Implement VideoCallVC & CameraManager 3 years ago
Niels Andriesse b513eeb898 Add mock TURN server implementation 3 years ago
Niels Andriesse 72469f78f1 Fix organization name 3 years ago
Niels Andriesse 67792ad15f Add UI utilities 3 years ago
Niels Andriesse 1a12199d0b Implement CallManager 3 years ago
Niels Andriesse 030c869d06 Add WebRTC dependency & implement CallMessage 3 years ago
ryanzhao 03fde557fc Merge branch 'dev' of https://github.com/oxen-io/session-ios into unsend-message 3 years ago
Niels Andriesse 530bb7983a Update version number 3 years ago
Ryan Zhao 6e45aed71b Merge branch 'dev' of https://github.com/oxen-io/session-ios into unsend-message 3 years ago
Ryan Zhao eaab6ee22d deleted message UI in conversation screen 3 years ago
Ryan Zhao ab492d5304 Merge branch 'dev' of https://github.com/oxen-io/session-ios into unsend-message 3 years ago
Niels Andriesse 29acca574c Update build number 3 years ago
Niels Andriesse d76d04d0f5 Merge branch 'dev' into conversation-ui 3 years ago
Niels Andriesse 1dc463a9ed Update build number 3 years ago
ryanzhao dd2f8c7df9 Merge branch 'dev' of https://github.com/oxen-io/session-ios into unsend-message 3 years ago
Niels Andriesse 7043e83ea3 Merge branch 'dev' into conversation-ui 3 years ago
Niels Andriesse c132b16d01 Update build number 3 years ago
Niels Andriesse 7f0b87a2b2 Avoid unnecessary conversation screen updates 3 years ago
Ryan Zhao 885e9296d1 Merge branch 'dev' of https://github.com/oxen-io/session-ios into unsend-message 3 years ago
Niels Andriesse 9b525f77b6 Update build number 3 years ago
Niels Andriesse 6851531014 Update build number 3 years ago
Ryan Zhao d9dde64e5f Merge branch 'dev' of https://github.com/oxen-io/session-ios into unsend-message 3 years ago
Ryan Zhao dff99cf0fc add unsend request proto 3 years ago
Niels Andriesse 1543dc7b1f Update build number 3 years ago
Niels Andriesse ec4ce64887 Update build number 3 years ago
Niels Andriesse c4fafa132d Update build number 3 years ago
Niels Andriesse 2bffc3b830 Update build number 3 years ago
Niels Andriesse 02a318a1e3 Update build number 3 years ago
Niels Andriesse c90009d5fd Update version number 3 years ago
Niels Andriesse 81287f2b97 Update build number 3 years ago
Niels Andriesse ab42433a96 Update build number 3 years ago
Niels Andriesse ac730e00b4 Update build number 3 years ago
Niels Andriesse 8a1070cc8e Update build number 3 years ago
Niels Andriesse 44288c45e9 Fix auto scroll to bottom bug 3 years ago
Niels Andriesse 8183e8ea80 Update version number 3 years ago
Niels Andriesse 6d2044f230 Warn users if they're about to send their recovery phrase to someone 3 years ago
Niels Andriesse 5fca1de866 Update the build number again
App Store processing is stuck
3 years ago
Niels Andriesse 614626bffb Update build number 3 years ago
Niels Andriesse d2161545d6 WIP 3 years ago
Niels Andriesse 595080aba2 Update build number 3 years ago
Niels Andriesse 769dccb902 Update version number 3 years ago
Niels Andriesse dfdffc607c Make profile pictures tappable 3 years ago
Niels Andriesse a5beb8af06 Update build number 3 years ago
Niels Andriesse 06a3eaad2d Update build number 3 years ago
Niels Andriesse 5003a78a6f Update version number 3 years ago
Niels Andriesse 13e255892f Update build number 3 years ago
Niels Andriesse 08a3f3b476 Update version number 3 years ago
Niels Andriesse 8a7d3f5d6a Update build number 3 years ago
Niels Andriesse b5999f2fc7 Update version number 3 years ago
Niels Andriesse e296f0f814 Update build number 3 years ago
Niels Andriesse 937ad15050 Update version number 3 years ago
Niels Andriesse 57ebadcbdb Update translations 3 years ago
nielsandriesse 90f6b6f5b9 Update build number 3 years ago
nielsandriesse 56c2482b8e Update build number 3 years ago
nielsandriesse ae4e781055 Update build number 3 years ago
nielsandriesse f4d63ba48e Update version number 3 years ago
nielsandriesse a835f3e6d4 Add Finnish translation 3 years ago
nielsandriesse 235db55efb Add Hindi to translations list 3 years ago
nielsandriesse fb8bf6cbd2 Update build number 3 years ago
nielsandriesse 2730804e4a Update version number 3 years ago
nielsandriesse bf9d860214 Batch thread updates 3 years ago
Niels Andriesse 3d5d07fba3 Update build number 3 years ago
Niels Andriesse ac681c3bc2 Fix missing font 3 years ago
Niels Andriesse 3a5eeeb8ba Update version number 3 years ago
Niels Andriesse 3fda8daec9 Merge branch 'dev' into cleanup 3 years ago
Niels Andriesse 1e246389be Clean 3 years ago
Niels Andriesse cde644e693 Merge branch 'dev' 3 years ago
Niels Andriesse fe3493ff12 Update version number 3 years ago
Niels Andriesse 08fc17e0f9 Remove file server instability modal 3 years ago
Niels Andriesse 0fe8dc7aee Update build number 3 years ago
nielsandriesse 1d028e5f6c Add file server instability modal 3 years ago
nielsandriesse b1bb087c75 Update version number 3 years ago
nielsandriesse 340b9fcdf0 Update build number 3 years ago
nielsandriesse 4da8a0933c Add file server instability modal 3 years ago
nielsandriesse 8dffa249bb Update version number 3 years ago
nielsandriesse 8338ba3eca Update build number 3 years ago
Niels Andriesse 9cff7f8d4f Update build number 3 years ago
Niels Andriesse 8fcb8e562d Add Chinese (traditional) translation 3 years ago
Niels Andriesse 2218788858 Update build number 3 years ago
Niels Andriesse 1f6a00d9e4 Update build number 3 years ago
Niels Andriesse 0027481afe Update build number 3 years ago
Niels Andriesse 31f1a2e827 Update build number 3 years ago
Niels Andriesse f3afcc175e Update build number 3 years ago
nielsandriesse ce90620a23 Update build number 3 years ago
Niels Andriesse 428a61f9f9 Update build number 3 years ago
Niels Andriesse e4d1925436 Show confirmation dialog 3 years ago
Niels Andriesse bd04775cbf Implement open group invitations UI 3 years ago
Niels Andriesse e3671291c5 Merge branch 'dev' into cleanup 3 years ago
Niels Andriesse 9c5ceecc85 Update build number 3 years ago
Niels Andriesse 3813f6d643 Add Dutch translation 3 years ago
Niels Andriesse 9a9644bbb1 Update version number 3 years ago
Niels Andriesse 94902f7153 Delete old implementation 3 years ago
Niels Andriesse 1a11476b85 Fix screen lock handling 3 years ago
Niels Andriesse 4e487dd368 Display all threads 3 years ago
nielsandriesse 8751a87641 Prep for new share extension 3 years ago
Niels Andriesse 65d96d1c2b Update version number 3 years ago
Niels Andriesse 038bc3a44d Update build number 3 years ago
nielsandriesse b01b989815 Remove unused fonts 3 years ago
nielsandriesse 06f795169b Merge branch 'dev' into cleanup 3 years ago
nielsandriesse f46fb7dbd1 Update build number 3 years ago
nielsandriesse a098ba7125 Remove unused code 3 years ago
nielsandriesse 1bfc5617bf Update version number 3 years ago
Niels Andriesse 82eb5e115d Update build number 3 years ago
Niels Andriesse d742fc1548 Delete V1 OGS & file server 3 years ago
Niels Andriesse f552d51423 Remove unused code 3 years ago
Niels Andriesse 1aeee6875e Update build number 3 years ago
Niels Andriesse 415249777d Update build number 3 years ago
Niels Andriesse 385aae9c99 Update build number 3 years ago
Niels Andriesse 9b2f1fc2a4 Update build number 3 years ago
Niels Andriesse 236180d6f4 Update build number 3 years ago
Niels Andriesse 62d9f84603 Add Slovak translation 3 years ago
Niels Andriesse cb72194983 Update build number 3 years ago
Niels Andriesse 3c68e1bd8c Update build number 3 years ago
Niels Andriesse 1248de38fc Update build number 3 years ago
Niels Andriesse 57ca2c2138 Update build number 3 years ago
Niels Andriesse f54df6eab1 Fix build 3 years ago
Niels Andriesse 16c2639bf2 Update build number 3 years ago
Niels Andriesse 7ec72e67fa Update build number 3 years ago
Niels Andriesse 91c06ac072 Update build number 3 years ago
Niels Andriesse b238afd9df Update build number 3 years ago
Niels Andriesse 2b6021f456 Update build number 3 years ago
nielsandriesse 5c16a95472 Update version number 3 years ago
Niels Andriesse e9df213bfe Put feature flags in one place 3 years ago
Niels Andriesse 862b4c0512 Delete unused OWSAttachmentDownloads 3 years ago
Niels Andriesse 3e11c505e2 Create FileServerAPIV2 3 years ago
nielsandriesse 091cb61d23 Clean & update version number 3 years ago
Niels Andriesse 766c351869 Update version number 3 years ago
Niels Andriesse 0296416b1a Update version number 3 years ago
Niels Andriesse c154a45389 Update build number 3 years ago
Niels Andriesse af94ae84b8 Update build number 3 years ago
Niels Andriesse 8590e67271 Update version number 3 years ago
nielsandriesse a360fa7721 Merge branch 'dev' into deferred-attachment-downloads 3 years ago
nielsandriesse a2f98b0463 Update version number 3 years ago
nielsandriesse 75f5591fe0 Store certificates in DER format 3 years ago
Niels Andriesse 2687d9c968 Use proper API 3 years ago
Niels Andriesse edc4a7a71b Move files 3 years ago
Niels Andriesse 9da6b6c31f Add certificates 3 years ago
Niels Andriesse 5163ab8953 Update build number 3 years ago
Niels Andriesse 6fbd9a44b3 Update build number 3 years ago
Niels Andriesse bd32f4fb37 Update version number 3 years ago
Niels Andriesse 6c84e922a5
Merge pull request #370 from oxen-io/open-groups
V2 Open Groups
3 years ago
Niels Andriesse 7558e0b32a Re-enable joining V1 open groups 3 years ago
Niels Andriesse e2814fb884 Implement open group suggestion grid 3 years ago
nielsandriesse 717fe32a73 Fix build 3 years ago
nielsandriesse 4c9728b4fe Update other APIs for V2 open groups 3 years ago
Niels Andriesse 34bbff1ab4 Implement OpenGroupAPIV2 3 years ago
Niels Andriesse 92feb90449 Update version number 3 years ago
Niels Andriesse ede6deb259 Update version number 3 years ago
Niels Andriesse b9b3a4b584 Update build number 3 years ago
Niels Andriesse 960e500acd Don't auto-download attachments from untrusted contacts 3 years ago
Niels Andriesse a1c23394d6 Remove unused pods 3 years ago
Niels Andriesse 54fc54e7b9 Minor refactoring 3 years ago
Niels Andriesse 2b4e3a8b74 Update version number 3 years ago
nielsandriesse 105b54d84e Update version number 3 years ago
Niels Andriesse 08015f570f Create DataExtractionNotificationInfoMessage 3 years ago
Niels Andriesse b1cd34c9b4 Create DataExtractionNotification 3 years ago
Niels Andriesse b202ea878c Update build number 3 years ago
Niels Andriesse 799458b03f Update build number 3 years ago
Niels Andriesse 7dee8b6507 Update version number 3 years ago
Niels Andriesse a8e5e4d535 Update build number 3 years ago
Niels Andriesse 68d9b6c747 Update build number 3 years ago
Niels Andriesse 7284244b65 Update build number 3 years ago
Niels Andriesse 0b2f60d9f8 Update build number 3 years ago
Niels Andriesse 1a09ee3619 Scroll to last unread message upon opening a conversation 3 years ago
Niels Andriesse f7a4df5a3b Update build number 3 years ago
Niels Andriesse 686fc99a75 Update build number 3 years ago
Niels Andriesse cf07fc1b1a Implement nicknames 3 years ago
Niels Andriesse 3899d43258 Update build number 3 years ago
Niels Andriesse dd0baf0d97 Unify contacts APIs 3 years ago