Commit Graph

18558 Commits (a02bc55445ebeed6bd07de95839583a59ed269f7)
 

Author SHA1 Message Date
Morgan Pretty a02bc55445 Fixed an endless loading state when clearing data with no network 7 months ago
Morgan Pretty 3366408187 Removed a delay before starting pollers which is no longer needed 7 months ago
Morgan Pretty 09adaa34a4 libSession update - local swarm calculation 7 months ago
Morgan Pretty 7e771467d6 Fixed an issue with push notifications in legacy groups
• Reworked the NotificationServiceExtension to just always reset and reload it's state to avoid weird bugs
• Updated the legacy group messages to fallback to using a locally generated serverHash if one isn't provided (always happens for legacy PNs)
• Include error info when failing to process extension logs
• Made a bunch of the Storage functions instance functions instead of static functions
7 months ago
Morgan Pretty 533afa2af0 Tweaked the static upload script to ignore the branch name for tags 7 months ago
Morgan Pretty 645e24a573 Fixed an issue where legacy group push notifications weren't working 7 months ago
Morgan Pretty d38e620e8e Fixed a regression when updating config messages
Doing a config push was working via `Atomic.wrappedValue` instead of `Atomic.mutate` - we need to use `Atomic.mutate` in this case because we want to block other threads from modifying the config while we are doing a push (otherwise it can crash due to data changing while generating the push payload)
7 months ago
Morgan Pretty 31e5719318 Updated libSession (tweaks to some usages of 'wrap_exceptions') 7 months ago
Morgan Pretty 1396652698 Refactored the DSL for interacting with C structs
There were a few logs related to bad memory access within libSession and the `toLibSession` convention which we'd originally setup made me nervous as C-friendly objects would be allocated in Swift and then assigned to C struct properties but I'm not sure how the memory would actually behave in this case.

This updated approach unfortunately involves a bunch of duplicate code within 'TypeConversion+Utilities' (and some horrible type aliases for tuples) but as a result we now have compile-time safe 'get' and 'set' functions for any C struct which conforms to `CAccessible` and `CMutable`. The other nice benefit about this change is that the new `set` functions copy memory across into the C structs so we can have more confidence that the memory ownership has shifted to the libSession side of things.
7 months ago
Morgan Pretty f7626939e6 Fixed a crash which could occur when taking a photo via the app failed 7 months ago
Morgan Pretty 09a14358ee Updated to the latest GRDB (use pre-built framework to cut ~30 sec from build time) 7 months ago
Morgan Pretty 597f94a954 Fixed an issue where you could answer calls without having the mic permission 7 months ago
Morgan Pretty e1aedb36da Fixed a few bugs found when testing strings
• Fixed an issue where creating a legacy group could be blocked by the legacy PN subscription failing (was part of the synchronous request)
• Fixed an issue where the code would incorrectly use profile data from incoming messages sent from the current user to update it's profile info
• Fixed an issue where saving media would fail silently if the user had rejected the OS permission
• Refactored a little code around profile changes to make things more readable
7 months ago
Morgan Pretty 3a1f086d0c Reworked deadlock handling, fixed a few other issues
• Fixed an issue where the background task to finish sending messages may not have sent the sync message or the main message after and upload
• Fixed an issue where the SessionBackgroundTask was incorrectly reporting a failure to be created
• Fixed an incorrect modal action colour
• Fixed a crash when creating legacy groups
• Updated the code so that we take charge of resolving the deadlock issue instead of relying on GRDB to do it
• Updated the logic to timeout the SessionBackgroundTask with 5 seconds of background time remaining (to ensure we have enough time to suspend the network & database)
7 months ago
Morgan Pretty 39e7005be9
Merge pull request #1013 from mpretty-cyro/fix/legacy-group-key-generation
Fixed a legacy group message decryption issue
7 months ago
Morgan Pretty 67830ed767 Fixed a legacy group message decryption issue
Fixed a bug where we were incorrectly generating and requiring 64 byte secrets for legacy groups (we only need 32 bytes), since we do length checks before calling the libSession C API (to prevent crashes) we would fail before attempting to decrypt because the key was too short
7 months ago
Morgan Pretty 6cb3bdbcad
Merge pull request #1012 from mpretty-cyro/fix/convo-settings-accessibility-id
Added accessibilityIds to thread settings switches
7 months ago
Morgan Pretty c5efbbf445 Fixed a build error 7 months ago
Morgan Pretty d508972d32 Added accessibilityIds to thread settings switches 7 months ago
Morgan Pretty 789a887d42
Merge pull request #1009 from mpretty-cyro/fix/table-update-crashes
Removed settings data change animations, fixed settings dismiss bug
7 months ago
Morgan Pretty b3e7fa66fc Removed settings data change animations, fixed settings dismiss bug
• Remove the data change animations on the settings screens as they were causing frequent crashes
• Fixed an issue where deleting a message request via settings would dismissing the settings screen
7 months ago
Morgan Pretty 43107de2e3
Merge pull request #1008 from mpretty-cyro/release/2.7.1
Release 2.7.1 bugfixes
7 months ago
Morgan Pretty 027ce1604d Fixed a few issues found during QA
• Fixed an issue where incoming legacy group messages were failing to decrypt
• Fixed an issue where decoding push notifications could result in an infinite loop
• Fixed an issue where the extensions would incorrectly try to append extension logs (only want the main app to do this)
• Updated the accessibility ids for the switches and radios on the privacy and disappearing message settings screens
7 months ago
Morgan Pretty 5da842a109 Fixed an issue where joinedAt wasn't getting set for legacy groups 8 months ago
Morgan Pretty 64b6eec706
Merge pull request #19 from mpretty-cyro/fix/add-back-accessibility-id
Added back incorrectly removed accessibilityIds, bumped build number
8 months ago
Morgan Pretty 0c3fa08388
Merge pull request #1006 from mpretty-cyro/fix/add-back-accessibility-id
Added back incorrectly removed accessibilityIds, bumped build number
8 months ago
Morgan Pretty c5feb76759 Added back incorrectly removed accessibilityIds, bumped build number 8 months ago
Morgan Pretty 57a76dc141
Merge pull request #988 from mpretty-cyro/feature/swift-package-manager
Replaced Cocoapods with Swift Package Manager for dependency management
8 months ago
Morgan Pretty 140d429830 Updated to the latest libSession version 8 months ago
Morgan Pretty 7d38c9066c Reworked unobserved change handling to try to resolve crash (regenerate changeset) 8 months ago
Morgan Pretty 69de29912c Clearing libSession logger when clearing data (seemed to cause crash) 8 months ago
Morgan Pretty 07cbbbbd94 Fixed compile issue and bumped version number 8 months ago
Morgan Pretty 2032dafc74 Merge remote-tracking branch 'upstream/dev' into feature/swift-package-manager
# Conflicts:
#	SessionMessagingKit/Sending & Receiving/Message Handling/MessageReceiver+ExpirationTimers.swift
#	SessionMessagingKit/Sending & Receiving/MessageReceiver.swift
#	SessionSnodeKit/Networking/SnodeAPI.swift
#	SessionUtilitiesKit/Media/DataSource.h
#	SessionUtilitiesKit/Media/DataSource.m
8 months ago
Morgan Pretty 2b9412164d
Merge pull request #1002 from mpretty-cyro/fix/no-version-check-when-testing
Added code to defer the CheckForAppUpdatesJob when running tests or sim
8 months ago
Morgan Pretty b0c40c678a
Merge pull request #1004 from mpretty-cyro/fix/remove_incorrect_contact_actions
Removed the incorrect swipe actions from the contacts list
8 months ago
Morgan Pretty 432238debe
Merge pull request #970 from RyanRory/disappearing-messages-v2-post-enabling
Cleaning up legacy disappearing messages
8 months ago
Morgan Pretty 634e564902
Merge pull request #996 from mpretty-cyro/fix/minor-deadlock-improvements
Number of fixes and tweaks related to the deadlock issue
8 months ago
Morgan Pretty af463d874e Merge remote-tracking branch 'upstream/dev' into fix/minor-deadlock-improvements
# Conflicts:
#	SessionMessagingKit/Sending & Receiving/Pollers/OpenGroupPoller.swift
8 months ago
Morgan Pretty 009c017ca2
Merge pull request #995 from RyanRory/observing-sogs-permission-change
Show message input box when permission changed in a convo
8 months ago
Morgan Pretty 2c61ed8c44
Merge pull request #997 from mpretty-cyro/fix/attachment-item-hash
Fixed a SignalAttachment hash uniqueness issue, fixed attachment UX issues
8 months ago
Morgan Pretty 3ef753669e
Merge pull request #998 from mpretty-cyro/fix/ip2country-explicit-int-sizing
Defensive coding and attempt to fix crash on launch related to IP2Country
8 months ago
Morgan Pretty 21b5439a63
Merge pull request #1000 from mpretty-cyro/feature/minor-theme-change
Minor theme change
8 months ago
Morgan Pretty ea1394225e Removed the incorrect swipe actions 8 months ago
Morgan Pretty d399eeaf73 Tweaks to IP deduping logic, fixed a CSV parsing bug, re-ran script 8 months ago
Morgan Pretty 6c07bac03b Merge remote-tracking branch 'upstream/dev' into fix/ip2country-explicit-int-sizing 8 months ago
Morgan Pretty 65f70ff1e3
Merge pull request #1001 from bemusementpark/deduplicate-ip
Deduplicate IP2Country
8 months ago
Morgan Pretty 31ae994941 Added Keychain migration code just in case (really shouldn't be needed) 8 months ago
Morgan Pretty b451d1ac04 Added code to defer the CheckForAppUpdatesJob when running tests or sim 8 months ago
Morgan Pretty fd8fdb1105 Updated the PrimaryFillButton text colours 8 months ago
Morgan Pretty d44871e2a8 Fixed an issue where ONS lookups stopped working 8 months ago