File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Changelog
2+
3+ ## 1.0.0 — 2026-07-02
4+
5+ First public release.
6+
7+ - Right-click a file or folder in Finder and reveal the same path in the other
8+ source (SMB share ⇄ Synology Drive on-demand). Both directions, auto-detected.
9+ - Auto-mounts a disconnected SMB share from your Keychain before revealing.
10+ - The counterpart opens as a Finder tab; swapping back focuses the tab you already
11+ have open instead of spawning new windows.
12+ - Interactive install wizard asks which SMB share each Synology Drive folder maps
13+ to and never guesses an unmounted share. ` ./install.sh --remap ` redoes just the
14+ mapping.
15+ - Plain-text config, pure ` /bin/bash ` , no dependencies.
Original file line number Diff line number Diff line change 44# Test the mapping logic: ./synology-swap.sh --selftest
55set -uo pipefail
66
7+ VERSION=" 1.0.0"
8+ [[ " ${1:- } " == " --version" || " ${1:- } " == " -v" ]] && { echo " Synology Swap $VERSION " ; exit 0; }
9+
710CONFIG=" ${SYNOLOGY_SWAP_CONFIG:- $HOME / .config/ synology-swap/ config.txt} "
811SMB_HOST=" "
912SMB_ROOTS=()
You can’t perform that action at this time.
0 commit comments