Commit bcad72d8 authored by fisherdaddy's avatar fisherdaddy

feat: bug fix

parent 2951571d
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
- 图片压缩工具:优化图片大小,保持质量 - 图片压缩工具:优化图片大小,保持质量
- 图片Base64转换:图片与Base64编码互转 - 图片Base64转换:图片与Base64编码互转
- 手写效果生成:将文字转换为手写风格图片 - 手写效果生成:将文字转换为手写风格图片
- 图文叠加工具:在图片上叠加文字内容
### 文本转换工具 ### 文本转换工具
- 文字转图片卡片:将文本转换为精美的分享卡片 - 文字转图片卡片:将文本转换为精美的分享卡片
...@@ -17,6 +18,7 @@ ...@@ -17,6 +18,7 @@
- Markdown转图片:将Markdown文本转换为图片 - Markdown转图片:将Markdown文本转换为图片
- LaTeX公式转图片:数学公式可视化工具 - LaTeX公式转图片:数学公式可视化工具
- 文本差异对比:比较两段文本的差异 - 文本差异对比:比较两段文本的差异
- 微信文本格式化:优化微信公众号文章排版
### 开发者工具 ### 开发者工具
- JSON格式化工具:美化和验证JSON数据,支持语法高亮 - JSON格式化工具:美化和验证JSON数据,支持语法高亮
...@@ -25,7 +27,19 @@ ...@@ -25,7 +27,19 @@
### 多媒体工具 ### 多媒体工具
- 字幕生成器:自动为视频生成字幕文件 - 字幕生成器:自动为视频生成字幕文件
- 图文叠加工具:在图片上叠加文字内容 - 图像标注工具:为图片添加标注和说明
### AI 信息工具
- AI 时间线:AI发展重要事件时间线
- OpenAI 时间线:OpenAI公司发展历程
- Anthropic 时间线:Anthropic公司发展历程
- DeepSeek 时间线:DeepSeek公司发展历程
- LLM模型价格对比:各大语言模型价格比较
### 实用工具
- 万年历:查看日期、节假日等信息
- 药品列表:常用药品信息查询
- FisherAI 浏览器插件:网页内容总结工具
### 通用功能 ### 通用功能
- 多语言支持:完整的中英日韩文界面切换 - 多语言支持:完整的中英日韩文界面切换
......
...@@ -91,8 +91,8 @@ ...@@ -91,8 +91,8 @@
}, },
{ {
"date": "2025年5月2日", "date": "2025年5月2日",
"title": "Claude 发布 Integrations 功能以连接外部应用和工具,以及 Research 功能以提供更深入的调查能力。", "title": "Claude DeepResearch 发布",
"feature": "Claude 可以通过名为 Integrations 的新功能连接到用户的应用程序和工具,使其能够理解更广泛的工作背景并跨平台执行任务。推出了高级研究模式,可以进行更长时间(最长 45 分钟)、更深入的调查,并能搜索网页、 Google Workspace 以及新连接的 Integrations 。", "feature": "Claude 发布 Integrations 功能以连接外部应用和工具,以及 Research 功能以提供更深入的调查能力。",
"description": "更新地址:https://www.anthropic.com/news/integrations" "description": "Claude 可以通过名为 Integrations 的新功能连接到用户的应用程序和工具,使其能够理解更广泛的工作背景并跨平台执行任务。推出了高级研究模式,可以进行更长时间(最长 45 分钟)、更深入的调查,并能搜索网页、 Google Workspace 以及新连接的 Integrations "
} }
] ]
\ No newline at end of file
...@@ -7,8 +7,6 @@ const tools = [ ...@@ -7,8 +7,6 @@ const tools = [
{ id: 'handwrite', icon: '/assets/icon/handwrite.png', path: '/handwriting' }, { id: 'handwrite', icon: '/assets/icon/handwrite.png', path: '/handwriting' },
{ id: 'quoteCard', icon: '/assets/icon/quotecard.png', path: '/quote-card' }, { id: 'quoteCard', icon: '/assets/icon/quotecard.png', path: '/quote-card' },
{ id: 'markdown2image', icon: '/assets/icon/markdown2image.png', path: '/markdown-to-image' }, { id: 'markdown2image', icon: '/assets/icon/markdown2image.png', path: '/markdown-to-image' },
{ id: 'translator', icon: '/assets/icon/translator.png', path: '/translator' },
{ id: 'documentTranslator', icon: '/assets/icon/pdf-translator.png', path: '/document-translator' },
{ id: 'wechatFormatter', icon: '/assets/icon/editor.png', path: '/wechat-formatter' }, { id: 'wechatFormatter', icon: '/assets/icon/editor.png', path: '/wechat-formatter' },
{ id: 'perpetualCalendar', icon: '/assets/icon/calendar.jpg', path: '/perpetual-calendar' }, { id: 'perpetualCalendar', icon: '/assets/icon/calendar.jpg', path: '/perpetual-calendar' },
{ id: 'imageAnnotator', icon: '/assets/icon/image-annotator.png', path: '/image-annotator' }, { id: 'imageAnnotator', icon: '/assets/icon/image-annotator.png', path: '/image-annotator' },
...@@ -22,6 +20,7 @@ const tools = [ ...@@ -22,6 +20,7 @@ const tools = [
{ id: 'urlEncodeDecode', icon: '/assets/icon/url-endecode.png', path: '/url-encode-and-decode' }, { id: 'urlEncodeDecode', icon: '/assets/icon/url-endecode.png', path: '/url-encode-and-decode' },
{ id: 'imageBase64Converter', icon: '/assets/icon/image-base64.png', path: '/image-base64' }, { id: 'imageBase64Converter', icon: '/assets/icon/image-base64.png', path: '/image-base64' },
{ id: 'textDiff', icon: '/assets/icon/diff.png', path: '/text-diff' }, { id: 'textDiff', icon: '/assets/icon/diff.png', path: '/text-diff' },
{ id: 'aiTimeline', icon: '/assets/icon/ai-timeline.svg', path: '/ai-timeline' },
{ id: 'openAITimeline', icon: '/assets/icon/openai_small.svg', path: '/openai-timeline' }, { id: 'openAITimeline', icon: '/assets/icon/openai_small.svg', path: '/openai-timeline' },
{ id: 'anthropicTimeline', icon: '/assets/icon/anthropic_small.svg', path: '/anthropic-timeline' }, { id: 'anthropicTimeline', icon: '/assets/icon/anthropic_small.svg', path: '/anthropic-timeline' },
{ id: 'deepSeekTimeline', icon: '/assets/icon/deepseek_small.jpg', path: '/deepseek-timeline' }, { id: 'deepSeekTimeline', icon: '/assets/icon/deepseek_small.jpg', path: '/deepseek-timeline' },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment