Back
26 Nov, 2024
Enhancement
High Impact
High Priority
UI/UX

Beta 0.7.4

Summary

This update addresses several critical issues related to prompt management, including search functionality, merging prompts, and timestamp tracking. Enhancements have been made to ensure data consistency and unique titles for prompts, along with the introduction of a versioning system for better change management.

Added

Timestamps:

  • Creation and Modification Tracking: Implemented tracking for when each prompt is created and last modified. When creating a new prompt, the created and lastModified properties are included, both set to the current date and time in ISO format using new Date().toISOString().
  • Updating Modified Date: The modification date is updated whenever a prompt is edited. In the edit function, the prompt being edited is located using its index, and the lastModified property is updated to the current date and time in ISO format.

Data Consistency:

  • Ensured all prompts have valid IDs and timestamps. When loading prompts from storage, each prompt is iterated through, and if any property is missing, a new ID is generated or default timestamps are set as necessary.

Unique Title Enforcement:

  • Implemented a validation check to ensure that each prompt has a distinct title. If a duplicate title is detected during creation or editing, a unique identifier (e.g., "1") is appended to the title.

Versioning System:

  • Introduced a versioning system to track changes and maintain different versions of prompts. Each prompt object now includes a version number that increments with each edit. This feature is currently implemented in the backend, with plans for a future UI to manage versions.

Fixed

  • Search Functionality: Resolved the issue where searching for a prompt and using action buttons (edit or delete) would inadvertently delete other prompts instead of the intended one.
  • Merge Functionality: Fixed the merging issue that was creating duplicate prompts instead of merging them into the existing one when using the import feature from the settings page. This issue arose after making prompts unique using ID, hash, and other methods.

Known Issues

  • Automatic Local Backup: The automatic local backup is not working and is under investigation to fix it.