Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: 0xtbug/zero-limit
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.1.1
Choose a base ref
...
head repository: 0xtbug/zero-limit
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.1.2
Choose a head ref
  • 12 commits
  • 43 files changed
  • 3 contributors

Commits on Feb 13, 2026

  1. Configuration menu
    Copy the full SHA
    c5f8d75 View commit details
    Browse the repository at this point in the history

Commits on Feb 21, 2026

  1. feat(claude): add Claude (Anthropic) provider support for quota checks

    This commit introduces support for checking quota usage for Claude (Anthropic) accounts.
    
    - **Add Claude API constants:** Define `CLAUDE_USAGE_URL` and `CLAUDE_HEADERS` in `src/constants/api.ts` to facilitate API requests to Anthropic.
    - **Integrate Claude into provider display:** Update `useProvidersPresenter.ts` to include 'anthropic' and 'other' as recognized providers, allowing Claude files to be grouped and displayed correctly in the UI.
    - **Extend quota presenter logic:** Modify `useQuotaPresenter.ts` to recognize 'anthropic' as a provider type, add its icon mapping, and include it in the list of displayed providers.
    - **Implement Claude quota fetching:** Add a new `fetchClaude` method to `quota.service.ts` to handle API calls to the Claude usage endpoint.
    - **Create Claude parser:** Introduce `src/services/api/parsers/claude.parser.ts` to parse the response from the Claude usage API into a standardized `ClaudeQuotaResult` format.
    - **Update quota types:** Add `ClaudeQuotaResult` interface to `src/types/quota.ts` to define the structure of Claude quota data.
    0xtbug committed Feb 21, 2026
    Configuration menu
    Copy the full SHA
    c42b30f View commit details
    Browse the repository at this point in the history
  2. Merge pull request #16 from 0xtbug/dev

    feat(claude): add Claude (Anthropic) provider support for quota checks
    0xtbug authored Feb 21, 2026
    Configuration menu
    Copy the full SHA
    a7b7c17 View commit details
    Browse the repository at this point in the history
  3. feat(logs): introduce logs viewer and file logging configuration

    Adds a dedicated "Logs" page for viewing server and request error logs.
    Implements a setting to enable/disable logging to file in `Settings`.
    Integrates Tauri file system plugin for backend log access.
    Provides API endpoints for fetching, listing, downloading, and clearing logs.
    Introduces new UI components: Sheet, Switch, and Tabs from Radix UI.
    Updates application navigation and routing for the new logs page.
    Adds internationalization keys for all new log-related texts.
    
    Why: To provide users with direct access to application logs for debugging
    and monitoring, and to allow control over file logging.
    0xtbug committed Feb 21, 2026
    Configuration menu
    Copy the full SHA
    3be83bf View commit details
    Browse the repository at this point in the history
  4. Merge pull request #17 from 0xtbug/dev

    feat(logs): introduce logs viewer and file logging configuration
    0xtbug authored Feb 21, 2026
    Configuration menu
    Copy the full SHA
    b7f067a View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2026

  1. feat(auth-files): implement download and upload functionality

    feat(auth-files): add file system read and write capabilities for Tauri
    feat(auth-files): introduce UI for downloading and uploading auth files
    feat(auth-files): add logic for single and bulk auth file downloads
    feat(auth-files): implement logic for uploading auth files
    feat(auth-files): add API endpoint for auth file uploads
    feat(auth-files): include new i18n strings for download and upload features
    
    This feature allows users to export their connected authentication files for backup
    or transfer, and import them back into the application. This enhances data
    portability and user control over their authentication data.
    0xtbug committed Feb 22, 2026
    Configuration menu
    Copy the full SHA
    1a28d36 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #18 from 0xtbug/dev

    feat(auth-files): implement download and upload functionality
    0xtbug authored Feb 22, 2026
    Configuration menu
    Copy the full SHA
    b85fdca View commit details
    Browse the repository at this point in the history
  3. feat(onboarding): implement guided CLI proxy setup and update flow

    Introduce a multi-step onboarding process for CLI proxy installation.
    Add automatic download, extraction, and configuration of proxy binaries.
    Implement in-app version checking and update functionality for the proxy.
    Extend Tauri backend with new commands for proxy management.
    Update file system capabilities for proxy installation and config.
    Integrate `motion` for UI animations and `tauri-plugin-os` for OS info.
    Enhance CLI proxy store to manage onboarding state, versions, and updates.
    Display proxy version and update controls in the settings page.
    Fix JSON syntax in Indonesian locale file.
    
    This streamlines the first-time user experience for CLI proxy setup and
    simplifies maintenance with automated updates. It ensures users run the
    latest proxy version, provides necessary permissions for file operations,
    and improves UI aesthetics.
    0xtbug committed Feb 22, 2026
    Configuration menu
    Copy the full SHA
    f390ca5 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #19 from 0xtbug/dev

    feat(onboarding): implement guided CLI proxy setup and update flow
    0xtbug authored Feb 22, 2026
    Configuration menu
    Copy the full SHA
    e66fc89 View commit details
    Browse the repository at this point in the history
  5. feat(pages): add page entry animations for improved UX

    Wraps main page content in `motion.div` to introduce smooth fade-in
    and subtle scale or vertical slide animations on page load. This
    enhances the user experience by providing visual feedback and a more
    fluid transition between different sections of the application.
    0xtbug committed Feb 22, 2026
    Configuration menu
    Copy the full SHA
    ab72282 View commit details
    Browse the repository at this point in the history
  6. feat(logs): introduce a dedicated logs page for server and error logs

    This commit introduces a new `LogsPage` component and its associated presenter hook `useLogsPresenter`.
    
    The `LogsPage` provides a comprehensive interface for viewing and managing application logs, including:
    - **Server Logs**: Displays real-time server logs with filtering, search, and auto-refresh capabilities.
    - **Error Logs**: Lists error log files, allowing users to download individual error logs.
    - **Log Management**: Functionality to clear all logs and download server logs.
    - **Filtering**: Users can filter server logs by search query and hide management-related entries.
    - **Display Options**: Toggle between raw log view and a parsed, structured view for server logs.
    - **Auto-refresh**: Automatically fetches new server logs at a set interval.
    - **Error Log Viewer**: A side sheet to display the content of selected error log files.
    
    The `useLogsPresenter` hook encapsulates the logic for fetching, parsing, filtering, and managing log data, interacting with the `logsApi` service.
    
    This feature significantly improves the observability and debugging experience for the application.
    
    chore(gitignore): remove 'logs' entry as it is covered by '*.log'
    0xtbug committed Feb 22, 2026
    Configuration menu
    Copy the full SHA
    0b37c48 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #20 from 0xtbug/dev

    feat(ui,logs): add page entry animations and dedicated logs page
    0xtbug authored Feb 22, 2026
    Configuration menu
    Copy the full SHA
    8a4940f View commit details
    Browse the repository at this point in the history
Loading