aboutsummaryrefslogtreecommitdiffstatshomepage
Commit message (Collapse)AuthorAgeFilesLines
* chore: update pre-commit configuration to change clippy and formatting argumentsHsiangNianian2026-01-161-2/+2
| | | | Modified the .pre-commit-config.yaml to adjust the arguments for the formatting and clippy hooks, switching to a check mode for formatting and enforcing warnings as errors for clippy. This change improves the linting and formatting processes for Rust code.
* chore: update pre-commit configuration to include additional argument for ↵HsiangNianian2026-01-161-2/+2
| | | | | | Rust hooks Modified the .pre-commit-config.yaml to add an extra argument to the formatting and clippy hooks, ensuring proper handling of additional parameters during execution. This change enhances the flexibility of the linting and formatting processes for Rust code.
* chore: remove automatic fix option from clippy in pre-commit configurationHsiangNianian2026-01-161-1/+1
| | | | Updated the .pre-commit-config.yaml to remove the automatic fix option for the clippy hook, streamlining the linting process for Rust code by requiring manual fixes. This change enhances control over code quality checks.
* chore: update clippy arguments in pre-commit configurationHsiangNianian2026-01-161-1/+1
| | | | Modified the .pre-commit-config.yaml to change the arguments for the clippy hook, allowing it to automatically fix issues and permit changes in dirty working directories. This enhances the linting process for Rust code in the project.
* chore: ensure newline at end of pre-commit configuration fileHsiangNianian2026-01-161-1/+1
| | | | Added a newline at the end of the .pre-commit-config.yaml file to adhere to best practices for file formatting, ensuring compatibility with various tools and editors.
* chore: refine pre-commit configuration for Rust hooksHsiangNianian2026-01-161-1/+2
| | | | Updated the .pre-commit-config.yaml to specify the manifest path for Rust hooks, ensuring proper integration with the Cargo.toml file in the src-tauri directory. This change enhances the functionality of the formatting and linting processes.
* chore: update pre-commit configuration for Rust and Python hooksHsiangNianian2026-01-161-33/+9
| | | | Modified the .pre-commit-config.yaml to downgrade versions of pre-commit hooks for improved compatibility. Removed local Rust hooks and replaced them with hooks from the official Rust pre-commit repository, adding support for formatting and linting. Adjusted Python hooks to streamline the linting process.
* docs: Remove duplicate FOSSA status badges简律纯2026-01-161-4/+1
| | | Removed duplicate FOSSA status badges from README.
* Merge pull request #51 from fossabot/add-license-scan-badge简律纯2026-01-161-0/+4
|\
* | docs: Add FOSSA badges to README简律纯2026-01-161-0/+6
| | | | | | Added FOSSA status badges for license and security.
| * Add license scan report and statusfossabot2026-01-161-0/+4
|/ | | Signed off by: fossabot <badges@fossa.com>
* docs: Add CI and status badges to README简律纯2026-01-161-0/+7
| | | Added badges for CI status, code analysis, and updates.
* Merge pull request #50 from BegoniaHe/docs/copilot-instructions简律纯2026-01-164-0/+703
|\
| * docs(github): add commit helper agent and referencesBegonia, HE2026-01-163-0/+451
| | | | | | | | | | | | | | | | | | - Add commit.agent.md with branch validation workflow - Include commit instructions for AI coding assistants - Add Conventional Commits specification reference - Implement Step 0 branch checking before commits Reviewed-by: Claude Sonnet 4.5
| * docs: add comprehensive Copilot development guideBegonia, HE2026-01-161-0/+252
|/ | | | | | | | | - Add .github/copilot-instructions.md with architecture overview - Document Tauri command patterns and event communication - Include Svelte 5 runes state management patterns - Cover version inheritance, authentication, and download systems - Add Java management and external API integration details - Provide common development tasks and debugging tips
* Merge pull request #47 from BegoniaHe/chore/add-github-templates简律纯2026-01-1612-0/+1377
|\
| * refactor: improve bug report templates based on PR reviewBegonia, HE2026-01-163-32/+28
| | | | | | | | | | | | | | | | | | | | - Remove time-sensitive version options (Latest Release/Snapshot) - Simplify Java source option (remove Adoptium annotation) - Update log upload instructions to use launcher terminal - Format screenshot requirements for better readability - Update documentation link to dropout.hydroroll.team Co-authored-by: HsiangNianian <i@jyunko.cn>
| * feat: add LLM-generated code disclosure section to PR templatesBegonia, HE2026-01-162-0/+16
| | | | | | | | | | | | | | | | | | Add transparency requirement for LLM-assisted contributions with three options: - LLM-generated code with quality assurance - LLM-generated code without quality assurance - No LLM-generated code Available in both English and Chinese templates.
| * docs: update log file locations in bug report templatesBegonia, HE2026-01-162-10/+8
| | | | | | | | | | | | | | Update log file paths to reflect actual application structure: - macOS: /Users/begonia/Library/Application Support/com.dropout.launcher/logs - Linux: /Users/begonia/.local/share/com.dropout.launcher - Remove Windows placeholder as not yet defined
| * Merge branch 'HsiangNianian:main' into chore/add-github-templatesBegonia, HE2026-01-166-6/+262
| |\ | |/ |/|
| * chore: add GitHub issue and PR templates with automation workflowsBegonia, HE2026-01-1612-0/+1367
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Add bilingual issue templates (English & Chinese) - Bug report template with prerequisite checkboxes - Feature request template - Question template - Reverse checkbox detection ("I have not read carefully") - Add bilingual PR templates (English & Chinese) - Comprehensive checklist for code quality and testing - Test environment documentation section - Breaking changes section - Add GitHub Actions workflows - Auto-labeling based on issue content - Auto-close issues with unchecked prerequisites - Stale issue and PR management (90/60 days) - Add template configuration - External links for discussions and wiki - Template chooser interface
* | Merge pull request #44 from HsiangNianian/fix/security/alert-autofix-3简律纯2026-01-161-5/+1
|\ \
* \ \ Merge pull request #46 from HsiangNianian/feat/add-pre-commit-support简律纯2026-01-165-1/+261
|\ \ \ | |_|/ |/| |
| * | chore: add cargo formatting and linting hooks to pre-commit configurationHsiangNianian2026-01-161-0/+14
| | | | | | | | | | | | Enhanced the pre-commit configuration by adding hooks for Rust code formatting with `cargo fmt` and linting with `cargo clippy` for files in the `src-tauri` directory. This improves code quality checks for Rust components in the project.
| * | chore: update pre-commit hooks for improved linting and formattingHsiangNianian2026-01-161-0/+1
| | | | | | | | | | | | Refined the pre-commit configuration to enhance linting and formatting checks. Adjusted hooks for better handling of Svelte, TypeScript, and JavaScript files in the 'ui' directory, ensuring consistent code quality across the project.
| * | chore: add pre-commit configuration for linting and formattingHsiangNianian2026-01-161-0/+35
| | | | | | | | | | | | Introduced a new .pre-commit-config.yaml file to set up pre-commit hooks for code quality checks, including AST checks, JSON, TOML, and YAML validation, as well as Ruff for Python linting and formatting. Added custom hooks for linting and formatting Svelte/TypeScript/JavaScript files in the 'ui' directory.
| * | chore: update .gitignore to include additional files and directoriesHsiangNianian2026-01-161-1/+20
| | | | | | | | | | | | Added entries for Python version, Ruff cache, ESLint cache, Svelte build files, Node.js modules, and Python build artifacts to the .gitignore file to improve project cleanliness and prevent unnecessary files from being tracked.
| * | chore: add pyproject.toml and uv.lock for project configuration and dependenciesHsiangNianian2026-01-162-0/+191
|/ / | | | | | | Created a new pyproject.toml file to define the project metadata and dependencies, including pre-commit. Added a uv.lock file to manage package versions and ensure reproducibility.
| * fix(security): Potential fix for code scanning alert no. 3: Cleartext ↵简律纯2026-01-161-5/+1
|/ | | | | logging of sensitive information Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
* Merge pull request #43 from HsiangNianian/security/alert-autofix-6简律纯2026-01-161-0/+2
|\
| * fix(security): Potential fix for code scanning alert no. 6: Workflow does ↵简律纯2026-01-161-0/+2
|/ | | | | not contain permissions Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
* Merge pull request #42 from HsiangNianian/alert-autofix-2简律纯2026-01-161-0/+3
|\
| * fix(security): Potential fix for code scanning alert no. 2: Workflow does ↵简律纯2026-01-161-0/+3
|/ | | | | not contain permissions Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
* style: auto format and lint fix [skip ci]HsiangNianian2026-01-1615-299/+311
|
* Merge pull request #40 from NtskwK/main简律纯2026-01-164-3/+243
|\
| * fix(ci): Enhance GitHub Actions workflow with lint and format简律纯2026-01-161-1/+10
| | | | | | Add linting and formatting checks to workflow.
| * chore(ci): Rename workflow from 'UI Auto Fix' to 'UI Auto Lint'简律纯2026-01-161-1/+4
| |
| * refactor(ci): Refactor lint workflow for auto fixes on push简律纯2026-01-161-66/+17
| | | | | | Updated the lint workflow to automatically fix issues on push to main or dev branches. Changed the checkout action version and adjusted the commit message for auto commits.
| * chore: add UI linter workflow with oxlint and oxfmtNtskwK2026-01-164-2/+279
|/
* Merge pull request #37 from ↵简律纯2026-01-163-24/+24
|\ | | | | | | | | HsiangNianian/dependabot/npm_and_yarn/ui/npm_and_yarn-6ef000e261 chore(deps-dev): bump svelte from 5.46.3 to 5.46.4 in /ui in the npm_and_yarn group across 1 directory
| * chore(deps-dev): bump sveltedependabot[bot]2026-01-163-24/+24
|/ | | | | | | | | | | | | | | | | | | Bumps the npm_and_yarn group with 1 update in the /ui directory: [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte). Updates `svelte` from 5.46.3 to 5.46.4 - [Release notes](https://github.com/sveltejs/svelte/releases) - [Changelog](https://github.com/sveltejs/svelte/blob/main/packages/svelte/CHANGELOG.md) - [Commits](https://github.com/sveltejs/svelte/commits/svelte@5.46.4/packages/svelte) --- updated-dependencies: - dependency-name: svelte dependency-version: 5.46.4 dependency-type: direct:development dependency-group: npm_and_yarn ... Signed-off-by: dependabot[bot] <support@github.com>
* Merge pull request #36 from ↵简律纯2026-01-162-20/+95
|\ | | | | | | | | HsiangNianian/dependabot/npm_and_yarn/ui/npm_and_yarn-1b92d517bd chore(deps): bump devalue from 5.6.1 to 5.6.2 in /ui in the npm_and_yarn group across 1 directory
| * chore(deps): bump devaluedependabot[bot]2026-01-152-20/+95
|/ | | | | | | | | | | | | | | | | | | Bumps the npm_and_yarn group with 1 update in the /ui directory: [devalue](https://github.com/sveltejs/devalue). Updates `devalue` from 5.6.1 to 5.6.2 - [Release notes](https://github.com/sveltejs/devalue/releases) - [Changelog](https://github.com/sveltejs/devalue/blob/main/CHANGELOG.md) - [Commits](https://github.com/sveltejs/devalue/compare/v5.6.1...v5.6.2) --- updated-dependencies: - dependency-name: devalue dependency-version: 5.6.2 dependency-type: indirect dependency-group: npm_and_yarn ... Signed-off-by: dependabot[bot] <support@github.com>
* Merge pull request #34 from fu050409/chore/vsc-config简律纯2026-01-162-1/+1
|\ | | | | chore(vscode): move `.vscode` to project root
| * chore(lint): fix code lint苏向夜2026-01-151-37/+37
| |
| * chore(vscode): move `.vscode` to project root苏向夜2026-01-152-37/+37
|/
* Merge pull request #31 from HsiangNianian/dev简律纯2026-01-150-0/+0
|\
* | feat: Add interactive Saturn effect controls in HomeView and enhance ↵HsiangNianian2026-01-153-5/+226
| | | | | | | | ParticleBackground for external mouse handling
* | chore: Bump version to 0.1.23 in Cargo.toml and tauri.conf.json for releasev0.1.23HsiangNianian2026-01-152-2/+2
| |
* | feat: Enhance Forge installation process by fetching installer manifest and ↵HsiangNianian2026-01-152-60/+286
| | | | | | | | improving library management for better compatibility