From 07ad0a1bd98660badf334b082c6b772a2003b83e Mon Sep 17 00:00:00 2001 From: Randall Winkhart Date: Fri, 9 Jan 2026 00:07:39 -0500 Subject: [PATCH] Change order of slices in syncListsT --- docs/release-notes-archive/2026.md | 4 ++-- syncclient/client.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/release-notes-archive/2026.md b/docs/release-notes-archive/2026.md index 6241175..9dfafb9 100644 --- a/docs/release-notes-archive/2026.md +++ b/docs/release-notes-archive/2026.md @@ -11,7 +11,7 @@ This release adds password age-tracking support and features large refactors tha - Random (within the last year) age data can be added to existing password entries - This allows easing into this feature, rather than having all your passwords expire on the same day - Developers: see the new `age` package -- (e355c810da06d794fd5a6ed10b8a886afa7f3492) (f16078fe01ec8a14fd7f2cd059340b33908ca1d6) (4e6c18db8a6716dcf1a9b73fd523f2f7161ce7f2) (2ab777fd571bb9b79e7601667e5c1f5b15400d03) (941a2dc8b80cb6e0327b33714c4a894962621bda) (35db3bf20b8ab3705bf349fdc7ed4b8e7899cddb) (5e5a7c57e9c5633edb74a968e46f21e141ab81ef) (07571a698d32eb414c24cdf84327d1868a0b455a) (d0e8640ce6e90583a7ea5ff5b3ed2cfdc2e00801) Massive sync refactor +- (e355c810da06d794fd5a6ed10b8a886afa7f3492) (f16078fe01ec8a14fd7f2cd059340b33908ca1d6) (4e6c18db8a6716dcf1a9b73fd523f2f7161ce7f2) (2ab777fd571bb9b79e7601667e5c1f5b15400d03) (941a2dc8b80cb6e0327b33714c4a894962621bda) (35db3bf20b8ab3705bf349fdc7ed4b8e7899cddb) (5e5a7c57e9c5633edb74a968e46f21e141ab81ef) (07571a698d32eb414c24cdf84327d1868a0b455a) (d0e8640ce6e90583a7ea5ff5b3ed2cfdc2e00801) (3b4e75b592241b8405c4cb49dd40859773b7b027) Massive sync refactor - Sync info is now passed from the server to the client using rigidly defined JSON types - This greatly improves code maintainability and reduces potential for bugs - Sync now supports password age tracking data @@ -27,7 +27,7 @@ This release adds password age-tracking support and features large refactors tha - The typical copy workflow now only supports continuous copy - Dropped mobile clipboard support - This can/should be handled by the GUI toolkit -- (28286788a045a090be67b4f2919b09a8be570801) (a18c3ea1d6412dbb88fba5a5f69693450be9e97c) (5e5a7c57e9c5633edb74a968e46f21e141ab81ef) `core.LibmuttonInit` overhaul +- (28286788a045a090be67b4f2919b09a8be570801) (a18c3ea1d6412dbb88fba5a5f69693450be9e97c) (5e5a7c57e9c5633edb74a968e46f21e141ab81ef) (4467a8c7421bb4b60e5088bca851c1fd7d4fec50) `core.LibmuttonInit` overhaul - Now supports non-destructive append - Now supports custom device ID prefixes diff --git a/syncclient/client.go b/syncclient/client.go index 063b87d..173d286 100644 --- a/syncclient/client.go +++ b/syncclient/client.go @@ -20,8 +20,8 @@ import ( type syncListsT struct { Delete []string - Upload []string Download []string + Upload []string } // GetSSHClient