Skip to content

Commit

Permalink
Update: v4.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Elaina69 committed Jan 10, 2025
1 parent c9b3d53 commit a015b0b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/src/plugins/hideFriendlist.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as upl from "pengu-upl"
import utils from "../utils/utils"
import { getThemeName } from "../otherThings"
import { log } from "../utils/themeLog"
import { log, error } from "../utils/themeLog"

export class HideFriendList {
freezeProperties(object: Object, properties: string[]): void {
Expand Down Expand Up @@ -81,7 +81,7 @@ export class HideFriendList {
if (element) {
element.style.cssText = `transform: translateX(${translateValue});`;
}
else { log("Get error while adding style, but it will not affect entire theme.") }
else { error("Get error while adding style, but it will not affect entire theme.") }
});

this.centerViewport(hide);
Expand Down
2 changes: 1 addition & 1 deletion src/src/updates/updateKeyLocal.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export default 430
export default 432
2 changes: 2 additions & 0 deletions src/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,8 @@ declare interface Window {
error : (message: string, ...args: string[]) => void;
setAudio : () => void;
restoreDefaultDataStore : () => Promise<void>;
hideShowNavBar : () => void;
changeHomePageStyle : () => void;

storeObserver : any;
__llver : string;
Expand Down

0 comments on commit a015b0b

Please sign in to comment.