@atezer/figma-mcp-bridge 1.7.13 → 1.7.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/README.md +4 -1
- package/dist/core/plugin-bridge-server.js +1 -1
- package/dist/local-plugin-only.js +1 -1
- package/dist/local.js +1 -1
- package/f-mcp-plugin/ui.html +4 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -12,6 +12,21 @@ Bu dosya [Keep a Changelog](https://keepachangelog.com/tr/1.1.0/) biçimine uygu
|
|
|
12
12
|
|
|
13
13
|
Bu changelog'a ekleme öncesi sürümlerin tam ayrıntıları için `git log` kullanılabilir.
|
|
14
14
|
|
|
15
|
+
## [1.7.14] - 2026-04-07
|
|
16
|
+
|
|
17
|
+
### Kurulum Deneyimi Iyilestirmesi
|
|
18
|
+
|
|
19
|
+
Kaynak: `fmcp-feedback.md` — terminal bilgisi olmayan kullanicinin kurulum zorlugu feedback'i.
|
|
20
|
+
|
|
21
|
+
- **`scripts/setup.sh`** eklendi: Node.js kontrolu, build, MCP config otomatik ayari — tek komutla kurulum
|
|
22
|
+
- **`scripts/setup-npx.sh`** eklendi: NPX ile kurulum — repo indirmeden, config otomatik
|
|
23
|
+
- **Plugin UI:** "auto port" → "otomatik baglanti aktif" mesaji; port input title'lari daha aciklayici
|
|
24
|
+
- **README.md** guncellendi: Otomatik kurulum bolumu
|
|
25
|
+
- **ONBOARDING.md** guncellendi: Tek komutluk kurulum referansi
|
|
26
|
+
- **KURULUM.md** guncellendi: Script referansi, surum guncelleme
|
|
27
|
+
- **FUTURE.md** guncellendi: Kurulum deneyimi hedefleri (pre-built binary, GUI installer)
|
|
28
|
+
- **TEST_REPORT.md** surum guncellendi
|
|
29
|
+
|
|
15
30
|
## [1.7.13] - 2026-04-07
|
|
16
31
|
|
|
17
32
|
### Plugin UI: Dark/Light Tema Uyumu ve Font Okunabilirliği
|
package/README.md
CHANGED
|
@@ -34,6 +34,9 @@ Her şey **bilgisayarınızda** kalır. Tasarım verileriniz internete gönderil
|
|
|
34
34
|
> 💡 **En kolay yol:** AI aracınıza (Claude, Cursor) şunu söyleyin:
|
|
35
35
|
> *"@atezer/figma-mcp-bridge paketini kur ve Figma'ya bağlan"*
|
|
36
36
|
> AI config'i ayarlar, bağlantıyı kurar. Aşağıdaki adımlar elle yapmak isteyenler için.
|
|
37
|
+
>
|
|
38
|
+
> **Otomatik kurulum:** Repo'yu clone ettiyseniz tek komutla: `bash scripts/setup.sh`
|
|
39
|
+
> (Node.js kontrolü, build, MCP config — hepsini otomatik yapar)
|
|
37
40
|
|
|
38
41
|
### 1. Node.js kurun (bir kerelik)
|
|
39
42
|
|
|
@@ -175,7 +178,7 @@ Detaylı sorun giderme: [TROUBLESHOOTING.md](docs/TROUBLESHOOTING.md)
|
|
|
175
178
|
|
|
176
179
|
| Bilgi | Kaynak |
|
|
177
180
|
|-------|--------|
|
|
178
|
-
| Güncel sürüm | **1.7.
|
|
181
|
+
| Güncel sürüm | **1.7.14** ([package.json](package.json)) |
|
|
179
182
|
| Değişiklik geçmişi | [CHANGELOG.md](CHANGELOG.md) |
|
|
180
183
|
| GitHub sürümleri | [Releases](https://github.com/atezer/FMCP/releases) |
|
|
181
184
|
| npm paketi | [@atezer/figma-mcp-bridge](https://www.npmjs.com/package/@atezer/figma-mcp-bridge) |
|
|
@@ -326,7 +326,7 @@ export class PluginBridgeServer {
|
|
|
326
326
|
logger.info({ clientId, fileKey: incomingFileKey, fileName: incomingFileName }, "Plugin bridge: client registered (fileKey=%s, fileName=%s)", incomingFileKey, incomingFileName);
|
|
327
327
|
ws.send(JSON.stringify({
|
|
328
328
|
type: "welcome",
|
|
329
|
-
bridgeVersion: "1.7.
|
|
329
|
+
bridgeVersion: "1.7.14",
|
|
330
330
|
port: this.port,
|
|
331
331
|
clientId,
|
|
332
332
|
multiClient: true,
|
|
@@ -89,7 +89,7 @@ export async function main() {
|
|
|
89
89
|
bridge.start();
|
|
90
90
|
const server = new McpServer({
|
|
91
91
|
name: "F-MCP ATezer Bridge (Plugin-only)",
|
|
92
|
-
version: "1.7.
|
|
92
|
+
version: "1.7.14",
|
|
93
93
|
});
|
|
94
94
|
// ---- figma_list_connected_files (multi-client discovery) ----
|
|
95
95
|
server.registerTool("figma_list_connected_files", {
|
package/dist/local.js
CHANGED
package/f-mcp-plugin/ui.html
CHANGED
|
@@ -346,16 +346,16 @@
|
|
|
346
346
|
</div>
|
|
347
347
|
<div class="advanced-wrap">
|
|
348
348
|
<button id="advanced-toggle" class="advanced-toggle" type="button">Advanced</button>
|
|
349
|
-
<span id="advanced-state" class="advanced-state">
|
|
349
|
+
<span id="advanced-state" class="advanced-state">otomatik bağlantı aktif</span>
|
|
350
350
|
</div>
|
|
351
351
|
<div id="advanced-panel" class="advanced-panel">
|
|
352
352
|
<div class="bridge-host" title="Host: localhost (aynı makine) veya IP adresi (uzak makine). Browser Figma'da da çalışır.">
|
|
353
353
|
<label for="mcp-host">Host</label>
|
|
354
354
|
<input type="text" id="mcp-host" value="localhost" placeholder="localhost" aria-label="MCP bridge host (localhost veya IP)" />
|
|
355
355
|
</div>
|
|
356
|
-
<div class="bridge-port" title="Port
|
|
356
|
+
<div class="bridge-port" title="Port otomatik bulunur (5454-5470). Elle değiştirmeniz gerekmez — sadece sorun yaşarsanız kullanın.">
|
|
357
357
|
<label for="mcp-port">Port</label>
|
|
358
|
-
<input type="number" id="mcp-port" min="5454" max="5470" value="5454" aria-label="MCP bridge port (auto fallback 5454-5470)" title="Elle değiştirirseniz
|
|
358
|
+
<input type="number" id="mcp-port" min="5454" max="5470" value="5454" aria-label="MCP bridge port (auto fallback 5454-5470)" title="Normalde değiştirmeniz gerekmez. Elle değiştirirseniz otomatik tarama durur — Advanced'ı kapatarak sıfırlayabilirsiniz." />
|
|
359
359
|
</div>
|
|
360
360
|
<div id="port-switcher" style="display:flex;align-items:center;gap:4px;margin-top:4px;">
|
|
361
361
|
<button type="button" id="port-prev" onclick="switchActivePort(-1)" style="font-size:12px;padding:1px 5px;background:var(--fmcp-bg-subtle);border:1px solid var(--fmcp-border-light);border-radius:3px;color:var(--fmcp-text-secondary);cursor:pointer;">◀</button>
|
|
@@ -1091,7 +1091,7 @@
|
|
|
1091
1091
|
panel.classList.toggle('is-open', !!open);
|
|
1092
1092
|
}
|
|
1093
1093
|
if (state) {
|
|
1094
|
-
state.textContent = open ? '
|
|
1094
|
+
state.textContent = open ? 'manuel kontrol' : 'otomatik bağlantı aktif';
|
|
1095
1095
|
}
|
|
1096
1096
|
try { localStorage.setItem(MCP_ADVANCED_OPEN_KEY, open ? '1' : '0'); } catch (e) {}
|
|
1097
1097
|
if (open) {
|
package/package.json
CHANGED