forked from misskey-dev/misskey
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ํฐํธ ๋ณ๊ฒฝ(suite, zen maru gothic) * Relay GTL patch * ๋ฒ์ ๋ช ๋ช (2024.8.0+monster) * Support Remote Avatar Decoration view + fix 7891331 + fix !avatarDecorations * Remote Avatar ๋ฐ์ฝ๋ ์ด์ ์ฉ ์บ์ * Avatar decoration ์ฐํฉ์ offsetX, offsetY ์ถ๊ฐ * ๋ฆฌ๋ชจํธ ์ ์ ์ ์ฌ๋ฌ ์๋ฐํ ์ฅ์ ์ฐํฉ ์ง์ * ๋ฒ์ ๋ช ๋ช (2024.8.0+monster1) --------- Co-authored-by: Yunochi <[email protected]> Co-authored-by: caipira113 <[email protected]>
- Loading branch information
1 parent
d316fc8
commit 93eccf0
Showing
6 changed files
with
149 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
packages/backend/migration/1699432324194-remoteAvaterDecoration.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
export class RemoteAvaterDecoration1699432324194 { | ||
name = 'RemoteAvaterDecoration1699432324194' | ||
|
||
async up(queryRunner) { | ||
queryRunner.query(`ALTER TABLE "avatar_decoration" ADD "remoteId" varchar(32)`); | ||
queryRunner.query(`ALTER TABLE "avatar_decoration" ADD "host" varchar(128)`); | ||
} | ||
|
||
async down(queryRunner) { | ||
queryRunner.query(`ALTER TABLE "avatar_decoration" DROP COLUMN "host"`); | ||
queryRunner.query(`ALTER TABLE "avatar_decoration" DROP COLUMN "remoteId"`); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters