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 +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/cf/mcp/templates/index.erb +1 -1
- data/lib/cf/mcp/templates/style.css +2 -1
- data/lib/cf/mcp/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 527e5ec89b28e8630c8ee2f5f0097628b32810e4a262b5d1a1bc4c5480d61b9e
|
|
4
|
+
data.tar.gz: 28cfe2ac8cd91944ff933bcb2330a0ae9f5551cd5838479d54989324628729b9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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 {
|
data/lib/cf/mcp/version.rb
CHANGED