diff --git a/.changeset/nervous-carrots-raise.md b/.changeset/nervous-carrots-raise.md deleted file mode 100644 index e1c978d548..0000000000 --- a/.changeset/nervous-carrots-raise.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@jspsych/plugin-visual-search-circle": minor ---- - -Add options (`randomize_item_locations` and `location_first_item`) to allow for fixed locations of the item array across trials. diff --git a/.changeset/swift-rivers-deliver.md b/.changeset/swift-rivers-deliver.md deleted file mode 100644 index 3c19d6be5c..0000000000 --- a/.changeset/swift-rivers-deliver.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@jspsych/config": minor ---- - -update to force the dom to clear after each individual test diff --git a/docs/demos/jspsych-visual-search-circle-demo1.html b/docs/demos/jspsych-visual-search-circle-demo1.html index 279fa8590a..eda54ef7a2 100644 --- a/docs/demos/jspsych-visual-search-circle-demo1.html +++ b/docs/demos/jspsych-visual-search-circle-demo1.html @@ -5,7 +5,7 @@ - + diff --git a/docs/demos/jspsych-visual-search-circle-demo2.html b/docs/demos/jspsych-visual-search-circle-demo2.html index 3bf2c50a18..92438564df 100644 --- a/docs/demos/jspsych-visual-search-circle-demo2.html +++ b/docs/demos/jspsych-visual-search-circle-demo2.html @@ -5,7 +5,7 @@ - + diff --git a/docs/plugins/visual-search-circle.md b/docs/plugins/visual-search-circle.md index b78b7bf4bf..05eb21b289 100644 --- a/docs/plugins/visual-search-circle.md +++ b/docs/plugins/visual-search-circle.md @@ -1,6 +1,6 @@ # visual-search-circle -Current version: 2.0.0. [See version history](https://github.com/jspsych/jsPsych/blob/main/packages/plugin-visual-search-circle/CHANGELOG.md). +Current version: 2.1.0. [See version history](https://github.com/jspsych/jsPsych/blob/main/packages/plugin-visual-search-circle/CHANGELOG.md). This plugin presents a customizable visual-search task modelled after [Wang, Cavanagh, & Green (1994)](http://dx.doi.org/10.3758/BF03206946). The participant indicates whether or not a target is present among a set of distractors. The stimuli are displayed in a circle, evenly-spaced, equidistant from a fixation point. Here is an example using normal and backward Ns: @@ -54,7 +54,7 @@ In addition to the [default data collected by all plugins](../overview/plugins.m Using the CDN-hosted JavaScript file: ```js - + ``` Using the JavaScript file downloaded from a GitHub release dist archive: diff --git a/package-lock.json b/package-lock.json index e2406f5014..0b2bf4db3f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -18036,7 +18036,7 @@ }, "packages/config": { "name": "@jspsych/config", - "version": "3.0.1", + "version": "3.1.0", "license": "MIT", "dependencies": { "@rollup/plugin-commonjs": "25.0.7", @@ -18783,10 +18783,10 @@ }, "packages/plugin-visual-search-circle": { "name": "@jspsych/plugin-visual-search-circle", - "version": "2.0.0", + "version": "2.1.0", "license": "MIT", "devDependencies": { - "@jspsych/config": "^3.0.0", + "@jspsych/config": "^3.1.0", "@jspsych/test-utils": "^1.2.0" }, "peerDependencies": { diff --git a/packages/config/CHANGELOG.md b/packages/config/CHANGELOG.md index 683dd38742..9cd238aa8d 100644 --- a/packages/config/CHANGELOG.md +++ b/packages/config/CHANGELOG.md @@ -1,5 +1,11 @@ # @jspsych/config +## 3.1.0 + +### Minor Changes + +- [#3435](https://github.com/jspsych/jsPsych/pull/3435) [`3de5aad4`](https://github.com/jspsych/jsPsych/commit/3de5aad43b538be56a3957be5beb6e9910b74267) Thanks [@jadeddelta](https://github.com/jadeddelta)! - update to force the dom to clear after each individual test + ## 3.0.1 ### Patch Changes diff --git a/packages/config/package.json b/packages/config/package.json index 6f159601a7..193d024f11 100644 --- a/packages/config/package.json +++ b/packages/config/package.json @@ -1,6 +1,6 @@ { "name": "@jspsych/config", - "version": "3.0.1", + "version": "3.1.0", "description": "Shared (build) configuration for jsPsych packages", "type": "module", "exports": { diff --git a/packages/plugin-visual-search-circle/CHANGELOG.md b/packages/plugin-visual-search-circle/CHANGELOG.md index 725581ef91..1f90757929 100644 --- a/packages/plugin-visual-search-circle/CHANGELOG.md +++ b/packages/plugin-visual-search-circle/CHANGELOG.md @@ -1,5 +1,11 @@ # @jspsych/plugin-visual-search-circle +## 2.1.0 + +### Minor Changes + +- [#2897](https://github.com/jspsych/jsPsych/pull/2897) [`8759217f`](https://github.com/jspsych/jsPsych/commit/8759217f0ef0c1d127ca58440d1cbe5f152dbde5) Thanks [@jodeleeuw](https://github.com/jodeleeuw)! - Add options (`randomize_item_locations` and `location_first_item`) to allow for fixed locations of the item array across trials. + ## 2.0.0 ### Major Changes diff --git a/packages/plugin-visual-search-circle/package.json b/packages/plugin-visual-search-circle/package.json index 569e8bd0cd..0d0b14e8fe 100644 --- a/packages/plugin-visual-search-circle/package.json +++ b/packages/plugin-visual-search-circle/package.json @@ -1,6 +1,6 @@ { "name": "@jspsych/plugin-visual-search-circle", - "version": "2.0.0", + "version": "2.1.0", "description": "jsPsych visual search circle plugin", "type": "module", "main": "dist/index.cjs", @@ -37,7 +37,7 @@ "jspsych": ">=7.1.0" }, "devDependencies": { - "@jspsych/config": "^3.0.0", + "@jspsych/config": "^3.1.0", "@jspsych/test-utils": "^1.2.0" } }