Clean up history to fork from esterTion's repo, add version number, fix license copyrights

This commit is contained in:
Zsolt Zitting 2023-11-09 01:48:38 -08:00
parent 2f22eb21aa
commit dc18dd7795
4 changed files with 11 additions and 2 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.idea/

View File

@ -1,6 +1,8 @@
MIT License
Copyright (c) 2021 esterTion
Copyright (c) 2021-2023 esterTion
Copyright (c) 2023 WenqiOfficial
Copyright (c) 2023 yellowberryHN
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View File

@ -1,5 +1,7 @@
//window.addEventListener('load', function () {
const mpVersion = '1.2.0';
let maxR
/** @type {CanvasRenderingContext2D} */
@ -1092,7 +1094,9 @@ function render(now) {
`${playedNotesCount[0]} (${playedNotesCount[1]}) / ${comboInfo[0]} (${comboInfo[1]})`,
`${playInfoStat.min}:${playInfoStat.sec}.${playInfoStat.milisec} (${playInfoStat.section}/${playInfoStat.beat})`,
`BPM: ${playInfoStat.bpm}`,
`SFL: ${playInfoStat.sfl}`
`SFL: ${playInfoStat.sfl}`,
``,
`v${mpVersion}`
]
if (reversing) {
playInfoText.push('Reversing')
@ -1579,4 +1583,6 @@ bgmCtr.addEventListener('volumeChange', v => {
bgmGain.gain.value = v
})
document.title += ` v${mpVersion}`
//})