sforst
sforst
if the database uses a strict setting `STRICT_TRANS_TABLES` (https://mariadb.com/kb/en/sql-mode/#strict_trans_tables) then incorrect queries (empty string instead of zero) will result in an error. `STRICT_TRANS_TABLES` is part of the defaults in mariadb...
`STRICT_TRANS_TABLES` is part of the defaults in mariadb and mysql https://mariadb.com/kb/en/sql-mode/#defaults https://dev.mysql.com/doc/refman/8.0/en/sql-mode.html#sql-mode-strict Which is a good thing, as it helps find errors. The issue is that lansuite heavily relies on...
As discussed here: https://github.com/keepassxreboot/keepassxc/issues/1775#issuecomment-983056115 This change provides the ability to sync a database with a remote database with the help of `scp`. (Fixes #1775) The `RemoteSettingsDialog` works similar to `DatabaseSettingsDialog`...
**Is your feature request related to a problem? Please describe.** If a task is created somewhere else and a start date is set (not sure about due date, though) and...
[NOTE]: # ( Describe your changes in detail, why is this change required? ) [NOTE]: # ( Explain large or complex code modifications. ) [NOTE]: # ( If it fixes...
[NOTE]: # ( Describe your changes in detail, why is this change required? ) [NOTE]: # ( Explain large or complex code modifications. ) [NOTE]: # ( If it fixes...
[NOTE]: # ( Describe your changes in detail, why is this change required? ) [NOTE]: # ( Explain large or complex code modifications. ) [NOTE]: # ( If it fixes...
`SKBitmap.Decode` can return `null` in case it is not able to decode the image. See https://github.com/Difegue/Stylophone/blob/dev/Sources/Stylophone.Common/Services/AlbumArtService.cs#L249 In this case an error is shown to the user. IMHO, a null check...