From d04a5dd74df0bbf1861e05680983a490bcb35abc Mon Sep 17 00:00:00 2001 From: jacobiclark Date: Wed, 20 Nov 2024 10:38:15 -0800 Subject: [PATCH] wip: Added 15.2.3 CHANGELOG --- CHANGELOG.md | 7 +++++++ .../src/scripts/organize-dataset/curate-functions.js | 3 --- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 770ea2bd5..40551b676 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to SODA will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## v15.2.3 - 2024-11-20 + +## Bug Fixes: + +- Restricted forbidden characters in Guided Mode datasets to avoid JSON save file issues. +- Moved guidedSaveProgress to trigger after every successful page exit for broader save coverage. + ## v15.2.2 - 2024-10-09 ## Bug Fixes: diff --git a/src/renderer/src/scripts/organize-dataset/curate-functions.js b/src/renderer/src/scripts/organize-dataset/curate-functions.js index 042be61c8..71a1ada7a 100644 --- a/src/renderer/src/scripts/organize-dataset/curate-functions.js +++ b/src/renderer/src/scripts/organize-dataset/curate-functions.js @@ -502,11 +502,8 @@ window.uploadDatasetClickHandler = async (ev) => { }; window.handleLocalDatasetImport = async (path) => { - console.log("Importing local dataset from path:", path); const list = await getFilesAndFolders(path); - console.log("List of files and folders:", list); const currentFileExplorerPath = window.organizeDSglobalPath.value.trim(); - console.log("Current file explorer path:", currentFileExplorerPath); const builtDatasetStructure = await window.buildDatasetStructureJsonFromImportedData( list.folders, "dataset_root/", // Use dataset_root as the root folder since we are importing the root in this case