Skip to content

Commit

Permalink
Reached version 1.5.1 (more info in commit description)
Browse files Browse the repository at this point in the history
Fixed some bugs that may occur if the page is not loaded fully.
  • Loading branch information
WaluigiBSOD committed Nov 15, 2023
1 parent 39d03e0 commit 9345179
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Dr. Mario 64 Password Decoder

JavaScript port of [Dr. Mario 64 Password Encoder/Decoder Tool](https://github.com/WaluigiBSOD/dm64-password-tool), including only decoding functionality.
JavaScript port of [Dr. Mario 64 Password Generator/Decoder Tool](https://github.com/WaluigiBSOD/dm64-password-tool), including only decoding functionality.

## How to use

Expand All @@ -14,9 +14,9 @@ More info [on TCRF](https://tcrf.net/Dr._Mario_64#Passwords).

## Program

Both this program and [Dr. Mario 64 Password Encoder/Decoder Tool](https://github.com/WaluigiBSOD/dm64-password-tool) were written using the original source code of the game that leaked in July 2020 as reference.
Both this program and [Dr. Mario 64 Password Generator/Decoder Tool](https://github.com/WaluigiBSOD/dm64-password-tool) were written using the original source code of the game that leaked in July 2020 as reference.

The original implementation of the password encoding algorithm inside the source code of the game can be found at `bbgames.7z\bbgames.tar\d1\routefree\bbgames\depot\dm64\src\passwd.c`, for some reason the password decoding algorithm is absent but it can be easily obtained by inverting the encoding one.
The original implementation of the password generation algorithm inside the source code of the game can be found at `bbgames.7z\bbgames.tar\d1\routefree\bbgames\depot\dm64\src\passwd.c`, for some reason the password decoding algorithm is absent but it can be easily obtained by inverting the encoding one.

## License

Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<body>
<h1 id="title">Now Loading</h1>

<h2 id="version" onmouseenter="_SetVersionDate()" onmouseleave="_SetVersion()">...</h2>
<h2 id="version" onmouseenter="if (typeof _SetVersionDate === 'function') _SetVersionDate()" onmouseleave="if (typeof _SetVersion === 'function') _SetVersion()">...</h2>

<br>

Expand All @@ -50,7 +50,7 @@ <h2 id="version" onmouseenter="_SetVersionDate()" onmouseleave="_SetVersion()">.

<div align="center" class="main">

<input type="text" autocomplete="off" id="code" class="code" size="25" maxlength="20" onclick="_ResetInput()" oninput="_CheckPassword()" value=""></input>
<input type="text" autocomplete="off" id="code" class="code" size="25" maxlength="20" onclick="if (typeof _ResetInput === 'function') _ResetInput()" oninput="if (typeof _CheckPassword === 'function') _CheckPassword()" value=""></input>
<p id="error" class="error"><br>Enter password</p>

<table id="result" class="result" style="display: none;">
Expand Down
4 changes: 2 additions & 2 deletions js/info.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

const Title = "Dr. Mario 64 Password Decoder";

const Version = "1.5";
const VersionDate = "6 November 2023";
const Version = "1.5.1";
const VersionDate = "15 November 2023";

// Functions

Expand Down

0 comments on commit 9345179

Please sign in to comment.