Skip to content

Commit

Permalink
add: release 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jernejaMislej committed Dec 10, 2018
1 parent eec864f commit c486930
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -98,3 +98,7 @@
* Argument `--video_file` was renamed to `--video_import_path` as directories of one or more videos can now be processed and uploaded. Note that even if one video is to be processed and uploaded, the directory of the video should be specified as the video import path and not the video file itself.
* Only the Image Description EXIF tag is overwritten with the mapillary image description which includes all the data obtained during the `process` command. If one would like the rest of the tags to be overwritten, an additional argument needs to be passed under advanced usage. Single specific tags can also be overwritten by additional specific corresponding arguments.

## 0.3.1 (2018-12-10)

### Features and improvements
* mapillary_tools available to be downloaded and installed as a package
2 changes: 1 addition & 1 deletion mapillary_tools/commands/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
process_and_upload
]

VERSION = "0.3.0"
VERSION = "0.3.1"


def add_general_arguments(parser, command):
Expand Down
6 changes: 3 additions & 3 deletions mapillary_tools/process_import_meta_properties.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def finalize_import_properties_process(image,
add_meta_tag(mapillary_description,
"strings",
"mapillary_tools_version",
"0.3.0")
"0.3.1")

if custom_meta_data:
parse_and_add_custom_meta_tags(mapillary_description,
Expand Down Expand Up @@ -170,7 +170,7 @@ def process_import_meta_properties(import_path,
# sanity check if video file is passed
if video_import_path and not os.path.isdir(video_import_path):
print_error("Error, video path " + video_import_path +
" does not exist, exiting...")
" does not exist, exiting...")
sys.exit(1)

# in case of video processing, adjust the import path
Expand All @@ -183,7 +183,7 @@ def process_import_meta_properties(import_path,
# basic check for all
if not import_path or not os.path.isdir(import_path):
print_error("Error, import directory " + import_path +
" does not exist, exiting...")
" does not exist, exiting...")
sys.exit(1)

# get list of file to process
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from setuptools import setup

setup(name='mapillary_tools',
version='0.3.0',
version='0.3.1',
description='Mapillary Image/Video Import Pipeline',
url='https://github.com/mapillary/mapillary_tools',
author='Mapillary',
Expand Down

0 comments on commit c486930

Please sign in to comment.