diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 77681429..1a02a1f5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: include: - os: "ubuntu-22.04" python-version: "3.10" - psychopy-version: "2024.2.1" + psychopy-version: "2024.2.4" - os: "ubuntu-22.04" python-version: "3.10" psychopy-version: "2024.1.4" diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 4be26cd0..feb5e3aa 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -10,7 +10,7 @@ repos: - id: check-toml - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.6.9 + rev: v0.7.4 hooks: - id: ruff types_or: [python, pyi, jupyter] @@ -19,7 +19,7 @@ repos: types_or: [python, pyi, jupyter] - repo: https://github.com/kynan/nbstripout - rev: 0.7.1 + rev: 0.8.1 hooks: - id: nbstripout @@ -32,13 +32,13 @@ repos: - "prettier-plugin-toml" - repo: https://github.com/python-jsonschema/check-jsonschema - rev: 0.29.3 + rev: 0.29.4 hooks: - id: check-github-workflows - id: check-readthedocs - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.11.2 + rev: v1.13.0 hooks: - id: mypy additional_dependencies: [numpy, PyQt5-stubs, types-requests] @@ -51,7 +51,7 @@ repos: ] - repo: https://github.com/rhysd/actionlint - rev: "v1.7.3" + rev: "v1.7.4" hooks: - id: actionlint diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a2b948d..51cea530 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [1.5.0] - 2024-11-20 + +### Added + +- spatial error statistic [#255](https://github.com/ssciwr/vstt/pull/255) +- statistics at peak velocity [#267](https://github.com/ssciwr/vstt/pull/267) +- example jupyter notebook for filtering data [#274](https://github.com/ssciwr/vstt/pull/274), [#277](https://github.com/ssciwr/vstt/pull/277) +- option to turn target green when it is reached [#279](https://github.com/ssciwr/vstt/pull/279) + +### Changed + +- tone duration is now 160ms [#261](https://github.com/ssciwr/vstt/pull/261) + ## [1.4.0] - 2023-12-08 ### Added diff --git a/docs/reference/trial-conditions.rst b/docs/reference/trial-conditions.rst index be865878..50a76ba9 100644 --- a/docs/reference/trial-conditions.rst +++ b/docs/reference/trial-conditions.rst @@ -33,6 +33,9 @@ the screen height (i.e. a line of length 1.0 in these units would extend from th * Hide target when reached * Enable to hide a target once the cursor has reached it * Default: ``enabled`` +* Turn target green when reached + * Enable to paint the target green once the cursor has reached it + * Default: ``disabled`` * Display target labels * Enable to show a label inside each target * The labels are taken from "Target labels" (see below) diff --git a/src/vstt/__init__.py b/src/vstt/__init__.py index 9ef12223..47712624 100644 --- a/src/vstt/__init__.py +++ b/src/vstt/__init__.py @@ -5,4 +5,4 @@ "__version__", ] -__version__ = "1.4.0" +__version__ = "1.5.0"