paw-hub
paw-hub
Apple devices have this swapped, so we need to register it swapped. For example, CTRL-S on Linux is equivalent to CMD-S on macOS (for saving a draft). Also fix KeyManager's...
The ContactsSynchronization class is quite large but also quite untested, and it touches a lot of native stuff. The methods for updating contacts need to be tested.
Fixes #6956
Note when merging to dev-mail: Do not attempt to rebase the last commit `[sdk] Update formatting`. You should drop the commit (no revert) and re-run `cargo fmt`, then commit the...
We cannot provide multiple users as an option to iOS users due to subscription limitations, so we shouldn't advertise it. # Test notes - [ ] On iOS, with usage...
We cannot offer this as a feature to iOS users due to limitations with iOS subscriptions. Closes #7195
There are a few fields where we don't use `input type="email"` but shouldn't be capitalized. As such, mobile devices automatically capitalize these fields, although it seems to not be consistent...
We can use a regex with a chained 'or' expression, and it will try to greedily match as much as possible. This also simplifies the code a bit, removing one...