Skip to content
This repository was archived by the owner on Oct 8, 2025. It is now read-only.
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Content.Client/Changelog/ChangelogManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public sealed partial class ChangelogManager : IPostInjectInit
[Dependency] private readonly IConfigurationManager _configManager = default!;

private const string SawmillName = "changelog";
public const string MainChangelogName = "Gooblog";
public const string MainChangelogName = "Omulog";

private ISawmill _sawmill = default!;

Expand Down Expand Up @@ -231,4 +231,4 @@ public enum ChangelogLineType
Tweak,
}
}
}
}
1 change: 1 addition & 0 deletions Resources/Locale/en-US/_Omu/changelog/changelog-window.ftl
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
changelog-tab-title-Omulog = OmuStation
2 changes: 1 addition & 1 deletion Tools/changelog/changelog.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ function writeChangelog(entry) {
// Write updated changelogs file
fs.writeFileSync(
`../../${process.env.CHANGELOG_DIR}`,
"Name: Gooblog\nOrder: -1\nEntries:\n" + // IF YOU ARE A FORK, CHANGE THIS!!!!!!!!!!!!
"Name: Omulog\nOrder: -1\nEntries:\n" + // IF YOU ARE A FORK, CHANGE THIS!!!!!!!!!!!!
yaml.dump(data.Entries, { indent: 2 }).replace(/^---/, "")
);
}
Expand Down