Compare commits
No commits in common. "b81200380705ece432be29ca3ae1c42b68c4e577" and "c6f9c080ac538f95c5dedbe86e3ef76ce4e22587" have entirely different histories.
b812003807
...
c6f9c080ac
12 changed files with 522 additions and 504 deletions
17
README.md
17
README.md
|
|
@ -11,16 +11,7 @@
|
|||
<img src="https://img.shields.io/static/v1?label=Instagram&message=reznor.technology&labelColor=lightgrey&color=E4405F&style=flat&logo=Instagram"></a>
|
||||
</p>
|
||||
|
||||
|
||||
# Notice
|
||||
|
||||
|
||||
# I am deeply saddened to inform you that the author of this repository, ReznoR, passed away in 2022. Development of this project will no longer continue. I will not change anything in this repository. Any donations will be used to maintain his resting place.
|
||||
Thank you for your understanding.
|
||||
|
||||
**His brother – [Gerrrciu](https://github.com/gerrrciu)**
|
||||
|
||||
# Save Completion Analyzer for Hollow Knight
|
||||
# Save Completion Analyzer for Hollow Knight
|
||||
|
||||
> Now you can see what you missed easily! Game Completion %, every Shard/Fragment/Ore, costs, locations, Game Statistics, Hunter's Journal, Achievements, Game Completion essentials. And if you are completely lost, I designed a spoiler-free Hint system based on your individual game progress.
|
||||
|
||||
|
|
@ -107,11 +98,7 @@ If you like the tool and wish it developed further with more functions and easie
|
|||
|
||||
— **General Changes:**
|
||||
✅ Moved Pale Lurker's Retreat to Game Completion % Essentials – World Interactions.
|
||||
✅ Added backwards save compatibility detection to entries: Path of Pain Entrance, Pale Lurker's Retreat.
|
||||
|
||||
— **Geo Rocks:**
|
||||
✅ Added every Geo Rock's value and Geo total from all Rocks (big thanks to Araraura)
|
||||
✅ Added 2 missing Geo Rocks - duplicates in game logic (big thanks to Araraura)
|
||||
✅ Add backwards save compatibility detection to entries: Path of Pain Entrance, Pale Lurker's Retreat.
|
||||
|
||||
* v2.1.0 2022-02-20:
|
||||
|
||||
|
|
|
|||
895
build/app.js
895
build/app.js
File diff suppressed because it is too large
Load diff
File diff suppressed because one or more lines are too long
|
|
@ -302,7 +302,7 @@
|
|||
<div style="margin-bottom: 20px;"></div>
|
||||
|
||||
<p class="smalltext">
|
||||
v2.2.0. Work-In-Progress. Ideas & Bug Reports: <a
|
||||
v2.1.0. Work-In-Progress. Ideas & Bug Reports: <a
|
||||
href="https://steamcommunity.com/app/367520/discussions/0/2915472677711090083/" target="_blank"><i
|
||||
class="simpleicon-steam"></i>Steam Discussions</a> <a
|
||||
href="https://steamcommunity.com/sharedfiles/filedetails/?id=2209910193" target="_blank"><i
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
17
package.json
17
package.json
|
|
@ -1,20 +1,17 @@
|
|||
{
|
||||
"name": "hollow-knight-completion-check",
|
||||
"version": "2.2.0",
|
||||
"version": "2.1.0",
|
||||
"description": "Hollow Knight Save Game Completion Analyzer Web Tool",
|
||||
"main": "index.html",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"start": "npm run build:dev",
|
||||
"build:dev": "NODE_OPTIONS=--openssl-legacy-provider webpack --config webpack.dev.js --mode development",
|
||||
"stage": "NODE_OPTIONS=--openssl-legacy-provider webpack --config webpack.stage.js --mode production",
|
||||
"prod": "NODE_OPTIONS=--openssl-legacy-provider webpack --config webpack.prod.js --mode production",
|
||||
"serve": "python3 -m http.server 8765 --directory docs",
|
||||
"local": "npm run prod && npm run serve"
|
||||
"start": "webpack --config webpack.dev.js --mode development",
|
||||
"stage": "webpack --config webpack.stage.js --mode production",
|
||||
"prod": "webpack --config webpack.prod.js --mode production"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "ssh://git@git.iscg.dev:2222/mikl/hollow-knight-completion-check.git"
|
||||
"url": "git+https://github.com/ReznoRMichael/hollow-knight-completion-check.git"
|
||||
},
|
||||
"keywords": [
|
||||
"hollow",
|
||||
|
|
@ -32,9 +29,9 @@
|
|||
"author": "Michael ReznoR",
|
||||
"license": "GPL-3.0",
|
||||
"bugs": {
|
||||
"url": "https://git.iscg.dev/mikl/hollow-knight-completion-check/issues"
|
||||
"url": "https://github.com/ReznoRMichael/hollow-knight-completion-check/issues"
|
||||
},
|
||||
"homepage": "https://git.iscg.dev/mikl/hollow-knight-completion-check",
|
||||
"homepage": "https://github.com/ReznoRMichael/hollow-knight-completion-check#readme",
|
||||
"dependencies": {
|
||||
"core-js": "^3.18.3"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -7,6 +7,10 @@
|
|||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<link href="favicon.png" rel="icon">
|
||||
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Cinzel&family=Heebo:wght@300;400;500;700&display=swap" rel="stylesheet">
|
||||
|
||||
<title>Save Completion Analyzer for Hollow Knight Online</title>
|
||||
|
||||
<meta name="description"
|
||||
|
|
@ -50,12 +54,22 @@
|
|||
<div id="sub-title">for Hollow Knight</div>
|
||||
|
||||
<p class="smalltext">
|
||||
Local fork of the open-source Hollow Knight Completion Analyzer.
|
||||
<a class="link-social" href="https://www.paypal.me/ReznoRMichael" target="_blank"><i
|
||||
class="simpleicon-paypal"></i>Support Analyzer and get Featured!<i class="simpleicon-paypal"></i></a>
|
||||
<br>
|
||||
<a class="link-social" href="https://steamcommunity.com/sharedfiles/filedetails/?id=2209910193" target="_blank"><i
|
||||
class="simpleicon-steam"></i>Official Steam Guide</a>
|
||||
<a class="link-social" href="https://www.instagram.com/reznor.technology/" target="_blank"><i
|
||||
class="simpleicon-instagram"></i>Instagram</a>
|
||||
<a class="link-social" href="https://www.youtube.com/c/MichaelReznoR" target="_blank"><i
|
||||
class="simpleicon-youtube"></i>Youtube</a>
|
||||
<a class="link-social" href="https://twitter.com/intent/follow?screen_name=ReznoRMichael" target="_blank"><i
|
||||
class="simpleicon-twitter"></i>Twitter</a>
|
||||
<a class="link-social" href="https://github.com/ReznoRMichael/hollow-knight-completion-check" target="_blank"><i
|
||||
class="simpleicon-github"></i>Original project</a>
|
||||
class="simpleicon-github"></i>GitHub</a>
|
||||
<br>
|
||||
<!-- <a href="https://pastebin.com/raw/shfZ4Vqs" target="_blank">[ Decoded 5% Save Example ]</a><br> -->
|
||||
|
||||
<div class="tooltip">
|
||||
<input type="text" id="save-location-input" value="%USERPROFILE%\AppData\LocalLow\Team Cherry\Hollow Knight\"
|
||||
readonly>
|
||||
|
|
@ -146,12 +160,42 @@
|
|||
|
||||
<div style="margin-bottom: 20px;"></div>
|
||||
|
||||
<div class="hall-of-fame-border">
|
||||
|
||||
<h6 class="hall-of-fame">Analyzer Supporters</h6>
|
||||
|
||||
<p class="smalltext">
|
||||
<b class="pp-gold">Klaudia</b> (Lvl 45) -
|
||||
<b class="pp-silver">Rohit</b> (Lvl 7) -
|
||||
<b class="pp-silver">Dominic</b> (Lvl 6) -
|
||||
<b class="pp-silver">David</b> (Lvl 5) -
|
||||
<b class="pp-silver">Peter</b> (Lvl 5) -
|
||||
<b class="pp-silver">Ruben</b> (Lvl 5) -
|
||||
<b class="pp-bronze">AnonymousCanada</b> (Lvl 3) -
|
||||
<b class="pp-bronze">Mozzie</b> (Lvl 2)
|
||||
</p>
|
||||
|
||||
<p class="smalltext">
|
||||
You too can get immortalized here. <a href="https://www.paypal.me/ReznoRMichael" target="_blank"><i
|
||||
class="simpleicon-paypal"></i>Donate<i
|
||||
class="simpleicon-paypal"></i></a> at least $1 for the Analyzer!<br>
|
||||
Lvl indicates your amount of support.
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
<div style="margin-bottom: 20px;"></div>
|
||||
|
||||
<p class="smalltext">
|
||||
Local fork, currently based on v2.2.0. See the repository README for development notes.<br>
|
||||
Original analyzer by <a href="https://github.com/ReznoRMichael/hollow-knight-completion-check"
|
||||
target="_blank">ReznoR</a>, released under GPL-3.0.<br>
|
||||
v2.1.0. Work-In-Progress. Ideas & Bug Reports: <a
|
||||
href="https://steamcommunity.com/app/367520/discussions/0/2915472677711090083/" target="_blank"><i
|
||||
class="simpleicon-steam"></i>Steam Discussions</a> <a
|
||||
href="https://steamcommunity.com/sharedfiles/filedetails/?id=2209910193" target="_blank"><i
|
||||
class="simpleicon-steam"></i>Steam Guide</a>.<br>
|
||||
Programmed, written and created by 🉑 <a href="https://github.com/ReznoRMichael/hollow-knight-completion-check"
|
||||
target="_blank">rezno[R]</a> © 2020–2022<br>
|
||||
<a href="https://store.steampowered.com/app/367520/Hollow_Knight/" target="_blank">Hollow Knight</a> by <a
|
||||
href="https://teamcherry.com.au/" target="_blank">Team Cherry</a>.
|
||||
href="https://teamcherry.com.au/" target="_blank">Team Cherry</a> © 2017–2022<br>
|
||||
</p>
|
||||
|
||||
</div> <!-- end content -->
|
||||
|
|
|
|||
|
|
@ -4044,7 +4044,7 @@ const HK = {
|
|||
geoRocks: {
|
||||
h2: "Geo Rocks",
|
||||
id: "hk-geo-rocks",
|
||||
description: `All Geo Rocks that can be found in the game. Only fully destroyed Geo Rocks are counted. Partially hit Geo Rocks won't be counted. Equipping the Fragile Greed Charm won't increase the amount of Geo found inside Geo Rocks. A total of 5074 Geo can be collected from Geo Rocks (credit: <a href="https://github.com/ReznoRMichael/hollow-knight-completion-check/pull/9" target="_blank">Araraura</a>).`,
|
||||
description: "All Geo Rocks that can be found in the game. Only fully destroyed Geo Rocks are counted. Partially hit Geo Rocks won't be counted. Equipping the Fragile Greed Charm won't increase the amount of Geo found inside Geo Rocks. A total of 5074 Geo can be collected from Geo Rocks.",
|
||||
percent: 0,
|
||||
maxPercent: 207,
|
||||
entries: {
|
||||
|
|
@ -4323,7 +4323,7 @@ const HK = {
|
|||
geoRock35: {
|
||||
name: "Geo Rock #35: 15 Geo",
|
||||
spoiler: "Forgotten Crossroads: Ancestral Mound",
|
||||
id: "Geo Rock 2",
|
||||
id: "_Items/Geo Rock 2",
|
||||
sceneName: "Crossroads_ShamanTemple",
|
||||
hitsLeft: "0",
|
||||
wiki: "Geo#How_to_Acquire"
|
||||
|
|
@ -5163,7 +5163,7 @@ const HK = {
|
|||
geoRock140: {
|
||||
name: "Geo Rock #140: 35 Geo",
|
||||
spoiler: "The Abyss: Main/Core Area",
|
||||
id: "Geo Rock Abyss",
|
||||
id: "_Props/Geo Rock Abyss",
|
||||
sceneName: "Abyss_06_Core",
|
||||
hitsLeft: "0",
|
||||
wiki: "Geo#How_to_Acquire"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
// This fork is local-first: analytics and cookie consent are intentionally disabled.
|
||||
// Handle cookies
|
||||
// require("./cookies.js");
|
||||
|
||||
// CSS
|
||||
// require("../css/cookieconsent.css");
|
||||
|
|
|
|||
|
|
@ -31,6 +31,14 @@ module.exports = {
|
|||
filename: 'index.html',
|
||||
favicon: "./src/favicon.png"
|
||||
}),
|
||||
new HtmlWebpackPartialsPlugin({
|
||||
path: './src/partials/cookiealert.html',
|
||||
location: 'head',
|
||||
priority: 'high',
|
||||
options: {
|
||||
mainColor: "#59d1da"
|
||||
}
|
||||
})
|
||||
],
|
||||
module: {
|
||||
rules: [{
|
||||
|
|
|
|||
|
|
@ -53,6 +53,22 @@ module.exports = {
|
|||
minifyCSS: true,
|
||||
},
|
||||
}),
|
||||
new HtmlWebpackPartialsPlugin({
|
||||
path: './src/partials/analytics.html',
|
||||
location: 'head',
|
||||
priority: 'high',
|
||||
options: {
|
||||
ga_property_id: 'UA-136831794-2'
|
||||
}
|
||||
}),
|
||||
new HtmlWebpackPartialsPlugin({
|
||||
path: './src/partials/cookiealert.html',
|
||||
location: 'head',
|
||||
priority: 'high',
|
||||
options: {
|
||||
mainColor: "#59d1da"
|
||||
}
|
||||
}),
|
||||
new CssMinimizerPlugin(),
|
||||
],
|
||||
module: {
|
||||
|
|
|
|||
Loading…
Reference in a new issue