Skip to content

Commit

Permalink
Added modification info
Browse files Browse the repository at this point in the history
  • Loading branch information
ptrumpis committed Mar 1, 2023
1 parent 5769d7d commit 225f54c
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 12 deletions.
5 changes: 4 additions & 1 deletion js/MarcFile.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
/* MODDED VERSION OF MarcFile.js v20230202 - Marc Robledo 2014-2023 - http://www.marcrobledo.com/license */
/*
MODDED VERSION OF MarcFile.js v20230202 - Marc Robledo 2014-2023 - http://www.marcrobledo.com/license
Modded by (c) 2023 Patrick Trumpis - https://github.com/ptrumpis
*/

function MarcFile(source, onLoad) {
if (typeof source === 'object' && source.files) /* get first file only if source is input with multiple files */
Expand Down
5 changes: 4 additions & 1 deletion js/RomPatcher.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
/* Rom Patcher JS v20230202 - Marc Robledo 2016-2023 - http://www.marcrobledo.com/license */
/*
Rom Patcher JS v20230202 - Marc Robledo 2016-2020 - http://www.marcrobledo.com/license
Modded by (c) 2023 Patrick Trumpis - https://github.com/ptrumpis
*/

var romFile, patchFile, patch, tempFile, headerSize, oldHeader;

Expand Down
6 changes: 4 additions & 2 deletions js/crc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
/* Rom Patcher JS - CRC32 calculator v20210815 - Marc Robledo 2016-2021 - http://www.marcrobledo.com/license */

/*
Rom Patcher JS - CRC32 calculator v20210815 - Marc Robledo 2016-2021 - http://www.marcrobledo.com/license
Modded by (c) 2023 Patrick Trumpis - https://github.com/ptrumpis
*/
function padZeroes(intVal, nBytes) {
var hexString = intVal.toString(16);
while (hexString.length < nBytes * 2)
Expand Down
5 changes: 4 additions & 1 deletion js/worker_apply.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
/* Rom Patcher JS v20200502 - Marc Robledo 2016-2020 - http://www.marcrobledo.com/license */
/*
Rom Patcher JS v20200502 - Marc Robledo 2016-2020 - http://www.marcrobledo.com/license
Modded by (c) 2023 Patrick Trumpis - https://github.com/ptrumpis
*/

self.importScripts(
'./MarcFile.js',
Expand Down
5 changes: 4 additions & 1 deletion js/worker_crc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
/* Rom Patcher JS v20200502 - Marc Robledo 2016-2020 - http://www.marcrobledo.com/license */
/*
Rom Patcher JS v20200502 - Marc Robledo 2016-2020 - http://www.marcrobledo.com/license
Modded by (c) 2023 Patrick Trumpis - https://github.com/ptrumpis
*/

self.importScripts(
'./MarcFile.js',
Expand Down
8 changes: 2 additions & 6 deletions style/RomPatcher.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/* Rom Patcher JS CSS template by Marc Robledo v20220323 */
/* Modded by (c) 2023 Patrick Trumpis - https://github.com/ptrumpis */
/* minify at https://cssminifier.com/ */

/* @FONT-FACES */
Expand Down Expand Up @@ -151,19 +152,14 @@ hr{border:none;border-top:1px dotted #bbb;margin:15px 0}
}
.switch.enabled{background-color:#41bdc7;}




.tab{background-color:#f9fafa;padding:30px 15px;border-radius: 3px}
#tab1{display:none}


.buttons{
margin-top:20px;
text-align:right
}



/* forms */
input[type=file],select{
box-sizing:border-box;
Expand Down

0 comments on commit 225f54c

Please sign in to comment.