may-tas/TextEditingApp

Implement Advanced Undo/Redo with Visual History Timeline

開放

#113 建立於 2025年10月1日

 (41 則留言) (0 個反應) (2 位負責人)Dart (35 個分叉)auto 404
enhancementgssoc25hacktoberfestlevel3no-issue-activity

倉庫指標

星標
 (19 顆星)
PR 合併指標
 (PR 指標待抓取)

描述

Problem

The current undo/redo system is basic and doesn't provide users with a clear view of their editing history. Users can't see what changes will be undone/redone or jump to specific points in history.

Solution

Implement a visual timeline that shows:

  • Thumbnail previews of canvas states
  • Timestamps of changes
  • Ability to jump to any point in history
  • Branching history for complex editing workflows

Acceptance Criteria

  • Visual timeline widget in the UI
  • Thumbnail generation for canvas states
  • Jump-to functionality
  • History branching support
  • Performance optimization for large histories

Technical Details

  • Use RepaintBoundary for efficient thumbnail generation
  • Implement history as a tree structure instead of linear list
  • Add state diffing to avoid storing full states

貢獻者指南