diff --git a/docs/index.html b/docs/index.html index 1b972bc..d6d01a2 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1 +1 @@ -Save Completion Analyzer for Hollow Knight: Silksong Online

Save Completion Analyzer

for Hollow Knight: Silksong

GitHub

Click once to copy to clipboard

Choose a user*.dat save or paste text from Save Editor | Testing Save

In Memory

In Memory of rezno[R] for his hardwork and for everyone who support this community

v0.2.0. Work-In-Progress.
Programmed, written and created by 🉑 rezno[R] © 2020–2022
Redesigned by Alba6rek © 2025
Hollow Knight: Silksong by Team Cherry © 2017–2025

\ No newline at end of file +Save Completion Analyzer for Hollow Knight: Silksong Online

Save Completion Analyzer

for Hollow Knight: Silksong

Local fork of the open-source Silksong Completion Analyzer.
Original Silksong fork

Click once to copy to clipboard

Choose a user*.dat save or paste text from Save Editor | Testing Save

About this fork

This local-first fork preserves the original analyzer's attribution and GPL-3.0 license. The Silksong analyzer is based on the work of ReznoR and Alba6rek.

Local fork, currently based on v0.2.0. See the repository README for development notes.
Original analyzer by ReznoR and Silksong fork by Alba6rek, released under GPL-3.0.
Hollow Knight: Silksong by Team Cherry.

\ No newline at end of file diff --git a/package.json b/package.json index 45d1772..bc6df4d 100644 --- a/package.json +++ b/package.json @@ -5,13 +5,16 @@ "main": "index.html", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", - "start": "webpack --config webpack.dev.js --mode development", - "stage": "webpack --config webpack.stage.js --mode production", - "prod": "webpack --config webpack.prod.js --mode production" + "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 8766 --directory docs", + "local": "npm run prod && npm run serve" }, "repository": { "type": "git", - "url": "git+https://github.com/Alba6rek/hollow-knight-silksong-completion-check.git" + "url": "ssh://git@git.iscg.dev:2222/mikl/hollow-knight-silksong-completion-check.git" }, "keywords": [ "hollow", @@ -30,9 +33,9 @@ "author": "Michael ReznoR", "license": "GPL-3.0", "bugs": { - "url": "https://github.com/ReznoRMichael/hollow-knight-completion-check/issues" + "url": "https://git.iscg.dev/mikl/hollow-knight-silksong-completion-check/issues" }, - "homepage": "https://github.com/Alba6rek/hollow-knight-silksong-completion-check#readme", + "homepage": "https://git.iscg.dev/mikl/hollow-knight-silksong-completion-check", "dependencies": { "core-js": "^3.18.3" }, diff --git a/src/index.html b/src/index.html index 03a2490..992245b 100644 --- a/src/index.html +++ b/src/index.html @@ -7,10 +7,6 @@ - - - - Save Completion Analyzer for Hollow Knight: Silksong Online for Hollow Knight: Silksong

+ Local fork of the open-source Silksong Completion Analyzer. +
GitHub + class="simpleicon-github">Original Silksong fork

- @@ -171,12 +152,13 @@
-
In Memory
+
About this fork

- In Memory of rezno[R] for his hardwork and for everyone who support this community - + This local-first fork preserves the original analyzer's attribution and GPL-3.0 license. + The Silksong analyzer is based on the work of ReznoR and Alba6rek.

@@ -184,17 +166,12 @@

- v0.2.0. Work-In-Progress.
- Programmed, written and created by 🉑 rezno[R] © 2020–2022
- Redesigned by Alba6rek © 2025
- Hollow Knight: Silksong by Team Cherry © 2017–2025
+ Local fork, currently based on v0.2.0. See the repository README for development notes.
+ Original analyzer by ReznoR and Silksong fork by Alba6rek, released under GPL-3.0.
+ Hollow Knight: Silksong by Team Cherry.

diff --git a/src/js/index.js b/src/js/index.js index 855b9d8..a0a2209 100644 --- a/src/js/index.js +++ b/src/js/index.js @@ -1,5 +1,4 @@ -// Handle cookies -// require("./cookies.js"); +// This fork is local-first: analytics and cookie consent are intentionally disabled. // CSS // require("../css/cookieconsent.css"); diff --git a/webpack.dev.js b/webpack.dev.js index c694478..8ffdcf8 100644 --- a/webpack.dev.js +++ b/webpack.dev.js @@ -31,14 +31,6 @@ 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: [{ diff --git a/webpack.prod.js b/webpack.prod.js index 40e990b..fbe0c29 100644 --- a/webpack.prod.js +++ b/webpack.prod.js @@ -53,22 +53,6 @@ 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: {