From b2fae3ca8444eda4fe895c45f5804a3bcf0f5317 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?KMY=EF=BC=88=E9=9B=AA=E3=81=82=E3=81=99=E3=81=8B=EF=BC=89?= Date: Fri, 16 Feb 2024 19:07:20 +0900 Subject: [PATCH 1/3] =?UTF-8?q?Change:=20#539=20=E3=83=97=E3=83=A9?= =?UTF-8?q?=E3=82=A4=E3=83=90=E3=82=B7=E3=83=BC=E8=BF=BD=E5=8A=A0=E8=A8=AD?= =?UTF-8?q?=E5=AE=9A=E3=81=AE=E3=80=8CMisskey=E7=B3=BB=E3=82=B5=E3=83=BC?= =?UTF-8?q?=E3=83=90=E3=83=BC=E3=81=AB=E3=80=8C=E7=9B=B8=E4=BA=92=E3=81=AE?= =?UTF-8?q?=E3=81=BF=E3=80=8D=E6=8A=95=E7=A8=BF=E3=82=92=E9=85=8D=E9=80=81?= =?UTF-8?q?=E3=81=97=E3=81=AA=E3=81=84=E3=80=8D=E8=AA=AC=E6=98=8E=E6=96=87?= =?UTF-8?q?=E3=81=AB=E6=9C=80=E6=96=B0=E3=81=AE=E7=8A=B6=E6=B3=81=E3=82=92?= =?UTF-8?q?=E5=8F=8D=E6=98=A0=E3=81=99=E3=82=8B=20(#567)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/locales/simple_form.ja.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/locales/simple_form.ja.yml b/config/locales/simple_form.ja.yml index 8ff95d05fc..d600088ff1 100644 --- a/config/locales/simple_form.ja.yml +++ b/config/locales/simple_form.ja.yml @@ -79,7 +79,7 @@ ja: setting_enable_emoji_reaction: この機能を無効にしても、他の人はあなたの投稿に絵文字をつけられます setting_hide_network: フォローとフォロワーの情報がプロフィールページで見られないようにします setting_public_post_to_unlisted: 未対応のサードパーティアプリからもローカル公開で投稿できますが、公開投稿はWeb以外できなくなります - setting_reject_send_limited_to_suspects: これは「相互のみ」投稿に適用されます。サークル投稿は例外なく配送されます。一部のMisskeyサーバーが独自に限定投稿へ対応しましたが、相互のみ投稿を行うたびに相手に通知されるなど複数の問題があるため、気になる人向けの設定です + setting_reject_send_limited_to_suspects: これは「相互のみ」投稿に適用されます。サークル投稿は例外なく配送されます。一部のMisskeyサーバーが独自に限定投稿へ対応しましたが、相互のみ投稿を行うとあなたと相互になっているユーザーの一部がMisskeyのユーザーに公開されるため、気になる人向けの設定です setting_reject_unlisted_subscription: Misskeyやそのフォークは、フォローしていないアカウントの「非収載」投稿を **購読・検索** することができます。これはkmyblueの挙動と異なります。そのようなサーバーに、指定した公開範囲の投稿を「フォロワーのみ」として配送します。ただし構造上、完璧な対応は困難でたまに非収載として配信されること、ご理解ください setting_reverse_search_quote: 検索ワードをダブルクオートで囲って検索した場合、表記ゆれ多めの検索結果になります。Mastodon標準とは逆の挙動となります。 setting_show_application: 投稿するのに使用したアプリが投稿の詳細ビューに表示されるようになります From 2b078b83c0e7ba84b6fe214dce605006eb882ad4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?KMY=EF=BC=88=E9=9B=AA=E3=81=82=E3=81=99=E3=81=8B=EF=BC=89?= Date: Fri, 16 Feb 2024 19:31:12 +0900 Subject: [PATCH 2/3] =?UTF-8?q?Fix:=20NG=E3=83=AF=E3=83=BC=E3=83=89?= =?UTF-8?q?=E5=B1=A5=E6=AD=B4=E9=87=8D=E8=A4=87=E3=83=81=E3=82=A7=E3=83=83?= =?UTF-8?q?=E3=82=AF=E3=81=AE=E3=82=AF=E3=82=A8=E3=83=AA=E3=83=9F=E3=82=B9?= =?UTF-8?q?=20(#570)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/models/admin/ng_word.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/admin/ng_word.rb b/app/models/admin/ng_word.rb index 5be03409d6..3e7c7e78ce 100644 --- a/app/models/admin/ng_word.rb +++ b/app/models/admin/ng_word.rb @@ -53,7 +53,7 @@ class Admin::NgWord return unless options[:uri] && options[:target_type] return if options.key?(:public) && !options.delete(:public) - return if NgwordHistory.where('created_at > ?', 1.day.ago).exists?(uri: options[:uri], keyword: options[:keyword]) + return if NgwordHistory.where('created_at > ?', 1.day.ago).exists?(uri: options[:uri], keyword: keyword) NgwordHistory.create(options.merge({ reason: type, From dbbca0300d976d910c63abe92f10846066b26aa5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?KMY=EF=BC=88=E9=9B=AA=E3=81=82=E3=81=99=E3=81=8B=EF=BC=89?= Date: Fri, 16 Feb 2024 21:54:53 +0900 Subject: [PATCH 3/3] =?UTF-8?q?Fix:=20=E7=99=BB=E9=8C=B2=E6=99=82=E9=96=93?= =?UTF-8?q?=E5=B8=AF=E3=81=AE=E3=83=86=E3=82=B9=E3=83=88=E3=81=AE=E3=82=A8?= =?UTF-8?q?=E3=83=A9=E3=83=BC=20(#569)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Fix: 登録時間帯のテストのエラー * Fix test --- app/javascript/mastodon/components/visibility_icon.tsx | 4 ++-- app/javascript/mastodon/locales/en.json | 2 +- spec/controllers/auth/registrations_controller_spec.rb | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/javascript/mastodon/components/visibility_icon.tsx b/app/javascript/mastodon/components/visibility_icon.tsx index 044012de8c..bc0fd782dd 100644 --- a/app/javascript/mastodon/components/visibility_icon.tsx +++ b/app/javascript/mastodon/components/visibility_icon.tsx @@ -47,11 +47,11 @@ const messages = defineMessages({ }, limited_short: { id: 'privacy.limited.short', - defaultMessage: 'Limited menbers only', + defaultMessage: 'Limited', }, mutual_short: { id: 'privacy.mutual.short', - defaultMessage: 'Mutual only', + defaultMessage: 'Mutual', }, circle_short: { id: 'privacy.circle.short', diff --git a/app/javascript/mastodon/locales/en.json b/app/javascript/mastodon/locales/en.json index 4dd6fa9663..775caae5c5 100644 --- a/app/javascript/mastodon/locales/en.json +++ b/app/javascript/mastodon/locales/en.json @@ -557,7 +557,7 @@ "privacy.login.long": "Visible for login users only", "privacy.login.short": "Login only", "privacy.mutual.long": "Mutual followers only", - "privacy.mutual.short": "Mutual only", + "privacy.mutual.short": "Mutual", "privacy.personal.short": "Yourself only", "privacy.private.long": "Only your followers", "privacy.private.short": "Followers", diff --git a/spec/controllers/auth/registrations_controller_spec.rb b/spec/controllers/auth/registrations_controller_spec.rb index 23ce3093d7..8c1d4c2333 100644 --- a/spec/controllers/auth/registrations_controller_spec.rb +++ b/spec/controllers/auth/registrations_controller_spec.rb @@ -409,7 +409,7 @@ RSpec.describe Auth::RegistrationsController do current = Time.now.utc today = current.beginning_of_day - today += 1.day if current.hour > 10 + today += 1.day if current.hour >= 10 travel_to today + 10.hours end