diff --git a/cn/changelog/2025.mdx b/cn/changelog/2025.mdx index 5c1aba8..5c590fc 100644 --- a/cn/changelog/2025.mdx +++ b/cn/changelog/2025.mdx @@ -1,10 +1,8 @@ --- title: "变更日志" -description: "本文档记录了 Codatta 在 2025 年的所有更新、修复和新功能。" +description: "本文档记录了 Codatta 的所有更新、修复和新功能。" --- -import { useState, useEffect } from 'react'; -
-
+ {(() => { + const ShowResult = () => { + const [num, setNum] = useState(0); + useEffect(() => { + if (typeof document === 'undefined') return; + const update = () => { + try { + const items = document.querySelectorAll('.changelog-item'); + let count = 0; + items.forEach(item => { + if (item.style.display !== 'none') count++; + }); + setNum(count); + } catch {} + }; + update(); + const id = setInterval(update, 2000); + return () => clearInterval(id); + }, []); + return ( +
+ + {num} + result{num !== 1 ? 's' : ''} +
+ ); + }; + return ; + })()}
- - {(() => { - const ShowResult = () => { - const [num, setNum] = useState(0); - useEffect(() => { - if (typeof document === 'undefined') return; - const update = () => { - try { - const items = document.querySelectorAll('.changelog-item'); - let count = 0; - items.forEach(item => { - if (item.style.display !== 'none') count++; - }); - setNum(count); - } catch {} - }; - update(); - const id = setInterval(update, 2000); - return () => clearInterval(id); - }, []); - return ( -
+ +export const ChangelogFilter = () => { + const [activeFilter, setActiveFilter] = useState('all'); + const [isOpen, setIsOpen] = useState(false); + const [isMenuHovered, setIsMenuHovered] = useState(false); + + useEffect(() => { + window.activeTypeFilter = activeFilter; + }, [activeFilter]); + + useEffect(() => { + const items = document.querySelectorAll('.changelog-item'); + const activeMonth = window.activeMonthFilter || 'all'; + + items.forEach((item) => { + const itemType = item.getAttribute('data-type'); + const itemMonth = item.getAttribute('data-month'); + + const typeMatch = activeFilter === 'all' || itemType === activeFilter; + const monthMatch = activeMonth === 'all' || itemMonth === activeMonth; + + item.style.display = typeMatch && monthMatch ? '' : 'none'; + }); + }, [activeFilter]); + + const filterTypes = [ + { id: 'all', label: 'All Types', color: '#6b7280' }, + { id: 'core-feature', label: '🚀 Core Feature Release', color: '#16A34A' }, + { id: 'optimization', label: '⚡ Adjustments & Optimization', color: '#F59E0B' }, + { id: 'fixes', label: '🐛 Fixes & Feature Sunset', color: '#EF4444' }, + { id: 'campaign', label: '🎯 Campaign Launch', color: '#A855F7' } + ]; + + return ( +
+ + + {isOpen && ( +
setIsMenuHovered(true)} + onMouseLeave={() => { + setIsMenuHovered(false); + setIsOpen(false); + }} + style={{ + position: 'absolute', + top: 'calc(100% + 0.5rem)', + left: 0, + backgroundColor: '#ffffff', + border: '1px solid #e5e7eb', + borderRadius: '0.5rem', + boxShadow: '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)', + zIndex: 50, + minWidth: '14rem', + maxHeight: '20rem', + overflowY: 'auto' + }} + > + {filterTypes.map((type) => ( + + ))}
- ); - }; - return ; - })()} -
-
+ )} +
+ ); +}; -## 4.2.7 2025 年 12 月 04 日 ---- -**激励演变:长期生态系统管理的奖励锁仓** +export const MonthFilter = () => { + const [activeMonth, setActiveMonth] = useState('all'); + const [isOpen, setIsOpen] = useState(false); + const [isMenuHovered, setIsMenuHovered] = useState(false); -
+ useEffect(() => { + window.activeMonthFilter = activeMonth; + }, [activeMonth]); -
+ useEffect(() => { + const items = document.querySelectorAll('.changelog-item'); -一个可选的奖励锁仓功能,适用于高激励任务(例如,在 Airdrop 或 Frontier 活动中)。 + items.forEach((item) => { + const itemMonth = item.getAttribute('data-month'); + const monthMatch = activeMonth === 'all' || itemMonth === activeMonth; -- **触发:** 活动结束后,奖励将存入您的余额。 -- **锁定:** 通过资产页面将奖励锁定在智能合约中。 -- **释放:** 在锁仓期结束后,您可以一键将奖励直接提取到您的钱包。 + item.style.display = monthMatch ? '' : 'none'; + }); + }, [activeMonth]); -这是我们激励系统向细粒度管理演变的关键一步。它提供了一种工具,以在高奖励场景中管理流动性,平衡短期参与与生态系统的长期健康。 + const months = [ + { id: 'all', label: 'All Months' }, + { id: 'jan', label: 'January' }, + { id: 'feb', label: 'February' }, + { id: 'mar', label: 'March' }, + { id: 'apr', label: 'April' }, + { id: 'may', label: 'May' }, + { id: 'jun', label: 'June' }, + { id: 'jul', label: 'July' }, + { id: 'aug', label: 'August' }, + { id: 'sep', label: 'September' }, + { id: 'oct', label: 'October' }, + { id: 'nov', label: 'November' }, + { id: 'dec', label: 'December' } + ]; -
+ return ( +
+ -
+ {isOpen && ( +
setIsMenuHovered(true)} + onMouseLeave={() => { + setIsMenuHovered(false); + setIsOpen(false); + }} + style={{ + position: 'absolute', + top: 'calc(100% + 0.5rem)', + left: 0, + backgroundColor: '#ffffff', + border: '1px solid #e5e7eb', + borderRadius: '0.5rem', + boxShadow: '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)', + zIndex: 50, + minWidth: '12rem', + maxHeight: '20rem', + overflowY: 'auto' + }} + > + {months.map((month) => ( + + ))} +
+ )} +
+ ); +}; -## 4.2.5 2025 年 11 月 24 日 ---- -**活动启动:Airdrop 第二季** +
-
+### 4.4.1 Feb 14, 2026 +
-
+#### 问题修复 -系统性地收集物理学、金融和多模态领域的学术级数据集,并为三个新 Frontier 启动高质量数据管道。 +**前端热修复** -- **操作:** 启动 Airdrop 第二季,奖金池为 100 万 $XNY(3 个月线性解锁)。 -- **新 Frontier:** - - **高级物理问题:** 供领域专家提交当前 AI 无法正确回答的高难度物理问题。 - - **加密与股票信息:** 为 AI 提供与加密货币和股票投资决策相关的可靠信息。 - - **现实世界照片:** 为 AI 提供包含注释元数据的现实世界照片。 -- **奖励结构:** 任务完成奖励占 90%,排行榜排名奖励占 10%。 -- **活动时间:** 2025 年 11 月 24 日 09:00 UTC – 2025 年 12 月 08 日 09:00 UTC。 +- 修复了 Codatta Frontier 网站部署后的问题 +- View PR: [#310](https://github.com/codatta/codattaFrontierWebsite/pull/310)
-
+
-## 4.2.0 2025 年 11 月 05 日 ---- -**账户系统升级:DID 正式上线** +### 4.4.0 Feb 11, 2026 +
-
+#### 新功能 -
+**应用桥接集成与通信层** -一项基础升级,使账户绑定到去中心化标识符(DID)。 +- 完成应用桥接的双向消息传递实现 +- Bridge.js 定位优化以提升加载性能 +- 桥接通信的开发日志与测试框架 +- View PR: [#295](https://github.com/codatta/codattaFrontierWebsite/pull/295), [#297](https://github.com/codatta/codattaFrontierWebsite/pull/297), [#298](https://github.com/codatta/codattaFrontierWebsite/pull/298), [#299](https://github.com/codatta/codattaFrontierWebsite/pull/299) -- **绑定:** 通过下次登录 Codatta 自助集成链上 DID。 -- **关联:** 绑定的 DID 作为统一的主键,系统性地索引所有任务操作、数据贡献和奖励分配。 -- **血缘:** 实现链上和链下活动的完全可追溯性和验证,建立不可变的数据来源。 +**时尚应用上线** -此部署为可验证的数据经济奠定了技术基础。通过为每个贡献者提供一个持久的、独特的数字身份,我们实现了细粒度的贡献归属、明确的所有权验证和协议层面的透明激励分配。 +- 完整的时尚类别应用界面和提交流程 +- View PR: [#301](https://github.com/codatta/codattaFrontierWebsite/pull/301) -
+**路由重构与提交体验优化** -
+- 完全重构路由以改进导航 +- 新的应用提交成功弹窗,确认流程更清晰 +- View PR: [#304](https://github.com/codatta/codattaFrontierWebsite/pull/304) -## 4.1.5 2025 年 11 月 03 日 ---- -**任务系统调整:Crypto Frontier QUEST 模块停用** +**CEX 重复提交检查** + +- 提交前自动检测重复 +- View PR: [#303](https://github.com/codatta/codattaFrontierWebsite/pull/303) + +**任务历史与审计追踪** -
+- 在任务历史记录中显示审计原因 +- 应用任务完成弹窗,提供清晰的完成反馈 +- View PR: [#300](https://github.com/codatta/codattaFrontierWebsite/pull/300), [#308](https://github.com/codatta/codattaFrontierWebsite/pull/308) -
+#### 问题修复 -整个 Crypto Frontier QUEST 模块及所有相关任务——包括提交、验证和赏金猎人——已下线。 +**验证与构建稳定性** -- **原因:** 此模块已完成其在当前产品路线图下的计划生命周期。停用支持系统精简和资源重新配置,以便于即将发布的新功能。 -- **注意:** 用户在此模块中的历史贡献记录和获得的奖励保持不变。此更改不影响其他 Frontier 模块。 +- 修复验证弹窗显示问题 +- 修复构建编译错误 +- 修复用户提交标记处理 +- View PR: [#306](https://github.com/codatta/codattaFrontierWebsite/pull/306), [#296](https://github.com/codatta/codattaFrontierWebsite/pull/296), [#309](https://github.com/codatta/codattaFrontierWebsite/pull/309)
-
+
-## 4.1.4 2025 年 10 月 24 日 ---- -**Frontier 系统调整:Robotics Frontier 停用** +### 4.3.2 Jan 14, 2026 +
-
+#### 新功能 -
+**Frontier V2 平台上线** -Robotics Frontier 已正式停用。此操作仅影响前端入口点。所有历史贡献数据保持不变且可访问。 +- View PR: [#262](https://github.com/codatta/codattaFrontierWebsite/pull/262), [#263](https://github.com/codatta/codattaFrontierWebsite/pull/263) -- **原因:** 此决定是我们持续产品精简的一部分,旨在将资源和用户注意力集中在我们最高优先级的活跃 Frontier 上。Robotics Frontier 已完成其计划的探索阶段,其停用使我们能够整合努力。 -- **注意:** 用户在 Robotics Frontier 的过去贡献和奖励被保留,并可在其贡献历史中查看。此更改不影响其他 Frontier 或平台功能。 +**增强版推荐系统 V2** -
+- 新推荐界面,功能增强 +- 添加使用限制指示器以提高透明度 +- View PR: [#253](https://github.com/codatta/codattaFrontierWebsite/pull/253), [#252](https://github.com/codatta/codattaFrontierWebsite/pull/252) -
+**CEX 热钱包集成** -## 4.1.3 2025 年 10 月 23 日 ---- -**反垃圾邮件增强:实施每日提交限制** +- 多交易所热钱包连接 +- 交易所分组管理功能 +- 各交易所增强配置选项 +- View PR: [#256](https://github.com/codatta/codattaFrontierWebsite/pull/256), [#255](https://github.com/codatta/codattaFrontierWebsite/pull/255), [#257](https://github.com/codatta/codattaFrontierWebsite/pull/257) + +**高级验证系统** + +- View PR: [#254](https://github.com/codatta/codattaFrontierWebsite/pull/254) + +#### 问题修复 + +**声誉恢复系统** -
+- 修复声誉计算错误 +- View PR: [#261](https://github.com/codatta/codattaFrontierWebsite/pull/261) -
+#### 性能优化 -一项新的平台安全政策,以防止任务垃圾邮件。 +**API 请求头优化** -- **运作方式:** 对每个任务实施可配置的每日提交上限。 -- **原因:** 保护系统资源,确保所有贡献者的公平参与,并维护任务生态系统的长期健康和公平性。 +- View PR: [#259](https://github.com/codatta/codattaFrontierWebsite/pull/259)
-
+
-## 4.1.2 2025 年 10 月 20 日 ---- -**Frontier 系统调整:Crypto Frontier 停用** +### 4.3.1 Jan 07, 2026 +
+ +#### 新功能 + +**增强版推荐系统** + +- 推荐界面完全重新设计 +- View PR: [#248](https://github.com/codatta/codattaFrontierWebsite/pull/248), [#246](https://github.com/codatta/codattaFrontierWebsite/pull/246) -
+**弹窗体验优化** -
+- 简化弹窗导航 +- View PR: [#249](https://github.com/codatta/codattaFrontierWebsite/pull/249) -Crypto Frontier 已正式停用。此操作仅影响前端入口点。所有历史贡献数据保持不变且可访问。 +**时尚验证系统** -- **原因:** 此决定是我们持续产品精简的一部分,旨在将资源和用户注意力集中在我们最高优先级的活跃 Frontier 上。Crypto Frontier 已完成其计划的探索阶段,其停用使我们能够整合努力。 -- **注意:** 用户在 Crypto Frontier 的过去贡献和奖励被保留,并可在其贡献历史中查看。此更改不影响其他 Frontier 或平台功能。 +- 全面的输入验证规则 +- 改进时尚功能的数据一致性 +- View PR: [#245](https://github.com/codatta/codattaFrontierWebsite/pull/245) + +#### 问题修复 + +**界面组件修复** + +- 修复旋钮控件响应性 +- View PR: [#251](https://github.com/codatta/codattaFrontierWebsite/pull/251)
-
+
-## 4.1.1 2025 年 10 月 15 日 ---- -**系统治理:实施平台黑名单控制** +### 4.3.0 Dec 31, 2025 +
-
+#### 新功能 -
+**质押系统上线** -平台上实施了一项新的黑名单控制功能。 +- 完整的质押界面与领取功能 +- 空投任务与质押奖励集成 +- View PR: [#223](https://github.com/codatta/codattaFrontierWebsite/pull/223), [#225](https://github.com/codatta/codattaFrontierWebsite/pull/225) -- **运作方式:** 指定的管理员现在可以应用黑名单规则以限制恶意账户。 -- **原因:** 增强平台安全性,保护贡献者利益,并维护生态系统的公平性。 +**数据集功能集成** -
+- 增强数据处理与组织 +- View PR: [#224](https://github.com/codatta/codattaFrontierWebsite/pull/224) -
+**社交账户恢复** -## 4.1.0 2025 年 10 月 13 日 ---- -**活动启动:Airdrop 第一季** +- View PR: [#228](https://github.com/codatta/codattaFrontierWebsite/pull/228) -
+#### 性能优化 -
+**钱包地址管理** -通过高奖励机制和反垃圾邮件执行系统性地收集高质量、结构化的数据,确保有效性和学术价值,并奖励长期贡献者,丰富平台的数据生态系统,推出五个新 Frontier 模块。 +- 添加当前钱包地址追踪钩子 +- 修复校验和地址验证 +- 修复钱包地址更新问题 +- View PR: [#226](https://github.com/codatta/codattaFrontierWebsite/pull/226), [#229](https://github.com/codatta/codattaFrontierWebsite/pull/229), [#234](https://github.com/codatta/codattaFrontierWebsite/pull/234) -- **操作:** 启动 Airdrop 第一季,奖金池为 250 万 $XNY 和积分奖励。 -- **新 Frontier:** - - **模型比较:** 比较不同 AI 模型的性能指标和商业结果,以识别最佳或混合解决方案。 - - **识别 LLM 的错误:** 识别 LLM 输出中的推理、事实和逻辑错误,以支持模型优化。 - - **纠正 LLM 的错误:** 收集纠正数据,帮助 LLM 从错误中学习,提高自我纠正和推理能力。 - - **食品科学:** 收集食品科学和营养功能方面的研究数据,以推动该领域的创新。 - - **生活记录画布:** 跟踪和记录个人行为和健康相关数据,以支持行为及相关研究。 -- **奖励结构:** 奖励根据提交评级排名,并在活动结束后分配。恶意提交将受到惩罚,以确保数据质量。 -- **活动时间:** 2025 年 10 月 13 日 09:00 UTC - 2025 年 10 月 27 日 09:00 UTC。 +**声誉系统增强** -
+- 提高 API 响应效率 +- View PR: [#231](https://github.com/codatta/codattaFrontierWebsite/pull/231) -
+#### 问题修复 -## 4.0.0 2025 年 10 月 10 日 ---- -**功能发布:特定 Frontier 奖励活动** +**质押界面改进** + +- 改进质押领取流程 +- 添加全面的领取记录追踪 +- 增强空表格状态提示 +- View PR: [#235](https://github.com/codatta/codattaFrontierWebsite/pull/235), [#238](https://github.com/codatta/codattaFrontierWebsite/pull/238), [#230](https://github.com/codatta/codattaFrontierWebsite/pull/230) -
+**推荐系统修复** -
+- 修复推荐追踪机制 +- View PR: [#237](https://github.com/codatta/codattaFrontierWebsite/pull/237) -现在为 Frontiers 提供可配置的奖励活动,提供额外的高价值激励。 +**构建流程优化** -- **运作方式:** 选定的 Frontier 任务提供额外的 $XNY 或 USDT 奖励,与基础积分无关。活动参数(奖励金额、持续时间、目标)根据每个 Frontier 设置,并在其各自的主页上显示。 -- **原因:** 通过有针对性的激励措施,推动对高价值数据任务的更深入参与,提高数据质量和生态系统的参与度。 +- 修复编译问题 +- View PR: [#227](https://github.com/codatta/codattaFrontierWebsite/pull/227)
-
+
-## 3.9.9 2025 年 09 月 26 日 ---- -**活动发布:Codatta Booster 活动 第三季 第四周** +### 4.2.6 Dec 17, 2025 +
+ +#### 新功能 + +**增强版任务管理系统** + +- 持久化任务筛选存储以改进用户体验 +- 更新活动信息显示 +- View PR: [#215](https://github.com/codattaFrontierWebsite/pull/215), [#220](https://github.com/codatta/codattaFrontierWebsite/pull/220), [#221](https://github.com/codatta/codattaFrontierWebsite/pull/221) + +**声誉系统实现** + +- 完整的声誉评分系统 +- 用户声誉显示与追踪 +- 与现有奖励机制集成 +- View PR: [#217](https://github.com/codatta/codattaFrontierWebsite/pull/217) + +#### 问题修复 -
+**账户绑定与验证改进** -
+- 修复账户绑定功能 +- View PR: [#212](https://github.com/codatta/codattaFrontierWebsite/pull/212), [#213](https://github.com/codatta/codattaFrontierWebsite/pull/213) -通过可信的多领域数据收集加速 AI 开发,并促进社区驱动的去中心化 AI 知识构建。 +**UI 和构建优化** -- **参与方式:** 通过 Binance Wallet Booster 标签或主页横幅访问(需要 Alpha Points ≥ 61)。 -- **奖励:** 总奖励池为 50,000,000 $XNY(有锁仓期),在任务完成和验证后分配。 -- **活动时间:** 2025 年 09 月 26 日 07:00 UTC – 2025 年 10 月 03 日 07:00 UTC。 +- 修复构建编译问题 +- 添加应用分享落地页功能 +- 更新积分奖励图标设计 +- 弹窗定位改进 +- View PR: [#214](https://github.com/codatta/codattaFrontierWebsite/pull/214), [#216](https://github.com/codatta/codattaFrontierWebsite/pull/216), [#218](https://github.com/codatta/codattaFrontierWebsite/pull/218), [#219](https://github.com/codatta/codattaFrontierWebsite/pull/219)
-
+
-## 3.9.8 2025 年 09 月 12 日 ---- -**活动发布:Codatta Booster 活动 第三季 第三周** +### 4.2.5 Dec 10, 2025 +
+ +#### 新功能 + +**锁仓合约主网部署** -
+- 更新主网合约地址配置 +- View PR: [#208](https://github.com/codatta/codattaFrontierWebsite/pull/208), [#211](https://github.com/codatta/codattaFrontierWebsite/pull/211) -
+#### 问题修复 -收集跨领域数据,涵盖生活、机器人、加密货币、模型比较和指纹验证,以用于 AI 训练和验证。 +**UI 和内容改进** -- **参与方式:** 通过 Binance Wallet Booster 标签或主页横幅访问(需要 Alpha Points ≥ 61)。 -- **奖励:** 总奖励池为 50,000,000 $XNY(有锁仓期),在任务完成和验证后分配。 -- **活动时间:** 2025 年 09 月 12 日 07:00 UTC – 2025 年 09 月 19 日 07:00 UTC。 +- 修复平台组件的样式不一致 +- 修正用户界面的文本和措辞问题 +- View PR: [#207](https://github.com/codatta/codattaFrontierWebsite/pull/207), [#209](https://github.com/codatta/codattaFrontierWebsite/pull/209), [#210](https://github.com/codatta/codattaFrontierWebsite/pull/210)
-
+
-## 3.9.6 2025 年 09 月 05 日 ---- -**活动发布:Codatta Booster 活动 第三季 第二周** +### 4.2.4 Dec 03, 2025 +
-
+#### 新功能 -
+**3个月代币锁定功能** -收集和注释跨领域数据,涵盖生活、机器人和加密货币,以用于 AI 训练和验证。 +- 更新锁仓提示和指南以便更好理解 +- 改进锁定代币的资产可见性 +- View PR: [#198](https://github.com/codatta/codattaFrontierWebsite/pull/198), [#199](https://github.com/codatta/codattaFrontierWebsite/pull/199), [#202](https://github.com/codatta/codattaFrontierWebsite/pull/202), [#203](https://github.com/codatta/codattaFrontierWebsite/pull/203), [#204](https://github.com/codatta/codattaFrontierWebsite/pull/204), [#205](https://github.com/codatta/codattaFrontierWebsite/pull/205) -- **参与方式:** 通过 Binance Wallet Booster 标签或主页横幅访问(需要 Alpha Points ≥ 61)。 -- **奖励:** 总奖励池为 50,000,000 $XNY(有锁仓期),在任务完成和验证后分配。 -- **活动时间:** 2025 年 09 月 05 日 07:00 UTC – 2025 年 09 月 12 日 07:00 UTC。 +**增强版奖励领取系统** -
+- 更新领取奖励 API 以实现更可靠的交易 +- View PR: [#206](https://github.com/codatta/codattaFrontierWebsite/pull/206) -
+#### 性能优化 -## 3.9.3 2025 年 08 月 28 日 ---- -**功能发布:用户数据档案** +**连接库更新** -
+- 增强连接稳定性和响应时间 +- View PR: [#201](https://github.com/codatta/codattaFrontierWebsite/pull/201) -
+#### 问题修复 -在用户信息模块中引入新的数据档案功能。 +**应用循环防护** -- **运作方式:** 通过用户信息 > 数据档案访问,查看您的总提交、获得的奖励和贡献统计信息,呈现在可视化仪表板中。 -- **原因:** 提供对您贡献的透明度,通过可见的进度跟踪增强参与感,并支持长期参与。 +- 修复核心应用逻辑中的无限循环 +- View PR: [#200](https://github.com/codatta/codattaFrontierWebsite/pull/200)
-
+
-## 3.9.2 2025 年 08 月 22 日 ---- -**活动发布:Codatta Booster 活动 第三季 第一周** +### 4.2.3 Nov 26, 2025 +
-
+#### 新功能 -
+**社交任务集成** -建立跨领域注释数据的基础,涵盖生活、机器人和加密货币,以用于去中心化 AI 训练。 +- 添加社交链接任务以促进社区参与 +- 改进 Telegram 提交流程 +- 增强 Discord 集成并更新链接 +- View PR: [#180](https://github.com/codatta/codattaFrontierWebsite/pull/180), [#181](https://github.com/codatta/codattaFrontierWebsite/pull/181), [#182](https://github.com/codatta/codattaFrontierWebsite/pull/182), [#184](https://github.com/codatta/codattaFrontierWebsite/pull/184) -- **参与方式:** 通过 Binance Wallet Booster 标签或主页横幅访问(需要 Alpha Points ≥ 61)。 -- **奖励:** 总奖励池为 50,000,000 $XNY(有锁仓期),在任务完成和验证后分配。 -- **活动时间:** 2025 年 08 月 22 日 07:00 UTC – 2025 年 08 月 29 日 07:00 UTC。 +**空投系统增强** -
+- 增强空投资格操作 +- View PR: [#186](https://github.com/codatta/codattaFrontierWebsite/pull/186), [#187](https://github.com/codatta/codattaFrontierWebsite/pull/187), [#189](https://github.com/codatta/codattaFrontierWebsite/pull/189), [#190](https://github.com/codatta/codattaFrontierWebsite/pull/190), [#191](https://github.com/codatta/codattaFrontierWebsite/pull/191) -
+**物理问答表单系统** -## 3.9.1 2025 年 08 月 15 日 ---- -**活动发布:Codatta Booster 活动 第二季 第四周** +- 集成资格操作功能 +- View PR: [#192](https://github.com/codatta/codattaFrontierWebsite/pull/192), [#193](https://github.com/codatta/codattaFrontierWebsite/pull/193) + +#### 性能优化 -
+**API 请求优化** -
+- 增强本地代理适配 +- 缩短 API 响应时间 +- View PR: [#195](https://github.com/codatta/codattaFrontierWebsite/pull/195), [#196](https://github.com/codatta/codattaFrontierWebsite/pull/196) -系统性地注释和扩展食品 AI、机器人交互和 CEX 链上数据的领域特定数据集,以用于去中心化 AI 训练。 +#### 问题修复 -- **参与方式:** 通过 Binance Wallet Booster 标签或主页横幅访问(需要 Alpha Points ≥ 61)。 -- **奖励:** 总奖励池为 50,000,000 $XNY(有锁仓期),在任务完成和验证后分配。 -- **活动时间:** 2025 年 08 月 15 日 07:00 UTC – 2025 年 08 月 22 日 07:00 UTC。 +**构建流程改进** + +- 修复影响部署的关键构建错误 +- View PR: [#185](https://github.com/codatta/codattaFrontierWebsite/pull/185), [#188](https://github.com/codatta/codattaFrontierWebsite/pull/188), [#194](https://github.com/codatta/codattaFrontierWebsite/pull/194)
-
+
+ +### 4.2.2 Nov 19, 2025 +
-## 3.8.9 2025 年 08 月 08 日 ---- -**活动发布:Codatta Booster 活动 第二季 第三周** +#### 新功能 -
+**增强版空投系统** -
+- View PR: [#169](https://github.com/codatta/codattaFrontierWebsite/pull/169) -系统性地收集四个关键领域的注释数据:项目学习、食品 AI 判断、机器人注释和 CEX 数据扩展。 +**物理验证系统** -- **参与方式:** 通过 Binance Wallet Booster 标签或主页横幅访问(需要 Alpha Points ≥ 61)。 -- **奖励:** 总奖励池为 50,000,000 $XNY(有锁仓期),在任务完成和验证后分配。 -- **活动时间:** 2025 年 08 月 08 日 07:00 UTC – 2025 年 08 月 15 日 07:00 UTC。 +- 完整的物理验证工作流程 +- 更新验证界面设计 +- View PR: [#170](https://github.com/codatta/codattaFrontierWebsite/pull/170), [#171](https://github.com/codatta/codattaFrontierWebsite/pull/171), [#177](https://github.com/codatta/codattaFrontierWebsite/pull/177) -
+**Frontier 任务验证** -
+- 任务验证状态指示器 +- View PR: [#172](https://github.com/codatta/codattaFrontierWebsite/pull/172), [#173](https://github.com/codatta/codattaFrontierWebsite/pull/173) -## 3.8.8 2025 年 08 月 01 日 ---- -**活动发布:Codatta Booster 活动 第二季 第二周** +**表单输入控制** -
+- 表单输入字符长度限制 +- 提交频率限制以防止垃圾信息 +- View PR: [#174](https://github.com/codatta/codattaFrontierWebsite/pull/174), [#175](https://github.com/codatta/codattaFrontierWebsite/pull/175) -
+#### 问题修复 -收集三个核心领域的注释数据:AI 食品模型比较、机器人交互注释和 CEX 热钱包数据标注。 +**验证导航修复** -- **参与方式:** 通过 Binance Wallet Booster 标签或主页横幅访问(需要 Alpha Points ≥ 61)。 -- **奖励:** 总奖励池为 50,000,000 $XNY(有锁仓期),在任务完成和验证后分配。 -- **活动时间:** 2025 年 08 月 01 日 07:00 UTC – 2025 年 08 月 08 日 07:00 UTC。 +- 修复验证返回按钮功能 +- View PR: [#176](https://github.com/codatta/codattaFrontierWebsite/pull/176) + +**构建器界面更新** + +- 修复构建器界面问题 +- 更新问题显示与处理 +- View PR: [#178](https://github.com/codatta/codattaFrontierWebsite/pull/178), [#179](https://github.com/codatta/codattaFrontierWebsite/pull/179)
-
+
-## 3.8.7 2025 年 07 月 24 日 ---- -**活动发布:Codatta Booster 活动 第二季 第一周** +### 4.2.1 Nov 12, 2025 +
+ +#### 新功能 + +**DID 集成** + +- View PR: [#166](https://github.com/codatta/codattaFrontierWebsite/pull/166) -
+**平台重构与优化** -
+- 简化用户界面和导航 +- View PR: [#165](https://github.com/codatta/codattaFrontierWebsite/pull/165) -通过注释的真实世界交互数据来验证 AI 食品分析并增强机器人训练。 +**增强版排行榜系统** -- **参与方式:** 通过 Binance Wallet Booster 标签或主页横幅访问(需要 Alpha Points ≥ 61)。 -- **奖励:** 总奖励池为 50,000,000 $XNY(有锁仓期),在任务完成和验证后分配。 -- **活动时间:** 2025 年 07 月 24 日 07:00 UTC – 2025 年 07 月 31 日 07:00 UTC。 +- 实时排名更新 +- 增强竞争功能 +- View PR: [#168](https://github.com/codatta/codattaFrontierWebsite/pull/168) + +#### 问题修复 + +**本地化改进** + +- 修正中文文本渲染 +- View PR: [#167](https://github.com/codatta/codattaFrontierWebsite/pull/167)
-
+
-## 3.8.5 2025 年 07 月 16 日 ---- -**活动发布:Codatta Booster 活动 第一季 第四周** +### 4.2.0 Nov 05, 2025 +
+ +#### 新功能 + +**DID 集成系统** -
+- 完成 DID 工作流程实现 +- View PR: [#161](https://github.com/codatta/codattaFrontierWebsite/pull/161), [#163](https://github.com/codatta/codattaFrontierWebsite/pull/163) -
+#### 问题修复 -通过收集丰富的注释,深化 AI 对食品的理解,这些注释超越标签,涵盖重量、烹饪方法和热量含量。 +**构建流程优化** -- **参与方式:** 通过 Binance Wallet Booster 标签或主页横幅访问(需要 Alpha Points ≥ 61)。 -- **奖励:** 总奖励池为 50,000,000 $XNY,在任务完成和验证后分配。 -- **活动时间:** 2025 年 07 月 16 日 13:00 UTC – 2025 年 07 月 23 日 13:00 UTC。 +- 修复生产构建中的编译错误 +- View PR: [#162](https://github.com/codatta/codattaFrontierWebsite/pull/162)
-
+
-## 3.8.4 2025 年 07 月 09 日 ---- -**活动发布:Codatta Booster 活动 第一季 第三周** +### 4.1.3 Oct 22, 2025 +
+ +#### 新功能 -
+**提交黑名单保护** -
+- 自动拦截黑名单用户提交 +- View PR: [#158](https://github.com/codatta/codattaFrontierWebsite/pull/158) -通过收集准备好的食物的注释图像,教会 AI 对人类饮食习惯的细致理解,关注文化和上下文的相关性,而不仅仅是简单的标签。 +**更新空投指南** -- **参与方式:** 通过 Binance Wallet Booster 标签或主页横幅访问(需要 Alpha Points ≥ 61)。 -- **奖励:** 总奖励池为 50,000,000 $XNY,在任务完成和验证后分配。 -- **活动时间:** 2025 年 07 月 09 日 13:00 UTC – 2025 年 07 月 16 日 13:00 UTC。 +- 简化参与指南 +- View PR: [#159](https://github.com/codatta/codattaFrontierWebsite/pull/159) + +#### 问题修复 + +**构建流程改进** + +- 修复生产构建中的编译错误 +- View PR: [#160](https://github.com/codatta/codattaFrontierWebsite/pull/160)
-
+
-## 3.8.3 2025 年 07 月 07 日 ---- -**功能优化:任务系统已恢复** +### 4.1.0 Oct 15, 2025 +
-
+#### 新功能 -
+**增强版空投活动系统** -任务系统已全面恢复并重新开放。 +- 完整的空投活动界面,含多种任务类型 +- 三种针对不同用户类别的空投任务 +- View PR: [#140](https://github.com/codatta/codattaFrontierWebsite/pull/140), [#142](https://github.com/codatta/codattaFrontierWebsite/pull/142), [#143](https://github.com/codatta/codattaFrontierWebsite/pull/143), [#154](https://github.com/codatta/codattaFrontierWebsite/pull/154) -- **运作方式:** 于 2025 年 06 月 30 日暂时下线,现在已全面恢复。 -- **原因:** 通过架构升级来增强系统稳定性和用户体验。 +**积分与排行榜系统改进** -
+- 更新积分显示系统以更清晰追踪奖励 +- 新活动和更新的红点通知 +- View PR: [#148](https://github.com/codatta/codattaFrontierWebsite/pull/148), [#155](https://github.com/codatta/codattaFrontierWebsite/pull/155), [#156](https://github.com/codatta/codattaFrontierWebsite/pull/156), [#157](https://github.com/codatta/codattaFrontierWebsite/pull/157) -
+**增强版导航与文档** -## 3.8.2 2025 年 07 月 02 日 ---- -**活动启动:Codatta 助推活动第一季第二周** +- 空投规则与指南的直接链接 +- 更新专家文本内容以提供更清晰说明 +- View PR: [#150](https://github.com/codatta/codattaFrontierWebsite/pull/150), [#152](https://github.com/codatta/codattaFrontierWebsite/pull/152) -
+#### 问题修复 -
+**空投界面改进** -通过对素食、非素食和混合类别的细致图像标注,扩展 AI 对全球食品文化和偏好的理解。 +- 修复空投食品样式不一致 +- 修复文本显示与格式问题 +- 修正规则显示与布局问题 +- View PR: [#141](https://github.com/codatta/codattaFrontierWebsite/pull/141), [#144](https://github.com/codatta/codattaFrontierWebsite/pull/144), [#145](https://github.com/codatta/codattaFrontierWebsite/pull/145), [#146](https://github.com/codatta/codattaFrontierWebsite/pull/146), [#147](https://github.com/codatta/codattaFrontierWebsite/pull/147), [#151](https://github.com/codatta/codattaFrontierWebsite/pull/151) -- **参与方式:** 可通过 Binance Wallet 助推标签或主页横幅访问(Alpha Points ≥ 61)。 -- **奖励:** 总奖励池为 50,000,000 $XNY,任务完成并验证后分发。 -- **活动时间:** 2025 年 07 月 02 日 13:00 UTC – 2025 年 07 月 09 日 13:00 UTC。 +#### 开发 + +**平台更新** + +- 核心开发分支更新与改进 +- 平台优化与维护更新 +- View PR: [#153](https://github.com/codatta/codattaFrontierWebsite/pull/153)
-
+
-## 3.8.0 2025 年 06 月 25 日 ---- -**活动启动:Codatta 助推活动第一季第一周** +### 4.0.0 Oct 01, 2025 +
-
+#### 新功能 -
+**空投活动系统** -通过收集注释食品数据、通过测验吸引社区知识,并通过多层次激励结构奖励参与,启动首季活动。 +- 三种不同的空投任务类别以多样化用户参与 +- 互动活动仪表板用于追踪参与 +- 基于知识任务的专家答案验证系统 +- View PR: [#131](https://github.com/codatta/codattaFrontierWebsite/pull/131), [#133](https://github.com/codatta/codattaFrontierWebsite/pull/133), [#136](https://github.com/codatta/codattaFrontierWebsite/pull/136) -- **参与方式:** 可通过 Binance Wallet 助推标签或主页横幅访问(Alpha Points ≥ 61)。 -- **奖励:** 总奖励池为 50,000,000 $XNY,任务完成并验证后分发。 -- **活动时间:** 2025 年 06 月 25 日 13:00 UTC – 2025 年 07 月 02 日 13:00 UTC。 +**增强版空投指南** -
{/* Component definitions - moved to end of file for cleaner code organization */} -export const ChangelogFilter = () => { - const [activeFilter, setActiveFilter] = useState('all'); - const [isOpen, setIsOpen] = useState(false); - const [isMenuHovered, setIsMenuHovered] = useState(false); +- 空投参与的全面指南文档 +- 改进空投活动的用户引导 +- View PR: [#139](https://github.com/codatta/codattaFrontierWebsite/pull/139) - useEffect(() => { - window.activeTypeFilter = activeFilter; - }, [activeFilter]); +#### 问题修复 - useEffect(() => { - const items = document.querySelectorAll('.changelog-item'); - const activeMonth = window.activeMonthFilter || 'all'; - - items.forEach((item) => { - const itemType = item.getAttribute('data-type'); - const itemMonth = item.getAttribute('data-month'); - - const typeMatch = activeFilter === 'all' || itemType === activeFilter; - const monthMatch = activeMonth === 'all' || itemMonth === activeMonth; - - item.style.display = typeMatch && monthMatch ? '' : 'none'; - }); - }, [activeFilter]); +**空投系统改进** - const filterTypes = [ - { id: 'all', label: '全部', color: '#6b7280', count: 24 }, - { id: 'core-feature', label: '核心功能发布', color: '#16A34A', count: 4 }, - { id: 'optimization', label: '调整与优化', color: '#F59E0B', count: 3 }, - { id: 'fixes', label: '修复与功能下线', color: '#EF4444', count: 3 }, - { id: 'campaign', label: '活动启动', color: '#A855F7', count: 14 } - ]; +- 修复专家答案验证逻辑 +- View PR: [#137](https://github.com/codatta/codattaFrontierWebsite/pull/137), [#138](https://github.com/codatta/codattaFrontierWebsite/pull/138) - const activeType = filterTypes.find(type => type.id === activeFilter) || filterTypes[0]; +**邮件交互增强** - return ( -
-
setIsOpen(!isOpen)} - style={{ - display: 'inline-flex', - alignItems: 'center', - gap: '0.5rem', - padding: '0.625rem 1rem', - border: '2px solid #e5e7eb', - borderRadius: '0.5rem', - background: 'white', - cursor: 'pointer', - fontSize: '0.875rem', - fontWeight: '500', - boxShadow: isOpen ? `0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)` : '0 1px 2px 0 rgba(0, 0, 0, 0.05)', - transition: 'all 0.2s ease', - userSelect: 'none', - minWidth: '200px' - }} - > - - - {activeType.label} ({activeType.count}) - - -
- - {isOpen && ( -
setIsMenuHovered(true)} - onMouseLeave={() => setIsMenuHovered(false)} - style={{ - position: 'absolute', - top: '100%', - left: 0, - marginTop: '0.5rem', - backgroundColor: 'white', - border: `2px solid ${isMenuHovered ? '#9ca3af' : '#e5e7eb'}`, - borderRadius: '0.5rem', - boxShadow: isMenuHovered - ? '0 10px 15px -3px rgba(0, 0, 0, 0.15), 0 4px 6px -2px rgba(0, 0, 0, 0.1)' - : '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)', - zIndex: 1000, - minWidth: '280px', - overflow: 'hidden', - transition: 'border-color 0.2s ease, box-shadow 0.2s ease' - }} - > - {filterTypes.map((type) => ( -
{ - setActiveFilter(type.id); - setIsOpen(false); - }} - style={{ - padding: '0.75rem 1rem', - cursor: 'pointer', - display: 'flex', - alignItems: 'center', - justifyContent: 'space-between', - borderBottom: type.id !== filterTypes[filterTypes.length - 1].id ? '1px solid #f3f4f6' : 'none', - backgroundColor: activeFilter === type.id ? '#f9fafb' : 'white', - transition: 'background-color 0.15s ease' - }} - onMouseEnter={(e) => { - if (activeFilter !== type.id) { - e.currentTarget.style.backgroundColor = '#f3f4f6'; - } - }} - onMouseLeave={(e) => { - if (activeFilter !== type.id) { - e.currentTarget.style.backgroundColor = 'white'; - } - }} - > - - {type.label} - - - {type.count} - -
- ))} -
- )} - - {isOpen && ( -
setIsOpen(false)} - style={{ - position: 'fixed', - top: 0, - left: 0, - right: 0, - bottom: 0, - zIndex: 999, - backgroundColor: 'transparent' - }} - /> - )} -
- ); -}; +- 增强邮件交互功能 +- View PR: [#135](https://github.com/codatta/codattaFrontierWebsite/pull/135) -export const MonthFilter = () => { - const [activeMonth, setActiveMonth] = useState('all'); - const [isOpen, setIsOpen] = useState(false); - const [isMenuHovered, setIsMenuHovered] = useState(false); +
- useEffect(() => { - window.activeMonthFilter = activeMonth; - const event = new Event('monthFilterChange'); - window.dispatchEvent(event); - }, [activeMonth]); +
- useEffect(() => { - const handleMonthChange = () => { - const items = document.querySelectorAll('.changelog-item'); - const activeType = window.activeTypeFilter || 'all'; - - items.forEach((item) => { - const itemType = item.getAttribute('data-type'); - const itemMonth = item.getAttribute('data-month'); - - const typeMatch = activeType === 'all' || itemType === activeType; - const monthMatch = activeMonth === 'all' || itemMonth === activeMonth; - - item.style.display = typeMatch && monthMatch ? '' : 'none'; - }); - }; - - window.addEventListener('monthFilterChange', handleMonthChange); - handleMonthChange(); - - return () => { - window.removeEventListener('monthFilterChange', handleMonthChange); - }; - }, [activeMonth]); +### 3.9.10 Sep 24, 2025 +
- const months = [ - { id: 'all', label: '全部月份', count: 24 }, - { id: 'dec', label: '十二月', count: 1 }, - { id: 'nov', label: '十一月', count: 3 }, - { id: 'oct', label: '十月', count: 6 }, - { id: 'sep', label: '九月', count: 3 }, - { id: 'aug', label: '八月', count: 5 }, - { id: 'jul', label: '七月', count: 5 }, - { id: 'jun', label: '六月', count: 1 } - ]; +#### 新功能 - const activeMonthData = months.find(month => month.id === activeMonth) || months[0]; +**高质量用户引导系统** - return ( -
-
setIsOpen(!isOpen)} - style={{ - display: 'inline-flex', - alignItems: 'center', - gap: '0.5rem', - padding: '0.625rem 1rem', - border: '2px solid #e5e7eb', - borderRadius: '0.5rem', - background: 'white', - cursor: 'pointer', - fontSize: '0.875rem', - fontWeight: '500', - boxShadow: isOpen ? `0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)` : '0 1px 2px 0 rgba(0, 0, 0, 0.05)', - transition: 'all 0.2s ease', - userSelect: 'none', - minWidth: '200px' - }} - > - - {activeMonthData.label} ({activeMonthData.count}) - - -
- - {isOpen && ( -
setIsMenuHovered(true)} - onMouseLeave={() => setIsMenuHovered(false)} - style={{ - position: 'absolute', - top: '100%', - left: 0, - marginTop: '0.5rem', - backgroundColor: 'white', - border: `2px solid ${isMenuHovered ? '#9ca3af' : '#e5e7eb'}`, - borderRadius: '0.5rem', - boxShadow: isMenuHovered - ? '0 10px 15px -3px rgba(0, 0, 0, 0.15), 0 4px 6px -2px rgba(0, 0, 0, 0.1)' - : '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)', - zIndex: 1000, - minWidth: '280px', - overflow: 'hidden', - transition: 'border-color 0.2s ease, box-shadow 0.2s ease' - }} - > - {months.map((month) => ( -
{ - setActiveMonth(month.id); - setIsOpen(false); - }} - style={{ - padding: '0.75rem 1rem', - cursor: 'pointer', - display: 'flex', - alignItems: 'center', - justifyContent: 'space-between', - borderBottom: month.id !== months[months.length - 1].id ? '1px solid #f3f4f6' : 'none', - backgroundColor: activeMonth === month.id ? '#f9fafb' : 'white', - transition: 'background-color 0.15s ease' - }} - onMouseEnter={(e) => { - if (activeMonth !== month.id) { - e.currentTarget.style.backgroundColor = '#f3f4f6'; - } - }} - onMouseLeave={(e) => { - if (activeMonth !== month.id) { - e.currentTarget.style.backgroundColor = 'white'; - } - }} - > - - {month.label} - - - {month.count} - -
- ))} -
- )} - - {isOpen && ( -
setIsOpen(false)} - style={{ - position: 'fixed', - top: 0, - left: 0, - right: 0, - bottom: 0, - zIndex: 999, - backgroundColor: 'transparent' - }} - /> - )} -
- ); -}; +- 增强用户注册流程与邮件验证 +- View PR: [#123](https://github.com/codatta/codattaFrontierWebsite/pull/123), [#124](https://github.com/codatta/codattaFrontierWebsite/pull/124), [#126](https://github.com/codatta/codattaFrontierWebsite/pull/126), [#127](https://github.com/codatta/codattaFrontierWebsite/pull/127), [#128](https://github.com/codatta/codattaFrontierWebsite/pull/128) + +#### 性能优化 + +**增强版视觉界面** + +- 更新图像宽高比以保持一致显示 +- View PR: [#125](https://github.com/codatta/codattaFrontierWebsite/pull/125) + +#### 问题修复 + +**平台显示与钱包连接修复** + +- 修复 Frontier 显示渲染问题 +- View PR: [#129](https://github.com/codatta/codattaFrontierWebsite/pull/129), [#130](https://github.com/codatta/codattaFrontierWebsite/pull/130) + +
+ +
+ +### 3.9.9 Sep 17, 2025 +
+ +#### 新功能 + +**高质量用户计划 V2** + +- 简化邀请链接复制功能并使用本地存储 +- 增强 Telegram 群组集成与自动加入验证 +- View PR: [#106](https://github.com/codatta/codattaFrontierWebsite/pull/106), [#107](https://github.com/codatta/codattaFrontierWebsite/pull/107), [#111](https://github.com/codatta/codattaFrontierWebsite/pull/111), [#113](https://github.com/codatta/codattaFrontierWebsite/pull/113), [#117](https://github.com/codatta/codattaFrontierWebsite/pull/117), [#118](https://github.com/codatta/codattaFrontierWebsite/pull/118), [#119](https://github.com/codatta/codattaFrontierWebsite/pull/119), [#120](https://github.com/codatta/codattaFrontierWebsite/pull/120), [#121](https://github.com/codatta/codattaFrontierWebsite/pull/121) + +**每周活动系统** + +- 新的每周活动追踪与完成系统 +- 集成奖励机制以保持持续参与 +- View PR: [#114](https://github.com/codatta/codattaFrontierWebsite/pull/114) + +**提现功能** + +- 完整的提现界面,流程友好 +- 安全的用户资金交易处理 +- View PR: [#116](https://github.com/codatta/codattaFrontierWebsite/pull/116) + +#### 问题修复 + +**界面改进** + +- 修复构建编译错误以实现稳定部署 +- 隐藏不必要的重试按钮以减少界面杂乱 +- View PR: [#108](https://github.com/codatta/codattaFrontierWebsite/pull/108), [#110](https://github.com/codatta/codattaFrontierWebsite/pull/110), [#112](https://github.com/codatta/codattaFrontierWebsite/pull/112) + +
+ +
+ +### 3.9.8 Sep 10, 2025 +
+ +#### 新功能 + +**链上任务验证系统** + +- 自动化链上任务完成验证 +- 第11周活动与验证系统集成 +- View PR: [#92](https://github.com/codatta/codattaFrontierWebsite/pull/92), [#93](https://github.com/codatta/codattaFrontierWebsite/pull/93) + +**高质量用户体验增强** + +- 高级用户质量评估算法 +- 重复图像检测与错误防护 +- View PR: [#99](https://github.com/codatta/codattaFrontierWebsite/pull/99), [#101](https://github.com/codatta/codattaFrontierWebsite/pull/101), [#102](https://github.com/codatta/codattaFrontierWebsite/pull/102), [#103](https://github.com/codatta/codattaFrontierWebsite/pull/103) + +**时尚应用试用集成** + +- 完整的时尚应用试用工作流 +- 与现有平台功能无缝集成 +- View PR: [#98](https://github.com/codatta/codattaFrontierWebsite/pull/98) + +**二维码系统更新** + +- 更新二维码生成算法 +- 通过二维码功能改进活动集成 +- View PR: [#104](https://github.com/codatta/codattaFrontierWebsite/pull/104), [#105](https://github.com/codatta/codattaFrontierWebsite/pull/105) + +#### 问题修复 + +**平台稳定性改进** + +- 修复影响部署的构建编译问题 +- 增强 Gensmo 邮件提交功能 +- View PR: [#94](https://github.com/codatta/codattaFrontierWebsite/pull/94), [#95](https://github.com/codatta/codattaFrontierWebsite/pull/95), [#96](https://github.com/codatta/codattaFrontierWebsite/pull/96), [#97](https://github.com/codatta/codattaFrontierWebsite/pull/97), [#100](https://github.com/codatta/codattaFrontierWebsite/pull/100) + +
+ +
+ +### 3.9.6 Sep 03, 2025 +
+ +#### 新功能 + +**增强版用户数据档案系统** + +- 完整的用户档案界面与数据可视化 +- 增强档案数据结构与组织 +- View PR: [#88](https://github.com/codatta/codattaFrontierWebsite/pull/88), [#91](https://github.com/codatta/codattaFrontierWebsite/pull/91) + +**第10周活动功能** + +- 每周活动监控与奖励 +- 互动活动仪表板 +- View PR: [#89](https://github.com/codatta/codattaFrontierWebsite/pull/89) + +
+ +
+ +### 3.9.3 Aug 27, 2025 +
+ +#### 新功能 + +**增强版 FATE 调查系统** + +- 更新调查界面,增强用户交互 +- View PR: [#84](https://github.com/codatta/codattaFrontierWebsite/pull/84) + +**加密货币调查模块** + +- 专用加密货币调查界面与工作流 +- 加密货币话题的专业问题类型 +- 增强加密货币市场分析的数据收集 +- View PR: [#85](https://github.com/codatta/codattaFrontierWebsite/pull/85) + +**调查隐私控制** + +- 调查问卷的精细隐私控制选项 +- 用户可控的数据共享设置 +- View PR: [#87](https://github.com/codatta/codattaFrontierWebsite/pull/87) + +#### 问题修复 + +**FATE 表单限制更新** + +- 修复表单验证限制约束 +- View PR: [#86](https://github.com/codatta/codattaFrontierWebsite/pull/86) + +
+ +
+ +### 3.9.2 Aug 20, 2025 +
+ +#### 新功能 + +**主页改版与更新** + +- 更新视觉设计与内容结构 +- View PR: [#79](https://github.com/codatta/codattaFrontierWebsite/pull/79), [#80](https://github.com/codatta/codattaFrontierWebsite/pull/80), [#82](https://github.com/codatta/codattaFrontierWebsite/pull/82) + +**资产领取系统** + +- View PR: [#81](https://github.com/codatta/codattaFrontierWebsite/pull/81) + +**Kitchen 应用数据集成** + +- 高级数据处理工作流 +- View PR: [#83](https://github.com/codatta/codattaFrontierWebsite/pull/83) + +
+ +
+ +### 3.9.1 Aug 13, 2025 +
+ +#### 新功能 + +**用户资产管理** + +- 改进资产可视化与组织 +- View PR: [#75](https://github.com/codatta/codattaFrontierWebsite/pull/75) + +**第8周学习内容** + +- 互动测验功能以增强学习 +- 综合阅读材料与资源 +- 结构化的每周学习进度 +- View PR: [#76](https://github.com/codatta/codattaFrontierWebsite/pull/76) + +**第9周收藏功能** + +- 新的收藏界面与导航 +- View PR: [#78](https://github.com/codatta/codattaFrontierWebsite/pull/78) + +#### 问题修复 + +**测验界面改进** + +- 修正测验布局与格式问题 +- View PR: [#74](https://github.com/codatta/codattaFrontierWebsite/pull/74) + +**XNY 代币显示修复** + +- 修复代币显示格式与可见性 +- 修正代币信息渲染 +- View PR: [#77](https://github.com/codatta/codattaFrontierWebsite/pull/77) + +
+ +
+ +### 3.8.9 Aug 06, 2025 +
+ +#### 新功能 + +**增强版链上集成** + +- 改进链上数据同步 +- View PR: [#66](https://github.com/codatta/codattaFrontierWebsite/pull/66), [#67](https://github.com/codatta/codattaFrontierWebsite/pull/67), [#69](https://github.com/codatta/codattaFrontierWebsite/pull/69) + +**提交历史追踪** + +- 合格提交指标显示 +- View PR: [#71](https://github.com/codatta/codattaFrontierWebsite/pull/71), [#72](https://github.com/codatta/codattaFrontierWebsite/pull/72) + +**活动详情改进** + +- View PR: [#68](https://github.com/codatta/codattaFrontierWebsite/pull/68), [#73](https://github.com/codatta/codattaFrontierWebsite/pull/73) + +#### 性能优化 + +**构建系统优化** + +- 增强 GitHub Actions 工作流自动化 +- 简化部署管道 +- View PR: [#61](https://github.com/codatta/codattaFrontierWebsite/pull/61), [#62](https://github.com/codatta/codattaFrontierWebsite/pull/62), [#63](https://github.com/codatta/codattaFrontierWebsite/pull/63), [#64](https://github.com/codatta/codattaFrontierWebsite/pull/64), [#65](https://github.com/codatta/codattaFrontierWebsite/pull/65) + +#### 问题修复 + +**UI 组件修复** + +- 修复 SVG 图标渲染问题 +- View PR: [#70](https://github.com/codatta/codattaFrontierWebsite/pull/70) + +
+ +
+ +### 3.8.7 Jul 30, 2025 +
+ +#### 新功能 + +**Crypto Frontier 集成** + +- 完成 Crypto Frontier 功能实现 +- View PR: [#57](https://github.com/codatta/codattaFrontierWebsite/pull/57) + +#### 问题修复 + +**机器人提交修复** + +- 修复重复提交防护机制 +- View PR: [#58](https://github.com/codatta/codattaFrontierWebsite/pull/58) + +**Crypto Frontier 配置更新** + +- 更新 Crypto Frontier 配置设置 +- 优化运营参数以提高性能 +- View PR: [#59](https://github.com/codatta/codattaFrontierWebsite/pull/59), [#60](https://github.com/codatta/codattaFrontierWebsite/pull/60) + +
+ +
+ +### 3.8.5 Jul 16, 2025 +
+ +#### 新功能 + +**增强版助力系统** + +- 第1周新助力里程碑系统 +- 更新第4周助力进度机制 +- View PR: [#49](https://github.com/codatta/codattaFrontierWebsite/pull/49), [#50](https://github.com/codatta/codattaFrontierWebsite/pull/50) + +**Fate Frontier 集成** + +- 完成 Fate Frontier 界面实现 +- 将奖励系统与现有平台机制集成 +- View PR: [#52](https://github.com/codatta/codattaFrontierWebsite/pull/52) + +#### 问题修复 + +**文本显示改进** + +- 更新阅读文本功能以提高清晰度 +- 增强多个组件的文本格式 +- View PR: [#51](https://github.com/codatta/codattaFrontierWebsite/pull/51) + +**食品系统增强** + +- 添加食品烹饪方法的输入修剪以防错误 +- View PR: [#53](https://github.com/codatta/codattaFrontierWebsite/pull/53), [#54](https://github.com/codatta/codattaFrontierWebsite/pull/54) + +
+ +
+ +### 3.8.3 Jul 09, 2025 +
+ +#### 新功能 + +**BN 助力增强** + +- 优化助力性能指标 +- View PR: [#48](https://github.com/codatta/codattaFrontierWebsite/pull/48) + +
+ +
+ +### 3.8.2 Jul 02, 2025 +
+ +#### 新功能 + +**增强版日志系统** + +- View PR: [#46](https://github.com/codatta/codattaFrontierWebsite/pull/46) + +**食品模板集成** + +- 新的食品相关内容模板系统 +- View PR: [#47](https://github.com/codatta/codattaFrontierWebsite/pull/47) + +
+ +
+ +### 3.8.0 Jun 25, 2025 +
+ +#### 新功能 + +**品牌形象更新** + +- 新 Codatta 标志在品牌资产中的实现 +- 更新整个主网站界面的标志 +- View PR: [#6](https://github.com/codatta/brand-kit/pull/6), [#40](https://github.com/codatta/codattaFrontierWebsite/pull/40), [#7](https://github.com/codatta/brand-kit/pull/7) + +**助力系统增强** + +- 为助力功能添加孟加拉语支持 +- View PR: [#41](https://github.com/codatta/codattaFrontierWebsite/pull/41), [#43](https://github.com/codatta/codattaFrontierWebsite/pull/43), [#45](https://github.com/codatta/codattaFrontierWebsite/pull/45) + +
+ +
+ +### 3.7.9 May 28, 2025 +
+ +#### 问题修复 + +**构建流程稳定化** + +- 修复构建配置错误 +- View PR: [#36](https://github.com/codatta/codattaFrontierWebsite/pull/36) + +
+ +
+ +### 3.4.9 Apr 02, 2025 +
+ +#### UI/UX 改进 + +**增强版 Frontier 横幅设计** + +- View PR: [#27](https://github.com/codatta/codattaFrontierWebsite/pull/27) + +
+ +
+ +### 3.4.8 Feb 12, 2025 +
+ +#### 新功能 + +**端到端测试基础设施** + +- 关键用户工作流的完整测试管道 +- 平台功能的自动化验证 +- View PR: [#23](https://github.com/codatta/codattaFrontierWebsite/pull/23) + +
+ +
+ +### 3.4.7 Jan 29, 2025 +
+ +#### 新功能 + +**增强版社交界面** + +- 简化界面设计以提高可访问性 +- View PR: [#19](https://github.com/codatta/codattaFrontierWebsite/pull/19) + +
+ +
+ +### 3.4.6 Jan 22, 2025 +
+ +#### 新功能 + +**增强版推荐表格设计** + +- View PR: [#18](https://github.com/codatta/codattaFrontierWebsite/pull/18) + +
+ +
+ +### 3.3.0 Jan 08, 2025 +
+ +#### 新功能 + +**扩展认证集成** + +- View PR: [#16](https://github.com/codatta/codattaFrontierWebsite/pull/16) + +#### 问题修复 + +**UI 改进与横幅修复** + +- 修复奖励成功 Toast 通知样式 +- 修正横幅显示问题 +- View PR: [#11](https://github.com/codatta/codattaFrontierWebsite/pull/11), [#13](https://github.com/codatta/codattaFrontierWebsite/pull/13) + +
diff --git a/docs.json b/docs.json index f8da602..92c9625 100644 --- a/docs.json +++ b/docs.json @@ -91,7 +91,7 @@ "tab": "Changelog", "groups": [ { - "group": "2025", + "group": "2025-2026", "pages": [ "en/changelog/2025" ] @@ -168,7 +168,7 @@ "tab": "更新日志", "groups": [ { - "group": "2025", + "group": "2025-2026", "pages": [ "cn/changelog/2025" ] @@ -244,7 +244,7 @@ "tab": "변경 로그", "groups": [ { - "group": "2025", + "group": "2025-2026", "pages": [ "ko/changelog/2025" ] diff --git a/en/changelog/2025.mdx b/en/changelog/2025.mdx index 39f1708..c84ae39 100644 --- a/en/changelog/2025.mdx +++ b/en/changelog/2025.mdx @@ -1,10 +1,8 @@ --- title: "Changelog" -description: "This changelog documents all updates, fixes, and new features for Codatta in 2025." +description: "This changelog documents all updates, fixes, and new features for Codatta." --- -import { useState, useEffect } from 'react'; -
-
+ {(() => { + const ShowResult = () => { + const [num, setNum] = useState(0); + useEffect(() => { + if (typeof document === 'undefined') return; + const update = () => { + try { + const items = document.querySelectorAll('.changelog-item'); + let count = 0; + items.forEach(item => { + if (item.style.display !== 'none') count++; + }); + setNum(count); + } catch {} + }; + update(); + const id = setInterval(update, 2000); + return () => clearInterval(id); + }, []); + return ( +
+ + {num} + result{num !== 1 ? 's' : ''} +
+ ); + }; + return ; + })()}
- - {(() => { - const ShowResult = () => { - const [num, setNum] = useState(0); - useEffect(() => { - if (typeof document === 'undefined') return; - const update = () => { - try { - const items = document.querySelectorAll('.changelog-item'); - let count = 0; - items.forEach(item => { - if (item.style.display !== 'none') count++; - }); - setNum(count); - } catch {} - }; - update(); - const id = setInterval(update, 2000); - return () => clearInterval(id); - }, []); - return ( -
+ +export const ChangelogFilter = () => { + const [activeFilter, setActiveFilter] = useState('all'); + const [isOpen, setIsOpen] = useState(false); + const [isMenuHovered, setIsMenuHovered] = useState(false); + + useEffect(() => { + window.activeTypeFilter = activeFilter; + }, [activeFilter]); + + useEffect(() => { + const items = document.querySelectorAll('.changelog-item'); + const activeMonth = window.activeMonthFilter || 'all'; + + items.forEach((item) => { + const itemType = item.getAttribute('data-type'); + const itemMonth = item.getAttribute('data-month'); + + const typeMatch = activeFilter === 'all' || itemType === activeFilter; + const monthMatch = activeMonth === 'all' || itemMonth === activeMonth; + + item.style.display = typeMatch && monthMatch ? '' : 'none'; + }); + }, [activeFilter]); + + const filterTypes = [ + { id: 'all', label: 'All Types', color: '#6b7280' }, + { id: 'core-feature', label: '🚀 Core Feature Release', color: '#16A34A' }, + { id: 'optimization', label: '⚡ Adjustments & Optimization', color: '#F59E0B' }, + { id: 'fixes', label: '🐛 Fixes & Feature Sunset', color: '#EF4444' }, + { id: 'campaign', label: '🎯 Campaign Launch', color: '#A855F7' } + ]; + + return ( +
+
- ); - }; - return ; - })()} -
+ color: '#374151', + cursor: 'pointer', + transition: 'all 0.2s', + boxShadow: isOpen || isMenuHovered ? '0 4px 6px -1px rgba(0, 0, 0, 0.1)' : 'none' + }} + > + + {filterTypes.find(f => f.id === activeFilter)?.label.split(' ')[0] || '📋'} + + {filterTypes.find(f => f.id === activeFilter)?.label.split(' ').slice(1).join(' ') || 'All Types'} + + -
+ {isOpen && ( +
setIsMenuHovered(true)} + onMouseLeave={() => { + setIsMenuHovered(false); + setIsOpen(false); + }} + style={{ + position: 'absolute', + top: 'calc(100% + 0.5rem)', + left: 0, + backgroundColor: '#ffffff', + border: '1px solid #e5e7eb', + borderRadius: '0.5rem', + boxShadow: '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)', + zIndex: 50, + minWidth: '14rem', + maxHeight: '20rem', + overflowY: 'auto' + }} + > + {filterTypes.map((type) => ( + + ))} +
+ )} +
+ ); +}; -## 4.2.7 Dec 04, 2025 ---- -**Evolving Incentives: Reward Lock-ups for Long-term Ecosystem Management** +export const MonthFilter = () => { + const [activeMonth, setActiveMonth] = useState('all'); + const [isOpen, setIsOpen] = useState(false); + const [isMenuHovered, setIsMenuHovered] = useState(false); -
+ useEffect(() => { + window.activeMonthFilter = activeMonth; + }, [activeMonth]); -
+ useEffect(() => { + const items = document.querySelectorAll('.changelog-item'); -An optional lock-up feature for rewards from high-incentive tasks (e.g., in Airdrop or Frontier campaigns). + items.forEach((item) => { + const itemMonth = item.getAttribute('data-month'); + const monthMatch = activeMonth === 'all' || itemMonth === activeMonth; -- **Trigger:** Rewards are deposited to your balance after a campaign. -- **Lock:** Secure rewards by locking them in a smart contract via the Assets page. -- **Release:** After the lock-up period, claim rewards directly to your wallet with one click. + item.style.display = monthMatch ? '' : 'none'; + }); + }, [activeMonth]); -This is a key step in evolving our incentive system toward granular management. It provides a tool to manage liquidity in high-reward scenarios, balancing short-term engagement with the ecosystem's long-term health. + const months = [ + { id: 'all', label: 'All Months' }, + { id: 'jan', label: 'January' }, + { id: 'feb', label: 'February' }, + { id: 'mar', label: 'March' }, + { id: 'apr', label: 'April' }, + { id: 'may', label: 'May' }, + { id: 'jun', label: 'June' }, + { id: 'jul', label: 'July' }, + { id: 'aug', label: 'August' }, + { id: 'sep', label: 'September' }, + { id: 'oct', label: 'October' }, + { id: 'nov', label: 'November' }, + { id: 'dec', label: 'December' } + ]; -
+ return ( +
+ -
+ {isOpen && ( +
setIsMenuHovered(true)} + onMouseLeave={() => { + setIsMenuHovered(false); + setIsOpen(false); + }} + style={{ + position: 'absolute', + top: 'calc(100% + 0.5rem)', + left: 0, + backgroundColor: '#ffffff', + border: '1px solid #e5e7eb', + borderRadius: '0.5rem', + boxShadow: '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)', + zIndex: 50, + minWidth: '12rem', + maxHeight: '20rem', + overflowY: 'auto' + }} + > + {months.map((month) => ( + + ))} +
+ )} +
+ ); +}; -## 4.2.5 Nov 24, 2025 ---- -**Campaign Launch: Airdrop Season 2** +
-
+### 4.4.1 Feb 14, 2026 +
-
+#### Bug Fixes -To systematically collect academic-grade datasets in physics, finance, and multimodal domains, and bootstrap high-quality data pipelines for three new frontiers. +**Frontend Hotfix** -- **Action:** Launched Airdrop Season 2 with a 1M $XNY prize pool (3-month linear vesting). -- **New Frontiers:** - - **Advanced Physics Questions:** For domain experts to submit high-difficulty physics problems that current AI cannot answer correctly. - - **Crypto & Stock Information:** To provide AI with reliable information related to cryptocurrency and stock investment decisions. - - **Real-world Photo:** To provide AI with real-world photographs that include annotated metadata. -- **Reward Structure:** 90% for task completion, 10% for leaderboard rankings. -- **Timeline:** Nov 24, 2025, 09:00 UTC – Dec 8, 2025, 09:00 UTC. +- Resolved a post-deployment issue in the Codatta Frontier Website +- View PR: [#310](https://github.com/codatta/codattaFrontierWebsite/pull/310)
-
+
-## 4.2.0 Nov 05, 2025 ---- -**Account System Upgrade: DID Officially Launched** +### 4.4.0 Feb 11, 2026 +
-
+#### New Features -
+**App Bridge Integration & Communication Layer** -A foundational upgrade enabling account binding to Decentralized Identifiers (DID). +- Complete App Bridge implementation with bidirectional messaging +- Bridge.js positioning optimization for improved load performance +- Development logging and testing framework for bridge communications +- View PR: [#295](https://github.com/codatta/codattaFrontierWebsite/pull/295), [#297](https://github.com/codatta/codattaFrontierWebsite/pull/297), [#298](https://github.com/codatta/codattaFrontierWebsite/pull/298), [#299](https://github.com/codatta/codattaFrontierWebsite/pull/299) -- **Binding:** Self-service integration of an on-chain DID through your next login to Codatta. -- **Association:** The bound DID serves as the unified primary key, systematically indexing all task actions, data contributions, and reward distributions. -- **Lineage:** Enables full traceability and verification of both on-chain and off-chain activities, establishing immutable data provenance. +**Fashion App Launch** -This deployment establishes the technical cornerstone for a verifiable data economy. By providing each contributor with a persistent, unique digital identity, we enable granular contribution attribution, unambiguous ownership verification, and transparent incentive allocation at the protocol level. +- Full fashion-category app interface and submission flow +- View PR: [#301](https://github.com/codatta/codattaFrontierWebsite/pull/301) -
+**Rebuilt Router & Enhanced Submission Experience** -
+- Complete router rebuild for improved navigation +- New app submission successful modal with clearer confirmation flow +- View PR: [#304](https://github.com/codatta/codattaFrontierWebsite/pull/304) -## 4.1.5 Nov 03, 2025 ---- -**Quest System Adjustment: Crypto Frontier QUEST Module Decommissioned** +**CEX Duplicate Submission Check** + +- Automated duplicate detection before submission +- View PR: [#303](https://github.com/codatta/codattaFrontierWebsite/pull/303) -
+**Task History & Audit Trails** -
+- Audit reason display in task history records +- App task completed modal for clear task completion feedback +- View PR: [#300](https://github.com/codatta/codattaFrontierWebsite/pull/300), [#308](https://github.com/codatta/codattaFrontierWebsite/pull/308) -The entire Crypto Frontier QUEST module and all associated tasks—including Submission, Validation, and Bounty Hunting—have been taken offline. +#### Bug Fixes -- **Why:** This module has completed its planned lifecycle under the current product roadmap. The decommission supports system streamlining and resource realignment for upcoming feature releases. -- **Note:** Users' historical contribution records and earned rewards from this module remain intact. No other Frontier modules are affected by this change. +**Validation & Build Stability** + +- Fixed validation modal display issues +- Resolved build compilation errors +- Fixed user submission flag handling +- View PR: [#306](https://github.com/codatta/codattaFrontierWebsite/pull/306), [#296](https://github.com/codatta/codattaFrontierWebsite/pull/296), [#309](https://github.com/codatta/codattaFrontierWebsite/pull/309)
-
+
-## 4.1.4 Oct 24, 2025 ---- -**Frontier System Adjustment: Robotics Frontier Decommissioned** +### 4.3.2 Jan 14, 2026 +
-
+#### New Features -
+**Frontier V2 Platform Launch** -The Robotics Frontier has been officially decommissioned. This action only affects the front-end entry point. All historical contribution data remains intact and accessible. +- View PR: [#262](https://github.com/codatta/codattaFrontierWebsite/pull/262), [#263](https://github.com/codatta/codattaFrontierWebsite/pull/263) -- **Why:** This decision is part of our ongoing product streamlining to focus resources and user attention on our highest-priority active frontiers. The Robotics Frontier has fulfilled its planned exploratory phase, and its decommission allows us to consolidate efforts. -- **Note:** Users' past contributions and rewards from the Robotics Frontier are preserved and can be reviewed in their contribution history. No other frontiers or platform functionality is impacted. +**Enhanced Referral System V2** -
+- New referral interface with enhanced functionality +- Added usage limit indicators for better transparency +- View PR: [#253](https://github.com/codatta/codattaFrontierWebsite/pull/253), [#252](https://github.com/codatta/codattaFrontierWebsite/pull/252) -
+**CEX Hot Wallet Integration** -## 4.1.3 Oct 23, 2025 ---- -**Anti-Spam Enhancement: Daily Submission Limits Implemented** +- Multi-exchange hot wallet connectivity +- Exchange group management capabilities +- Enhanced configuration options for various exchanges +- View PR: [#256](https://github.com/codatta/codattaFrontierWebsite/pull/256), [#255](https://github.com/codatta/codattaFrontierWebsite/pull/255), [#257](https://github.com/codatta/codattaFrontierWebsite/pull/257) -
+**Advanced Validation System** -
+- View PR: [#254](https://github.com/codatta/codattaFrontierWebsite/pull/254) -A new platform-wide security policy to prevent task spamming. +#### Bug Fixes -- **How:** Enforces a configurable daily submission cap for each task. -- **Why:** To protect system resources, ensure equitable participation for all contributors, and maintain the long-term health and fairness of the task ecosystem. +**Reputation Recovery System** -
+- Resolved reputation calculation errors +- View PR: [#261](https://github.com/codatta/codattaFrontierWebsite/pull/261) -
+#### Performance -## 4.1.2 Oct 20, 2025 ---- -**Frontier System Adjustment: Crypto Frontier Decommissioned** +**API Header Optimization** + +- View PR: [#259](https://github.com/codatta/codattaFrontierWebsite/pull/259) -
+
-
+
-The Crypto Frontier has been officially decommissioned. This action only affects the front-end entry point. All historical contribution data remains intact and accessible. +### 4.3.1 Jan 07, 2026 +
-- **Why:** This decision is part of our ongoing product streamlining to focus resources and user attention on our highest-priority active frontiers. The Crypto Frontier has fulfilled its planned exploratory phase, and its decommission allows us to consolidate efforts. -- **Note:** Users' past contributions and rewards from the Crypto Frontier are preserved and can be reviewed in their contribution history. No other frontiers or platform functionality is impacted. +#### New Features -
+**Enhanced Referral System** -
+- Complete referral interface redesign +- View PR: [#248](https://github.com/codatta/codattaFrontierWebsite/pull/248), [#246](https://github.com/codatta/codattaFrontierWebsite/pull/246) -## 4.1.1 Oct 15, 2025 ---- -**System Governance: Platform Blacklist Control Implemented** +**Improved Modal Experience** -
+- Simplified modal navigation +- View PR: [#249](https://github.com/codatta/codattaFrontierWebsite/pull/249) -
+**Fashion Validation System** -A new blacklist control feature has been implemented on the platform. +- Comprehensive input validation rules +- Improved data consistency across fashion features +- View PR: [#245](https://github.com/codatta/codattaFrontierWebsite/pull/245) -- **How:** Designated admins can now apply blacklist rules to restrict malicious accounts. -- **Why:** To enhance platform security, protect contributor interests, and uphold ecosystem fairness. +#### Bug Fixes + +**Interface Component Fixes** + +- Fixed knob control responsiveness +- View PR: [#251](https://github.com/codatta/codattaFrontierWebsite/pull/251)
-
+
-## 4.1.0 Oct 13, 2025 ---- -**Campaign Launch: Airdrop Season 1** +### 4.3.0 Dec 31, 2025 +
-
+#### New Features -
+**Staking System Launch** -To systematically collect high-quality, structured data through a high-reward mechanism and anti-spam enforcement, ensuring validity and academic value, and to reward long-term contributors and diversify the platform's data ecosystem via five new frontier modules. +- Complete staking interface with claim functionality +- Airdrop task integration with staking rewards +- View PR: [#223](https://github.com/codatta/codattaFrontierWebsite/pull/223), [#225](https://github.com/codatta/codattaFrontierWebsite/pull/225) -- **Action:** Launched Airdrop Season 1 with a 2.5M $XNY prize pool and points rewards. -- **New Frontiers:** - - **Model Comparison:** Compare performance metrics and business outcomes across different AI models to identify optimal or hybrid solutions. - - **Spot LLM's Mistakes:** Identify reasoning, factual, and logical errors in LLM outputs to support model optimization. - - **Correct LLM's Mistakes:** Collect corrective data to help LLMs learn from mistakes and improve self-correction and reasoning. - - **Food Science:** Gather research data in food science and nutritional functionality to drive innovation in the field. - - **Lifelog Canvas:** Track and log personal behavior and health-related data to support behavioral and related research. -- **Reward Structure:** Rewards are ranked by submission rating and distributed after the campaign. Malicious submissions are penalized to ensure data quality. -- **Timeline:** Oct 13, 2025, 09:00 UTC - Oct 27, 2025, 09:00 UTC. +**Datasets Feature Integration** -
+- Enhanced data handling and organization +- View PR: [#224](https://github.com/codatta/codattaFrontierWebsite/pull/224) -
+**Social Account Recovery** -## 4.0.0 Oct 10, 2025 ---- -**Feature Launch: Frontier-Specific Reward Activity** +- View PR: [#228](https://github.com/codatta/codattaFrontierWebsite/pull/228) -
+#### Performance -
+**Wallet Address Management** -Configurable reward activities are now available for Frontiers, offering additional high-value incentives. +- Added current wallet address tracking hook +- Fixed checksum address validation +- Resolved wallet address update issues +- View PR: [#226](https://github.com/codatta/codattaFrontierWebsite/pull/226), [#229](https://github.com/codatta/codattaFrontierWebsite/pull/229), [#234](https://github.com/codatta/codattaFrontierWebsite/pull/234) -- **How:** Selected Frontier tasks provide extra rewards in $XNY or USDT, independent of base points. Activity parameters (reward amount, duration, objectives) are set per Frontier and displayed on their respective homepages. -- **Why:** To drive deeper participation in high-value data tasks through targeted incentives, improving both data quality and ecosystem engagement. +**Reputation System Enhancement** -
+- Improved API response efficiency +- View PR: [#231](https://github.com/codatta/codattaFrontierWebsite/pull/231) -
+#### Bug Fixes -## 3.9.9 Sep 26, 2025 ---- -**Campaign Launch: Codatta Booster Campaign Season 3 Week 4** +**Staking Interface Improvements** + +- Improved staking claim process +- Added comprehensive claim record tracking +- Enhanced empty table state messaging +- View PR: [#235](https://github.com/codatta/codattaFrontierWebsite/pull/235), [#238](https://github.com/codatta/codattaFrontierWebsite/pull/238), [#230](https://github.com/codatta/codattaFrontierWebsite/pull/230) -
+**Referral System Fix** -
+- Fixed referral tracking mechanism +- View PR: [#237](https://github.com/codatta/codattaFrontierWebsite/pull/237) -To accelerate AI development through trusted multi-domain data collection and foster community-driven decentralized AI knowledge building. +**Build Process Optimization** -- **Access:** Accessible via the Binance Wallet Booster tab or the homepage banner (requires Alpha Points ≥ 61). -- **Rewards:** Total reward pool of 50,000,000 $XNY (with a lock-up period), distributed after task completion and verification. -- **Timeline:** September 26, 2025, 07:00 UTC – October 3, 2025, 07:00 UTC. +- Resolved compilation issues +- View PR: [#227](https://github.com/codatta/codattaFrontierWebsite/pull/227)
-
+
-## 3.9.8 Sep 12, 2025 ---- -**Campaign Launch: Codatta Booster Campaign Season 3 Week 3** +### 4.2.6 Dec 17, 2025 +
-
+#### New Features -
+**Enhanced Task Management System** -To collect cross-domain data across life, robotics, crypto, model comparison, and fingerprint verification for AI training and verification. +- Persistent task filter storage for improved user experience +- Updated activity information display +- View PR: [#215](https://github.com/codattaFrontierWebsite/pull/215), [#220](https://github.com/codatta/codattaFrontierWebsite/pull/220), [#221](https://github.com/codatta/codattaFrontierWebsite/pull/221) -- **Access:** Accessible via the Binance Wallet Booster tab or the homepage banner (requires Alpha Points ≥ 61). -- **Rewards:** Total reward pool of 50,000,000 $XNY (with a lock-up period), distributed after task completion and verification. -- **Timeline:** September 12, 2025, 07:00 UTC – September 19, 2025, 07:00 UTC. +**Reputation System Implementation** + +- Complete reputation scoring system +- User reputation display and tracking +- Integration with existing reward mechanisms +- View PR: [#217](https://github.com/codatta/codattaFrontierWebsite/pull/217) + +#### Bug Fixes + +**Account Binding and Validation Improvements** + +- Fixed account binding functionality +- View PR: [#212](https://github.com/codatta/codattaFrontierWebsite/pull/212), [#213](https://github.com/codatta/codattaFrontierWebsite/pull/213) + +**UI and Build Optimizations** + +- Resolved build compilation issues +- Added app share landing page functionality +- Updated point reward icon design +- Modal positioning improvements +- View PR: [#214](https://github.com/codatta/codattaFrontierWebsite/pull/214), [#216](https://github.com/codatta/codattaFrontierWebsite/pull/216), [#218](https://github.com/codatta/codattaFrontierWebsite/pull/218), [#219](https://github.com/codatta/codattaFrontierWebsite/pull/219)
-
+
-## 3.9.6 Sep 05, 2025 ---- -**Campaign Launch: Codatta Booster Campaign Season 3 Week 2** +### 4.2.5 Dec 10, 2025 +
-
+#### New Features -
+**Lock-up Contract Mainnet Deployment** -To collect and annotate cross-domain data across life, robotics, and crypto for AI training and validation. +- Mainnet contract address configuration updated +- View PR: [#208](https://github.com/codatta/codattaFrontierWebsite/pull/208), [#211](https://github.com/codatta/codattaFrontierWebsite/pull/211) -- **Access:** Accessible via the Binance Wallet Booster tab or the homepage banner (requires Alpha Points ≥ 61). -- **Rewards:** Total reward pool of 50,000,000 $XNY (with a lock-up period), distributed after task completion and verification. -- **Timeline:** September 5, 2025, 07:00 UTC – September 12, 2025, 07:00 UTC. +#### Bug Fixes + +**UI and Content Improvements** + +- Fixed styling inconsistencies across platform components +- Corrected text and wording issues in user interface +- View PR: [#207](https://github.com/codatta/codattaFrontierWebsite/pull/207), [#209](https://github.com/codatta/codattaFrontierWebsite/pull/209), [#210](https://github.com/codatta/codattaFrontierWebsite/pull/210)
-
+
-## 3.9.3 Aug 28, 2025 ---- -**Feature Launch: User Data Profile** +### 4.2.4 Dec 03, 2025 +
-
+#### New Features -
+**3-Month Token Lock Functionality** -Introduce a new Data Profile feature within the User Info module. +- Updated lockup tooltips and guidance for better user understanding +- Improved asset visibility for locked tokens +- View PR: [#198](https://github.com/codatta/codattaFrontierWebsite/pull/198), [#199](https://github.com/codatta/codattaFrontierWebsite/pull/199), [#202](https://github.com/codatta/codattaFrontierWebsite/pull/202), [#203](https://github.com/codatta/codattaFrontierWebsite/pull/203), [#204](https://github.com/codatta/codattaFrontierWebsite/pull/204), [#205](https://github.com/codatta/codattaFrontierWebsite/pull/205) -- **How:** Access via User Info > Data Profile to view your total submissions, earned rewards, and contribution statistics in a visual dashboard. -- **Why:** Provide transparency into your contributions, reinforce engagement through visible progress tracking, and support long-term participation. +**Enhanced Rewards Claiming System** -
+- Updated claim rewards API for more reliable transactions +- View PR: [#206](https://github.com/codatta/codattaFrontierWebsite/pull/206) -
+#### Performance -## 3.9.2 Aug 22, 2025 ---- -**Campaign Launch: Codatta Booster Campaign Season 3 Week 1** +**Connection Library Updates** -
+- Enhanced connection stability and response times +- View PR: [#201](https://github.com/codatta/codattaFrontierWebsite/pull/201) -
+#### Bug Fixes -To establish a foundation of cross-domain annotated data across life, robotics, and crypto for decentralized AI training. +**Application Loop Prevention** -- **Access:** Accessible via the Binance Wallet Booster tab or the homepage banner (requires Alpha Points ≥ 61). -- **Rewards:** Total reward pool of 50,000,000 $XNY (with a lock-up period), distributed after task completion and verification. -- **Timeline:** August 22, 2025, 07:00 UTC – August 29, 2025, 07:00 UTC. +- Resolved infinite loop conditions in core application logic +- View PR: [#200](https://github.com/codatta/codattaFrontierWebsite/pull/200)
-
+
+ +### 4.2.3 Nov 26, 2025 +
-## 3.9.1 Aug 15, 2025 ---- -**Campaign Launch: Codatta Booster Campaign Season 2 Week 4** +#### New Features -
+**Social Task Integration** -
+- Added social link tasks for community engagement +- Improved Telegram submission process +- Enhanced Discord integration with updated links +- View PR: [#180](https://github.com/codatta/codattaFrontierWebsite/pull/180), [#181](https://github.com/codatta/codattaFrontierWebsite/pull/181), [#182](https://github.com/codatta/codattaFrontierWebsite/pull/182), [#184](https://github.com/codatta/codattaFrontierWebsite/pull/184) -To systematically annotate and expand domain-specific datasets in food AI, robotic interaction, and CEX on-chain data for decentralized AI training. +**Airdrop System Enhancements** -- **Access:** Accessible via Binance Wallet Booster tab or homepage banner (requires Alpha Points ≥ 61). -- **Rewards:** Total reward pool of 50,000,000 $XNY (with a lock-up period), distributed after task completion and verification. -- **Timeline:** August 15, 2025, 07:00 UTC – August 22, 2025, 07:00 UTC. +- Enhanced airdrop qualification operations +- View PR: [#186](https://github.com/codatta/codattaFrontierWebsite/pull/186), [#187](https://github.com/codatta/codattaFrontierWebsite/pull/187), [#189](https://github.com/codatta/codattaFrontierWebsite/pull/189), [#190](https://github.com/codatta/codattaFrontierWebsite/pull/190), [#191](https://github.com/codatta/codattaFrontierWebsite/pull/191) -
+**Physical Questions Form System** -
+- Integrated qualification operation features +- View PR: [#192](https://github.com/codatta/codattaFrontierWebsite/pull/192), [#193](https://github.com/codatta/codattaFrontierWebsite/pull/193) -## 3.8.9 Aug 08, 2025 ---- -**Campaign Launch: Codatta Booster Campaign Season 2 Week 3** +#### Performance -
+**API Request Optimization** -
+- Enhanced local proxy adaptation +- Reduced API response times +- View PR: [#195](https://github.com/codatta/codattaFrontierWebsite/pull/195), [#196](https://github.com/codatta/codattaFrontierWebsite/pull/196) -To systematically collect annotated data across four key areas: project learning, food AI judgement, robotic annotation, and CEX data expansion. +#### Bug Fixes -- **Access:** Accessible via Binance Wallet Booster tab or homepage banner (Alpha Points ≥ 61). -- **Rewards:** Total reward pool of 50,000,000 $XNY (with a lock-up period), distributed after task completion and verification. -- **Timeline:** August 8, 2025, 07:00 UTC – August 15, 2025, 07:00 UTC. +**Build Process Improvements** + +- Fixed critical build errors affecting deployment +- View PR: [#185](https://github.com/codatta/codattaFrontierWebsite/pull/185), [#188](https://github.com/codatta/codattaFrontierWebsite/pull/188), [#194](https://github.com/codatta/codattaFrontierWebsite/pull/194)
-
+
-## 3.8.8 Aug 01, 2025 ---- -**Campaign Launch: Codatta Booster Campaign Season 2 Week 2** +### 4.2.2 Nov 19, 2025 +
-
+#### New Features -
+**Enhanced Airdrop System** -To collect annotated data across three core domains: AI food model comparison, robotic interaction annotation, and CEX hot wallet data labeling. +- View PR: [#169](https://github.com/codatta/codattaFrontierWebsite/pull/169) -- **Access:** Accessible via Binance Wallet Booster tab or homepage banner (Alpha Points ≥ 61). -- **Rewards:** Total reward pool of 50,000,000 $XNY (with a lock-up period), distributed after task completion and verification. -- **Timeline:** August 1, 2025, 07:00 UTC – August 8, 2025, 07:00 UTC. +**Physical Verification System** -
+- Complete physical verification workflow +- Updated verification interface design +- View PR: [#170](https://github.com/codatta/codattaFrontierWebsite/pull/170), [#171](https://github.com/codatta/codattaFrontierWebsite/pull/171), [#177](https://github.com/codatta/codattaFrontierWebsite/pull/177) -
+**Frontier Task Verification** -## 3.8.7 July 24, 2025 ---- -**Campaign Launch: Codatta Booster Campaign Season 2 Week 1** +- Task verification status indicators +- View PR: [#172](https://github.com/codatta/codattaFrontierWebsite/pull/172), [#173](https://github.com/codatta/codattaFrontierWebsite/pull/173) + +**Form Input Controls** + +- Character length limits for form inputs +- Submission rate limiting to prevent spam +- View PR: [#174](https://github.com/codatta/codattaFrontierWebsite/pull/174), [#175](https://github.com/codatta/codattaFrontierWebsite/pull/175) -
+#### Bug Fixes -
+**Verification Navigation Fix** -To validate AI food analysis and enhance robotics training through annotated real-world interaction data. +- Fixed verification back button functionality +- View PR: [#176](https://github.com/codatta/codattaFrontierWebsite/pull/176) -- **Access:** Accessible via Binance Wallet Booster tab or homepage banner (Alpha Points ≥ 61). -- **Rewards:** Total reward pool of 50,000,000 $XNY (with a lock-up period), distributed after task completion and verification. -- **Timeline:** July 24, 2025, 07:00 UTC – July 31, 2025, 07:00 UTC. +**Builder Interface Updates** + +- Resolved builder interface issues +- Updated question display and handling +- View PR: [#178](https://github.com/codatta/codattaFrontierWebsite/pull/178), [#179](https://github.com/codatta/codattaFrontierWebsite/pull/179)
-
+
-## 3.8.5 July 16, 2025 ---- -**Campaign Launch: Codatta Booster Campaign Season 1 Week 4** +### 4.2.1 Nov 12, 2025 +
-
+#### New Features -
+**DID Integration** -To deepen AI's understanding of food by collecting enriched annotations that go beyond labels to include weight, cooking methods, and caloric content. +- View PR: [#166](https://github.com/codatta/codattaFrontierWebsite/pull/166) -- **Access:** Accessible via Binance Wallet Booster tab or homepage banner (Alpha Points ≥ 61). -- **Rewards:** Total reward pool of 50,000,000 $XNY, distributed after task completion and verification. -- **Timeline:** July 16, 2025, 13:00 UTC – July 23, 2025, 13:00 UTC. +**Platform Rebuild and Optimization** + +- Streamlined user interface and navigation +- View PR: [#165](https://github.com/codatta/codattaFrontierWebsite/pull/165) + +**Enhanced Leaderboard System** + +- Real-time ranking updates +- Enhanced competitive features +- View PR: [#168](https://github.com/codatta/codattaFrontierWebsite/pull/168) + +#### Bug Fixes + +**Localization Improvements** + +- Corrected Chinese text rendering +- View PR: [#167](https://github.com/codatta/codattaFrontierWebsite/pull/167)
-
+
-## 3.8.4 July 9, 2025 ---- -**Campaign Launch: Codatta Booster Campaign Season 1 Week 3** +### 4.2.0 Nov 05, 2025 +
+ +#### New Features -
+**DID Integration System** -
+- Complete DID workflow implementation +- View PR: [#161](https://github.com/codatta/codattaFrontierWebsite/pull/161), [#163](https://github.com/codatta/codattaFrontierWebsite/pull/163) -To teach AI nuanced understanding of human dietary habits by collecting annotated images of ready-to-eat food, focusing on cultural and contextual relevance beyond simple labels. +#### Bug Fixes -- **Access:** Accessible via Binance Wallet Booster tab or homepage banner (Alpha Points ≥ 61). -- **Rewards:** Total reward pool of 50,000,000 $XNY, distributed after task completion and verification. -- **Timeline:** July 9, 2025, 13:00 UTC – July 16, 2025, 13:00 UTC. +**Build Process Optimization** + +- Fixed compilation errors in production builds +- View PR: [#162](https://github.com/codatta/codattaFrontierWebsite/pull/162)
-
+
+ +### 4.1.3 Oct 22, 2025 +
-## 3.8.3 July 7, 2025 ---- -**Feature Optimization: Quest System Restored** +#### New Features + +**Submission Blacklist Protection** + +- Automatic blocking of blacklisted user submissions +- View PR: [#158](https://github.com/codatta/codattaFrontierWebsite/pull/158) -
+**Updated Airdrop Guidelines** -
+- Streamlined participation guidelines +- View PR: [#159](https://github.com/codatta/codattaFrontierWebsite/pull/159) -The Quest system has been fully restored and reopened. +#### Bug Fixes -- **How:** Temporarily taken offline on June 30, 2025, and now comprehensively restored. -- **Why:** To enhance system stability and user experience through architectural upgrades. +**Build Process Improvements** + +- Fixed compilation errors in production builds +- View PR: [#160](https://github.com/codatta/codattaFrontierWebsite/pull/160)
-
+
-## 3.8.2 July 2, 2025 ---- -**Campaign Launch: Codatta Booster Campaign Season 1 Week 2** +### 4.1.0 Oct 15, 2025 +
-
+#### New Features -
+**Enhanced Airdrop Activity System** -To expand AI's understanding of global food culture and preferences through nuanced image labeling across vegetarian, non-vegetarian, and mixed categories. +- Complete airdrop activity interface with multiple task types +- Three specialized airdrop tasks for different user categories +- View PR: [#140](https://github.com/codatta/codattaFrontierWebsite/pull/140), [#142](https://github.com/codatta/codattaFrontierWebsite/pull/142), [#143](https://github.com/codatta/codattaFrontierWebsite/pull/143), [#154](https://github.com/codatta/codattaFrontierWebsite/pull/154) -- **Access:** Accessible via Binance Wallet Booster tab or homepage banner (Alpha Points ≥ 61). -- **Rewards:** Total reward pool of 50,000,000 $XNY, distributed after task completion and verification. -- **Timeline:** July 2, 2025, 13:00 UTC – July 9, 2025, 13:00 UTC. +**Improved Points and Leaderboard System** -
+- Updated point display system for clearer reward tracking +- Red dot notifications for new activities and updates +- View PR: [#148](https://github.com/codatta/codattaFrontierWebsite/pull/148), [#155](https://github.com/codatta/codattaFrontierWebsite/pull/155), [#156](https://github.com/codatta/codattaFrontierWebsite/pull/156), [#157](https://github.com/codatta/codattaFrontierWebsite/pull/157) -
+**Enhanced Navigation and Documentation** -## 3.8.0 June 25, 2025 ---- -**Campaign Launch: Codatta Booster Campaign Season 1 Week 1** +- Direct links to airdrop rules and guidelines +- Updated expert text content for clearer instructions +- View PR: [#150](https://github.com/codatta/codattaFrontierWebsite/pull/150), [#152](https://github.com/codatta/codattaFrontierWebsite/pull/152) + +#### Bug Fixes + +**Airdrop Interface Improvements** -
+- Resolved airdrop food styling inconsistencies +- Fixed text display and formatting issues +- Corrected rules display and layout problems +- View PR: [#141](https://github.com/codatta/codattaFrontierWebsite/pull/141), [#144](https://github.com/codatta/codattaFrontierWebsite/pull/144), [#145](https://github.com/codatta/codattaFrontierWebsite/pull/145), [#146](https://github.com/codatta/codattaFrontierWebsite/pull/146), [#147](https://github.com/codatta/codattaFrontierWebsite/pull/147), [#151](https://github.com/codatta/codattaFrontierWebsite/pull/151) -
+#### Development -To launch the inaugural season by collecting annotated food data, engaging community knowledge through quizzes, and rewarding participation via a multi-tiered incentive structure. +**Platform Updates** -- **Access:** Accessible via Binance Wallet Booster tab or homepage banner (Alpha Points ≥ 61). -- **Rewards:** Total reward pool of 50,000,000 $XNY, distributed after task completion and verification. -- **Timeline:** June 25, 2025, 13:00 UTC – July 2, 2025, 13:00 UTC. +- Core development branch updates and improvements +- Platform optimization and maintenance updates +- View PR: [#153](https://github.com/codatta/codattaFrontierWebsite/pull/153)
-{/* Component definitions - moved to end of file for cleaner code organization */} -export const ChangelogFilter = () => { - const [activeFilter, setActiveFilter] = useState('all'); - const [isOpen, setIsOpen] = useState(false); - const [isMenuHovered, setIsMenuHovered] = useState(false); +
- useEffect(() => { - window.activeTypeFilter = activeFilter; - }, [activeFilter]); +### 4.0.0 Oct 01, 2025 +
- useEffect(() => { - const items = document.querySelectorAll('.changelog-item'); - const activeMonth = window.activeMonthFilter || 'all'; - - items.forEach((item) => { - const itemType = item.getAttribute('data-type'); - const itemMonth = item.getAttribute('data-month'); - - const typeMatch = activeFilter === 'all' || itemType === activeFilter; - const monthMatch = activeMonth === 'all' || itemMonth === activeMonth; - - item.style.display = typeMatch && monthMatch ? '' : 'none'; - }); - }, [activeFilter]); +#### New Features - const filterTypes = [ - { id: 'all', label: 'All', color: '#6b7280', count: 24 }, - { id: 'core-feature', label: 'Core Feature Release', color: '#16A34A', count: 4 }, - { id: 'optimization', label: 'Adjustments & Optimization', color: '#F59E0B', count: 3 }, - { id: 'fixes', label: 'Fixes & Feature Sunset', color: '#EF4444', count: 3 }, - { id: 'campaign', label: 'Campaign Launch', color: '#A855F7', count: 14 } - ]; +**Airdrop Activity System** - const activeType = filterTypes.find(type => type.id === activeFilter) || filterTypes[0]; +- Three distinct airdrop task categories for varied user engagement +- Interactive activity dashboard for tracking participation +- Expert answer validation system for knowledge-based tasks +- View PR: [#131](https://github.com/codatta/codattaFrontierWebsite/pull/131), [#133](https://github.com/codatta/codattaFrontierWebsite/pull/133), [#136](https://github.com/codatta/codattaFrontierWebsite/pull/136) - return ( -
-
setIsOpen(!isOpen)} - style={{ - display: 'inline-flex', - alignItems: 'center', - gap: '0.5rem', - padding: '0.625rem 1rem', - border: '2px solid #e5e7eb', - borderRadius: '0.5rem', - background: 'white', - cursor: 'pointer', - fontSize: '0.875rem', - fontWeight: '500', - boxShadow: isOpen ? `0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)` : '0 1px 2px 0 rgba(0, 0, 0, 0.05)', - transition: 'all 0.2s ease', - userSelect: 'none', - minWidth: '200px' - }} - > - - - {activeType.label} ({activeType.count}) - - -
- - {isOpen && ( -
setIsMenuHovered(true)} - onMouseLeave={() => setIsMenuHovered(false)} - style={{ - position: 'absolute', - top: '100%', - left: 0, - marginTop: '0.5rem', - backgroundColor: 'white', - border: `2px solid ${isMenuHovered ? '#9ca3af' : '#e5e7eb'}`, - borderRadius: '0.5rem', - boxShadow: isMenuHovered - ? '0 10px 15px -3px rgba(0, 0, 0, 0.15), 0 4px 6px -2px rgba(0, 0, 0, 0.1)' - : '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)', - zIndex: 1000, - minWidth: '280px', - overflow: 'hidden', - transition: 'border-color 0.2s ease, box-shadow 0.2s ease' - }} - > - {filterTypes.map((type) => ( -
{ - setActiveFilter(type.id); - setIsOpen(false); - }} - style={{ - padding: '0.75rem 1rem', - cursor: 'pointer', - display: 'flex', - alignItems: 'center', - justifyContent: 'space-between', - borderBottom: type.id !== filterTypes[filterTypes.length - 1].id ? '1px solid #f3f4f6' : 'none', - backgroundColor: activeFilter === type.id ? '#f9fafb' : 'white', - transition: 'background-color 0.15s ease' - }} - onMouseEnter={(e) => { - if (activeFilter !== type.id) { - e.currentTarget.style.backgroundColor = '#f3f4f6'; - } - }} - onMouseLeave={(e) => { - if (activeFilter !== type.id) { - e.currentTarget.style.backgroundColor = 'white'; - } - }} - > - - {type.label} - - - {type.count} - -
- ))} -
- )} - - {isOpen && ( -
setIsOpen(false)} - style={{ - position: 'fixed', - top: 0, - left: 0, - right: 0, - bottom: 0, - zIndex: 999, - backgroundColor: 'transparent' - }} - /> - )} -
- ); -}; +**Enhanced Airdrop Guidelines** -export const MonthFilter = () => { - const [activeMonth, setActiveMonth] = useState('all'); - const [isOpen, setIsOpen] = useState(false); - const [isMenuHovered, setIsMenuHovered] = useState(false); +- Comprehensive guideline documentation for airdrop participation +- Improved user onboarding for airdrop activities +- View PR: [#139](https://github.com/codatta/codattaFrontierWebsite/pull/139) - useEffect(() => { - window.activeMonthFilter = activeMonth; - const event = new Event('monthFilterChange'); - window.dispatchEvent(event); - }, [activeMonth]); +#### Bug Fixes - useEffect(() => { - const handleMonthChange = () => { - const items = document.querySelectorAll('.changelog-item'); - const activeType = window.activeTypeFilter || 'all'; - - items.forEach((item) => { - const itemType = item.getAttribute('data-type'); - const itemMonth = item.getAttribute('data-month'); - - const typeMatch = activeType === 'all' || itemType === activeType; - const monthMatch = activeMonth === 'all' || itemMonth === activeMonth; - - item.style.display = typeMatch && monthMatch ? '' : 'none'; - }); - }; - - window.addEventListener('monthFilterChange', handleMonthChange); - handleMonthChange(); - - return () => { - window.removeEventListener('monthFilterChange', handleMonthChange); - }; - }, [activeMonth]); +**Airdrop System Improvements** - const months = [ - { id: 'all', label: 'All Months', count: 24 }, - { id: 'dec', label: 'December', count: 1 }, - { id: 'nov', label: 'November', count: 3 }, - { id: 'oct', label: 'October', count: 6 }, - { id: 'sep', label: 'September', count: 3 }, - { id: 'aug', label: 'August', count: 5 }, - { id: 'jul', label: 'July', count: 5 }, - { id: 'jun', label: 'June', count: 1 } - ]; +- Fixed expert answer validation logic +- View PR: [#137](https://github.com/codatta/codattaFrontierWebsite/pull/137), [#138](https://github.com/codatta/codattaFrontierWebsite/pull/138) - const activeMonthData = months.find(month => month.id === activeMonth) || months[0]; +**Email Interaction Enhancement** - return ( -
-
setIsOpen(!isOpen)} - style={{ - display: 'inline-flex', - alignItems: 'center', - gap: '0.5rem', - padding: '0.625rem 1rem', - border: '2px solid #e5e7eb', - borderRadius: '0.5rem', - background: 'white', - cursor: 'pointer', - fontSize: '0.875rem', - fontWeight: '500', - boxShadow: isOpen ? `0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)` : '0 1px 2px 0 rgba(0, 0, 0, 0.05)', - transition: 'all 0.2s ease', - userSelect: 'none', - minWidth: '200px' - }} - > - - {activeMonthData.label} ({activeMonthData.count}) - - -
- - {isOpen && ( -
setIsMenuHovered(true)} - onMouseLeave={() => setIsMenuHovered(false)} - style={{ - position: 'absolute', - top: '100%', - left: 0, - marginTop: '0.5rem', - backgroundColor: 'white', - border: `2px solid ${isMenuHovered ? '#9ca3af' : '#e5e7eb'}`, - borderRadius: '0.5rem', - boxShadow: isMenuHovered - ? '0 10px 15px -3px rgba(0, 0, 0, 0.15), 0 4px 6px -2px rgba(0, 0, 0, 0.1)' - : '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)', - zIndex: 1000, - minWidth: '280px', - overflow: 'hidden', - transition: 'border-color 0.2s ease, box-shadow 0.2s ease' - }} - > - {months.map((month) => ( -
{ - setActiveMonth(month.id); - setIsOpen(false); - }} - style={{ - padding: '0.75rem 1rem', - cursor: 'pointer', - display: 'flex', - alignItems: 'center', - justifyContent: 'space-between', - borderBottom: month.id !== months[months.length - 1].id ? '1px solid #f3f4f6' : 'none', - backgroundColor: activeMonth === month.id ? '#f9fafb' : 'white', - transition: 'background-color 0.15s ease' - }} - onMouseEnter={(e) => { - if (activeMonth !== month.id) { - e.currentTarget.style.backgroundColor = '#f3f4f6'; - } - }} - onMouseLeave={(e) => { - if (activeMonth !== month.id) { - e.currentTarget.style.backgroundColor = 'white'; - } - }} - > - - {month.label} - - - {month.count} - -
- ))} -
- )} - - {isOpen && ( -
setIsOpen(false)} - style={{ - position: 'fixed', - top: 0, - left: 0, - right: 0, - bottom: 0, - zIndex: 999, - backgroundColor: 'transparent' - }} - /> - )} -
- ); -}; +- Enhanced email interaction functionality +- View PR: [#135](https://github.com/codatta/codattaFrontierWebsite/pull/135) + +
+ +
+ +### 3.9.10 Sep 24, 2025 +
+ +#### New Features + +**High Quality User Onboarding System** + +- Enhanced user registration process with email verification +- View PR: [#123](https://github.com/codatta/codattaFrontierWebsite/pull/123), [#124](https://github.com/codatta/codattaFrontierWebsite/pull/124), [#126](https://github.com/codatta/codattaFrontierWebsite/pull/126), [#127](https://github.com/codatta/codattaFrontierWebsite/pull/127), [#128](https://github.com/codatta/codattaFrontierWebsite/pull/128) + +#### Performance + +**Enhanced Visual Interface** + +- Updated image aspect ratios for consistent display +- View PR: [#125](https://github.com/codatta/codattaFrontierWebsite/pull/125) + +#### Bug Fixes + +**Platform Display and Wallet Connection Fixes** + +- Fixed Frontier display rendering issues +- View PR: [#129](https://github.com/codatta/codattaFrontierWebsite/pull/129), [#130](https://github.com/codatta/codattaFrontierWebsite/pull/130) + +
+ +
+ +### 3.9.9 Sep 17, 2025 +
+ +#### New Features + +**High Quality User Program V2** + +- Streamlined invite link copying functionality with local storage +- Enhanced Telegram group integration with automatic join verification +- View PR: [#106](https://github.com/codatta/codattaFrontierWebsite/pull/106), [#107](https://github.com/codatta/codattaFrontierWebsite/pull/107), [#111](https://github.com/codatta/codattaFrontierWebsite/pull/111), [#113](https://github.com/codatta/codattaFrontierWebsite/pull/113), [#117](https://github.com/codatta/codattaFrontierWebsite/pull/117), [#118](https://github.com/codatta/codattaFrontierWebsite/pull/118), [#119](https://github.com/codatta/codattaFrontierWebsite/pull/119), [#120](https://github.com/codatta/codattaFrontierWebsite/pull/120), [#121](https://github.com/codatta/codattaFrontierWebsite/pull/121) + +**Weekly Activity System** + +- New weekly activity tracking and completion system +- Integrated reward mechanisms for consistent participation +- View PR: [#114](https://github.com/codatta/codattaFrontierWebsite/pull/114) + +**Withdrawal Functionality** + +- Complete withdrawal interface with user-friendly flow +- Secure transaction processing for user funds +- View PR: [#116](https://github.com/codatta/codattaFrontierWebsite/pull/116) + +#### Bug Fixes + +**Interface Improvements** + +- Fixed build compilation errors for stable deployment +- Hidden unnecessary retry buttons to reduce interface clutter +- View PR: [#108](https://github.com/codatta/codattaFrontierWebsite/pull/108), [#110](https://github.com/codatta/codattaFrontierWebsite/pull/110), [#112](https://github.com/codatta/codattaFrontierWebsite/pull/112) + +
+ +
+ +### 3.9.8 Sep 10, 2025 +
+ +#### New Features + +**On-Chain Task Verification System** + +- Automated on-chain verification for task completion +- Week 11 campaign integration with verification system +- View PR: [#92](https://github.com/codatta/codattaFrontierWebsite/pull/92), [#93](https://github.com/codatta/codattaFrontierWebsite/pull/93) + +**High Quality User Experience Enhancement** + +- Advanced user quality evaluation algorithms +- Duplicate image detection and error prevention +- View PR: [#99](https://github.com/codatta/codattaFrontierWebsite/pull/99), [#101](https://github.com/codatta/codattaFrontierWebsite/pull/101), [#102](https://github.com/codatta/codattaFrontierWebsite/pull/102), [#103](https://github.com/codatta/codattaFrontierWebsite/pull/103) + +**Fashion App Trial Integration** + +- Complete fashion app trial workflow +- Seamless integration with existing platform features +- View PR: [#98](https://github.com/codatta/codattaFrontierWebsite/pull/98) + +**QR Code System Updates** + +- Updated QR code generation algorithms +- Improved campaign integration through QR functionality +- View PR: [#104](https://github.com/codatta/codattaFrontierWebsite/pull/104), [#105](https://github.com/codatta/codattaFrontierWebsite/pull/105) + +#### Bug Fixes + +**Platform Stability Improvements** + +- Fixed build compilation issues affecting deployment +- Enhanced Gensmo email submission functionality +- View PR: [#94](https://github.com/codatta/codattaFrontierWebsite/pull/94), [#95](https://github.com/codatta/codattaFrontierWebsite/pull/95), [#96](https://github.com/codatta/codattaFrontierWebsite/pull/96), [#97](https://github.com/codatta/codattaFrontierWebsite/pull/97), [#100](https://github.com/codatta/codattaFrontierWebsite/pull/100) + +
+ +
+ +### 3.9.6 Sep 03, 2025 +
+ +#### New Features + +**Enhanced User Data Profile System** + +- Complete user profile interface with data visualization +- Enhanced profile data structure and organization +- View PR: [#88](https://github.com/codatta/codattaFrontierWebsite/pull/88), [#91](https://github.com/codatta/codattaFrontierWebsite/pull/91) + +**Week 10 Activity Features** + +- Weekly activity monitoring and rewards +- Interactive activity dashboard +- View PR: [#89](https://github.com/codatta/codattaFrontierWebsite/pull/89) + +
+ +
+ +### 3.9.3 Aug 27, 2025 +
+ +#### New Features + +**Enhanced FATE Survey System** + +- Updated survey interface with enhanced user interactions +- View PR: [#84](https://github.com/codatta/codattaFrontierWebsite/pull/84) + +**Crypto Survey Module** + +- Dedicated crypto survey interface and workflows +- Specialized question types for cryptocurrency topics +- Enhanced data collection for crypto market analysis +- View PR: [#85](https://github.com/codatta/codattaFrontierWebsite/pull/85) + +**Survey Privacy Controls** + +- Granular privacy control options for survey responses +- User-controlled data sharing settings +- View PR: [#87](https://github.com/codatta/codattaFrontierWebsite/pull/87) + +#### Bug Fixes + +**FATE Form Limit Updates** + +- Fixed form validation limit constraints +- View PR: [#86](https://github.com/codatta/codattaFrontierWebsite/pull/86) + +
+ +
+ +### 3.9.2 Aug 20, 2025 +
+ +#### New Features + +**Homepage Redesign and Updates** + +- Updated visual design and content structure +- View PR: [#79](https://github.com/codatta/codattaFrontierWebsite/pull/79), [#80](https://github.com/codatta/codattaFrontierWebsite/pull/80), [#82](https://github.com/codatta/codattaFrontierWebsite/pull/82) + +**Asset Claiming System** + +- View PR: [#81](https://github.com/codatta/codattaFrontierWebsite/pull/81) + +**Kitchen App Data Integration** + +- Advanced data processing workflows +- View PR: [#83](https://github.com/codatta/codattaFrontierWebsite/pull/83) + +
+ +
+ +### 3.9.1 Aug 13, 2025 +
+ +#### New Features + +**User Assets Management** + +- Improved asset visualization and organization +- View PR: [#75](https://github.com/codatta/codattaFrontierWebsite/pull/75) + +**Week 8 Learning Content** + +- Interactive quiz functionality for enhanced learning +- Comprehensive reading materials and resources +- Structured weekly learning progression +- View PR: [#76](https://github.com/codatta/codattaFrontierWebsite/pull/76) + +**Week 9 Collection Features** + +- New collection interface and navigation +- View PR: [#78](https://github.com/codatta/codattaFrontierWebsite/pull/78) + +#### Bug Fixes + +**Quiz Interface Improvements** + +- Corrected quiz layout and formatting problems +- View PR: [#74](https://github.com/codatta/codattaFrontierWebsite/pull/74) + +**XNY Token Display Fix** + +- Fixed token display formatting and visibility +- Corrected token information rendering +- View PR: [#77](https://github.com/codatta/codattaFrontierWebsite/pull/77) + +
+ +
+ +### 3.8.9 Aug 06, 2025 +
+ +#### New Features + +**Enhanced On-Chain Integration** + +- Improved on-chain data synchronization +- View PR: [#66](https://github.com/codatta/codattaFrontierWebsite/pull/66), [#67](https://github.com/codatta/codattaFrontierWebsite/pull/67), [#69](https://github.com/codatta/codattaFrontierWebsite/pull/69) + +**Submission History Tracking** + +- Qualified submission metrics display +- View PR: [#71](https://github.com/codatta/codattaFrontierWebsite/pull/71), [#72](https://github.com/codatta/codattaFrontierWebsite/pull/72) + +**Activity Detail Improvements** + +- View PR: [#68](https://github.com/codatta/codattaFrontierWebsite/pull/68), [#73](https://github.com/codatta/codattaFrontierWebsite/pull/73) + +#### Performance + +**Build System Optimization** + +- Enhanced GitHub Actions workflow automation +- Streamlined deployment pipeline +- View PR: [#61](https://github.com/codatta/codattaFrontierWebsite/pull/61), [#62](https://github.com/codatta/codattaFrontierWebsite/pull/62), [#63](https://github.com/codatta/codattaFrontierWebsite/pull/63), [#64](https://github.com/codatta/codattaFrontierWebsite/pull/64), [#65](https://github.com/codatta/codattaFrontierWebsite/pull/65) + +#### Bug Fixes + +**UI Component Fixes** + +- Fixed SVG icon rendering issues +- View PR: [#70](https://github.com/codatta/codattaFrontierWebsite/pull/70) + +
+ +
+ +### 3.8.7 Jul 30, 2025 +
+ +#### New Features + +**Crypto Frontier Integration** + +- Complete Crypto Frontier feature implementation +- View PR: [#57](https://github.com/codatta/codattaFrontierWebsite/pull/57) + +#### Bug Fixes + +**Robotics Submission Fix** + +- Fixed repeat submission prevention mechanism +- View PR: [#58](https://github.com/codatta/codattaFrontierWebsite/pull/58) + +**Crypto Frontier Configuration Updates** + +- Updated Crypto Frontier configuration settings +- Refined operational parameters for better performance +- View PR: [#59](https://github.com/codatta/codattaFrontierWebsite/pull/59), [#60](https://github.com/codatta/codattaFrontierWebsite/pull/60) + +
+ +
+ +### 3.8.5 Jul 16, 2025 +
+ +#### New Features + +**Enhanced Booster System** + +- New booster milestone system for week 1 +- Updated booster mechanics for week 4 progression +- View PR: [#49](https://github.com/codatta/codattaFrontierWebsite/pull/49), [#50](https://github.com/codatta/codattaFrontierWebsite/pull/50) + +**Fate Frontier Integration** + +- Complete Fate Frontier interface implementation +- Integrated reward system with existing platform mechanics +- View PR: [#52](https://github.com/codatta/codattaFrontierWebsite/pull/52) + +#### Bug Fixes + +**Text Display Improvements** + +- Updated read text functionality for better clarity +- Enhanced text formatting across multiple components +- View PR: [#51](https://github.com/codatta/codattaFrontierWebsite/pull/51) + +**Food System Enhancements** + +- Added input trimming for food cooking methods to prevent errors +- View PR: [#53](https://github.com/codatta/codattaFrontierWebsite/pull/53), [#54](https://github.com/codatta/codattaFrontierWebsite/pull/54) + +
+ +
+ +### 3.8.3 Jul 09, 2025 +
+ +#### New Features + +**BN Booster Enhancement** + +- Optimized booster performance metrics +- View PR: [#48](https://github.com/codatta/codattaFrontierWebsite/pull/48) + +
+ +
+ +### 3.8.2 Jul 02, 2025 +
+ +#### New Features + +**Enhanced Logging System** + +- View PR: [#46](https://github.com/codatta/codattaFrontierWebsite/pull/46) + +**Food Template Integration** + +- New template system for food-related content +- View PR: [#47](https://github.com/codatta/codattaFrontierWebsite/pull/47) + +
+ +
+ +### 3.8.0 Jun 25, 2025 +
+ +#### New Features + +**Brand Identity Refresh** + +- New Codatta logo implementation across brand assets +- Updated logos throughout the main website interface +- View PR: [#6](https://github.com/codatta/brand-kit/pull/6), [#40](https://github.com/codatta/codattaFrontierWebsite/pull/40), [#7](https://github.com/codatta/brand-kit/pull/7) + +**Booster System Enhancements** + +- Added Bengali language support for booster features +- View PR: [#41](https://github.com/codatta/codattaFrontierWebsite/pull/41), [#43](https://github.com/codatta/codattaFrontierWebsite/pull/43), [#45](https://github.com/codatta/codattaFrontierWebsite/pull/45) + +
+ +
+ +### 3.7.9 May 28, 2025 +
+ +#### Bug Fixes + +**Build Process Stabilization** + +- Resolved build configuration errors +- View PR: [#36](https://github.com/codatta/codattaFrontierWebsite/pull/36) + +
+ +
+ +### 3.4.9 Apr 02, 2025 +
+ +#### UI/UX Improvements + +**Enhanced Frontier Banner Design** + +- View PR: [#27](https://github.com/codatta/codattaFrontierWebsite/pull/27) + +
+ +
+ +### 3.4.8 Feb 12, 2025 +
+ +#### New Features + +**End-to-End Testing Infrastructure** + +- Complete testing pipeline for critical user workflows +- Automated validation of platform functionality +- View PR: [#23](https://github.com/codatta/codattaFrontierWebsite/pull/23) + +
+ +
+ +### 3.4.7 Jan 29, 2025 +
+ +#### New Features + +**Enhanced Social Interface** + +- Streamlined interface design for better accessibility +- View PR: [#19](https://github.com/codatta/codattaFrontierWebsite/pull/19) + +
+ +
+ +### 3.4.6 Jan 22, 2025 +
+ +#### New Features + +**Enhanced Referral Table Design** + +- View PR: [#18](https://github.com/codatta/codattaFrontierWebsite/pull/18) + +
+ +
+ +### 3.3.0 Jan 08, 2025 +
+ +#### New Features + +**Extension Authentication Integration** + +- View PR: [#16](https://github.com/codatta/codattaFrontierWebsite/pull/16) + +#### Bug Fixes + +**UI Improvements and Banner Fixes** + +- Fixed reward success toast notification styling +- Corrected banner display issues +- View PR: [#11](https://github.com/codatta/codattaFrontierWebsite/pull/11), [#13](https://github.com/codatta/codattaFrontierWebsite/pull/13) + +
diff --git a/ko/changelog/2025.mdx b/ko/changelog/2025.mdx index 517fa47..d5af956 100644 --- a/ko/changelog/2025.mdx +++ b/ko/changelog/2025.mdx @@ -1,10 +1,8 @@ --- title: "변경 로그" -description: "이 변경 로그는 2025년 Codatta의 모든 업데이트, 수정 및 새로운 기능을 문서화합니다." +description: "이 변경 로그는 Codatta의 모든 업데이트, 수정 및 새로운 기능을 문서화합니다." --- -import { useState, useEffect } from 'react'; -
-
+ {(() => { + const ShowResult = () => { + const [num, setNum] = useState(0); + useEffect(() => { + if (typeof document === 'undefined') return; + const update = () => { + try { + const items = document.querySelectorAll('.changelog-item'); + let count = 0; + items.forEach(item => { + if (item.style.display !== 'none') count++; + }); + setNum(count); + } catch {} + }; + update(); + const id = setInterval(update, 2000); + return () => clearInterval(id); + }, []); + return ( +
+ + {num} + result{num !== 1 ? 's' : ''} +
+ ); + }; + return ; + })()}
- - {(() => { - const ShowResult = () => { - const [num, setNum] = useState(0); - useEffect(() => { - if (typeof document === 'undefined') return; - const update = () => { - try { - const items = document.querySelectorAll('.changelog-item'); - let count = 0; - items.forEach(item => { - if (item.style.display !== 'none') count++; - }); - setNum(count); - } catch {} - }; - update(); - const id = setInterval(update, 2000); - return () => clearInterval(id); - }, []); - return ( -
+ +export const ChangelogFilter = () => { + const [activeFilter, setActiveFilter] = useState('all'); + const [isOpen, setIsOpen] = useState(false); + const [isMenuHovered, setIsMenuHovered] = useState(false); + + useEffect(() => { + window.activeTypeFilter = activeFilter; + }, [activeFilter]); + + useEffect(() => { + const items = document.querySelectorAll('.changelog-item'); + const activeMonth = window.activeMonthFilter || 'all'; + + items.forEach((item) => { + const itemType = item.getAttribute('data-type'); + const itemMonth = item.getAttribute('data-month'); + + const typeMatch = activeFilter === 'all' || itemType === activeFilter; + const monthMatch = activeMonth === 'all' || itemMonth === activeMonth; + + item.style.display = typeMatch && monthMatch ? '' : 'none'; + }); + }, [activeFilter]); + + const filterTypes = [ + { id: 'all', label: 'All Types', color: '#6b7280' }, + { id: 'core-feature', label: '🚀 Core Feature Release', color: '#16A34A' }, + { id: 'optimization', label: '⚡ Adjustments & Optimization', color: '#F59E0B' }, + { id: 'fixes', label: '🐛 Fixes & Feature Sunset', color: '#EF4444' }, + { id: 'campaign', label: '🎯 Campaign Launch', color: '#A855F7' } + ]; + + return ( +
+ + + {isOpen && ( +
setIsMenuHovered(true)} + onMouseLeave={() => { + setIsMenuHovered(false); + setIsOpen(false); + }} + style={{ + position: 'absolute', + top: 'calc(100% + 0.5rem)', + left: 0, + backgroundColor: '#ffffff', + border: '1px solid #e5e7eb', + borderRadius: '0.5rem', + boxShadow: '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)', + zIndex: 50, + minWidth: '14rem', + maxHeight: '20rem', + overflowY: 'auto' + }} + > + {filterTypes.map((type) => ( + + ))}
- ); - }; - return ; - })()} -
-
+ )} +
+ ); +}; -## 4.2.7 2025년 12월 04일 ---- -**진화하는 인센티브: 장기 생태계 관리를 위한 보상 잠금 기능** +export const MonthFilter = () => { + const [activeMonth, setActiveMonth] = useState('all'); + const [isOpen, setIsOpen] = useState(false); + const [isMenuHovered, setIsMenuHovered] = useState(false); -
+ useEffect(() => { + window.activeMonthFilter = activeMonth; + }, [activeMonth]); -
+ useEffect(() => { + const items = document.querySelectorAll('.changelog-item'); -고인센티브 작업(예: Airdrop 또는 Frontier 캠페인)에서의 보상을 위한 선택적 잠금 기능입니다. + items.forEach((item) => { + const itemMonth = item.getAttribute('data-month'); + const monthMatch = activeMonth === 'all' || itemMonth === activeMonth; -- **트리거:** 캠페인 후 보상이 귀하의 잔액에 입금됩니다. -- **잠금:** 자산 페이지를 통해 스마트 계약에 보상을 잠금으로써 안전하게 보호합니다. -- **해제:** 잠금 기간이 끝난 후, 한 번의 클릭으로 보상을 귀하의 지갑으로 직접 청구합니다. + item.style.display = monthMatch ? '' : 'none'; + }); + }, [activeMonth]); -이는 우리의 인센티브 시스템을 세분화된 관리로 발전시키는 중요한 단계입니다. 이는 높은 보상 시나리오에서 유동성을 관리할 수 있는 도구를 제공하여 단기 참여와 생태계의 장기 건강을 균형 있게 유지합니다. + const months = [ + { id: 'all', label: 'All Months' }, + { id: 'jan', label: 'January' }, + { id: 'feb', label: 'February' }, + { id: 'mar', label: 'March' }, + { id: 'apr', label: 'April' }, + { id: 'may', label: 'May' }, + { id: 'jun', label: 'June' }, + { id: 'jul', label: 'July' }, + { id: 'aug', label: 'August' }, + { id: 'sep', label: 'September' }, + { id: 'oct', label: 'October' }, + { id: 'nov', label: 'November' }, + { id: 'dec', label: 'December' } + ]; -
+ return ( +
+ -
+ {isOpen && ( +
setIsMenuHovered(true)} + onMouseLeave={() => { + setIsMenuHovered(false); + setIsOpen(false); + }} + style={{ + position: 'absolute', + top: 'calc(100% + 0.5rem)', + left: 0, + backgroundColor: '#ffffff', + border: '1px solid #e5e7eb', + borderRadius: '0.5rem', + boxShadow: '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)', + zIndex: 50, + minWidth: '12rem', + maxHeight: '20rem', + overflowY: 'auto' + }} + > + {months.map((month) => ( + + ))} +
+ )} +
+ ); +}; -## 4.2.5 2025년 11월 24일 ---- -**캠페인 시작: Airdrop 시즌 2** +
-
+### 4.4.1 Feb 14, 2026 +
-
+#### 버그 수정 -물리학, 금융 및 다중 모드 분야에서 학술 수준의 데이터 세트를 체계적으로 수집하고, 세 개의 새로운 프론티어를 위한 고품질 데이터 파이프라인을 구축합니다. +**프론트엔드 핫픽스** -- **행동:** 100만 $XNY 상금 풀로 Airdrop 시즌 2를 시작했습니다(3개월 선형 분배). -- **새로운 프론티어:** - - **고급 물리학 질문:** 현재 AI가 정확하게 답변할 수 없는 고난이도 물리학 문제를 제출하기 위한 도메인 전문가를 위한 것입니다. - - **암호화폐 및 주식 정보:** AI에게 암호화폐 및 주식 투자 결정과 관련된 신뢰할 수 있는 정보를 제공합니다. - - **실제 사진:** 주석이 달린 메타데이터를 포함한 실제 사진을 AI에게 제공합니다. -- **보상 구조:** 작업 완료에 대해 90%, 리더보드 순위에 대해 10%. -- **일정:** 2025년 11월 24일 09:00 UTC – 2025년 12월 08일 09:00 UTC. +- Codatta Frontier 웹사이트의 배포 후 이슈를 해결했습니다 +- View PR: [#310](https://github.com/codatta/codattaFrontierWebsite/pull/310)
-
+
-## 4.2.0 2025년 11월 05일 ---- -**계정 시스템 업그레이드: DID 공식 출시** +### 4.4.0 Feb 11, 2026 +
-
+#### 새로운 기능 -
+**앱 브릿지 통합 및 통신 레이어** -탈중앙화 식별자(DID)에 계정을 바인딩할 수 있는 기본 업그레이드입니다. +- 양방향 메시징을 통한 App Bridge 구현 완료 +- Bridge.js 위치 최적화로 로드 성능 개선 +- 브릿지 통신을 위한 개발 로깅 및 테스트 프레임워크 +- View PR: [#295](https://github.com/codatta/codattaFrontierWebsite/pull/295), [#297](https://github.com/codatta/codattaFrontierWebsite/pull/297), [#298](https://github.com/codatta/codattaFrontierWebsite/pull/298), [#299](https://github.com/codatta/codattaFrontierWebsite/pull/299) -- **바인딩:** Codatta에 다음 로그인 시 온체인 DID의 셀프 서비스 통합. -- **연관:** 바인딩된 DID는 모든 작업 행동, 데이터 기여 및 보상 분배를 체계적으로 인덱싱하는 통합 기본 키 역할을 합니다. -- **계보:** 온체인 및 오프체인 활동의 완전한 추적 가능성과 검증을 가능하게 하여 불변의 데이터 출처를 확립합니다. +**패션 앱 출시** -이 배포는 검증 가능한 데이터 경제를 위한 기술적 초석을 마련합니다. 각 기여자에게 지속적이고 고유한 디지털 정체성을 제공함으로써 세분화된 기여 귀속, 명확한 소유권 검증 및 프로토콜 수준에서의 투명한 인센티브 할당을 가능하게 합니다. +- 전체 패션 카테고리 앱 인터페이스 및 제출 흐름 +- View PR: [#301](https://github.com/codatta/codattaFrontierWebsite/pull/301) -
+**라우터 재구축 및 제출 경험 개선** -
+- 향상된 내비게이션을 위한 라우터 완전 재구축 +- 더 명확한 확인 흐름의 새 앱 제출 성공 모달 +- View PR: [#304](https://github.com/codatta/codattaFrontierWebsite/pull/304) -## 4.1.5 2025년 11월 03일 ---- -**퀘스트 시스템 조정: Crypto Frontier QUEST 모듈 사용 중지** +**CEX 중복 제출 확인** + +- 제출 전 자동 중복 감지 +- View PR: [#303](https://github.com/codatta/codattaFrontierWebsite/pull/303) + +**작업 이력 및 감사 추적** -
+- 작업 이력 기록에 감사 사유 표시 +- 명확한 작업 완료 피드백을 위한 앱 작업 완료 모달 +- View PR: [#300](https://github.com/codatta/codattaFrontierWebsite/pull/300), [#308](https://github.com/codatta/codattaFrontierWebsite/pull/308) -
+#### 버그 수정 -전체 Crypto Frontier QUEST 모듈과 모든 관련 작업—제출, 검증 및 보상 사냥—이 오프라인 상태로 전환되었습니다. +**검증 및 빌드 안정성** -- **이유:** 이 모듈은 현재 제품 로드맵에 따라 계획된 생애 주기를 완료했습니다. 사용 중지는 시스템 간소화 및 향후 기능 출시를 위한 자원 재조정을 지원합니다. -- **참고:** 사용자의 과거 기여 기록과 이 모듈에서 얻은 보상은 그대로 유지됩니다. 이 변경으로 인해 다른 Frontier 모듈에는 영향을 미치지 않습니다. +- 검증 모달 표시 문제 수정 +- 빌드 컴파일 오류 해결 +- 사용자 제출 플래그 처리 수정 +- View PR: [#306](https://github.com/codatta/codattaFrontierWebsite/pull/306), [#296](https://github.com/codatta/codattaFrontierWebsite/pull/296), [#309](https://github.com/codatta/codattaFrontierWebsite/pull/309)
-
+
-## 4.1.4 2025년 10월 24일 ---- -**프론티어 시스템 조정: Robotics Frontier 사용 중지** +### 4.3.2 Jan 14, 2026 +
-
+#### 새로운 기능 -
+**Frontier V2 플랫폼 출시** -Robotics Frontier가 공식적으로 사용 중지되었습니다. 이 조치는 프론트엔드 진입점에만 영향을 미칩니다. 모든 과거 기여 데이터는 그대로 유지되며 접근 가능합니다. +- View PR: [#262](https://github.com/codatta/codattaFrontierWebsite/pull/262), [#263](https://github.com/codatta/codattaFrontierWebsite/pull/263) -- **이유:** 이 결정은 자원과 사용자 주의를 가장 우선 순위가 높은 활성 프론티어에 집중하기 위한 지속적인 제품 간소화의 일환입니다. Robotics Frontier는 계획된 탐색 단계를 완료하였으며, 사용 중지는 우리의 노력을 통합할 수 있게 합니다. -- **참고:** 사용자의 과거 기여 및 Robotics Frontier에서의 보상은 보존되며 기여 기록에서 검토할 수 있습니다. 다른 프론티어나 플랫폼 기능에는 영향을 미치지 않습니다. +**향상된 추천 시스템 V2** -
+- 향상된 기능의 새 추천 인터페이스 +- 더 나은 투명성을 위한 사용 제한 표시기 추가 +- View PR: [#253](https://github.com/codatta/codattaFrontierWebsite/pull/253), [#252](https://github.com/codatta/codattaFrontierWebsite/pull/252) -
+**CEX 핫 월렛 통합** -## 4.1.3 2025년 10월 23일 ---- -**스팸 방지 강화: 일일 제출 한도 구현** +- 다중 거래소 핫 월렛 연결 +- 거래소 그룹 관리 기능 +- 다양한 거래소를 위한 향상된 설정 옵션 +- View PR: [#256](https://github.com/codatta/codattaFrontierWebsite/pull/256), [#255](https://github.com/codatta/codattaFrontierWebsite/pull/255), [#257](https://github.com/codatta/codattaFrontierWebsite/pull/257) + +**고급 검증 시스템** + +- View PR: [#254](https://github.com/codatta/codattaFrontierWebsite/pull/254) + +#### 버그 수정 + +**평판 복구 시스템** -
+- 평판 계산 오류 해결 +- View PR: [#261](https://github.com/codatta/codattaFrontierWebsite/pull/261) -
+#### 성능 개선 -작업 스팸을 방지하기 위한 새로운 플랫폼 전반의 보안 정책입니다. +**API 헤더 최적화** -- **방법:** 각 작업에 대해 구성 가능한 일일 제출 한도를 시행합니다. -- **이유:** 시스템 자원을 보호하고 모든 기여자에게 공정한 참여를 보장하며 작업 생태계의 장기 건강과 공정성을 유지하기 위해서입니다. +- View PR: [#259](https://github.com/codatta/codattaFrontierWebsite/pull/259)
-
+
-## 4.1.2 2025년 10월 20일 ---- -**프론티어 시스템 조정: Crypto Frontier 사용 중지** +### 4.3.1 Jan 07, 2026 +
+ +#### 새로운 기능 + +**향상된 추천 시스템** + +- 추천 인터페이스 완전 리디자인 +- View PR: [#248](https://github.com/codatta/codattaFrontierWebsite/pull/248), [#246](https://github.com/codatta/codattaFrontierWebsite/pull/246) -
+**모달 경험 개선** -
+- 모달 내비게이션 간소화 +- View PR: [#249](https://github.com/codatta/codattaFrontierWebsite/pull/249) -Crypto Frontier가 공식적으로 사용 중지되었습니다. 이 조치는 프론트엔드 진입점에만 영향을 미칩니다. 모든 과거 기여 데이터는 그대로 유지되며 접근 가능합니다. +**패션 검증 시스템** -- **이유:** 이 결정은 자원과 사용자 주의를 가장 우선 순위가 높은 활성 프론티어에 집중하기 위한 지속적인 제품 간소화의 일환입니다. Crypto Frontier는 계획된 탐색 단계를 완료하였으며, 사용 중지는 우리의 노력을 통합할 수 있게 합니다. -- **참고:** 사용자의 과거 기여 및 Crypto Frontier에서의 보상은 보존되며 기여 기록에서 검토할 수 있습니다. 다른 프론티어나 플랫폼 기능에는 영향을 미치지 않습니다. +- 포괄적인 입력 검증 규칙 +- 패션 기능 전반의 데이터 일관성 개선 +- View PR: [#245](https://github.com/codatta/codattaFrontierWebsite/pull/245) + +#### 버그 수정 + +**인터페이스 컴포넌트 수정** + +- 노브 컨트롤 반응성 수정 +- View PR: [#251](https://github.com/codatta/codattaFrontierWebsite/pull/251)
-
+
-## 4.1.1 2025년 10월 15일 ---- -**시스템 거버넌스: 플랫폼 블랙리스트 제어 구현** +### 4.3.0 Dec 31, 2025 +
-
+#### 새로운 기능 -
+**스테이킹 시스템 출시** -플랫폼에 새로운 블랙리스트 제어 기능이 구현되었습니다. +- 클레임 기능이 포함된 스테이킹 인터페이스 완성 +- 에어드롭 작업과 스테이킹 리워드 통합 +- View PR: [#223](https://github.com/codatta/codattaFrontierWebsite/pull/223), [#225](https://github.com/codatta/codattaFrontierWebsite/pull/225) -- **방법:** 지정된 관리자가 이제 악의적인 계정을 제한하기 위해 블랙리스트 규칙을 적용할 수 있습니다. -- **이유:** 플랫폼 보안을 강화하고 기여자의 이익을 보호하며 생태계의 공정성을 유지하기 위해서입니다. +**데이터셋 기능 통합** -
+- 향상된 데이터 처리 및 구성 +- View PR: [#224](https://github.com/codatta/codattaFrontierWebsite/pull/224) -
+**소셜 계정 복구** -## 4.1.0 2025년 10월 13일 ---- -**캠페인 시작: Airdrop 시즌 1** +- View PR: [#228](https://github.com/codatta/codattaFrontierWebsite/pull/228) -
+#### 성능 개선 -
+**지갑 주소 관리** -높은 보상 메커니즘과 스팸 방지 시행을 통해 고품질의 구조화된 데이터를 체계적으로 수집하고, 유효성과 학술 가치를 보장하며, 장기 기여자에게 보상하고 플랫폼의 데이터 생태계를 다각화하기 위해 다섯 개의 새로운 프론티어 모듈을 통해 진행됩니다. +- 현재 지갑 주소 추적 훅 추가 +- 체크섬 주소 검증 수정 +- 지갑 주소 업데이트 문제 해결 +- View PR: [#226](https://github.com/codatta/codattaFrontierWebsite/pull/226), [#229](https://github.com/codatta/codattaFrontierWebsite/pull/229), [#234](https://github.com/codatta/codattaFrontierWebsite/pull/234) -- **행동:** 250만 $XNY 상금 풀과 포인트 보상으로 Airdrop 시즌 1을 시작했습니다. -- **새로운 프론티어:** - - **모델 비교:** 다양한 AI 모델 간의 성능 지표 및 비즈니스 결과를 비교하여 최적 또는 하이브리드 솔루션을 식별합니다. - - **LLM의 실수 발견:** LLM 출력에서의 추론, 사실 및 논리적 오류를 식별하여 모델 최적화를 지원합니다. - - **LLM의 실수 수정:** LLM이 실수에서 배우고 자기 수정 및 추론을 개선할 수 있도록 교정 데이터를 수집합니다. - - **식품 과학:** 식품 과학 및 영양 기능에 대한 연구 데이터를 수집하여 이 분야의 혁신을 촉진합니다. - - **라이프로그 캔버스:** 개인 행동 및 건강 관련 데이터를 추적하고 기록하여 행동 및 관련 연구를 지원합니다. -- **보상 구조:** 보상은 제출 등급에 따라 순위가 매겨지고 캠페인 후 분배됩니다. 악의적인 제출은 데이터 품질을 보장하기 위해 처벌됩니다. -- **일정:** 2025년 10월 13일 09:00 UTC - 2025년 10월 27일 09:00 UTC. +**평판 시스템 강화** -
+- API 응답 효율성 개선 +- View PR: [#231](https://github.com/codatta/codattaFrontierWebsite/pull/231) -
+#### 버그 수정 -## 4.0.0 2025년 10월 10일 ---- -**기능 출시: Frontier 전용 보상 활동** +**스테이킹 인터페이스 개선** + +- 스테이킹 클레임 프로세스 개선 +- 포괄적인 클레임 기록 추적 추가 +- 빈 테이블 상태 메시지 강화 +- View PR: [#235](https://github.com/codatta/codattaFrontierWebsite/pull/235), [#238](https://github.com/codatta/codattaFrontierWebsite/pull/238), [#230](https://github.com/codatta/codattaFrontierWebsite/pull/230) -
+**추천 시스템 수정** -
+- 추천 추적 메커니즘 수정 +- View PR: [#237](https://github.com/codatta/codattaFrontierWebsite/pull/237) -구성 가능한 보상 활동이 이제 Frontiers에 제공되어 추가적인 고부가가치 인센티브를 제공합니다. +**빌드 프로세스 최적화** -- **방법:** 선택된 Frontier 작업은 기본 포인트와는 독립적으로 $XNY 또는 USDT로 추가 보상을 제공합니다. 활동 매개변수(보상 금액, 기간, 목표)는 각 Frontier별로 설정되며 해당 홈페이지에 표시됩니다. -- **이유:** 목표 인센티브를 통해 고부가가치 데이터 작업에 대한 참여를 촉진하고 데이터 품질 및 생태계 참여를 개선하기 위함입니다. +- 컴파일 문제 해결 +- View PR: [#227](https://github.com/codatta/codattaFrontierWebsite/pull/227)
-
+
-## 3.9.9 2025년 09월 26일 ---- -**캠페인 출시: Codatta Booster 캠페인 시즌 3 4주차** +### 4.2.6 Dec 17, 2025 +
+ +#### 새로운 기능 + +**향상된 작업 관리 시스템** + +- 향상된 사용자 경험을 위한 지속적 작업 필터 저장 +- 활동 정보 표시 업데이트 +- View PR: [#215](https://github.com/codattaFrontierWebsite/pull/215), [#220](https://github.com/codatta/codattaFrontierWebsite/pull/220), [#221](https://github.com/codatta/codattaFrontierWebsite/pull/221) + +**평판 시스템 구현** + +- 완전한 평판 점수 시스템 +- 사용자 평판 표시 및 추적 +- 기존 리워드 메커니즘과 통합 +- View PR: [#217](https://github.com/codatta/codattaFrontierWebsite/pull/217) + +#### 버그 수정 -
+**계정 연동 및 검증 개선** -
+- 계정 연동 기능 수정 +- View PR: [#212](https://github.com/codatta/codattaFrontierWebsite/pull/212), [#213](https://github.com/codatta/codattaFrontierWebsite/pull/213) -신뢰할 수 있는 다중 도메인 데이터 수집을 통해 AI 개발을 가속화하고 커뮤니티 주도의 분산형 AI 지식 구축을 촉진하기 위함입니다. +**UI 및 빌드 최적화** -- **접근:** Binance Wallet Booster 탭 또는 홈페이지 배너를 통해 접근 가능(Alpha Points ≥ 61 필요). -- **보상:** 총 보상 풀 50,000,000 $XNY(잠금 기간 포함), 작업 완료 및 검증 후 분배됩니다. -- **일정:** 2025년 09월 26일 07:00 UTC – 2025년 10월 03일 07:00 UTC. +- 빌드 컴파일 문제 해결 +- 앱 공유 랜딩 페이지 기능 추가 +- 포인트 리워드 아이콘 디자인 업데이트 +- 모달 위치 개선 +- View PR: [#214](https://github.com/codatta/codattaFrontierWebsite/pull/214), [#216](https://github.com/codatta/codattaFrontierWebsite/pull/216), [#218](https://github.com/codatta/codattaFrontierWebsite/pull/218), [#219](https://github.com/codatta/codattaFrontierWebsite/pull/219)
-
+
-## 3.9.8 2025년 09월 12일 ---- -**캠페인 출시: Codatta Booster 캠페인 시즌 3 3주차** +### 4.2.5 Dec 10, 2025 +
+ +#### 새로운 기능 + +**락업 컨트랙트 메인넷 배포** -
+- 메인넷 컨트랙트 주소 설정 업데이트 +- View PR: [#208](https://github.com/codatta/codattaFrontierWebsite/pull/208), [#211](https://github.com/codatta/codattaFrontierWebsite/pull/211) -
+#### 버그 수정 -AI 훈련 및 검증을 위해 생명, 로봇 공학, 암호화, 모델 비교 및 지문 검증에 걸친 교차 도메인 데이터를 수집하기 위함입니다. +**UI 및 콘텐츠 개선** -- **접근:** Binance Wallet Booster 탭 또는 홈페이지 배너를 통해 접근 가능(Alpha Points ≥ 61 필요). -- **보상:** 총 보상 풀 50,000,000 $XNY(잠금 기간 포함), 작업 완료 및 검증 후 분배됩니다. -- **일정:** 2025년 09월 12일 07:00 UTC – 2025년 09월 19일 07:00 UTC. +- 플랫폼 컴포넌트 전반의 스타일 불일치 수정 +- 사용자 인터페이스의 텍스트 및 문구 문제 수정 +- View PR: [#207](https://github.com/codatta/codattaFrontierWebsite/pull/207), [#209](https://github.com/codatta/codattaFrontierWebsite/pull/209), [#210](https://github.com/codatta/codattaFrontierWebsite/pull/210)
-
+
-## 3.9.6 2025년 09월 05일 ---- -**캠페인 출시: Codatta Booster 캠페인 시즌 3 2주차** +### 4.2.4 Dec 03, 2025 +
-
+#### 새로운 기능 -
+**3개월 토큰 락업 기능** -AI 훈련 및 검증을 위해 생명, 로봇 공학 및 암호화에 걸친 교차 도메인 데이터를 수집하고 주석을 달기 위함입니다. +- 더 나은 이해를 위한 락업 툴팁 및 가이드 업데이트 +- 잠긴 토큰의 자산 가시성 개선 +- View PR: [#198](https://github.com/codatta/codattaFrontierWebsite/pull/198), [#199](https://github.com/codatta/codattaFrontierWebsite/pull/199), [#202](https://github.com/codatta/codattaFrontierWebsite/pull/202), [#203](https://github.com/codatta/codattaFrontierWebsite/pull/203), [#204](https://github.com/codatta/codattaFrontierWebsite/pull/204), [#205](https://github.com/codatta/codattaFrontierWebsite/pull/205) -- **접근:** Binance Wallet Booster 탭 또는 홈페이지 배너를 통해 접근 가능(Alpha Points ≥ 61 필요). -- **보상:** 총 보상 풀 50,000,000 $XNY(잠금 기간 포함), 작업 완료 및 검증 후 분배됩니다. -- **일정:** 2025년 09월 05일 07:00 UTC – 2025년 09월 12일 07:00 UTC. +**향상된 보상 청구 시스템** -
+- 더 안정적인 거래를 위한 클레임 리워드 API 업데이트 +- View PR: [#206](https://github.com/codatta/codattaFrontierWebsite/pull/206) -
+#### 성능 개선 -## 3.9.3 2025년 08월 28일 ---- -**기능 출시: 사용자 데이터 프로필** +**연결 라이브러리 업데이트** -
+- 연결 안정성 및 응답 시간 강화 +- View PR: [#201](https://github.com/codatta/codattaFrontierWebsite/pull/201) -
+#### 버그 수정 -사용자 정보 모듈 내에 새로운 데이터 프로필 기능을 도입합니다. +**애플리케이션 루프 방지** -- **방법:** 사용자 정보 > 데이터 프로필을 통해 총 제출 수, 획득한 보상 및 기여 통계를 시각적 대시보드에서 확인할 수 있습니다. -- **이유:** 기여에 대한 투명성을 제공하고, 가시적인 진행 상황 추적을 통해 참여를 강화하며, 장기적인 참여를 지원하기 위함입니다. +- 코어 앱 로직의 무한 루프 조건 해결 +- View PR: [#200](https://github.com/codatta/codattaFrontierWebsite/pull/200)
-
+
-## 3.9.2 2025년 08월 22일 ---- -**캠페인 출시: Codatta Booster 캠페인 시즌 3 1주차** +### 4.2.3 Nov 26, 2025 +
-
+#### 새로운 기능 -
+**소셜 작업 통합** -분산형 AI 훈련을 위해 생명, 로봇 공학 및 암호화에 걸친 교차 도메인 주석 데이터의 기초를 마련하기 위함입니다. +- 커뮤니티 참여를 위한 소셜 링크 작업 추가 +- Telegram 제출 프로세스 개선 +- 업데이트된 링크로 Discord 통합 강화 +- View PR: [#180](https://github.com/codatta/codattaFrontierWebsite/pull/180), [#181](https://github.com/codatta/codattaFrontierWebsite/pull/181), [#182](https://github.com/codatta/codattaFrontierWebsite/pull/182), [#184](https://github.com/codatta/codattaFrontierWebsite/pull/184) -- **접근:** Binance Wallet Booster 탭 또는 홈페이지 배너를 통해 접근 가능(Alpha Points ≥ 61 필요). -- **보상:** 총 보상 풀 50,000,000 $XNY(잠금 기간 포함), 작업 완료 및 검증 후 분배됩니다. -- **일정:** 2025년 08월 22일 07:00 UTC – 2025년 08월 29일 07:00 UTC. +**에어드롭 시스템 강화** -
+- 에어드롭 자격 운영 강화 +- View PR: [#186](https://github.com/codatta/codattaFrontierWebsite/pull/186), [#187](https://github.com/codatta/codattaFrontierWebsite/pull/187), [#189](https://github.com/codatta/codattaFrontierWebsite/pull/189), [#190](https://github.com/codatta/codattaFrontierWebsite/pull/190), [#191](https://github.com/codatta/codattaFrontierWebsite/pull/191) -
+**물리적 질문 양식 시스템** -## 3.9.1 2025년 08월 15일 ---- -**캠페인 출시: Codatta Booster 캠페인 시즌 2 4주차** +- 통합 자격 운영 기능 +- View PR: [#192](https://github.com/codatta/codattaFrontierWebsite/pull/192), [#193](https://github.com/codatta/codattaFrontierWebsite/pull/193) + +#### 성능 개선 -
+**API 요청 최적화** -
+- 로컬 프록시 적응 강화 +- API 응답 시간 단축 +- View PR: [#195](https://github.com/codatta/codattaFrontierWebsite/pull/195), [#196](https://github.com/codatta/codattaFrontierWebsite/pull/196) -분산형 AI 훈련을 위해 음식 AI, 로봇 상호작용 및 CEX 온체인 데이터의 도메인별 데이터 세트를 체계적으로 주석 달고 확장하기 위함입니다. +#### 버그 수정 -- **접근:** Binance Wallet Booster 탭 또는 홈페이지 배너를 통해 접근 가능(Alpha Points ≥ 61 필요). -- **보상:** 총 보상 풀 50,000,000 $XNY(잠금 기간 포함), 작업 완료 및 검증 후 분배됩니다. -- **일정:** 2025년 08월 15일 07:00 UTC – 2025년 08월 22일 07:00 UTC. +**빌드 프로세스 개선** + +- 배포에 영향을 미치는 중요 빌드 오류 수정 +- View PR: [#185](https://github.com/codatta/codattaFrontierWebsite/pull/185), [#188](https://github.com/codatta/codattaFrontierWebsite/pull/188), [#194](https://github.com/codatta/codattaFrontierWebsite/pull/194)
-
+
+ +### 4.2.2 Nov 19, 2025 +
-## 3.8.9 2025년 08월 08일 ---- -**캠페인 출시: Codatta Booster 캠페인 시즌 2 3주차** +#### 새로운 기능 -
+**향상된 에어드롭 시스템** -
+- View PR: [#169](https://github.com/codatta/codattaFrontierWebsite/pull/169) -프로젝트 학습, 음식 AI 판단, 로봇 주석 및 CEX 데이터 확장을 포함한 네 가지 주요 영역에서 체계적으로 주석이 달린 데이터를 수집하기 위함입니다. +**물리적 인증 시스템** -- **접근:** Binance Wallet Booster 탭 또는 홈페이지 배너를 통해 접근 가능(Alpha Points ≥ 61 필요). -- **보상:** 총 보상 풀 50,000,000 $XNY(잠금 기간 포함), 작업 완료 및 검증 후 분배됩니다. -- **일정:** 2025년 08월 08일 07:00 UTC – 2025년 08월 15일 07:00 UTC. +- 완전한 물리적 인증 워크플로우 +- 인증 인터페이스 디자인 업데이트 +- View PR: [#170](https://github.com/codatta/codattaFrontierWebsite/pull/170), [#171](https://github.com/codatta/codattaFrontierWebsite/pull/171), [#177](https://github.com/codatta/codattaFrontierWebsite/pull/177) -
+**Frontier 작업 검증** -
+- 작업 인증 상태 표시기 +- View PR: [#172](https://github.com/codatta/codattaFrontierWebsite/pull/172), [#173](https://github.com/codatta/codattaFrontierWebsite/pull/173) -## 3.8.8 2025년 08월 01일 ---- -**캠페인 출시: Codatta Booster 캠페인 시즌 2 2주차** +**양식 입력 제어** -
+- 양식 입력 문자 길이 제한 +- 스팸 방지를 위한 제출 속도 제한 +- View PR: [#174](https://github.com/codatta/codattaFrontierWebsite/pull/174), [#175](https://github.com/codatta/codattaFrontierWebsite/pull/175) -
+#### 버그 수정 -AI 음식 모델 비교, 로봇 상호작용 주석 및 CEX 핫 월렛 데이터 라벨링을 포함한 세 가지 핵심 도메인에서 주석이 달린 데이터를 수집하기 위함입니다. +**인증 내비게이션 수정** -- **접근:** Binance Wallet Booster 탭 또는 홈페이지 배너를 통해 접근 가능(Alpha Points ≥ 61 필요). -- **보상:** 총 보상 풀 50,000,000 $XNY(잠금 기간 포함), 작업 완료 및 검증 후 분배됩니다. -- **일정:** 2025년 08월 01일 07:00 UTC – 2025년 08월 08일 07:00 UTC. +- 인증 뒤로가기 버튼 기능 수정 +- View PR: [#176](https://github.com/codatta/codattaFrontierWebsite/pull/176) + +**빌더 인터페이스 업데이트** + +- 빌더 인터페이스 문제 해결 +- 질문 표시 및 처리 업데이트 +- View PR: [#178](https://github.com/codatta/codattaFrontierWebsite/pull/178), [#179](https://github.com/codatta/codattaFrontierWebsite/pull/179)
-
+
-## 3.8.7 2025년 07월 24일 ---- -**캠페인 출시: Codatta Booster 캠페인 시즌 2 1주차** +### 4.2.1 Nov 12, 2025 +
+ +#### 새로운 기능 + +**DID 통합** + +- View PR: [#166](https://github.com/codatta/codattaFrontierWebsite/pull/166) -
+**플랫폼 재구축 및 최적화** -
+- 사용자 인터페이스 및 내비게이션 간소화 +- View PR: [#165](https://github.com/codatta/codattaFrontierWebsite/pull/165) -주석이 달린 실제 상호작용 데이터를 통해 AI 음식 분석을 검증하고 로봇 훈련을 향상시키기 위함입니다. +**향상된 리더보드 시스템** -- **접근:** Binance Wallet Booster 탭 또는 홈페이지 배너를 통해 접근 가능(Alpha Points ≥ 61 필요). -- **보상:** 총 보상 풀 50,000,000 $XNY(잠금 기간 포함), 작업 완료 및 검증 후 분배됩니다. -- **일정:** 2025년 07월 24일 07:00 UTC – 2025년 07월 31일 07:00 UTC. +- 실시간 랭킹 업데이트 +- 향상된 경쟁 기능 +- View PR: [#168](https://github.com/codatta/codattaFrontierWebsite/pull/168) + +#### 버그 수정 + +**현지화 개선** + +- 중국어 텍스트 렌더링 수정 +- View PR: [#167](https://github.com/codatta/codattaFrontierWebsite/pull/167)
-
+
-## 3.8.5 2025년 07월 16일 ---- -**캠페인 출시: Codatta Booster 캠페인 시즌 1 4주차** +### 4.2.0 Nov 05, 2025 +
+ +#### 새로운 기능 + +**DID 통합 시스템** -
+- 완전한 DID 워크플로우 구현 +- View PR: [#161](https://github.com/codatta/codattaFrontierWebsite/pull/161), [#163](https://github.com/codatta/codattaFrontierWebsite/pull/163) -
+#### 버그 수정 -무게, 조리 방법 및 칼로리 함량을 포함한 풍부한 주석을 수집하여 AI의 음식 이해를 심화시키기 위함입니다. +**빌드 프로세스 최적화** -- **접근:** Binance Wallet Booster 탭 또는 홈페이지 배너를 통해 접근 가능(Alpha Points ≥ 61 필요). -- **보상:** 총 보상 풀 50,000,000 $XNY, 작업 완료 및 검증 후 분배됩니다. -- **일정:** 2025년 07월 16일 13:00 UTC – 2025년 07월 23일 13:00 UTC. +- 프로덕션 빌드의 컴파일 오류 수정 +- View PR: [#162](https://github.com/codatta/codattaFrontierWebsite/pull/162)
-
+
-## 3.8.4 2025년 07월 09일 ---- -**캠페인 출시: Codatta Booster 캠페인 시즌 1 3주차** +### 4.1.3 Oct 22, 2025 +
+ +#### 새로운 기능 -
+**제출 블랙리스트 보호** -
+- 블랙리스트 사용자 제출 자동 차단 +- View PR: [#158](https://github.com/codatta/codattaFrontierWebsite/pull/158) -간단한 라벨을 넘어 문화적 및 맥락적 관련성을 강조하여 즉석 식품의 주석이 달린 이미지를 수집하여 AI의 미세한 이해를 가르치기 위함입니다. +**에어드롭 가이드라인 업데이트** -- **접근:** Binance Wallet Booster 탭 또는 홈페이지 배너를 통해 접근 가능(Alpha Points ≥ 61 필요). -- **보상:** 총 보상 풀 50,000,000 $XNY, 작업 완료 및 검증 후 분배됩니다. -- **일정:** 2025년 07월 09일 13:00 UTC – 2025년 07월 16일 13:00 UTC. +- 참여 가이드라인 간소화 +- View PR: [#159](https://github.com/codatta/codattaFrontierWebsite/pull/159) + +#### 버그 수정 + +**빌드 프로세스 개선** + +- 프로덕션 빌드의 컴파일 오류 수정 +- View PR: [#160](https://github.com/codatta/codattaFrontierWebsite/pull/160)
-
+
-## 3.8.3 2025년 07월 07일 ---- -**기능 최적화: 퀘스트 시스템 복원** +### 4.1.0 Oct 15, 2025 +
-
+#### 새로운 기능 -
+**향상된 에어드롭 활동 시스템** -퀘스트 시스템이 완전히 복원되어 재개되었습니다. +- 다양한 작업 유형을 포함한 에어드롭 활동 인터페이스 완성 +- 다양한 사용자 카테고리를 위한 3가지 에어드롭 작업 +- View PR: [#140](https://github.com/codatta/codattaFrontierWebsite/pull/140), [#142](https://github.com/codatta/codattaFrontierWebsite/pull/142), [#143](https://github.com/codatta/codattaFrontierWebsite/pull/143), [#154](https://github.com/codatta/codattaFrontierWebsite/pull/154) -- **방법:** 2025년 06월 30일에 일시적으로 오프라인 상태였으며, 현재 종합적으로 복원되었습니다. -- **이유:** 시스템 안정성과 사용자 경험을 향상시키기 위한 구조적 업그레이드입니다. +**포인트 및 리더보드 시스템 개선** -
+- 명확한 리워드 추적을 위한 포인트 표시 시스템 업데이트 +- 새 활동 및 업데이트에 대한 레드닷 알림 +- View PR: [#148](https://github.com/codatta/codattaFrontierWebsite/pull/148), [#155](https://github.com/codatta/codattaFrontierWebsite/pull/155), [#156](https://github.com/codatta/codattaFrontierWebsite/pull/156), [#157](https://github.com/codatta/codattaFrontierWebsite/pull/157) -
+**향상된 내비게이션 및 문서** -## 3.8.2 2025년 07월 02일 ---- -**캠페인 시작: Codatta 부스터 캠페인 시즌 1 2주차** +- 에어드롭 규칙 및 가이드라인 직접 링크 +- 더 명확한 안내를 위한 전문가 텍스트 콘텐츠 업데이트 +- View PR: [#150](https://github.com/codatta/codattaFrontierWebsite/pull/150), [#152](https://github.com/codatta/codattaFrontierWebsite/pull/152) -
+#### 버그 수정 -
+**에어드롭 인터페이스 개선** -채식, 비채식 및 혼합 카테고리 전반에 걸쳐 미세한 이미지 라벨링을 통해 AI의 글로벌 음식 문화 및 선호도 이해를 확장하기 위함입니다. +- 에어드롭 음식 스타일 불일치 해결 +- 텍스트 표시 및 서식 문제 수정 +- 규칙 표시 및 레이아웃 문제 수정 +- View PR: [#141](https://github.com/codatta/codattaFrontierWebsite/pull/141), [#144](https://github.com/codatta/codattaFrontierWebsite/pull/144), [#145](https://github.com/codatta/codattaFrontierWebsite/pull/145), [#146](https://github.com/codatta/codattaFrontierWebsite/pull/146), [#147](https://github.com/codatta/codattaFrontierWebsite/pull/147), [#151](https://github.com/codatta/codattaFrontierWebsite/pull/151) -- **접근:** Binance Wallet 부스터 탭 또는 홈페이지 배너를 통해 접근 가능 (Alpha Points ≥ 61). -- **보상:** 총 보상 풀 50,000,000 $XNY, 작업 완료 및 검증 후 분배됩니다. -- **일정:** 2025년 07월 02일 13:00 UTC – 2025년 07월 09일 13:00 UTC. +#### 개발 + +**플랫폼 업데이트** + +- 코어 개발 브랜치 업데이트 및 개선 +- 플랫폼 최적화 및 유지보수 업데이트 +- View PR: [#153](https://github.com/codatta/codattaFrontierWebsite/pull/153)
-
+
-## 3.8.0 2025년 06월 25일 ---- -**캠페인 시작: Codatta 부스터 캠페인 시즌 1 1주차** +### 4.0.0 Oct 01, 2025 +
-
+#### 새로운 기능 -
+**에어드롭 활동 시스템** -주석이 달린 음식 데이터를 수집하고, 퀴즈를 통해 커뮤니티 지식을 활용하며, 다단계 인센티브 구조를 통해 참여를 보상하는 첫 번째 시즌을 시작하기 위함입니다. +- 다양한 사용자 참여를 위한 3가지 에어드롭 작업 카테고리 +- 참여 추적을 위한 인터랙티브 활동 대시보드 +- 지식 기반 작업을 위한 전문가 답변 검증 시스템 +- View PR: [#131](https://github.com/codatta/codattaFrontierWebsite/pull/131), [#133](https://github.com/codatta/codattaFrontierWebsite/pull/133), [#136](https://github.com/codatta/codattaFrontierWebsite/pull/136) -- **접근:** Binance Wallet 부스터 탭 또는 홈페이지 배너를 통해 접근 가능 (Alpha Points ≥ 61). -- **보상:** 총 보상 풀 50,000,000 $XNY, 작업 완료 및 검증 후 분배됩니다. -- **일정:** 2025년 06월 25일 13:00 UTC – 2025년 07월 02일 13:00 UTC. +**향상된 에어드롭 가이드라인** -
{/* Component definitions - moved to end of file for cleaner code organization */} -export const ChangelogFilter = () => { - const [activeFilter, setActiveFilter] = useState('all'); - const [isOpen, setIsOpen] = useState(false); - const [isMenuHovered, setIsMenuHovered] = useState(false); +- 에어드롭 참여를 위한 포괄적 가이드라인 문서 +- 에어드롭 활동을 위한 사용자 온보딩 개선 +- View PR: [#139](https://github.com/codatta/codattaFrontierWebsite/pull/139) - useEffect(() => { - window.activeTypeFilter = activeFilter; - }, [activeFilter]); +#### 버그 수정 - useEffect(() => { - const items = document.querySelectorAll('.changelog-item'); - const activeMonth = window.activeMonthFilter || 'all'; - - items.forEach((item) => { - const itemType = item.getAttribute('data-type'); - const itemMonth = item.getAttribute('data-month'); - - const typeMatch = activeFilter === 'all' || itemType === activeFilter; - const monthMatch = activeMonth === 'all' || itemMonth === activeMonth; - - item.style.display = typeMatch && monthMatch ? '' : 'none'; - }); - }, [activeFilter]); +**에어드롭 시스템 개선** - const filterTypes = [ - { id: 'all', label: '전체', color: '#6b7280', count: 24 }, - { id: 'core-feature', label: '핵심 기능 출시', color: '#16A34A', count: 4 }, - { id: 'optimization', label: '조정 및 최적화', color: '#F59E0B', count: 3 }, - { id: 'fixes', label: '수정 및 기능 종료', color: '#EF4444', count: 3 }, - { id: 'campaign', label: '캠페인 시작', color: '#A855F7', count: 14 } - ]; +- 전문가 답변 검증 로직 수정 +- View PR: [#137](https://github.com/codatta/codattaFrontierWebsite/pull/137), [#138](https://github.com/codatta/codattaFrontierWebsite/pull/138) - const activeType = filterTypes.find(type => type.id === activeFilter) || filterTypes[0]; +**이메일 인터랙션 강화** - return ( -
-
setIsOpen(!isOpen)} - style={{ - display: 'inline-flex', - alignItems: 'center', - gap: '0.5rem', - padding: '0.625rem 1rem', - border: '2px solid #e5e7eb', - borderRadius: '0.5rem', - background: 'white', - cursor: 'pointer', - fontSize: '0.875rem', - fontWeight: '500', - boxShadow: isOpen ? `0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)` : '0 1px 2px 0 rgba(0, 0, 0, 0.05)', - transition: 'all 0.2s ease', - userSelect: 'none', - minWidth: '200px' - }} - > - - - {activeType.label} ({activeType.count}) - - -
- - {isOpen && ( -
setIsMenuHovered(true)} - onMouseLeave={() => setIsMenuHovered(false)} - style={{ - position: 'absolute', - top: '100%', - left: 0, - marginTop: '0.5rem', - backgroundColor: 'white', - border: `2px solid ${isMenuHovered ? '#9ca3af' : '#e5e7eb'}`, - borderRadius: '0.5rem', - boxShadow: isMenuHovered - ? '0 10px 15px -3px rgba(0, 0, 0, 0.15), 0 4px 6px -2px rgba(0, 0, 0, 0.1)' - : '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)', - zIndex: 1000, - minWidth: '280px', - overflow: 'hidden', - transition: 'border-color 0.2s ease, box-shadow 0.2s ease' - }} - > - {filterTypes.map((type) => ( -
{ - setActiveFilter(type.id); - setIsOpen(false); - }} - style={{ - padding: '0.75rem 1rem', - cursor: 'pointer', - display: 'flex', - alignItems: 'center', - justifyContent: 'space-between', - borderBottom: type.id !== filterTypes[filterTypes.length - 1].id ? '1px solid #f3f4f6' : 'none', - backgroundColor: activeFilter === type.id ? '#f9fafb' : 'white', - transition: 'background-color 0.15s ease' - }} - onMouseEnter={(e) => { - if (activeFilter !== type.id) { - e.currentTarget.style.backgroundColor = '#f3f4f6'; - } - }} - onMouseLeave={(e) => { - if (activeFilter !== type.id) { - e.currentTarget.style.backgroundColor = 'white'; - } - }} - > - - {type.label} - - - {type.count} - -
- ))} -
- )} - - {isOpen && ( -
setIsOpen(false)} - style={{ - position: 'fixed', - top: 0, - left: 0, - right: 0, - bottom: 0, - zIndex: 999, - backgroundColor: 'transparent' - }} - /> - )} -
- ); -}; +- 향상된 이메일 인터랙션 기능 +- View PR: [#135](https://github.com/codatta/codattaFrontierWebsite/pull/135) -export const MonthFilter = () => { - const [activeMonth, setActiveMonth] = useState('all'); - const [isOpen, setIsOpen] = useState(false); - const [isMenuHovered, setIsMenuHovered] = useState(false); +
- useEffect(() => { - window.activeMonthFilter = activeMonth; - const event = new Event('monthFilterChange'); - window.dispatchEvent(event); - }, [activeMonth]); +
- useEffect(() => { - const handleMonthChange = () => { - const items = document.querySelectorAll('.changelog-item'); - const activeType = window.activeTypeFilter || 'all'; - - items.forEach((item) => { - const itemType = item.getAttribute('data-type'); - const itemMonth = item.getAttribute('data-month'); - - const typeMatch = activeType === 'all' || itemType === activeType; - const monthMatch = activeMonth === 'all' || itemMonth === activeMonth; - - item.style.display = typeMatch && monthMatch ? '' : 'none'; - }); - }; - - window.addEventListener('monthFilterChange', handleMonthChange); - handleMonthChange(); - - return () => { - window.removeEventListener('monthFilterChange', handleMonthChange); - }; - }, [activeMonth]); +### 3.9.10 Sep 24, 2025 +
- const months = [ - { id: 'all', label: '전체', count: 24 }, - { id: 'dec', label: '12월', count: 1 }, - { id: 'nov', label: '11월', count: 3 }, - { id: 'oct', label: '10월', count: 6 }, - { id: 'sep', label: '9월', count: 3 }, - { id: 'aug', label: '8월', count: 5 }, - { id: 'jul', label: '7월', count: 5 }, - { id: 'jun', label: '6월', count: 1 } - ]; +#### 새로운 기능 - const activeMonthData = months.find(month => month.id === activeMonth) || months[0]; +**고품질 사용자 온보딩 시스템** - return ( -
-
setIsOpen(!isOpen)} - style={{ - display: 'inline-flex', - alignItems: 'center', - gap: '0.5rem', - padding: '0.625rem 1rem', - border: '2px solid #e5e7eb', - borderRadius: '0.5rem', - background: 'white', - cursor: 'pointer', - fontSize: '0.875rem', - fontWeight: '500', - boxShadow: isOpen ? `0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)` : '0 1px 2px 0 rgba(0, 0, 0, 0.05)', - transition: 'all 0.2s ease', - userSelect: 'none', - minWidth: '200px' - }} - > - - {activeMonthData.label} ({activeMonthData.count}) - - -
- - {isOpen && ( -
setIsMenuHovered(true)} - onMouseLeave={() => setIsMenuHovered(false)} - style={{ - position: 'absolute', - top: '100%', - left: 0, - marginTop: '0.5rem', - backgroundColor: 'white', - border: `2px solid ${isMenuHovered ? '#9ca3af' : '#e5e7eb'}`, - borderRadius: '0.5rem', - boxShadow: isMenuHovered - ? '0 10px 15px -3px rgba(0, 0, 0, 0.15), 0 4px 6px -2px rgba(0, 0, 0, 0.1)' - : '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)', - zIndex: 1000, - minWidth: '280px', - overflow: 'hidden', - transition: 'border-color 0.2s ease, box-shadow 0.2s ease' - }} - > - {months.map((month) => ( -
{ - setActiveMonth(month.id); - setIsOpen(false); - }} - style={{ - padding: '0.75rem 1rem', - cursor: 'pointer', - display: 'flex', - alignItems: 'center', - justifyContent: 'space-between', - borderBottom: month.id !== months[months.length - 1].id ? '1px solid #f3f4f6' : 'none', - backgroundColor: activeMonth === month.id ? '#f9fafb' : 'white', - transition: 'background-color 0.15s ease' - }} - onMouseEnter={(e) => { - if (activeMonth !== month.id) { - e.currentTarget.style.backgroundColor = '#f3f4f6'; - } - }} - onMouseLeave={(e) => { - if (activeMonth !== month.id) { - e.currentTarget.style.backgroundColor = 'white'; - } - }} - > - - {month.label} - - - {month.count} - -
- ))} -
- )} - - {isOpen && ( -
setIsOpen(false)} - style={{ - position: 'fixed', - top: 0, - left: 0, - right: 0, - bottom: 0, - zIndex: 999, - backgroundColor: 'transparent' - }} - /> - )} -
- ); -}; +- 이메일 인증을 통한 사용자 등록 프로세스 강화 +- View PR: [#123](https://github.com/codatta/codattaFrontierWebsite/pull/123), [#124](https://github.com/codatta/codattaFrontierWebsite/pull/124), [#126](https://github.com/codatta/codattaFrontierWebsite/pull/126), [#127](https://github.com/codatta/codattaFrontierWebsite/pull/127), [#128](https://github.com/codatta/codattaFrontierWebsite/pull/128) + +#### 성능 개선 + +**향상된 비주얼 인터페이스** + +- 일관된 표시를 위한 이미지 종횡비 업데이트 +- View PR: [#125](https://github.com/codatta/codattaFrontierWebsite/pull/125) + +#### 버그 수정 + +**플랫폼 디스플레이 및 지갑 연결 수정** + +- Frontier 디스플레이 렌더링 문제 수정 +- View PR: [#129](https://github.com/codatta/codattaFrontierWebsite/pull/129), [#130](https://github.com/codatta/codattaFrontierWebsite/pull/130) + +
+ +
+ +### 3.9.9 Sep 17, 2025 +
+ +#### 새로운 기능 + +**고품질 사용자 프로그램 V2** + +- 로컬 스토리지를 활용한 초대 링크 복사 기능 간소화 +- 자동 가입 인증을 통한 Telegram 그룹 통합 강화 +- View PR: [#106](https://github.com/codatta/codattaFrontierWebsite/pull/106), [#107](https://github.com/codatta/codattaFrontierWebsite/pull/107), [#111](https://github.com/codatta/codattaFrontierWebsite/pull/111), [#113](https://github.com/codatta/codattaFrontierWebsite/pull/113), [#117](https://github.com/codatta/codattaFrontierWebsite/pull/117), [#118](https://github.com/codatta/codattaFrontierWebsite/pull/118), [#119](https://github.com/codatta/codattaFrontierWebsite/pull/119), [#120](https://github.com/codatta/codattaFrontierWebsite/pull/120), [#121](https://github.com/codatta/codattaFrontierWebsite/pull/121) + +**주간 활동 시스템** + +- 새로운 주간 활동 추적 및 완료 시스템 +- 지속적 참여를 위한 통합 리워드 메커니즘 +- View PR: [#114](https://github.com/codatta/codattaFrontierWebsite/pull/114) + +**출금 기능** + +- 사용자 친화적 흐름의 출금 인터페이스 완성 +- 사용자 자금의 안전한 거래 처리 +- View PR: [#116](https://github.com/codatta/codattaFrontierWebsite/pull/116) + +#### 버그 수정 + +**인터페이스 개선** + +- 안정적 배포를 위한 빌드 컴파일 오류 수정 +- 인터페이스 혼잡 감소를 위한 불필요한 재시도 버튼 숨김 +- View PR: [#108](https://github.com/codatta/codattaFrontierWebsite/pull/108), [#110](https://github.com/codatta/codattaFrontierWebsite/pull/110), [#112](https://github.com/codatta/codattaFrontierWebsite/pull/112) + +
+ +
+ +### 3.9.8 Sep 10, 2025 +
+ +#### 새로운 기능 + +**온체인 작업 검증 시스템** + +- 작업 완료를 위한 자동화된 온체인 검증 +- 11주차 캠페인과 검증 시스템 통합 +- View PR: [#92](https://github.com/codatta/codattaFrontierWebsite/pull/92), [#93](https://github.com/codatta/codattaFrontierWebsite/pull/93) + +**고품질 사용자 경험 강화** + +- 고급 사용자 품질 평가 알고리즘 +- 중복 이미지 감지 및 오류 방지 +- View PR: [#99](https://github.com/codatta/codattaFrontierWebsite/pull/99), [#101](https://github.com/codatta/codattaFrontierWebsite/pull/101), [#102](https://github.com/codatta/codattaFrontierWebsite/pull/102), [#103](https://github.com/codatta/codattaFrontierWebsite/pull/103) + +**패션 앱 시범 통합** + +- 완전한 패션 앱 시범 워크플로우 +- 기존 플랫폼 기능과의 원활한 통합 +- View PR: [#98](https://github.com/codatta/codattaFrontierWebsite/pull/98) + +**QR 코드 시스템 업데이트** + +- QR 코드 생성 알고리즘 업데이트 +- QR 기능을 통한 캠페인 통합 개선 +- View PR: [#104](https://github.com/codatta/codattaFrontierWebsite/pull/104), [#105](https://github.com/codatta/codattaFrontierWebsite/pull/105) + +#### 버그 수정 + +**플랫폼 안정성 개선** + +- 배포에 영향을 미치는 빌드 컴파일 문제 수정 +- Gensmo 이메일 제출 기능 강화 +- View PR: [#94](https://github.com/codatta/codattaFrontierWebsite/pull/94), [#95](https://github.com/codatta/codattaFrontierWebsite/pull/95), [#96](https://github.com/codatta/codattaFrontierWebsite/pull/96), [#97](https://github.com/codatta/codattaFrontierWebsite/pull/97), [#100](https://github.com/codatta/codattaFrontierWebsite/pull/100) + +
+ +
+ +### 3.9.6 Sep 03, 2025 +
+ +#### 새로운 기능 + +**향상된 사용자 데이터 프로필 시스템** + +- 데이터 시각화가 포함된 사용자 프로필 인터페이스 완성 +- 프로필 데이터 구조 및 구성 강화 +- View PR: [#88](https://github.com/codatta/codattaFrontierWebsite/pull/88), [#91](https://github.com/codatta/codattaFrontierWebsite/pull/91) + +**10주차 활동 기능** + +- 주간 활동 모니터링 및 리워드 +- 인터랙티브 활동 대시보드 +- View PR: [#89](https://github.com/codatta/codattaFrontierWebsite/pull/89) + +
+ +
+ +### 3.9.3 Aug 27, 2025 +
+ +#### 새로운 기능 + +**향상된 FATE 설문 시스템** + +- 향상된 사용자 인터랙션의 설문 인터페이스 업데이트 +- View PR: [#84](https://github.com/codatta/codattaFrontierWebsite/pull/84) + +**암호화폐 설문 모듈** + +- 전용 암호화폐 설문 인터페이스 및 워크플로우 +- 암호화폐 주제를 위한 전문 질문 유형 +- 암호화폐 시장 분석을 위한 데이터 수집 강화 +- View PR: [#85](https://github.com/codatta/codattaFrontierWebsite/pull/85) + +**설문 프라이버시 제어** + +- 설문 응답에 대한 세분화된 개인정보 제어 옵션 +- 사용자 제어 데이터 공유 설정 +- View PR: [#87](https://github.com/codatta/codattaFrontierWebsite/pull/87) + +#### 버그 수정 + +**FATE 양식 제한 업데이트** + +- 양식 검증 제한 조건 수정 +- View PR: [#86](https://github.com/codatta/codattaFrontierWebsite/pull/86) + +
+ +
+ +### 3.9.2 Aug 20, 2025 +
+ +#### 새로운 기능 + +**홈페이지 리디자인 및 업데이트** + +- 비주얼 디자인 및 콘텐츠 구조 업데이트 +- View PR: [#79](https://github.com/codatta/codattaFrontierWebsite/pull/79), [#80](https://github.com/codatta/codattaFrontierWebsite/pull/80), [#82](https://github.com/codatta/codattaFrontierWebsite/pull/82) + +**자산 청구 시스템** + +- View PR: [#81](https://github.com/codatta/codattaFrontierWebsite/pull/81) + +**Kitchen 앱 데이터 통합** + +- 고급 데이터 처리 워크플로우 +- View PR: [#83](https://github.com/codatta/codattaFrontierWebsite/pull/83) + +
+ +
+ +### 3.9.1 Aug 13, 2025 +
+ +#### 새로운 기능 + +**사용자 자산 관리** + +- 자산 시각화 및 구성 개선 +- View PR: [#75](https://github.com/codatta/codattaFrontierWebsite/pull/75) + +**8주차 학습 콘텐츠** + +- 향상된 학습을 위한 인터랙티브 퀴즈 기능 +- 포괄적인 읽기 자료 및 리소스 +- 구조화된 주간 학습 진행 +- View PR: [#76](https://github.com/codatta/codattaFrontierWebsite/pull/76) + +**9주차 컬렉션 기능** + +- 새로운 컬렉션 인터페이스 및 내비게이션 +- View PR: [#78](https://github.com/codatta/codattaFrontierWebsite/pull/78) + +#### 버그 수정 + +**퀴즈 인터페이스 개선** + +- 퀴즈 레이아웃 및 서식 문제 수정 +- View PR: [#74](https://github.com/codatta/codattaFrontierWebsite/pull/74) + +**XNY 토큰 표시 수정** + +- 토큰 표시 서식 및 가시성 수정 +- 토큰 정보 렌더링 수정 +- View PR: [#77](https://github.com/codatta/codattaFrontierWebsite/pull/77) + +
+ +
+ +### 3.8.9 Aug 06, 2025 +
+ +#### 새로운 기능 + +**향상된 온체인 통합** + +- 온체인 데이터 동기화 개선 +- View PR: [#66](https://github.com/codatta/codattaFrontierWebsite/pull/66), [#67](https://github.com/codatta/codattaFrontierWebsite/pull/67), [#69](https://github.com/codatta/codattaFrontierWebsite/pull/69) + +**제출 이력 추적** + +- 적격 제출 메트릭 표시 +- View PR: [#71](https://github.com/codatta/codattaFrontierWebsite/pull/71), [#72](https://github.com/codatta/codattaFrontierWebsite/pull/72) + +**활동 상세 개선** + +- View PR: [#68](https://github.com/codatta/codattaFrontierWebsite/pull/68), [#73](https://github.com/codatta/codattaFrontierWebsite/pull/73) + +#### 성능 개선 + +**빌드 시스템 최적화** + +- GitHub Actions 워크플로우 자동화 강화 +- 배포 파이프라인 간소화 +- View PR: [#61](https://github.com/codatta/codattaFrontierWebsite/pull/61), [#62](https://github.com/codatta/codattaFrontierWebsite/pull/62), [#63](https://github.com/codatta/codattaFrontierWebsite/pull/63), [#64](https://github.com/codatta/codattaFrontierWebsite/pull/64), [#65](https://github.com/codatta/codattaFrontierWebsite/pull/65) + +#### 버그 수정 + +**UI 컴포넌트 수정** + +- SVG 아이콘 렌더링 문제 수정 +- View PR: [#70](https://github.com/codatta/codattaFrontierWebsite/pull/70) + +
+ +
+ +### 3.8.7 Jul 30, 2025 +
+ +#### 새로운 기능 + +**Crypto Frontier 통합** + +- Crypto Frontier 기능 구현 완료 +- View PR: [#57](https://github.com/codatta/codattaFrontierWebsite/pull/57) + +#### 버그 수정 + +**로보틱스 제출 수정** + +- 반복 제출 방지 메커니즘 수정 +- View PR: [#58](https://github.com/codatta/codattaFrontierWebsite/pull/58) + +**Crypto Frontier 설정 업데이트** + +- Crypto Frontier 설정 업데이트 +- 향상된 성능을 위한 운영 매개변수 최적화 +- View PR: [#59](https://github.com/codatta/codattaFrontierWebsite/pull/59), [#60](https://github.com/codatta/codattaFrontierWebsite/pull/60) + +
+ +
+ +### 3.8.5 Jul 16, 2025 +
+ +#### 새로운 기능 + +**향상된 부스터 시스템** + +- 1주차 새 부스터 마일스톤 시스템 +- 4주차 진행을 위한 부스터 메커니즘 업데이트 +- View PR: [#49](https://github.com/codatta/codattaFrontierWebsite/pull/49), [#50](https://github.com/codatta/codattaFrontierWebsite/pull/50) + +**Fate Frontier 통합** + +- Fate Frontier 인터페이스 구현 완료 +- 기존 플랫폼 메커니즘과 리워드 시스템 통합 +- View PR: [#52](https://github.com/codatta/codattaFrontierWebsite/pull/52) + +#### 버그 수정 + +**텍스트 표시 개선** + +- 더 나은 명확성을 위한 읽기 텍스트 기능 업데이트 +- 여러 컴포넌트에 걸친 텍스트 서식 강화 +- View PR: [#51](https://github.com/codatta/codattaFrontierWebsite/pull/51) + +**음식 시스템 강화** + +- 오류 방지를 위한 음식 조리법 입력 트리밍 추가 +- View PR: [#53](https://github.com/codatta/codattaFrontierWebsite/pull/53), [#54](https://github.com/codatta/codattaFrontierWebsite/pull/54) + +
+ +
+ +### 3.8.3 Jul 09, 2025 +
+ +#### 새로운 기능 + +**BN 부스터 강화** + +- 부스터 성능 메트릭 최적화 +- View PR: [#48](https://github.com/codatta/codattaFrontierWebsite/pull/48) + +
+ +
+ +### 3.8.2 Jul 02, 2025 +
+ +#### 새로운 기능 + +**향상된 로그 시스템** + +- View PR: [#46](https://github.com/codatta/codattaFrontierWebsite/pull/46) + +**음식 템플릿 통합** + +- 음식 관련 콘텐츠를 위한 새 템플릿 시스템 +- View PR: [#47](https://github.com/codatta/codattaFrontierWebsite/pull/47) + +
+ +
+ +### 3.8.0 Jun 25, 2025 +
+ +#### 새로운 기능 + +**브랜드 아이덴티티 리뉴얼** + +- 브랜드 자산 전반에 새 Codatta 로고 적용 +- 메인 웹사이트 인터페이스 전반에 로고 업데이트 +- View PR: [#6](https://github.com/codatta/brand-kit/pull/6), [#40](https://github.com/codatta/codattaFrontierWebsite/pull/40), [#7](https://github.com/codatta/brand-kit/pull/7) + +**부스터 시스템 강화** + +- 부스터 기능에 벵골어 지원 추가 +- View PR: [#41](https://github.com/codatta/codattaFrontierWebsite/pull/41), [#43](https://github.com/codatta/codattaFrontierWebsite/pull/43), [#45](https://github.com/codatta/codattaFrontierWebsite/pull/45) + +
+ +
+ +### 3.7.9 May 28, 2025 +
+ +#### 버그 수정 + +**빌드 프로세스 안정화** + +- 빌드 설정 오류 해결 +- View PR: [#36](https://github.com/codatta/codattaFrontierWebsite/pull/36) + +
+ +
+ +### 3.4.9 Apr 02, 2025 +
+ +#### UI/UX 개선 + +**향상된 Frontier 배너 디자인** + +- View PR: [#27](https://github.com/codatta/codattaFrontierWebsite/pull/27) + +
+ +
+ +### 3.4.8 Feb 12, 2025 +
+ +#### 새로운 기능 + +**E2E 테스트 인프라** + +- 중요 사용자 워크플로우를 위한 테스트 파이프라인 완성 +- 플랫폼 기능 자동화 검증 +- View PR: [#23](https://github.com/codatta/codattaFrontierWebsite/pull/23) + +
+ +
+ +### 3.4.7 Jan 29, 2025 +
+ +#### 새로운 기능 + +**향상된 소셜 인터페이스** + +- 향상된 접근성을 위한 인터페이스 디자인 간소화 +- View PR: [#19](https://github.com/codatta/codattaFrontierWebsite/pull/19) + +
+ +
+ +### 3.4.6 Jan 22, 2025 +
+ +#### 새로운 기능 + +**향상된 추천 테이블 디자인** + +- View PR: [#18](https://github.com/codatta/codattaFrontierWebsite/pull/18) + +
+ +
+ +### 3.3.0 Jan 08, 2025 +
+ +#### 새로운 기능 + +**확장 인증 통합** + +- View PR: [#16](https://github.com/codatta/codattaFrontierWebsite/pull/16) + +#### 버그 수정 + +**UI 개선 및 배너 수정** + +- 리워드 성공 토스트 알림 스타일 수정 +- 배너 표시 문제 수정 +- View PR: [#11](https://github.com/codatta/codattaFrontierWebsite/pull/11), [#13](https://github.com/codatta/codattaFrontierWebsite/pull/13) + +