Skip to content

Commit

Permalink
Bump version of SpecUtils
Browse files Browse the repository at this point in the history
  • Loading branch information
wcjohns committed Sep 6, 2024
1 parent 5f5f9a9 commit 6f43a17
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion external_libs/SpecUtils
Submodule SpecUtils updated 39 files
+73 −0 .github/workflows/ci.yml
+23 −0 3rdparty/code_from_boost/LICENSE_1_0.txt
+389 −0 3rdparty/code_from_boost/hash/hash.hpp
+138 −24 CMakeLists.txt
+1 −1 SpecUtils/EnergyCalibration.h
+6 −7 SpecUtils/SpecFile.h
+3 −0 SpecUtils/SpecUtils_config.h.in
+22 −8 SpecUtils/StringAlgo.h
+2,426 −0 bindings/c/SpecUtils_c.cpp
+1,176 −0 bindings/c/SpecUtils_c.h
+8 −2 examples/CMakeLists.txt
+273 −0 examples/c_interface_example.c
+9 −2 examples/convert_to_n42.cpp
+1 −7 regression_test/CMakeLists.txt
+235 −175 regression_test/regression_test.cpp
+2 −2 src/D3SpectrumExport.cpp
+6 −11 src/DateTime.cpp
+7 −6 src/EnergyCalibration.cpp
+90 −32 src/SpecFile.cpp
+3 −3 src/SpecFile_n42.cpp
+0 −9 src/SpecFile_spc.cpp
+332 −269 src/StringAlgo.cpp
+1 −1 src/UriSpectrum.cpp
+72 −19 unit_tests/CMakeLists.txt
+21 −27 unit_tests/test_cubic_spline.cpp
+2 −2 unit_tests/test_data/txt/test_string_functions_output.txt
+64 −72 unit_tests/test_energy_calibration.cpp
+261 −271 unit_tests/test_filesystem_functions.cpp
+177 −0 unit_tests/test_hash.cpp
+344 −58 unit_tests/test_iso_time_string.cpp
+16 −10 unit_tests/test_rebin_by_lower_energy.cpp
+10 −16 unit_tests/test_safe_get_line.cpp
+26 −21 unit_tests/test_spec_file_open.cpp
+399 −175 unit_tests/test_split_to_floats_and_ints.cpp
+229 −207 unit_tests/test_string_functions.cpp
+55 −58 unit_tests/test_time_from_string.cpp
+532 −297 unit_tests/test_uri_spectrum.cpp
+43 −49 unit_tests/test_utf8_limit_str_size.cpp
+7 −13 unit_tests/test_utf8_str_len.cpp
2 changes: 1 addition & 1 deletion src/SpecFileQueryDbCache.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1469,7 +1469,7 @@ std::string SpecFileQueryDbCache::construct_persisted_db_filename( std::string p
SpecUtils::make_canonical_path(persisted_path);

const auto path_hash = std::hash<std::string>()( persisted_path );
return SpecUtils::append_path( persisted_path, "InterSpec_file_query_cache_" + std::to_string(path_hash) + "_v1.sqlite3" );
return SpecUtils::append_path( persisted_path, "InterSpec_file_query_cache_" + std::to_string(path_hash) + "_v2.sqlite3" );
}//std::string construct_persisted_db_filename( std::string basepath )


Expand Down

0 comments on commit 6f43a17

Please sign in to comment.