Skip to content

Commit

Permalink
Merge pull request #104 from SciTools-incubator/vn0.6.17
Browse files Browse the repository at this point in the history
Corrected the sort for T+ type sorting, vn0.6.17 release
  • Loading branch information
Malcolm Brooks authored May 3, 2018
2 parents dfc6250 + 94b9ab6 commit feb0b7a
Show file tree
Hide file tree
Showing 46 changed files with 1,422 additions and 1,392 deletions.
2 changes: 1 addition & 1 deletion ImageMetaTag/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
'''

# see release_process for details on incrementing the version
__version__ = '0.6.16'
__version__ = '0.6.17'
__documentation__ = 'http://scitools-incubator.github.io/image-meta-tag/build/html/'

# list fo file formats which are valid for saving metadata to:
Expand Down
2 changes: 1 addition & 1 deletion ImageMetaTag/img_dict.py
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ def sort_keys(self, sort_methods, devmode=False):
none_keys.sort(reverse=True)
# and pull out the labels, in the right order,
# with the none_keys go at the end:
self.keys[i_key] = [x[0] for x in labels_and_values] + none_keys
self.keys[i_key] = [x[1] for x in values_and_labels] + none_keys

elif method in ['level', 'numeric', 'reverse_level', 'reverse_numeric']:
#'level' - starting with the surface and working upwards, then 'special'
Expand Down
2 changes: 1 addition & 1 deletion ImageMetaTag/javascript/imt_dropdown.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// ImageMetaTag dropdown menu scripting - vn0.6.16
// ImageMetaTag dropdown menu scripting - vn0.6.17
// ImageMetaTag is a python package built around a wrapper for savefig in
// matplotlib, which adds metadata tags to supported image file formats.
// See https://github.com/SciTools-incubator/image-meta-tag for details.
Expand Down
Binary file modified docs/build/doctrees/ImageDict.doctree
Binary file not shown.
Binary file modified docs/build/doctrees/db.doctree
Binary file not shown.
Binary file modified docs/build/doctrees/environment.pickle
Binary file not shown.
Binary file modified docs/build/doctrees/index.doctree
Binary file not shown.
Binary file modified docs/build/doctrees/savefig.doctree
Binary file not shown.
Binary file modified docs/build/doctrees/simple.doctree
Binary file not shown.
Binary file modified docs/build/doctrees/test.doctree
Binary file not shown.
Binary file modified docs/build/doctrees/versions.doctree
Binary file not shown.
Binary file modified docs/build/doctrees/webpage.doctree
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/build/html/.buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 5e6c2e3f0744a3f3ab7594f8fcc3a172
config: e55f85c73ebb0967909908496063fa65
tags: 645f666f9bcd5a90fca523b33c5a78b7
109 changes: 55 additions & 54 deletions docs/build/html/ImageDict.html

Large diffs are not rendered by default.

135 changes: 0 additions & 135 deletions docs/build/html/_modules/ImageMetaTag.html

This file was deleted.

Loading

0 comments on commit feb0b7a

Please sign in to comment.