Skip to content

Commit

Permalink
Merge branch 'develop' into add-guideline-link
Browse files Browse the repository at this point in the history
  • Loading branch information
Sayamame-beans authored Feb 17, 2024
2 parents e9ec3af + 7329623 commit e6809b8
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,12 @@

### Client
- センシティブチャンネルのNoteの畳まれ方がソフトミュートと同様になりました。
- このフォークへのリンクがmisskey標準のものに変更になりました。
- NSFWガイドラインへのリンクをメニューに追加しました。

### Server
- リモートユーザの削除が記録されないようになりました。

## 2024.2.0

### Note
Expand Down
4 changes: 0 additions & 4 deletions locales/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6897,10 +6897,6 @@ export interface Locale extends ILocale {
* このサーバーで使用しているforkの全てのコントリビューター
*/
"allForkContributors": string;
/**
* このサーバーで使用しているforkのソースコード
*/
"forkSource": string;
};
"_displayOfSensitiveMedia": {
/**
Expand Down
1 change: 0 additions & 1 deletion locales/ja-JP.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1799,7 +1799,6 @@ _aboutMisskey:
projectMembers: "プロジェクトメンバー"
forkContributors: "このサーバーで使用しているforkの主要な開発者"
allForkContributors: "このサーバーで使用しているforkの全てのコントリビューター"
forkSource: "このサーバーで使用しているforkのソースコード"

_displayOfSensitiveMedia:
respect: "センシティブ設定されたメディアを隠す"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,11 @@ export class DeleteAccountProcessorService {

@bindThis
async logDelete(user: MiUser) {
if (user.host != null) {
this.logger.info(`Skipping logging account deletion of ${user.id} ...`);
return;
}

const profile = await this.userProfilesRepository.findOneByOrFail({ userId: user.id });

// data from src/server/api/endpoints/users/show.ts
Expand Down Expand Up @@ -120,6 +125,8 @@ export class DeleteAccountProcessorService {
email: profile.email,
info,
});

this.logger.info(`Finished logging account deletion of ${user.id} ...`);
}

@bindThis
Expand Down
5 changes: 0 additions & 5 deletions packages/frontend/src/pages/about-misskey.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,6 @@ SPDX-License-Identifier: AGPL-3.0-only
{{ i18n.ts._aboutMisskey.source }} ({{ i18n.ts._aboutMisskey.original }})
<template #suffix>GitHub</template>
</FormLink>
<FormLink to="https://github.com/niri-la/misskey.niri.la" external>
<template #icon><i class="ti ti-code"></i></template>
{{ i18n.ts._aboutMisskey.forkSource }}
<template #suffix>GitHub</template>
</FormLink>
<FormLink to="https://crowdin.com/project/misskey" external>
<template #icon><i class="ti ti-language-hiragana"></i></template>
{{ i18n.ts._aboutMisskey.translation }}
Expand Down

0 comments on commit e6809b8

Please sign in to comment.