diff --git a/Marlin/Version.h b/Marlin/Version.h index e3b05a20f8..3aa0c6705c 100644 --- a/Marlin/Version.h +++ b/Marlin/Version.h @@ -28,7 +28,7 @@ /** * Marlin release version identifier */ -#define SHORT_BUILD_VERSION "2.0.6_DW7" +#define SHORT_BUILD_VERSION "2.0.7_DW7.1" /** * Verbose version identifier which should contain a reference to the location @@ -111,7 +111,7 @@ * here we define this default string as the date where the latest release * version was tagged. */ -#define STRING_DISTRIBUTION_DATE "2020-08-10" +#define STRING_DISTRIBUTION_DATE "2020-11-07" /** * Defines a generic printer name to be output to the LCD after booting Marlin. diff --git a/Marlin/src/lcd/extui/lib/Creality/Creality_DWIN.cpp b/Marlin/src/lcd/extui/lib/Creality/Creality_DWIN.cpp index 3217dcde71..cd3059bc8c 100644 --- a/Marlin/src/lcd/extui/lib/Creality/Creality_DWIN.cpp +++ b/Marlin/src/lcd/extui/lib/Creality/Creality_DWIN.cpp @@ -1512,7 +1512,7 @@ SERIAL_ECHOLN(PSTR("BeginSwitch")); { if( #if (FIL_RUNOUT_STATE == LOW) - #define FIL_RUNOUT_INVERTING true + #define FIL_RUNOUT_INVERTING false #endif #if DISABLED(FILAMENT_RUNOUT_SENSOR) || ENABLED(FILAMENT_MOTION_SENSOR) true diff --git a/buildroot/share/PlatformIO/scripts/common-cxxflags.py b/buildroot/share/PlatformIO/scripts/common-cxxflags.py index 4bdcc37251..fa4f30e7a6 100644 --- a/buildroot/share/PlatformIO/scripts/common-cxxflags.py +++ b/buildroot/share/PlatformIO/scripts/common-cxxflags.py @@ -21,5 +21,5 @@ env.Append(CXXFLAGS=[ if env.GetBuildType() == "debug": env['BUILD_DIR'] = '$PROJECT_BUILD_DIR/$PIOENV/debug' env_name = str(env["PIOENV"]) -env.Replace(PROGNAME="%s_DW7" % (env_name)) +env.Replace(PROGNAME="%s_DW7.1" % (env_name)) print("Environment: %s" % (env_name))