Skip to content

Commit 6b9f0f3

Browse files
authored
Merge pull request #44 from Digitelektro/develop
Develop
2 parents f8c9425 + e639e50 commit 6b9f0f3

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ if(UNIX AND NOT APPLE)
151151
SET(CPACK_GENERATOR "DEB")
152152
SET(CPACK_PACKAGE_VERSION_MAJOR "2")
153153
SET(CPACK_PACKAGE_VERSION_MINOR "4")
154-
SET(CPACK_PACKAGE_VERSION_PATCH "1")
154+
SET(CPACK_PACKAGE_VERSION_PATCH "2")
155155
SET(CPACK_DEBIAN_PACKAGE_MAINTAINER "Digitelektro")
156156
SET(CPACK_DEBIAN_PACKAGE_HOMEPAGE "https://github.com/Digitelektro/MeteorDemod")
157157
SET(CPACK_DEBIAN_PACKAGE_DESCRIPTION "Russian Meteor M2 weather satellite data decoder")

common/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33

44
#define VERSION_MAJOR 2
55
#define VERSION_MINOR 4
6-
#define VERSION_FIX 1
6+
#define VERSION_FIX 2
77

88
#endif // VERSION_H

main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,7 @@ void searchForImages(std::list<cv::Mat> &imagesOut, std::list<PixelGeolocationCa
602602
}
603603
}
604604

605-
if(map.size() > 2) {
605+
if(map.size() > 1) {
606606
for (auto const &[time, paths] : map) {
607607
std::cout << std::get<1>(paths) << std::endl;
608608

0 commit comments

Comments
 (0)