Skip to content

Commit 508bcd4

Browse files
committed
Merge branch 'release/1.1.1'
2 parents 8852c46 + 7ab4800 commit 508bcd4

File tree

5 files changed

+21
-4
lines changed

5 files changed

+21
-4
lines changed

AUTHORS.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# AUTHORS
2+
3+
CSS Injector would not be possible without generous contributions from our authors and funders.
4+
5+
David R Nelson, Director of the University of Florida Clinical Translational Science Institute, provides funding support for the UF CTSI REDCap team via UF CTSA Award and matching funds from the UF Office of Research. Robert Leeman provided support for this project through his risky behavior studies.
6+
7+
We want to thank our developers Kyle Chesney kyle.chesney@ufl.edu, Taryn Stoffs tls@ufl.edu, Philip Chase pbc@ufl.edu, Marly Cormar marlycormar@ufl.edu, Tiago Bember tbembersimeao@ufl.edu, and Christopher Barnes cpb@ufl.edu for their contributions to the project.

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ All notable changes to the REDCap CSS Injector module will be documented in this
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

55

6+
## [1.1.1] - 2020-02-14
7+
### Changed
8+
- Add DOI to README.md (Philip Chase)
9+
- Update authors in config.json (Philip Chase)
10+
- Add AUTHORS file (Philip Chase)
11+
- use builtin method instead of referencing ExternalModules class (Kyle Chesney)
12+
13+
614
## [1.1.0] - 2019-09-23
715
### Added
816
- Add flat/gradient stylized survey css example (Kyle Chesney)

ExternalModule.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@ function getFormattedSettings($project_id = null) {
6565

6666
if ($project_id) {
6767
$settings = $settings['project-settings'];
68-
$values = ExternalModules::getProjectSettingsAsArray($this->PREFIX, $project_id);
68+
$values = $this->getProjectSettings($project_id);
6969
}
7070
else {
7171
$settings = $settings['system-settings'];
72-
$values = ExternalModules::getSystemSettingsAsArray($this->PREFIX);
72+
$values = $this->getSystemSettings();
7373
}
7474

7575
return $this->_getFormattedSettings($settings, $values);

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# REDCap CSS Injector
22
Allows administrators to inject CSS into surveys and data entry forms.
33

4+
[![DOI](https://zenodo.org/badge/141312467.svg)](https://zenodo.org/badge/latestdoi/141312467)
5+
46
## Prerequisites
57
- REDCap >= 8.0.3
68

config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
"institution": "University of Florida - CTSI"
1919
},
2020
{
21-
"name": "Tiago Bember",
22-
"email": "tbembersimeao@ufl.edu",
21+
"name": "Kyle Chesney",
22+
"email": "kyle.chesney@ufl.edu",
2323
"institution": "University of Florida - CTSI"
2424
}
2525
],

0 commit comments

Comments
 (0)