diff --git a/assets/icon-device.png b/assets/icon-device.png index 430011020..87544ceb9 100644 Binary files a/assets/icon-device.png and b/assets/icon-device.png differ diff --git a/src/sql.rs b/src/sql.rs index 3af1df87f..0d6749135 100644 --- a/src/sql.rs +++ b/src/sql.rs @@ -1283,6 +1283,11 @@ async fn open( .await?; sql.set_raw_config_int(context, "dbversion", 65).await?; } + if dbversion < 66 { + info!(context, "[migration] v66"); + update_icons = true; + sql.set_raw_config_int(context, "dbversion", 66).await?; + } // (2) updates that require high-level objects // (the structure is complete now and all objects are usable)