mirror of
https://github.com/QIDITECH/QIDIStudio.git
synced 2026-02-07 04:11:50 +03:00
Updated to 1.9.5, and optimize calibration and device
This commit is contained in:
@@ -756,7 +756,8 @@ bool PresetBundle::import_json_presets(PresetsConfigSubstitutions & s
|
||||
boost::optional<Semver> version = Semver::parse(version_str);
|
||||
if (!version) return false;
|
||||
Semver app_version = *(Semver::parse(SLIC3R_VERSION));
|
||||
if (version->maj() != app_version.maj()) {
|
||||
//1.9.5
|
||||
if (version->maj() > app_version.maj()) {
|
||||
BOOST_LOG_TRIVIAL(warning) << __FUNCTION__ << " Preset incompatibla, not loading: " << name;
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user