Skip to content

Commit

Permalink
wip: 🚧 Prepare channges and announcements
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobiClark committed Dec 4, 2023
1 parent 46034a4 commit dd79ee4
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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).

## v.12.4.0 - 2023-12-04

## Feature Additions:

- Added a new feature to Guided Mode that allows you to import subjects, pools, and samples for datasets with a large amount of subjects/samples

## v.12.3.3 - 2023-10-24

## Bug fixes:
Expand Down
4 changes: 4 additions & 0 deletions scripts/guided-mode/guided-curate-dataset.js
Original file line number Diff line number Diff line change
Expand Up @@ -5269,6 +5269,10 @@ const openPage = async (targetPageID) => {
}

if (targetPageID === "guided-dataset-structure-intro-tab") {
// Handle whether or not the spreadsheet importation page should be skipped
// Note: this is done here to centralize the logic for skipping the page
// The page is unskipped only if the user has not added any subjects,
// indicated that they will be adding subjects, and the user is not starting from Pennsieve
if (
getExistingSubjectNames().length === 0 &&
sodaJSONObj["starting-point"]["type"] != "bf" &&
Expand Down
8 changes: 8 additions & 0 deletions scripts/meta/announcements.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
{
"12.4.0": {
"announcements": {
"bug-fixes": [],
"features": [
"Added a new feature to Guided Mode that allows you to import subjects, pools, and samples for datasets with a large amount of subjects/samples"
]
}
},
"12.3.3": {
"announcements": {
"bug-fixes": [
Expand Down

0 comments on commit dd79ee4

Please sign in to comment.