Skip to content

Commit

Permalink
Release 2018.1.0
Browse files Browse the repository at this point in the history
Merge pull request #173 from alicevision/release_2018.1.0
  • Loading branch information
yann-lty authored Aug 9, 2018
2 parents 2361306 + 6cd0522 commit e5376b9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Meshroom Changelog

For algorithmic changes related to the photogrammetric pipeline,
please refer to [AliceVision changelog](https://github.com/alicevision/AliceVision/blob/develop/CHANGES.md).

## Release 2018.1.0

First release of Meshroom.
Based on [AliceVision 2.0.0](https://github.com/alicevision/AliceVision/tree/v2.0.0).
4 changes: 2 additions & 2 deletions meshroom/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "2018.1"
__version__ = "2018.1.0"

import logging
from enum import Enum
Expand Down Expand Up @@ -74,7 +74,7 @@ def addToEnvPath(var, val, index=-1):
aliceVisionShareDir = os.path.join(aliceVisionDir, "share", "aliceVision")
qtPluginsDir = os.path.join(rootDir, "qtPlugins")
sensorDBPath = os.path.join(aliceVisionShareDir, "cameraSensors.db")
voctreePath = os.path.join(aliceVisionShareDir, "vlfeat_K80L3.tree")
voctreePath = os.path.join(aliceVisionShareDir, "vlfeat_K80L3.SIFT.tree")

env = {
'PATH': aliceVisionBinDir,
Expand Down
2 changes: 1 addition & 1 deletion meshroom/ui/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def licensesModel(self):
},
{
"title": "AliceVision",
"localUrl": os.path.join(rootDir, "aliceVision", "share", "COPYING.md"),
"localUrl": os.path.join(rootDir, "aliceVision", "share", "aliceVision", "COPYING.md"),
"onlineUrl": "https://raw.githubusercontent.com/alicevision/AliceVision/develop/COPYING.md"
}
]

0 comments on commit e5376b9

Please sign in to comment.