这是indexloc提供的服务,不要输入任何密码
Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dudor/BookmarkHub
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: beny18241/BookmarkHub
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 10 commits
  • 42 files changed
  • 3 contributors

Commits on Oct 14, 2025

  1. feat: Add auto-sync functionality for bookmarks

    - Added auto-sync configuration to options storage (enableAutoSync, autoSyncInterval)
    - Implemented automatic bookmark synchronization in background service
      - Syncs at configured intervals (default: 30 minutes)
      - Smart conflict resolution: downloads if remote is newer, uploads otherwise
      - Initializes on extension startup and settings update
    - Added UI controls in options page for auto-sync settings
      - Toggle switch to enable/disable auto-sync
      - Interval input field (5-1440 minutes)
    - Added localization strings for auto-sync features
    - Auto-sync runs silently in background with optional notifications
    
    🤖 Generated with [Claude Code](https://claude.com/claude-code)
    
    Co-Authored-By: Claude <noreply@anthropic.com>
    2 people authored and Maciej Pindela committed Oct 14, 2025
    Configuration menu
    Copy the full SHA
    f905491 View commit details
    Browse the repository at this point in the history
  2. refactor: Implement real-time auto-sync instead of interval-based

    - Removed interval-based sync configuration (autoSyncInterval)
    - Implemented real-time sync triggered by bookmark changes (create/change/move/remove)
    - Added debouncing (3 seconds) to prevent excessive API calls during multiple rapid changes
    - Simplified UI - removed interval input, added descriptive text
    - Updated localization strings accordingly
    - Auto-sync now responds immediately to user actions while avoiding sync storms
    
    🤖 Generated with [Claude Code](https://claude.com/claude-code)
    
    Co-Authored-By: Claude <noreply@anthropic.com>
    2 people authored and Maciej Pindela committed Oct 14, 2025
    Configuration menu
    Copy the full SHA
    bddae36 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #1 from beny18241/feature/auto-sync

    Feature/auto sync
    beny18241 authored Oct 14, 2025
    Configuration menu
    Copy the full SHA
    a1c0b67 View commit details
    Browse the repository at this point in the history
  4. fix: Improve auto-sync reliability and UX

    - Fixed sync logic bug that caused incorrect sync behavior on startup
    - Replaced notification popups with visual icon indicators:
      - Orange "!" = Changes detected, not synced
      - Blue "↻" = Currently syncing
      - Green "✓" = Successfully synced
      - Red "✗" = Sync error
      - Badge clears automatically after 2 seconds
    - Improved sync decision logic:
      - Compares actual content instead of just timestamps
      - Prevents unnecessary syncs when content is identical
      - Better handles initial sync scenario
    - Updated extension name to "BookmarkHub Auto-Sync"
    - Version bumped to 1.0.0
    - Added console logging for debugging sync operations
    
    🤖 Generated with [Claude Code](https://claude.com/claude-code)
    
    Co-Authored-By: Claude <noreply@anthropic.com>
    2 people authored and Maciej Pindela committed Oct 14, 2025
    Configuration menu
    Copy the full SHA
    9752684 View commit details
    Browse the repository at this point in the history
  5. feat: Keep sync indicator visible when synced

    - Green checkmark (✓) now stays visible when bookmarks are synced
    - Shows synced state on extension startup if auto-sync is enabled
    - Provides constant visual feedback of sync status
    - Only disappears when changes are detected (orange !) or during sync (blue ↻)
    
    🤖 Generated with [Claude Code](https://claude.com/claude-code)
    
    Co-Authored-By: Claude <noreply@anthropic.com>
    2 people authored and Maciej Pindela committed Oct 14, 2025
    Configuration menu
    Copy the full SHA
    6222616 View commit details
    Browse the repository at this point in the history
  6. docs: Add proper attribution and licensing information

    - Added NOTICE.txt with attribution to original author (dudor)
    - Updated README to clarify this is an enhanced fork
    - Prepared proper attribution text for Chrome Store
    - Ensuring full Apache 2.0 license compliance
    
    🤖 Generated with [Claude Code](https://claude.com/claude-code)
    
    Co-Authored-By: Claude <noreply@anthropic.com>
    2 people authored and Maciej Pindela committed Oct 14, 2025
    Configuration menu
    Copy the full SHA
    cb6af14 View commit details
    Browse the repository at this point in the history
  7. chore: Bump version to 1.0.1

    - Updated package.json version to 1.0.1
    - Regenerated distribution packages
    - Ready for Chrome Store and other platforms publishing
    
    🤖 Generated with [Claude Code](https://claude.com/claude-code)
    
    Co-Authored-By: Claude <noreply@anthropic.com>
    2 people authored and Maciej Pindela committed Oct 14, 2025
    Configuration menu
    Copy the full SHA
    1e0ce32 View commit details
    Browse the repository at this point in the history
  8. fix: Improve auto-sync to properly detect and sync remote changes

    - Added browser startup sync (browser.runtime.onStartup) to sync when opening new browser session
    - Implemented periodic background checks for remote changes from other browsers
    - Added intelligent sync intervals: quick initial checks (30s, 1min) then gradual increase
    - Persist last sync timestamp across browser sessions in local storage
    - Improved conflict resolution to detect recent remote changes (within 10s)
    - Fixed sync state persistence - green checkmark now stays visible when synced
    - Default sync interval reduced to 5 minutes for better responsiveness
    
    This fixes the issue where bookmarks weren't syncing automatically between browsers
    and the sync indicator disappearing on browser restart.
    
    🤖 Generated with [Claude Code](https://claude.com/claude-code)
    
    Co-Authored-By: Claude <noreply@anthropic.com>
    2 people authored and Maciej Pindela committed Oct 14, 2025
    Configuration menu
    Copy the full SHA
    d73e3ba View commit details
    Browse the repository at this point in the history
  9. chore: Bump version to 1.0.2

    Maciej Pindela authored and Maciej Pindela committed Oct 14, 2025
    Configuration menu
    Copy the full SHA
    24bde0a View commit details
    Browse the repository at this point in the history
  10. chore: Add v1.0.2 release packages

    - Chrome extension package for Chrome Web Store
    - Firefox extension package for Firefox Add-ons
    - Source code archive for review
    Maciej Pindela authored and Maciej Pindela committed Oct 14, 2025
    Configuration menu
    Copy the full SHA
    ccf0986 View commit details
    Browse the repository at this point in the history
Loading