diff options
| author | Copilot <198982749+Copilot@users.noreply.github.com> | 2025-09-20 14:19:35 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-20 14:19:35 +0900 |
| commit | 2f52c20150544823604633ece54b4b0dd1df10b8 (patch) | |
| tree | 88ac1d8ef1db2170939b66f93d3bd3356d2c776b /locales | |
| parent | Bump version to 2025.9.1-alpha.0 (diff) | |
| download | misskey-2f52c20150544823604633ece54b4b0dd1df10b8.tar.gz misskey-2f52c20150544823604633ece54b4b0dd1df10b8.tar.bz2 misskey-2f52c20150544823604633ece54b4b0dd1df10b8.zip | |
Implement professional-grade Gaussian-approximated blur effect with resolution independence and configurable quality for image effector system (#16571)
* Initial plan
* Implement blur effect for image effector system
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
* Improve blur quality with configurable sample count
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
* Revert to simpler blur implementation with configurable sample count
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
* Fix blur size independence from sample count
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
* Make blur radius resolution-independent
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
* Update blur.ts
* Enhance blur quality with explicit diagonal sampling and fix parameter configuration
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
* Implement Gaussian-approximated blur with distance-based weighting for superior quality
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
* Revert "Implement Gaussian-approximated blur with distance-based weighting for superior quality"
This reverts commit c739e9f55b64e8869f52dc2641ae6e972892dc7e.
* Revert "Enhance blur quality with explicit diagonal sampling and fix parameter configuration"
This reverts commit ffbc6eeba70dc9a3448dcb133d56b9fb776fc636.
* wip
* tweak
* ellipse
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
Diffstat (limited to 'locales')
| -rw-r--r-- | locales/en-US.yml | 3 | ||||
| -rw-r--r-- | locales/index.d.ts | 20 | ||||
| -rw-r--r-- | locales/ja-JP.yml | 6 |
3 files changed, 26 insertions, 3 deletions
diff --git a/locales/en-US.yml b/locales/en-US.yml index 9c02e83021..faa7f5e59e 100644 --- a/locales/en-US.yml +++ b/locales/en-US.yml @@ -3194,6 +3194,7 @@ _imageEffector: mirror: "Mirror" invert: "Invert Colors" grayscale: "Grayscale" + blur: "Blur" colorAdjust: "Color Correction" colorClamp: "Color Compression" colorClampAdvanced: "Color Compression (Advanced)" @@ -3209,6 +3210,8 @@ _imageEffector: angle: "Angle" scale: "Size" size: "Size" + radius: "Radius" + samples: "Samples" color: "Color" opacity: "Opacity" normalize: "Normalize" diff --git a/locales/index.d.ts b/locales/index.d.ts index 95886125ff..9bef0113a2 100644 --- a/locales/index.d.ts +++ b/locales/index.d.ts @@ -12347,6 +12347,10 @@ export interface Locale extends ILocale { */ "grayscale": string; /** + * ぼかし + */ + "blur": string; + /** * 色調補正 */ "colorAdjust": string; @@ -12391,9 +12395,9 @@ export interface Locale extends ILocale { */ "tearing": string; /** - * 塗りつぶし(四角) + * 塗りつぶし */ - "fillSquare": string; + "fill": string; }; "_fxProps": { /** @@ -12409,6 +12413,14 @@ export interface Locale extends ILocale { */ "size": string; /** + * 半径 + */ + "radius": string; + /** + * サンプル数 + */ + "samples": string; + /** * 位置 */ "offset": string; @@ -12524,6 +12536,10 @@ export interface Locale extends ILocale { * 黒色にする */ "zoomLinesBlack": string; + /** + * 円形 + */ + "circle": string; }; }; /** diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml index 4ae52990e5..b0d864ade8 100644 --- a/locales/ja-JP.yml +++ b/locales/ja-JP.yml @@ -3306,6 +3306,7 @@ _imageEffector: mirror: "ミラー" invert: "色の反転" grayscale: "白黒" + blur: "ぼかし" colorAdjust: "色調補正" colorClamp: "色の圧縮" colorClampAdvanced: "色の圧縮(高度)" @@ -3317,12 +3318,14 @@ _imageEffector: checker: "チェッカー" blockNoise: "ブロックノイズ" tearing: "ティアリング" - fillSquare: "塗りつぶし(四角)" + fill: "塗りつぶし" _fxProps: angle: "角度" scale: "サイズ" size: "サイズ" + radius: "半径" + samples: "サンプル数" offset: "位置" color: "色" opacity: "不透明度" @@ -3352,6 +3355,7 @@ _imageEffector: zoomLinesThreshold: "集中線の幅" zoomLinesMaskSize: "中心径" zoomLinesBlack: "黒色にする" + circle: "円形" drafts: "下書き" _drafts: |