- 10 Oct, 2025 13 commits
-
-
支持Sora做为上游渠道
Calcium-Ion committed -
feitianbubu committed
-
fix: channel remark ignore issue
Calcium-Ion committed -
feat(web): add settings & pages of privacy policy & user agreement
Calcium-Ion committed -
Seefs committed
-
feat: enhance HTTP client wit redirect handling and SSRF protection
Calcium-Ion committed -
fix: test model #1993
Calcium-Ion committed -
feitianbubu committed
-
CaIon committed
-
Seefs committed
-
fix: avoid get model consuming body
Seefs committed -
feitianbubu committed
-
Seefs committed
-
- 09 Oct, 2025 12 commits
-
-
キュビビイ committed
-
新增Sora视频渠道
Seefs committed -
feitianbubu committed
-
feitianbubu committed
-
feitianbubu committed
-
CaIon committed
-
chore(deps-dev): bump electron from 28.3.3 to 35.7.5 in /electron
Calcium-Ion committed -
CaIon committed
-
Bumps [electron](https://github.com/electron/electron) from 28.3.3 to 35.7.5. - [Release notes](https://github.com/electron/electron/releases) - [Changelog](https://github.com/electron/electron/blob/main/docs/breaking-changes.md) - [Commits](https://github.com/electron/electron/compare/v28.3.3...v35.7.5) --- updated-dependencies: - dependency-name: electron dependency-version: 35.7.5 dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
dependabot[bot] committed -
fix(openai): account cached tokens for zhipu_v4 usage
Seefs committed -
feat: add GetClaudeAuthHeader function and update FetchUpstreamModels to support Anthropic channel type
Seefs committed -
feat: gemini imagen quality value
Seefs committed
-
- 08 Oct, 2025 6 commits
-
-
feat: add GetClaudeAuthHeader function and update FetchUpstreamModels to support Anthropic channel type
RedwindA committed -
Sh1n3zZ committed
-
CaIon committed
-
zhipu_v4 usage
RedwindA committed -
Extracted the User Agreement and Privacy Policy presentation into a reusable DocumentRenderer component (web/src/components/common/DocumentRenderer). Unified rendering logic and i18n source for these documents, removed the legacy contentDetector utility, and updated the related pages to use the new component. Adjusted controller/backend (controller/misc.go) and locale files to support the new rendering approach. This improves reuse, maintainability, and future extensibility.
キュビビイ committed -
キュビビイ committed
-
- 07 Oct, 2025 3 commits
-
-
❤ fix(topup): prevent nil-pointer in Epay callback; reset page on searchSeefs committed -
❤ Add early return when Epay client is missing in controller/topup.go to avoid panic Introduce handleKeywordChange in TopupHistoryModal.jsx to reset page to 1 when keyword updates Wire input onChange to new handler; minor UX improvement to avoid empty results on pagination mismatch
Apple\Apple committed -
✨ feat: Add topup billing history with admin manual completionSeefs committed
-
- 06 Oct, 2025 5 commits
-
-
🔎 Enable searching topup records by trade_no across both admin-wide and user-only views. Frontend - TopupHistoryModal.jsx: - Add search input with prefix icon (IconSearch) to filter by order number - Send `keyword` query param to backend; works with both endpoints: - Admin: GET /api/user/topup?p=1&page_size=10&keyword=... - User: GET /api/user/topup/self?p=1&page_size=10&keyword=... - Keep endpoint auto-switching based on role (isAdmin) - Minor UI polish: outlined admin action button; keep Coins icon for amount Backend - model/topup.go: - Add SearchUserTopUps(userId, keyword, pageInfo) - Add SearchAllTopUps(keyword, pageInfo) - Both support pagination and `trade_no LIKE %keyword%` filtering (ordered by id desc) - controller/topup.go: - GetUserTopUps / GetAllTopUps accept optional `keyword` and route to search functions when present Routes - No new endpoints; search is enabled via `keyword` on existing: - GET /api/user/topup - GET /api/user/topup/self Affected files - model/topup.go - controller/topup.go - web/src/components/topup/modals/TopupHistoryModal.jsxApple\Apple committed -
✨ Allow administrators to view all platform topup orders and streamline admin-only routes. Frontend - TopupHistoryModal: dynamically switch endpoint by role - Admin → GET /api/user/topup (all orders) - Non-admin → GET /api/user/topup/self (own orders) - Use shared utils `isAdmin()`; keep logic centralized and DRY - Minor UI: set admin action button theme to outline for clarity Backend - model/topup.go: add GetAllTopUps(pageInfo) with pagination (ordered by id desc) - controller/topup.go: add GetAllTopUps handler returning PageInfo response - router/api-router.go: - Add admin route GET /api/user/topup (AdminAuth) - Move POST /api/user/topup/complete to adminRoute (keeps path stable, consolidates admin endpoints) Security/Behavior - Admin-only endpoints now reside under the admin route group with AdminAuth - No behavior change for regular users; no schema changes Affected files - model/topup.go - controller/topup.go - router/api-router.go - web/src/components/topup/modals/TopupHistoryModal.jsx
Apple\Apple committed -
✨ Implement comprehensive topup billing system with user history viewing and admin management capabilities. ## Features Added ### Frontend - Add topup history modal with paginated billing records - Display order details: trade number, payment method, amount, money, status, create time - Implement empty state with proper illustrations - Add payment method column with localized display (Stripe, Alipay, WeChat) - Add admin manual completion feature for pending orders - Add Coins icon for recharge amount display - Integrate "Bills" button in RechargeCard header - Optimize code quality by using shared utility functions (isAdmin) - Extract constants for status and payment method mappings - Use React.useMemo for performance optimization ### Backend - Create GET `/api/user/topup/self` endpoint for user topup history with pagination - Create POST `/api/user/topup/complete` endpoint for admin manual order completion - Add `payment_method` field to TopUp model for tracking payment types - Implement `GetUserTopUps` method with proper pagination and ordering - Implement `ManualCompleteTopUp` with transaction safety and row-level locking - Add application-level mutex locks to prevent concurrent order processing - Record payment method in Epay and Stripe payment flows - Ensure idempotency and data consistency with proper error handling ### Internationalization - Add i18n keys for Chinese (zh), English (en), and French (fr) - Support for billing-related UI text and status messages ## Technical Improvements - Use database transactions with FOR UPDATE row-level locking - Implement sync.Map-based mutex for order-level concurrency control - Proper error handling and user-friendly toast notifications - Follow existing codebase patterns for empty states and modals - Maintain code quality with extracted render functions and constants ## Files Changed - Backend: controller/topup.go, controller/topup_stripe.go, model/topup.go, router/api-router.go - Frontend: web/src/components/topup/modals/TopupHistoryModal.jsx (new), web/src/components/topup/RechargeCard.jsx, web/src/components/topup/index.jsx - i18n: web/src/i18n/locales/{zh,en,fr}.jsonApple\Apple committed -
fix: improve text visibility in warning box for dark mode in SettingsLog
Seefs committed -
CaIon committed
-
- 05 Oct, 2025 1 commit
-
-
RedwindA committed
-