chore: replace mclogs/Minecraft branding strings with iblogs equivalents

example.config.json: legal contact, imprint, privacy URLs swapped to
indifferentketchup.com placeholders; abuse address changed to
samkintop@gmail.com (matches the codex package's author entry);
frontend.name placeholder changed from "mclo.gs" to "iblogs.example".

UI templates: tagline replaced with "Built for game-server logs"
(header.php), meta description rewritten to drop Minecraft & Hytale
framing (start.php), api-docs.php's example "Minecraft version" labels
updated to "Engine version" with a 42.16.3 sample value matching the
codex PZ EngineVersionInformation output shape.

CSS comment "Minecraft Format Colors" tagged as legacy mclogs syntax
palette (the underlying color classes survive untouched — they may
still be useful for highlighting log content).

Footer attribution credit linking back to upstream mclogs and Aternos
is intentionally preserved per the manual-fork rules.

Frontend palette (#5cb85c green accent, etc.) and short-domain choice
remain placeholder values; revisit when iblogs branding is finalised.
This commit is contained in:
2026-05-01 22:13:49 +00:00
parent 8f0b067e38
commit 6724320c9a
5 changed files with 12 additions and 12 deletions

View File

@@ -8,18 +8,18 @@
}, },
"mongodb": { "mongodb": {
"url": "mongodb://127.0.0.1:27017", "url": "mongodb://127.0.0.1:27017",
"database": "mclogs" "database": "iblogs"
}, },
"id": { "id": {
"length": 7 "length": 7
}, },
"legal": { "legal": {
"abuse": "abuse@aternos.org", "abuse": "samkintop@gmail.com",
"imprint": "https://aternos.gmbh/imprint/", "imprint": "https://indifferentketchup.com/imprint",
"privacy": "https://aternos.gmbh/en/mclogs/privacy" "privacy": "https://indifferentketchup.com/iblogs/privacy"
}, },
"frontend": { "frontend": {
"name": "mclo.gs", "name": "iblogs.example",
"assets": { "assets": {
"integrity": true "integrity": true
}, },

View File

@@ -433,8 +433,8 @@ $config = Config::getInstance();
{ {
"message": "Label: value", "message": "Label: value",
"counter": 1, "counter": 1,
"label": "The label of this information, e.g. Minecraft version", "label": "The label of this information, e.g. Engine version",
"value": "The value of this information, e.g. 1.12.2", "value": "The value of this information, e.g. 42.16.3",
"entry": { "entry": {
"level": 6, "level": 6,
"time": null, "time": null,
@@ -515,8 +515,8 @@ $config = Config::getInstance();
{ {
"message": "Label: value", "message": "Label: value",
"counter": 1, "counter": 1,
"label": "The label of this information, e.g. Minecraft version", "label": "The label of this information, e.g. Engine version",
"value": "The value of this information, e.g. 1.12.2", "value": "The value of this information, e.g. 42.16.3",
"entry": { "entry": {
"level": 6, "level": 6,
"time": null, "time": null,

View File

@@ -12,7 +12,7 @@
</a> </a>
<div class="tagline"> <div class="tagline">
<h1 class="tagline-main"><span class="title-verb">Paste</span> your logs.</h1> <h1 class="tagline-main"><span class="title-verb">Paste</span> your logs.</h1>
<div class="tagline-sub">Built for Minecraft & Hytale</div> <div class="tagline-sub">Built for game-server logs</div>
</div> </div>
<script> <script>
const titles = ["Paste", "Share", "Analyse"]; const titles = ["Paste", "Share", "Analyse"];

View File

@@ -8,7 +8,7 @@ use IndifferentKetchup\Iblogs\Frontend\Assets\AssetType;
<head> <head>
<?php include __DIR__ . '/parts/head.php'; ?> <?php include __DIR__ . '/parts/head.php'; ?>
<title><?= htmlspecialchars(Config::getInstance()->getName()); ?> - Paste, share & analyse your logs</title> <title><?= htmlspecialchars(Config::getInstance()->getName()); ?> - Paste, share & analyse your logs</title>
<meta name="description" content="Easily paste your Minecraft & Hytale logs to share and analyse them." /> <meta name="description" content="Easily paste your game-server logs to share and analyse them." />
</head> </head>
<body data-name="<?=htmlspecialchars(Config::getInstance()->getName()); ?>"> <body data-name="<?=htmlspecialchars(Config::getInstance()->getName()); ?>">
<?php include __DIR__ . '/parts/header.php'; ?> <?php include __DIR__ . '/parts/header.php'; ?>

View File

@@ -1145,7 +1145,7 @@ main {
color: #A4A4A4; color: #A4A4A4;
} }
/** Minecraft Format Colors **/ /** Format colors (legacy mclogs syntax-highlighting palette) **/
.format-black { .format-black {
color: #000; color: #000;