psychopy 2024.1.3__py3-none-any.whl → 2024.1.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of psychopy might be problematic. Click here for more details.
- psychopy/__init__.py +2 -2
- psychopy/app/builder/localizedStrings.py +11 -9
- psychopy/app/locale/ja_JP/LC_MESSAGE/messages.mo +0 -0
- psychopy/app/locale/ja_JP/LC_MESSAGE/messages.po +359 -346
- psychopy/app/plugin_manager/plugins.py +7 -0
- psychopy/demos/builder/Feature Demos/progress/progressBar.psyexp +4 -4
- psychopy/experiment/components/buttonBox/__init__.py +21 -12
- psychopy/experiment/components/progress/__init__.py +1 -1
- psychopy/experiment/routines/photodiodeValidator/__init__.py +1 -1
- psychopy/hardware/keyboard.py +1 -2
- psychopy/tests/test_hardware/test_keyboard.py +153 -16
- psychopy/visual/progress.py +1 -1
- psychopy/web.py +5 -2
- {psychopy-2024.1.3.dist-info → psychopy-2024.1.4.dist-info}/METADATA +1 -1
- {psychopy-2024.1.3.dist-info → psychopy-2024.1.4.dist-info}/RECORD +19 -19
- {psychopy-2024.1.3.dist-info → psychopy-2024.1.4.dist-info}/WHEEL +1 -1
- {psychopy-2024.1.3.dist-info → psychopy-2024.1.4.dist-info}/entry_points.txt +0 -0
- {psychopy-2024.1.3.dist-info → psychopy-2024.1.4.dist-info}/licenses/AUTHORS.md +0 -0
- {psychopy-2024.1.3.dist-info → psychopy-2024.1.4.dist-info}/licenses/LICENSE +0 -0
psychopy/__init__.py
CHANGED
|
@@ -12,14 +12,14 @@
|
|
|
12
12
|
import os
|
|
13
13
|
import sys
|
|
14
14
|
|
|
15
|
-
__version__ = '2024.1.
|
|
15
|
+
__version__ = '2024.1.4'
|
|
16
16
|
__license__ = 'GPL v3'
|
|
17
17
|
__author__ = 'Open Science Tools Ltd'
|
|
18
18
|
__author_email__ = 'support@opensciencetools.org'
|
|
19
19
|
__maintainer_email__ = 'support@opensciencetools.org'
|
|
20
20
|
__url__ = 'https://www.psychopy.org/'
|
|
21
21
|
__download_url__ = 'https://github.com/psychopy/psychopy/releases/'
|
|
22
|
-
__git_sha__ = '
|
|
22
|
+
__git_sha__ = '8ccc6ec19'
|
|
23
23
|
__build_platform__ = 'n/a'
|
|
24
24
|
|
|
25
25
|
__all__ = ["gui", "misc", "visual", "core",
|
|
@@ -115,7 +115,8 @@ _localizedDialogs = {
|
|
|
115
115
|
'set every frame': _translate('set every frame'),
|
|
116
116
|
# strings for allowedVals in settings:
|
|
117
117
|
'add': _translate('add'),
|
|
118
|
-
'
|
|
118
|
+
'average': _translate('average'),
|
|
119
|
+
'avg': _translate('avg'),
|
|
119
120
|
'average (no FBO)': _translate('average (no FBO)'), # blend mode
|
|
120
121
|
'use prefs': _translate('use prefs'),
|
|
121
122
|
'on Sync': _translate('on Sync'), # export HTML
|
|
@@ -157,14 +158,15 @@ _localizedDialogs = {
|
|
|
157
158
|
'last click': _translate('last click'),
|
|
158
159
|
'button onset': _translate('button onset'),
|
|
159
160
|
# Polygon:
|
|
160
|
-
'
|
|
161
|
-
'
|
|
162
|
-
'
|
|
163
|
-
'
|
|
164
|
-
'
|
|
165
|
-
'
|
|
166
|
-
'
|
|
167
|
-
'
|
|
161
|
+
'Line': _translate('Line'),
|
|
162
|
+
'Triangle': _translate('Triangle'),
|
|
163
|
+
'Rectangle': _translate('Rectangle'),
|
|
164
|
+
'Circle': _translate('Circle'),
|
|
165
|
+
'Cross': _translate('Cross'),
|
|
166
|
+
'Star': _translate('Star'),
|
|
167
|
+
'Arrow': _translate('Arrow'),
|
|
168
|
+
'Regular polygon...': _translate('Regular polygon...'),
|
|
169
|
+
'Custom polygon...': _translate('Custom polygon...'),
|
|
168
170
|
# Form
|
|
169
171
|
'rows': _translate('rows'),
|
|
170
172
|
'columns': _translate('columns'),
|
|
Binary file
|