Release 2018.1.0

Merge pull request #173 from alicevision/release_2018.1.0
This commit is contained in:
Yann Lanthony 2018-08-09 18:57:18 +02:00 committed by GitHub
commit e5376b9c93
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 3 deletions

9
CHANGES.md Normal file
View file

@ -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).

View file

@ -1,4 +1,4 @@
__version__ = "2018.1"
__version__ = "2018.1.0"
import logging
from enum import Enum
@ -74,7 +74,7 @@ def setupEnvironment():
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,

View file

@ -102,7 +102,7 @@ class MeshroomApp(QApplication):
},
{
"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"
}
]