v1.3.0 #35
Reference in New Issue
Block a user
Delete Branch "dev"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
padding-top on the first .settings-section created a visible gap above the Export title. Fixed with :first-child { padding-top: 0 }. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>Removing the :first-child { padding-top: 0 } override lets every section use the same padding: 16px 0, so the gap above Export matches the gap above Import (and any future sections). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>SQLite datetime('now') returns 'YYYY-MM-DD HH:MM:SS' with no timezone marker. JS was treating this as local time, so timestamps showed the correct UTC digits but with the local TZ abbreviation attached (e.g. '7:15 PM EDT' when the real local time was '3:15 PM EDT'). Add parseUtc() which appends 'Z' before parsing any string that has no existing timezone marker, ensuring JS always treats them as UTC before the display-timezone conversion is applied. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>