cf-mcp 0.15.1 → 0.15.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: 195399f6d4f2c7d1ec73c2d09509cfb2ff5277beba85fa6fc02c1e82a014d8d7
4
- data.tar.gz: 136d0ccffbfad51290e9e4ef3d0af0ad116176f35909f87c53e4032db34adbe8
3
+ metadata.gz: 1658219b52900e3a60a06fae6b80bd90fd571a8bcf2160c8f0df5a7a3b511d25
4
+ data.tar.gz: 39710ad835537043a3474fddaa19489ffaca49b7cc2557ea0fee8a48a7085350
5
5
  SHA512:
6
- metadata.gz: 488b3588f45c40fc22a1ef6472a801b7eefff38c69c2bb2b9dd4d74f006ae7af878b5893bf61606e82f6a558ce5a5433fabc8ccfde848a8af5d8c1f21391170b
7
- data.tar.gz: fab33790cd94cb57d26f4722f0c7c88ea9e54436e9e60dac805a1b3260160e0740fc388157700195eeb8cfcda77600e4345b15133ee87ce04ce668424195fdce
6
+ metadata.gz: 8ed0f8a7ba2103e65a3f39feca6a511290401483ef552365e8a8738ccdbecb220eb160cb27a9bc48f95cad595a9ab17a8fc67221fa47012e33a6490735b38624
7
+ data.tar.gz: e558148330f15b8b68a65a8b033cd3ea860c9af480d4b41faf512635e73dae5dbe5b25e78608dc5626e2268e6a17d0091d39839c04c2f8c9d7ebdc9f937bada5
data/CHANGELOG.md CHANGED
@@ -5,6 +5,13 @@ 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.15.2] - 2026-01-26
9
+
10
+ ### Added
11
+
12
+ - Favicon support (48x48 PNG) served at `/favicon.png` and `/favicon.ico`
13
+ - Favicon link tag in HTML template for browser tab icons
14
+
8
15
  ## [0.15.1] - 2026-01-26
9
16
 
10
17
  ### Added
@@ -205,6 +212,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
205
212
  - `cf_list_category` - List items by category
206
213
  - `cf_get_details` - Get full documentation by name
207
214
 
215
+ [0.15.2]: https://github.com/pusewicz/cf-mcp/compare/v0.15.1...v0.15.2
208
216
  [0.15.1]: https://github.com/pusewicz/cf-mcp/compare/v0.15.0...v0.15.1
209
217
  [0.15.0]: https://github.com/pusewicz/cf-mcp/compare/v0.14.3...v0.15.0
210
218
  [0.14.3]: https://github.com/pusewicz/cf-mcp/compare/v0.14.2...v0.14.3
data/lib/cf/mcp/server.rb CHANGED
@@ -120,9 +120,10 @@ module CF
120
120
  [404, {"content-type" => "application/json"}, ['{"error":"Not found"}']]
121
121
  when %r{^/http(/|$)}
122
122
  http_transport.handle_request(request)
123
- when "/logo.svg", "/logo.png"
124
- # Serve logo as static asset
123
+ when "/logo.svg", "/logo.png", "/favicon.png", "/favicon.ico"
124
+ # Serve static assets from public directory
125
125
  filename = path.delete_prefix("/")
126
+ filename = "favicon.png" if filename == "favicon.ico" # Serve PNG for .ico requests
126
127
  logo_path = File.join(public_dir, filename)
127
128
  if File.exist?(logo_path)
128
129
  content_type = filename.end_with?(".svg") ? "image/svg+xml" : "image/png"
@@ -3,6 +3,7 @@
3
3
  <head>
4
4
  <meta charset="UTF-8">
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <link rel="icon" type="image/png" href="/favicon.png">
6
7
  <title>CF::MCP - Cute Framework MCP Server</title>
7
8
  <style>
8
9
  <%= css_content %>
@@ -2,6 +2,6 @@
2
2
 
3
3
  module CF
4
4
  module MCP
5
- VERSION = "0.15.1"
5
+ VERSION = "0.15.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.15.1
4
+ version: 0.15.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Piotr Usewicz