Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version Packages #3450

Merged
merged 1 commit into from
Nov 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/nervous-carrots-raise.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/swift-rivers-deliver.md

This file was deleted.

2 changes: 1 addition & 1 deletion docs/demos/jspsych-visual-search-circle-demo1.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<script src="https://unpkg.com/[email protected]"></script>
<script src="https://unpkg.com/@jspsych/[email protected]"></script>
<script src="https://unpkg.com/@jspsych/[email protected]"></script>
<script src="https://unpkg.com/@jspsych/plugin-visual-search-circle@2.0.0"></script>
<script src="https://unpkg.com/@jspsych/plugin-visual-search-circle@2.1.0"></script>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/css/jspsych.css" />
<link rel="stylesheet" href="docs-demo.css" type="text/css">
</head>
Expand Down
2 changes: 1 addition & 1 deletion docs/demos/jspsych-visual-search-circle-demo2.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<script src="https://unpkg.com/[email protected]"></script>
<script src="https://unpkg.com/@jspsych/[email protected]"></script>
<script src="https://unpkg.com/@jspsych/[email protected]"></script>
<script src="https://unpkg.com/@jspsych/plugin-visual-search-circle@2.0.0"></script>
<script src="https://unpkg.com/@jspsych/plugin-visual-search-circle@2.1.0"></script>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/css/jspsych.css" />
<link rel="stylesheet" href="docs-demo.css" type="text/css">
</head>
Expand Down
4 changes: 2 additions & 2 deletions docs/plugins/visual-search-circle.md
Original file line number Diff line number Diff line change
@@ -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:

Expand Down Expand Up @@ -54,7 +54,7 @@ In addition to the [default data collected by all plugins](../overview/plugins.m
Using the CDN-hosted JavaScript file:

```js
<script src="https://unpkg.com/@jspsych/plugin-visual-search-circle@2.0.0"></script>
<script src="https://unpkg.com/@jspsych/plugin-visual-search-circle@2.1.0"></script>
```

Using the JavaScript file downloaded from a GitHub release dist archive:
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions packages/config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/config/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
6 changes: 6 additions & 0 deletions packages/plugin-visual-search-circle/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin-visual-search-circle/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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"
}
}