Skip to content

Commit b249046

Browse files
committed
Merge branch 'release/0.26.0'
2 parents af9f9e0 + 1f145bf commit b249046

File tree

30 files changed

+248
-294
lines changed

30 files changed

+248
-294
lines changed

.gitignore

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,21 @@ Thumbs.db
1212
*~
1313

1414
# R
15-
#######################
15+
######################
1616
.Rhistory
1717

1818
# Python
19-
#######################
19+
######################
2020
*.py[cod]
2121
**/*.pyc
22+
.mypy_cache
2223

2324
# C extensions
25+
######################
2426
*.so
2527

2628
# Packages
29+
######################
2730
*.egg
2831
*.egg-info
2932
dist
@@ -45,30 +48,45 @@ __pycache__
4548
.env
4649

4750
# Installer logs
51+
######################
4852
pip-log.txt
4953

5054
# Unit test / coverage reports
55+
######################
5156
.coverage
5257
.tox
5358
nosetests.xml
5459

5560
# Translations
61+
######################
5662
*.mo
5763

5864
# Mr Developer
65+
######################
5966
.mr.developer.cfg
6067
.project
6168
.pydevproject
6269

6370
# Sphinx
71+
######################
6472
docs/_build
6573
README.html
6674

6775
# Player files
76+
######################
6877
player/files/*
6978
player/mfr_config_local.py
7079
player/static/mfr/*
7180

81+
# Misc
82+
######################
7283
!.gitkeep
73-
7484
.cache
85+
86+
# Node Modules
87+
######################
88+
node_modules/
89+
90+
# Asynchronous HTTP
91+
######################
92+
/src/

AUTHORS.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,6 @@ Contributors
3131
- Matthew Keitelman `@zamattiac <https://github.com/zamattiac>`_
3232
- John Tordoff `@Johnetordoff <https://github.com/Johnetordoff>`_
3333
- Addison Schiller `@AddisonSchiller <https://github.com/AddisonSchiller>`_
34-
- Longze Chen `@cslzchen https://github.com/cslzchen`_
35-
- Jonathon Love `@jonathon-love https://github.com/jonathon-love`_
34+
- Longze Chen `@cslzchen <https://github.com/cslzchen>`_
35+
- Jonathon Love `@jonathon-love <https://github.com/jonathon-love>`_
36+
- Josh Bird `@birdbrained <https://github.com/birdbrained>`_

CHANGELOG

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22
ChangeLog
33
*********
44

5+
0.26.0 (2018-06-22)
6+
===================
7+
- Feature: Teach MFR to identify itself when requesting metadata from WaterButler. This will allow
8+
WaterButler to signal to the OSF when a render or export request occurs, letting OSF tally better
9+
metrics on file views.
10+
- Feature: When asked to export a file in its current format, return the unmodified file instead of
11+
complaining about the extension not having a supported exporter.
12+
- Fix: Don't show scrollbars on videos. They should be entirely visible without scrolling.
13+
- Fix: Render .tif files when extension is capitalized.
14+
- Docs: Remove obsolete documentation, fix markup errors, and edit existing docs.
15+
516
0.25.11 (2018-06-08)
617
====================
718
- Fix: Percent-encode quote characters in urls to avoid breaking some renderers.

0 commit comments

Comments
 (0)