-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #201 from cpp-lln-lab/dev
[REL] 1.3.0
- Loading branch information
Showing
86 changed files
with
1,059 additions
and
427 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
template: | | ||
## Release Notes | ||
## CHANGES | ||
$CHANGES |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ on: | |
push: | ||
branches: | ||
- master | ||
- dev | ||
pull_request: | ||
branches: ['*'] | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,54 @@ | ||
*DS_Store | ||
|
||
*.m~ | ||
*octave-workspace | ||
|
||
.vscode/* | ||
|
||
# exclude content of logfiles folders | ||
*.tsv | ||
|
||
*.mat | ||
check_my_code_report.txt | ||
|
||
# exclude content of files for virtual env (mostly for the doc) | ||
cpp_ptb | ||
env | ||
|
||
# ignore file created by sphynx | ||
/docs/build | ||
|
||
# exclude node js stuff | ||
node_modules/* | ||
package-lock.json | ||
# exclude temp files from tests and coverage | ||
test_report.log | ||
*coverage* | ||
|
||
## MATLAB / OCTAVE gitignore template | ||
|
||
# From : https://github.com/github/gitignore/blob/master/Global/MATLAB.gitignore | ||
|
||
# Windows default autosave extension | ||
*.asv | ||
|
||
# OSX / *nix default autosave extension | ||
*.m~ | ||
|
||
# Compiled MEX binaries (all platforms) | ||
*.mex* | ||
|
||
# Packaged app and toolbox files | ||
*.mlappinstall | ||
*.mltbx | ||
|
||
# Generated helpsearch folders | ||
helpsearch*/ | ||
|
||
# Simulink code generation folders | ||
slprj/ | ||
sccprj/ | ||
|
||
# Matlab code generation folders | ||
codegen/ | ||
|
||
# Simulink autosave extension | ||
*.autosave | ||
|
||
# Simulink cache files | ||
*.slxc | ||
|
||
# Octave session info | ||
octave-workspace |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
cff-version: 1.2.0 | ||
|
||
title: "CPP PTB" | ||
|
||
version: 1.3.0 | ||
|
||
abstract: a set of function to make it easier to create behavioral, EEG, fMRI experiment with psychtoolbox . | ||
|
||
message: "If you use this software, please cite it as below." | ||
|
||
repository-code: "https://github.com/cpp-lln-lab/CPP_PTB" | ||
|
||
identifiers: | ||
- description: This is the collection of archived snapshots of all releases of CPP PTB | ||
type: doi | ||
value: "10.5281/zenodo.4007672" | ||
|
||
contact: | ||
- affiliation: "Université catholique de Louvain" | ||
email: remi.gau@uclouvain.be | ||
family-names: Gau | ||
given-names: Rémi | ||
|
||
authors: | ||
- family-names: "Gau" | ||
given-names: "Rémi" | ||
orcid: "https://orcid.org/0000-0002-1535-9767" | ||
affiliation: "Université catholique de Louvain" | ||
|
||
- family-names: "Barilari" | ||
given-names: "Marco" | ||
orcid: "https://orcid.org/0000-0002-3313-3120" | ||
affiliation: "Université catholique de Louvain" | ||
|
||
- family-names: "Battal" | ||
given-names: "Ceren" | ||
orcid: "https://orcid.org/0000-0002-9844-7630" | ||
affiliation: "Université catholique de Louvain" | ||
|
||
- family-names: "Falagiarda" | ||
given-names: "Federica" | ||
orcid: "https://orcid.org/0000-0001-7844-1605" | ||
affiliation: "Université catholique de Louvain" | ||
|
||
- family-names: "Shahzad" | ||
given-names: "Iqra" | ||
orcid: "https://orcid.org/0000-0002-8724-7668" | ||
affiliation: "Université catholique de Louvain" | ||
|
||
license: MIT license | ||
|
||
keywords: | ||
- PsychToolBox | ||
- neuroscience | ||
- MATLAB | ||
- Octave |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# TODO make more general to use the local matlab version | ||
MATLAB = /usr/local/MATLAB/R2017a/bin/matlab | ||
ARG = -nodisplay -nosplash -nodesktop | ||
|
||
lint: | ||
mh_style --fix && mh_metric --ci && mh_lint | ||
|
||
test: | ||
$(MATLAB) $(ARG) -r "runTests; exit()" | ||
|
||
version.txt: CITATION.cff | ||
grep -w "^version" CITATION.cff | sed "s/version: /v/g" > version.txt | ||
|
||
validate_cff: CITATION.cff | ||
cffconvert --validate | ||
|
||
manual: | ||
cd docs && sh create_manual.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.