- 08 Dec, 2023 - 1 commit
-
-
Andrea Gianarda authored
-
- 05 Dec, 2023 - 1 commit
-
-
Andrea Gianarda authored
-
- 24 Nov, 2023 - 1 commit
-
-
Anthony Gauchy authored
-
- 07 Nov, 2023 - 1 commit
-
-
Andrea Gianarda authored
-
- 03 Nov, 2023 - 1 commit
-
-
Peio Rigaux authored
-
- 23 Oct, 2023 - 2 commits
-
-
Andrea Gianarda authored
-
Andrea Gianarda authored
chat_room_participant_device_clone. Delete temporary tables before updating schema in order to start with a clean sheet
-
- 19 Oct, 2023 - 1 commit
-
-
johan authored
+ SRTP AES128-GCM is the default mode
-
- 18 Oct, 2023 - 1 commit
-
-
Julien Wadel authored
-
- 17 Oct, 2023 - 1 commit
-
- 16 Oct, 2023 - 1 commit
-
-
Andrea Gianarda authored
-
- 04 Oct, 2023 - 1 commit
-
-
Andrea Gianarda authored
-
- 03 Oct, 2023 - 1 commit
-
-
Simon Morlat authored
-
- 29 Sep, 2023 - 1 commit
-
-
Andrea Gianarda authored
-
- 26 Sep, 2023 - 1 commit
-
-
Andrea Gianarda authored
- SQLite doesn't allow to modify contraints of tables therefore a workaround to do so is to recreate the table from scratch. The old table is therefore cloned and the values are copied tot he newly created table. The cloning is done through the CREATE statement specifying the type of every column in order to keep it unchanged. If we were to clone and populate the table in one line using query "CREATE TABLE IF NOT EXISTS clone AS SELECT * FROM original", we might incur in a data type change. For example DATE columns are converted to NUM column in the clone table. The cloned table is populated using the INSERT statememnt and then the old table can be deleted. A new table with the desired contraints is then created and populated one line at a time or in one query. [MainDb] - Catch soci exception in the init or updateSchema function and pass them on to the calling function to be handled. - Make MainDb::isInitialized() return FALSE if the database initialization failed - In AbstractDb::connect(), catch soci exception and reset DB session if they are of type invalid_staement or constraint_violation as an attempt to reconnect to the database won't fix the issue. - After initializing the database, clean up clone tables in a separate SQL statemment to avoid the following error 'sqlite3_statement_backend::loadOne: disk I/O error while executing "<statement>"' [MainDbTester] - Verify that the database has been correctly initialized - Do not attempt to retrieve data if the database has not been correctly initialized
-
- 22 Sep, 2023 - 2 commits
-
-
Andrea Gianarda authored
the remote contact address if not null when the call state is StreamRunning or Paused and the conference is in state Created or CreationPending
-
- 21 Sep, 2023 - 1 commit
-
-
Simon Morlat authored
-
- 20 Sep, 2023 - 1 commit
-
-
Andrea Gianarda authored
Allow NULL particiant device joining time. This is required because the joining time is the time the device state switches to Present, therefore it is NULL when the device is added to the chatroom or conference
-
- 19 Sep, 2023 - 2 commits
-
-
QuentinArguillere authored
Fix bug where the push_parameters string read from the configuration files for accounts was deleted and replaced by the core's push notification config all the time, instead of only by default
-
johan authored
-
- 18 Sep, 2023 - 3 commits
-
-
Simon Morlat authored
-
Simon Morlat authored
-
Sylvain Berfini authored
-
- 15 Sep, 2023 - 1 commit
-
-
johan authored
-
- 14 Sep, 2023 - 1 commit
-
-
Simon Morlat authored
-
- 12 Sep, 2023 - 2 commits
-
-
johan authored
-
Sylvain Berfini authored
Updated liblinphone to fix an issue with auto iterate on Android & a crash with native audio if missing androidx.media dependency
-
- 08 Sep, 2023 - 1 commit
-
-
Simon Morlat authored
Fix an audio issue happening after disconnection of a bluetooth headset, on Mac. Implement automatic reloading of audio devices.
-
- 05 Sep, 2023 - 2 commits
-
-
Sylvain Berfini authored
Updated liblinphone with C# wrapper improvement using GC.KeepAlive method to prevent managed objects GC while calling methods
-
Simon Morlat authored
Fix Authentication-Info header processing: if nextnonce is not provided, ignore it and simply keep using last provided nonce.
-
- 01 Sep, 2023 - 1 commit
-
-
Sylvain Berfini authored
Updated liblinphone to fix issue in account creator when randomly generated password was using invalid characters in JSON
-
- 24 Aug, 2023 - 1 commit
-
-
Simon Morlat authored
-
- 23 Aug, 2023 - 2 commits
-
-
johan authored
-
Sylvain Berfini authored
-
- 22 Aug, 2023 - 1 commit
-
-
Andrea Gianarda authored
re-registers during a call to ensure that it is always up to date and SIP message responses reach the intented destination
-
- 21 Aug, 2023 - 1 commit
-
-
Sylvain Berfini authored
-
- 09 Aug, 2023 - 1 commit
-
-
Andrea Gianarda authored
information stored in DB to avoid the application to change its attributes and therefore implicitely modify it. The cache method will return a cloned version instead. Add support for ICS sent through the conference scheduler in basic chat rooms
-
- 02 Aug, 2023 - 1 commit
-
-
Sylvain Berfini authored
-
- 28 Jul, 2023 - 1 commit
-
-
Julien Wadel authored
Fix crash on logging error Default parameters: When creating account parameters from a configuration, avoid to set default parameters from the proxy defaults. They should already be used on the creation of parameters. Using proxy defaults avoid to overwrite explicitly unused fields.
-