Copilot
Copilot
## Summary Successfully fixed React.FC default props extraction for the editor UI. Components declared with `React.FC` now have their default props correctly shown when the element is "active" in the...
リノートをミュートしたユーザーの一覧を表示・管理する機能を追加しました。 ## 実装内容 ### 新機能 - リノートミュート済みユーザーの一覧表示 - ユーザータップでプロフィールページへの遷移 - リノートミュート解除機能(確認ダイアログ付き) - 設定画面からのアクセス ### 追加されたファイル - `lib/state_notifier/renote_muted_users_page/renote_muted_users_notifier.dart` - 状態管理 - `lib/view/several_account_settings_page/renote_muted_users_page/renote_muted_users_page.dart` - UI画面 ### 修正されたファイル - ローカライゼーション(日本語・中国語)の追加 - ルーティング設定の追加 -...
ミュートユーザーリストで「さらに読み込む」ボタンが表示されない問題を修正しました。 ## 問題 従来の実装では、ミュートユーザーページで単純な `ListView.builder` を使用しており、すべてのミュートユーザーを一度に読み込んでいました。そのため、大量のミュートユーザーがいる場合でも「さらに読み込む」ボタンが表示されず、ページネーション機能がありませんでした。 ## 解決方法 `PushableListView` コンポーネントを使用してページネーション機能を実装しました: ```dart // 修正前: 単純なListView.builder ListView.builder( itemCount: value.length, itemBuilder: (context, index) => /* ... */, ) // 修正後: ページネーション対応のPushableListView PushableListView( initializeFuture:...
This PR implements a migration from the external NJsonSchema library to .NET 9's built-in `JsonSchemaExporter`, reducing external dependencies and leveraging the new native JSON schema capabilities. ## Key Changes ###...
## Summary Implements the foundational infrastructure for event type migration between generations, enabling declarative upcast/downcast transformations when event schemas evolve. This establishes the client API, contracts, storage interfaces, and core...
## Summary Upgrades the repository from .NET 9 to .NET 10, including SDK, runtime, packages, and CI/CD pipelines. ### Changed - SDK version to 10.0.100 in `global.json` - Target framework...
## Summary Orleans clustering requires custom serializers for `IEnumerable` types used throughout the codebase. Without this, grain method calls with `IEnumerable` parameters or return types fail serialization. ### Added -...
## Summary Comprehensive documentation explaining how joins and children work in projections, with detailed coverage of key mechanics and stream relationships. ### Added - **Projection Operations Concepts Guide** (`concepts/projection-operations.md`, 596...
This PR addresses the issue where converter extension methods were using `JsonSerializer` directly instead of the proper `EventSerializer` for event-related serialization, bypassing important event handling infrastructure. ## Problem Event converters...
This PR implements comprehensive SQL database storage support for Chronicle projections and reducers, enabling users to store projection data in SQL Server and PostgreSQL databases as an alternative to MongoDB....