Skip to content

Commit

Permalink
AbyssBox 1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
choptop84 committed Oct 1, 2024
1 parent cf4692a commit 2bdd86e
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 12 deletions.
2 changes: 1 addition & 1 deletion editor/EditorConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export function prettyNumber(value: number): string {
}

export class EditorConfig {
public static readonly version: string = "1.5"; // Using patch versions in display right now, maybe TODAY. // choptop84 here who wrote this??
public static readonly version: string = "1.5.1"; // Using patch versions in display right now, maybe TODAY. // choptop84 here who wrote this??
public static readonly versionDisplayName: string = "AbyssBox " + EditorConfig.version;

public static readonly releaseNotesURL: string = "./patch_notes.html";
Expand Down
2 changes: 1 addition & 1 deletion editor/SongEditor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2519,7 +2519,7 @@ export class SongEditor {
//this._openPrompt("tutorial");
}

if (window.localStorage.getItem("curVer") != "1.5") {
if (window.localStorage.getItem("curVer") != "1.5.1") {
window.localStorage.setItem("updateSeen", "false");
}

Expand Down
17 changes: 8 additions & 9 deletions editor/UpdatePrompt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,16 @@ const { button, div, h2, p, a} = HTML;
export class UpdatePrompt implements Prompt {

private readonly okayButton: HTMLButtonElement = button({ class: "okayButton", style: "width:45%;" }, "Okay");

public linkThing: HTMLAnchorElement = a({ href: "./patch-notes", target: "_blank", }, " Checking out the Patch Notes!");

public readonly startingContainer: HTMLDivElement = div({id: "tutorialPrompt"},
div({class:"promptTitle"}, h2({class:"tutorialExt",style:"text-align: inherit;"}, ""), h2({class:"tutorialTitle",style:"margin-bottom: 0.5em;"},"AbyssBox 1.5 is OUT NOW!")),
p({style:"margin-bottom: 0.5em; text-align: center; font-size: 15px;"},"AbyssBox 1.5 is here! Here's a few of the many changes in this update!",),
p({style:"margin-bottom: 0.5em; text-align: left; font-size: 15px;"},"- Two new effects! Phaser and Ring Modulation!"),
p({style:"margin-bottom: 0.5em; text-align: left; font-size: 15px;"},"- New songwide modulation options!"),
p({style:"margin-bottom: 0.5em; text-align: left; font-size: 15px;"},"- You can export as .ogg and .opus!"),
p({style:"margin-bottom: 0.5em; text-align: center; font-size: 15px;"},"And much more!"),
p({style:"margin-bottom: 0.5em; text-align: center; font-size: 15px;"},"For the full update list, I suggest",
a({ href: "./patch-notes", target: "_blank", }, " Checking out the Patch Notes!"),),
div({class:"promptTitle"}, h2({class:"tutorialExt",style:"text-align: inherit;"}, ""), h2({class:"tutorialTitle",style:"margin-bottom: 0.5em;"},"AbyssBox 1.5.1 is OUT NOW!")),
p({style:"margin-bottom: 0.5em; text-align: center; font-size: 15px;"},"AbyssBox 1.5.1 is here! A rather small but meaningful update this time around!",),
p({style:"margin-bottom: 0.5em; text-align: left; font-size: 15px;"},"- Added an offset for Ring Modulation's Hz value, allowing for more specific hertz."),
p({style:"margin-bottom: 0.5em; text-align: left; font-size: 15px;"},"- Updated the Frutiger Aero theme to be a little less laggy."),
p({style:"margin-bottom: 0.5em; text-align: left; font-size: 15px;"},"- Added tips to the new effects, as they were missing before."),
//p({style:"margin-bottom: 0.5em; text-align: center; font-size: 15px;"},"And much more!"),
//p({style:"margin-bottom: 0.5em; text-align: center; font-size: 15px;"},"For the full update list, I suggest",
);

public readonly container: HTMLDivElement = div({class: "prompt noSelection", id: "updateContainerPrompt", style: "width: 350px;"},
Expand Down
18 changes: 17 additions & 1 deletion website/patch-notes/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,22 @@
<h1>
<font color="#c763a0">AbyssBox's Patch Notes (in reverse chronological order);</font>
</h1>
<div class="V1.5.1">
<h2 style="color: #f24c4c;">Version 1.5.1 </h2><h3> <ul>

<p></p>
<p></p>
<li>Added an Hertz offset to Ring Modulation.</li>
<p></p>
<li>Updated Frutiger Aero to be a little less laggy.</li>
<p></p>
<li>Added tips to the Phaser Tip Prompts and Ring Modulation Prompts.</li>
<p></p>
<li>Other small Bugfixes.</li>
<p></p>

<p>10/1/2024</p>
</div>
<div class="V1.5">
<h2 style="color: #f24c4c;">Version 1.5 </h2><h3> <ul>

Expand Down Expand Up @@ -327,7 +343,7 @@ <h2 style="color: #f24c4c;">Version 1.4.5 </h2><h3> <ul>
<p>6/20/2024</p>
</div>
<div class="V1.4">
</h1><h2 style="color: #f24c4c;">Version 1.4 - The theme Update </h2><h3> <ul>
</h1><h2 style="color: #f24c4c;">Version 1.4 - The theme Update </h2><h3>
<ul>
</ul>
<p></p>
Expand Down

0 comments on commit 2bdd86e

Please sign in to comment.