0.6.0
Changes
See CHANGELOG.md for details.
- Increased the note fields in many different places to handle longer notes.
- Modified the note fields on the screens to automatically resize during typing and to always show the full note, therefore no scrolling is required.
- Allow more than one pregnancy to a patient.
- Easily add a pregnancy to a patient.
- Easily see whether a patient has another pregnancy.
- Easily switch between pregnancies of a patient.
- Various bug fixes.
- Lots of fixes to the Summary Report.
- Better table layout on some screens.
- Guard can no longer see summary report button and other options (he could never run the report, only see the button).
- Better handling of LMP on labs page and Iron report.
- Display of checkboxes is better.
- Upgrade to current of almost all third-party modules.
Upgrade Instructions
- Upgrade to Nodejs v0.10.40.
- Add host and port to cfg.session.config in the configuration file. See config.sample.js.
npm install -g gulp
npm install -g bower
npm install
bower install
gulp
Run the following SQL to upgrade the database. Back up your database first.
ALTER TABLE pregnancy MODIFY COLUMN riskNote VARCHAR(2000) NULL;
ALTER TABLE pregnancy MODIFY COLUMN questionnaireNote VARCHAR(2000) NULL;
ALTER TABLE pregnancyHistory MODIFY COLUMN note VARCHAR(2000) NULL;
ALTER TABLE prenatalExam MODIFY COLUMN fhNote VARCHAR(2000) NULL;
ALTER TABLE prenatalExam MODIFY COLUMN fhtNote VARCHAR(2000) NULL;
ALTER TABLE prenatalExam MODIFY COLUMN risk VARCHAR(2000) NULL;
ALTER TABLE prenatalExam MODIFY COLUMN note VARCHAR(4000) NULL;
ALTER TABLE labTestResult MODIFY COLUMN result VARCHAR(4000) NULL;
ALTER TABLE pregnancyLog MODIFY COLUMN riskNote VARCHAR(2000) NULL;
ALTER TABLE pregnancyLog MODIFY COLUMN questionnaireNote VARCHAR(2000) NULL;
ALTER TABLE pregnancyHistoryLog MODIFY COLUMN note VARCHAR(2000) NULL;
ALTER TABLE prenatalExamLog MODIFY COLUMN fhNote VARCHAR(2000) NULL;
ALTER TABLE prenatalExamLog MODIFY COLUMN fhtNote VARCHAR(2000) NULL;
ALTER TABLE prenatalExamLog MODIFY COLUMN risk VARCHAR(2000) NULL;
ALTER TABLE prenatalExamLog MODIFY COLUMN note VARCHAR(4000) NULL;
ALTER TABLE labTestResultLog MODIFY COLUMN result VARCHAR(4000) NULL;