[Update] クリップボード機能の設計書を追加し、設定およびコントローラーの制御を明記

This commit is contained in:
misyaguziya
2026-01-11 08:55:30 +09:00
parent 40d2678c23
commit 4559d83766
6 changed files with 445 additions and 1 deletions

View File

@@ -189,6 +189,24 @@ def WEBSOCKET_PORT(self) -> int
```
- WebSocketサーバーポート
### クリップボード設定
```python
@property
def ENABLE_CLIPBOARD(self) -> bool
```
- クリップボード機能(コピー・ペースト)の有効・無効
### テレメトリ設定
```python
@property
def ENABLE_TELEMETRY(self) -> bool
```
- テレメトリAptabaseの有効・無効
- デフォルト: True有効
- ユーザーは設定から任意で無効化可能
### 計算デバイス設定
```python
@@ -341,6 +359,12 @@ config.saveConfig("ENABLE_TRANSLATION", True, immediate_save=True)
- WebSocket ホスト: "127.0.0.1"
- WebSocket ポート: 8765
### クリップボード設定
- クリップボード機能: 無効
### テレメトリ設定
- テレメトリ: **有効(デフォルト)**
## 依存関係
### 必須依存関係