Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

[立即体验](https://face.dogxi.me) · [报告问题](https://github.com/dogxii/iFace/issues) · [功能建议](https://github.com/dogxii/iFace/issues)

![Version](https://img.shields.io/badge/version-1.3.0-6366f1?style=flat-square)
![Version](https://img.shields.io/badge/version-1.4.0-6366f1?style=flat-square)
![License](https://img.shields.io/badge/license-MIT-10b981?style=flat-square)
![React](https://img.shields.io/badge/React-19-61dafb?style=flat-square&logo=react)
![TypeScript](https://img.shields.io/badge/TypeScript-5.9-3178c6?style=flat-square&logo=typescript)
Expand Down
2 changes: 1 addition & 1 deletion docs/ROADMAP.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# iFace 1.0 Roadmap

当前版本:`1.3.0`
当前版本:`1.4.0`

iFace 1.0.0 的目标不是堆更多页面,而是把现有刷题、笔记、AI 反馈、数据备份这几条核心链路打磨到稳定可日用。

Expand Down
2 changes: 1 addition & 1 deletion docs/SMOKE_RESULT_2026-05-05.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
## 环境

- 日期:2026-05-06
- 应用版本:`1.3.0`
- 应用版本:`1.4.0`
- 生产预览:`http://127.0.0.1:4173`
- 浏览器验证:Playwright CLI
- 外部服务验证:真实 AI Key、真实 GitHub Gist Token,记录文件不包含密钥
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "iface",
"private": true,
"version": "1.3.0",
"version": "1.4.0",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
2 changes: 2 additions & 0 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { lazy, Suspense, useEffect, useLayoutEffect } from 'react'
import { BrowserRouter, Route, Routes, useLocation, useParams } from 'react-router-dom'
import { Navbar } from '@/components/layout/Navbar'
import { OnboardingGuide } from '@/components/layout/OnboardingGuide'
import { Spinner } from '@/components/ui'
import { AppErrorBoundary } from '@/components/ui/AppErrorBoundary'
import { PWAUpdatePrompt } from '@/components/ui/PWAUpdatePrompt'
Expand Down Expand Up @@ -121,6 +122,7 @@ export default function App() {
<main>
<AppRoutes />
</main>
<OnboardingGuide />
<PWAUpdatePrompt />
</div>
</BrowserRouter>
Expand Down
Loading
Loading