Skip to content

Commit c5e0443

Browse files
committed
Version 1.21.3
Increased version number for release
1 parent 6b2b46e commit c5e0443

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/UserInterface.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1883,7 +1883,8 @@ namespace UI
18831883
else
18841884
{
18851885
SerialIo::SendString("M98 P");
1886-
SerialIo::SendFilename(ev == evMacroControlPage ? CondStripDrive(FileManager::GetMacrosRootDir()) : CondStripDrive(FileManager::GetMacrosDir()), fileName);
1886+
const char * array const dir = (ev == evMacroControlPage) ? FileManager::GetMacrosRootDir() : FileManager::GetMacrosDir();
1887+
SerialIo::SendFilename(CondStripDrive(dir), fileName);
18871888
SerialIo::SendChar('\n');
18881889
}
18891890
}

src/Version.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
#ifndef SRC_VERSION_HPP_
99
#define SRC_VERSION_HPP_
1010

11-
#define VERSION_TEXT "1.21.2(12b1)"
11+
#define VERSION_TEXT "1.21.3(13b1)"
1212

1313
#endif /* SRC_VERSION_HPP_ */

0 commit comments

Comments
 (0)