"createSql":"CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT, `title` TEXT NOT NULL, `url` TEXT NOT NULL, `isDefault` INTEGER NOT NULL, `created_at` INTEGER NOT NULL)",
"fields":[
{
"fieldPath":"id",
"columnName":"id",
"affinity":"INTEGER",
"notNull":false
},
{
"fieldPath":"title",
"columnName":"title",
"affinity":"TEXT",
"notNull":true
},
{
"fieldPath":"url",
"columnName":"url",
"affinity":"TEXT",
"notNull":true
},
{
"fieldPath":"isDefault",
"columnName":"isDefault",
"affinity":"INTEGER",
"notNull":true
},
{
"fieldPath":"createdAt",
"columnName":"created_at",
"affinity":"INTEGER",
"notNull":true
}
],
"primaryKey":{
"columnNames":[
"id"
],
"autoGenerate":true
},
"indices":[],
"foreignKeys":[]
}
],
"views":[],
"setupQueries":[
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'a57788de8a7351e0bdaf5a2044489dcf')"
* ⚠️ **This is a breaking change**: Added `viewportFitChanged` to support Android display cutouts.
***feature-qr**
* Moved `AutoFitTextureView` from `support-base` to `feature-qr`.
...
...
@@ -56,6 +56,9 @@ permalink: /changelog/
***Developer ergonomics**
* Improved autoPublication workflow. See https://mozac.org/contributing/testing-components-inside-app for updated documentation.
***feature-top-sites**
* Added `isDefault` to the top site entity, which allows application to specify a default top site that is added by the application. This is called through `TopSiteStorage.addTopSite`.