Skip to content

v1.0.5

Latest
Compare
Choose a tag to compare
@N7ghtm4r3 N7ghtm4r3 released this 01 Jan 00:34
· 3 commits to main since this release
9091291
  • Remapped hardcoded error messages to use related constant keys
  • Updated README:
    • Added a warning about the ALTER TABLE TODO for the Notes table
      regarding mark_as_done and mark_as_done_date
  • Integrated pagination functionality
  • Migrated the core to be KMP (Kotlin Multiplatform) compliant
  • Removed the short_description field from the Project entity
  • Optimized database operations by using batch queries where applicable
  • Added the "Edit Group" functionality

Migration from previous releases

To corretly migrate from the previous releases you have to follow these simple following steps:

  • Change the dType field value of the users table, you can do it using this query:
UPDATE users SET dType = 'PandoroUser';
  • Change the is_read field value of the changelogs table, you can do it using this query:
-- mark as unread the changelogs previously unread
UPDATE changelogs SET is_read = 0 WHERE red = 0;

-- mark as read the changelogs previously read
UPDATE changelogs SET is_read = 1 WHERE red = 1;

-- then drop the deprecated red colum
ALTER TABLE changelogs DROP red;