~aleteoryx/muditaos

78ab32ccbb08468f29cbe554da4a50cb0c1f3a65 — Lefucjusz 4 months ago 14bb332
[BH-2103][BH-2104] Add What's New entry for custom quotations

Added What's New entry for custom quotations. This is also
a second part of fix for BH-2104 - this entry is
intentionally added as a migration, adding it as a part of
revision 0 would not fix the issue.
M harmony_changelog.md => harmony_changelog.md +1 -0
@@ 6,6 6,7 @@

### Added
* Added custom quotations feature
* Added What's New entry for quotations feature

### Changed / Improved


A products/BellHybrid/services/db/databases/migration/whats_new/current/d1af203c_Add_fix_for_update_from_2_9_x/.meta => products/BellHybrid/services/db/databases/migration/whats_new/current/d1af203c_Add_fix_for_update_from_2_9_x/.meta +6 -0
@@ 0,0 1,6 @@
{
 "id": "d1af203c-2982-4986-b680-fc7465019c4a",
 "date": "2025-08-07 17:30:39",
 "message": "Add fix for update from 2 9 x",
 "parent": 0
}
\ No newline at end of file

A products/BellHybrid/services/db/databases/migration/whats_new/current/d1af203c_Add_fix_for_update_from_2_9_x/down.sql => products/BellHybrid/services/db/databases/migration/whats_new/current/d1af203c_Add_fix_for_update_from_2_9_x/down.sql +10 -0
@@ 0,0 1,10 @@
-- Copyright (c) 2017-2025, Mudita Sp. z.o.o. All rights reserved.
-- For licensing, see https://github.com/mudita/MuditaOS/blob/master/LICENSE.md

-- Message: Add fix for update from 2 9 x
-- Revision: d1af203c-2982-4986-b680-fc7465019c4a
-- Create Date: 2025-08-07 17:30:39

-- Insert SQL here

DELETE FROM whats_new WHERE Major = 2 AND Minor = 10 AND Patch = 0 AND English_title = 'Custom quotations';

A products/BellHybrid/services/db/databases/migration/whats_new/current/d1af203c_Add_fix_for_update_from_2_9_x/up.sql => products/BellHybrid/services/db/databases/migration/whats_new/current/d1af203c_Add_fix_for_update_from_2_9_x/up.sql +11 -0
@@ 0,0 1,11 @@
-- Copyright (c) 2017-2025, Mudita Sp. z.o.o. All rights reserved.
-- For licensing, see https://github.com/mudita/MuditaOS/blob/master/LICENSE.md

-- Message: Add fix for update from 2 9 x
-- Revision: d1af203c-2982-4986-b680-fc7465019c4a
-- Create Date: 2025-08-07 17:30:39

-- Insert SQL here

INSERT OR REPLACE INTO whats_new (Major, Minor, Patch, English_title, Deutsch_title, Español_title, Polski_title, Français_title, Icon, English_desc, Deutsch_desc, Español_desc, Polski_desc, Français_desc) VALUES
    (2, 10, 0, 'Custom quotations', 'Eigene Zitate', 'Citas propias', 'Własne cytaty', 'Citations persos', 'whatsnew_quote_W_M', 'You can now add your own quotations using Mudita Center.', 'Füge Zitate mit Mudita Center hinzu.', 'Ahora puedes añadir tus propias citas usando Mudita Center.', 'Możesz teraz dodawać własne cytaty za pomocą Mudita Center.', 'Ajoutez vos citations via Mudita Center.');