From 94ece679f77ca1b8da7d2f9b65a222a4a6a51f58 Mon Sep 17 00:00:00 2001 From: Dean Toader Date: Mon, 20 Oct 2025 16:24:20 -0700 Subject: [PATCH 1/3] Added changes to add SelectionsToFiles Sublime Text package. --- channel.json | 1 + repository/s.json | 10 ++++++++++ 2 files changed, 11 insertions(+) diff --git a/channel.json b/channel.json index 00152c13f1d..473129f210f 100644 --- a/channel.json +++ b/channel.json @@ -30,6 +30,7 @@ "https://raw.githubusercontent.com/damccull/sublimetext-SolarizedToggle/master/packages.json", "https://raw.githubusercontent.com/danielmagnussons/orgmode/master/packages.json", "https://raw.githubusercontent.com/danielobrien/sublime-DLX-syntax/master/packages.json", + "https://raw.githubusercontent.com/dtoader/SelectionsToFiles/master/packages.json", "https://raw.githubusercontent.com/enriquein/JavaSetterGetter/master/packages.json", "https://raw.githubusercontent.com/Exafunction/codeium-sublime/main/packages.json", "https://raw.githubusercontent.com/farcaller/DashDoc/master/packages.json", diff --git a/repository/s.json b/repository/s.json index af2fc501580..ab1bb7080ab 100644 --- a/repository/s.json +++ b/repository/s.json @@ -954,6 +954,16 @@ } ] }, + { + "name": "SelectionsToFiles", + "details": "https://github.com/dtoader/SelectionsToFiles", + "releases": [ + { + "sublime_text": "*", + "details": "https://github.com/dtoader/SelectionsToFiles/tree/master" + } + ] + }, { "name": "SelectionTools", "details": "https://github.com/simonrad/sublime-selection-tools", From c34b2892bccdefb98fb39932c5a89216f43bc5df Mon Sep 17 00:00:00 2001 From: Dean Toader Date: Wed, 5 Nov 2025 18:22:03 -0800 Subject: [PATCH 2/3] - Removed name from repository/s.json since the details repo name is suffixed with the name string "SelectionsToFiles" - Did not set "previous_names" as I'm using the same name as Tito Bouzout who was the original author, even this is a complete rewrite but with the same functionality - Set tags to true - Removed "https://raw.githubusercontent.com/dtoader/SelectionsToFiles/master/packages.json" from channel.json --- channel.json | 1 - repository/s.json | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/channel.json b/channel.json index 473129f210f..00152c13f1d 100644 --- a/channel.json +++ b/channel.json @@ -30,7 +30,6 @@ "https://raw.githubusercontent.com/damccull/sublimetext-SolarizedToggle/master/packages.json", "https://raw.githubusercontent.com/danielmagnussons/orgmode/master/packages.json", "https://raw.githubusercontent.com/danielobrien/sublime-DLX-syntax/master/packages.json", - "https://raw.githubusercontent.com/dtoader/SelectionsToFiles/master/packages.json", "https://raw.githubusercontent.com/enriquein/JavaSetterGetter/master/packages.json", "https://raw.githubusercontent.com/Exafunction/codeium-sublime/main/packages.json", "https://raw.githubusercontent.com/farcaller/DashDoc/master/packages.json", diff --git a/repository/s.json b/repository/s.json index ab1bb7080ab..f2e61b6f60b 100644 --- a/repository/s.json +++ b/repository/s.json @@ -955,11 +955,11 @@ ] }, { - "name": "SelectionsToFiles", "details": "https://github.com/dtoader/SelectionsToFiles", "releases": [ { "sublime_text": "*", + "tags": true, "details": "https://github.com/dtoader/SelectionsToFiles/tree/master" } ] From b7dad3119b702002127cfdcc0d08ee928d97d249 Mon Sep 17 00:00:00 2001 From: Dean Toader Date: Thu, 6 Nov 2025 04:38:15 -0800 Subject: [PATCH 3/3] Removed the "details" keyval from the SelectionsToFiles json "releases" object --- repository/s.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/repository/s.json b/repository/s.json index f2e61b6f60b..446a022c6e3 100644 --- a/repository/s.json +++ b/repository/s.json @@ -959,8 +959,7 @@ "releases": [ { "sublime_text": "*", - "tags": true, - "details": "https://github.com/dtoader/SelectionsToFiles/tree/master" + "tags": true } ] },