diff --git a/CMakeLists.txt b/CMakeLists.txt index 818f501..6713bec 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8) -project(kima2 VERSION 1.2.0) +project(kima2 VERSION 1.3.0) set(CMAKE_MODULE_PATH "${CMAKE_HOME_DIRECTORY}/cmake") diff --git a/manual/Benutzerhandbuch.odt b/manual/Benutzerhandbuch.odt index 7e7353b..422ace1 100644 Binary files a/manual/Benutzerhandbuch.odt and b/manual/Benutzerhandbuch.odt differ diff --git a/manual/Benutzerhandbuch.pdf b/manual/Benutzerhandbuch.pdf index 574f970..20a3822 100644 Binary files a/manual/Benutzerhandbuch.pdf and b/manual/Benutzerhandbuch.pdf differ diff --git a/src/core/excelreader.cpp b/src/core/excelreader.cpp index 4bc712f..22d2d9d 100644 --- a/src/core/excelreader.cpp +++ b/src/core/excelreader.cpp @@ -23,15 +23,12 @@ std::size_t ExcelReader::readSellersFromFile(const fs::path& filePath, Marketpla auto ws = wb.sheet_by_index(0); const int START_ROW = 5; - const int END_ROW = 350; int rowCount{}; for (const auto& row : ws.rows(false)) { if (rowCount < START_ROW) { ++rowCount; continue; - } else if (rowCount > END_ROW) { - break; } if (row[2].value().empty() && row[3].value().empty()) { ++rowCount;