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 1.5.0 #280

Merged
merged 1 commit into from
Nov 20, 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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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

Expand All @@ -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]
Expand All @@ -51,7 +51,7 @@ repos:
]

- repo: https://github.com/rhysd/actionlint
rev: "v1.7.3"
rev: "v1.7.4"
hooks:
- id: actionlint

Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 3 additions & 0 deletions docs/reference/trial-conditions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/vstt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
"__version__",
]

__version__ = "1.4.0"
__version__ = "1.5.0"