forked from tkhalymon/megaminx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove trailing spaces/whitespace again and New release v1.4.2
- Loading branch information
Showing
12 changed files
with
39 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
GLUT_ICON ICON "MAINICON.ico" | ||
// Executable version information. | ||
VS_VERSION_INFO VERSIONINFO | ||
FILEVERSION 1,4,0,0 | ||
PRODUCTVERSION 1,4,0,0 | ||
FILEVERSION 1,4,2,0 | ||
PRODUCTVERSION 1,4,2,0 | ||
BEGIN | ||
BLOCK "StringFileInfo" | ||
BEGIN | ||
BLOCK "080904b0" | ||
BEGIN | ||
VALUE "CompanyName", "genBTC" | ||
VALUE "FileDescription", "Megaminx v1.4.0 - genBTC mod" | ||
VALUE "FileVersion", "1.4.0.0" | ||
VALUE "FileDescription", "Megaminx v1.4.2 - genBTC mod" | ||
VALUE "FileVersion", "1.4.2.0" | ||
VALUE "InternalName", "Megaminx" | ||
VALUE "LegalCopyright", "©2023 genBTC, based on TarasKhalymon" | ||
VALUE "OriginalFilename", "Megaminx.exe" | ||
VALUE "ProductName", "Megaminx" | ||
VALUE "ProductVersion", "1.4.0.0" | ||
VALUE "ProductVersion", "1.4.2.0" | ||
END | ||
END | ||
END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/* MegaMinx v1.4.1 - 2017+2018+2019+2020+2023 - genBTC edition | ||
/* MegaMinx v1.4.2 - 2017+2018+2019+2020+2023 - genBTC edition | ||
* Uses code originally from Taras Khalymon (tkhalymon) / @cybervisiontech / [email protected] | ||
* genBTC November 2017 - [email protected] / @genr8_ / github.com/genbtc/ | ||
* genBTC December 2018 - fixups, tweaks. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
static const char *myglutTitle = "GenBTC's Megaminx Solver v1.4.1"; | ||
static const char *myglutTitle = "GenBTC's Megaminx Solver v1.4.2"; | ||
/////////////////////////////////////////////////////////////////////////////// | ||
/* MegaMinx2 - v1.3 Oct24-Dec12, 2017 - genBTC mod | ||
- v1.3.2 Nov 22, 2018 | ||
|
@@ -7,7 +7,8 @@ static const char *myglutTitle = "GenBTC's Megaminx Solver v1.4.1"; | |
- v1.3.8 Feb 03, 2023 | ||
- v1.3.9 Mar 06, 2023 | ||
- v1.4.0-b1 Mar 8, 2023 - CLI Shell (readline) | ||
- v1.4.1 Oct 14, 2023 | ||
- v1.4.1 Oct 14, 2023 (bug: ld gc'ed needed symbols) | ||
- v1.4.2 Oct 22, 2023 (clean code) | ||
* Uses some code originally from: | ||
* Taras Khalymon (tkhalymon) / @cybervisiontech / [email protected] | ||
* Modified by: | ||
|
@@ -76,7 +77,7 @@ int main(int argc, char *argv[]) { | |
glutReshapeFunc(myglutChangeWindowSize); | ||
glutMouseFunc(myglutMousePressed); | ||
glutMotionFunc(myglutMousePressedMove); | ||
|
||
// Right click menu: | ||
createMenu(); | ||
glutMenuStatusFunc(myglutMenuVisible); | ||
|
@@ -120,7 +121,7 @@ void myglutRenderScene() { | |
g_camera.m_angleX, g_camera.m_angleY); | ||
GetCurrentFace(); | ||
utDrawText2D(10.f, HEIGHT - 40.f, lastface); | ||
|
||
// Print out Text (Help display) | ||
if (g_help) | ||
utPrintHelpMenu(WIDTH - 245.f, HEIGHT - 265.f); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters