-
Notifications
You must be signed in to change notification settings - Fork 0
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 #32 from ctreffe/develop
Mortimer v0.4.2
- Loading branch information
Showing
44 changed files
with
1,944 additions
and
1,411 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 |
---|---|---|
|
@@ -25,3 +25,5 @@ move_to_default_alfred.conf | |
alfredo2_ca_chain.pem | ||
alfred.conf | ||
exp/ | ||
.vscode/settings.json | ||
test.py |
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,17 +1,37 @@ | ||
# Mortimer v0.4.2 | ||
|
||
## Bugfixes | ||
|
||
* Fixed a bug introduced in v0.4.1, which led to a problem with new experiments. Their experiment ID did not get saved at the right time, which caused trouble with data export. | ||
|
||
## Smaller changes | ||
|
||
* Mortimer now displays its own version number and the alfred version currently running on the server. | ||
|
||
# Mortimer v0.4.1 | ||
|
||
## Bugfixes | ||
|
||
* Fixed a bug in `alfredo.py` that caused trouble for videos implemented via `alfred.element.WebVideoElement` in Safari (wouldn't play at all) and Chrome (forward/backward wouldn't work) | ||
|
||
# Mortimer v0.4-beta | ||
|
||
## Breaking changes | ||
- **Separation of web and local experiments**. Web experiments hosted via mortimer and local experiments now save their data into different collections in the Alfred database (`web` and `local`). This means that you can be completely sure that your web and local experiments don't interfere. | ||
- **`exp_id`** for local experiments. You need to specify a unique `exp_id` in the section `[metadata]` of your `config.conf` to be sure that you can retrieve your data from local experiments. Thankfully, Mortimer will always give you a new unique ID on its home page and on the page for local experiment creation. | ||
|
||
* **Separation of web and local experiments**. Web experiments hosted via mortimer and local experiments now save their data into different collections in the Alfred database ( `web` and `local` ). This means that you can be completely sure that your web and local experiments don't interfere. | ||
* **`exp_id`** for local experiments. You need to specify a unique `exp_id` in the section `[metadata]` of your `config.conf` to be sure that you can retrieve your data from local experiments. Thankfully, Mortimer will always give you a new unique ID on its home page and on the page for local experiment creation. | ||
|
||
## New user interface | ||
- **Fully reworked user interface**. The new interface should be quite self-explanatory. Feel free to explore! | ||
|
||
* **Fully reworked user interface**. The new interface should be quite self-explanatory. Feel free to explore! | ||
|
||
## New features | ||
- **File Management** | ||
|
||
* **File Management** | ||
- You can create directories and subdirectories belonging to your experiment | ||
- You can upload now multiple files at once | ||
- No one but you can access you files | ||
- **Configuration**. You can now configure your experiment from within Mortimer. | ||
- **Experiment Log**. You can now view your experiment's log file from within Mortimer. | ||
- **Futurize Scripts**. You can futurize an old script to help you port it to Alfred v1.0. | ||
* **Configuration**. You can now configure your experiment from within Mortimer. | ||
* **Experiment Log**. You can now view your experiment's log file from within Mortimer. | ||
* **Futurize Scripts**. You can futurize an old script to help you port it to Alfred v1.0. | ||
|
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
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,4 +1,4 @@ | ||
#!/usr/bin/env python | ||
|
||
# -*- coding: utf-8 -*- | ||
|
||
from flask import Blueprint, render_template | ||
|
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,4 +1,4 @@ | ||
#!/usr/bin/env python | ||
|
||
# -*- coding: utf-8 -*- | ||
|
||
from flask_wtf import FlaskForm | ||
|
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.