cf-mcp 0.14.1 → 0.14.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bb9fd427d356abe8da34d8b28982a22679573d824bbded29545702b07ae08ab1
4
- data.tar.gz: 4feeafda49159fa09be4d36a3186ce3f5ba62d0e40b8be5768c734f23fa3ec6b
3
+ metadata.gz: 527e5ec89b28e8630c8ee2f5f0097628b32810e4a262b5d1a1bc4c5480d61b9e
4
+ data.tar.gz: 28cfe2ac8cd91944ff933bcb2330a0ae9f5551cd5838479d54989324628729b9
5
5
  SHA512:
6
- metadata.gz: 10e5ff60e8064dad370e0f179c7c3a6d32fbcadf744df5d067f2a4996735a4bfbcfe394aa040b7668beb2a7432b8e4025dd4512024d6ffb4c922e3aeabe2afb9
7
- data.tar.gz: af64557f0c43b50fb460d5c183584776c7b444f44101c8cac23fad0958073fa66ac222e3388ac3f6b4a6ecc1ee3f23062b9efa8fd20a33295c143eca8613a65a
6
+ metadata.gz: 3a46c4e37d06eb95fbf8ec1637264fb06b7325bfc1da19684a768cc4fa2ec55e79dfed34a929d9cea0bbac74c87a6b3d504f38d2c41fa5c0ae5a4176605950a8
7
+ data.tar.gz: 93e011c94b5827ea35db640108f0dc503c584bd25c48ae807650bebcc73439c07d233c558623a8b8a9bc614b129c90e07b4041b7e64f7242f20b709ccb7d6d84
data/CHANGELOG.md CHANGED
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.14.2] - 2026-01-26
9
+
10
+ ### Added
11
+
12
+ - Logo icon displayed in the web dashboard title
13
+
8
14
  ## [0.14.1] - 2026-01-26
9
15
 
10
16
  ### Added
@@ -175,6 +181,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
175
181
  - `cf_list_category` - List items by category
176
182
  - `cf_get_details` - Get full documentation by name
177
183
 
184
+ [0.14.2]: https://github.com/pusewicz/cf-mcp/compare/v0.14.1...v0.14.2
178
185
  [0.14.1]: https://github.com/pusewicz/cf-mcp/compare/v0.14.0...v0.14.1
179
186
  [0.13.1]: https://github.com/pusewicz/cf-mcp/compare/v0.13.0...v0.13.1
180
187
  [0.13.0]: https://github.com/pusewicz/cf-mcp/compare/v0.12.1...v0.13.0
@@ -10,7 +10,7 @@
10
10
  <script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
11
11
  </head>
12
12
  <body>
13
- <h1>CF::MCP <small style="font-size: 0.5em; color: #8b949e;">v<%= version %></small></h1>
13
+ <h1><img src="/logo.svg" alt="CF Logo" class="title-logo">CF::MCP <small style="font-size: 0.5em; color: #8b949e;">v<%= version %></small></h1>
14
14
  <p>MCP (Model Context Protocol) server for the <a href="https://github.com/RandyGaul/cute_framework">Cute Framework</a>, a C/C++ 2D game framework.</p>
15
15
 
16
16
  <div class="stats">
@@ -8,7 +8,8 @@ body {
8
8
  background: #0d1117;
9
9
  color: #c9d1d9;
10
10
  }
11
- h1 { color: #58a6ff; margin-bottom: 0.5rem; }
11
+ h1 { color: #58a6ff; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
12
+ .title-logo { height: 1.5em; width: auto; }
12
13
  h2 { color: #58a6ff; margin-top: 2rem; border-bottom: 1px solid #30363d; padding-bottom: 0.5rem; }
13
14
  a { color: #58a6ff; }
14
15
  code {
@@ -2,6 +2,6 @@
2
2
 
3
3
  module CF
4
4
  module MCP
5
- VERSION = "0.14.1"
5
+ VERSION = "0.14.2"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cf-mcp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.1
4
+ version: 0.14.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Piotr Usewicz