Skip to content

Conversation

@rubiin
Copy link
Owner

@rubiin rubiin commented Dec 29, 2025

Description

Linked Issues

Additional context

BREAKING CHANGE
@gemini-code-assist
Copy link
Contributor

Summary of Changes

Hello @rubiin, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request, titled 'Next Major Version', introduces a significant overhaul by migrating the project's configuration and theme files from JSON to TOML format. This change impacts file handling, documentation, and the internal logic for reading and writing configurations. Alongside this core migration, the PR includes numerous styling improvements, refactoring of UI components, dependency updates, and general code cleanup to prepare the codebase for its next major release, aiming for enhanced maintainability and a more streamlined user experience.

Highlights

  • Configuration File Migration: The project has migrated its configuration and theme files from JSON (.json) to TOML (.toml) format, affecting various scripts, documentation, and core logic.
  • Styling Refinements and Mixins: Several SCSS files have been updated to introduce new mixins for consistent styling of icons and labels, and to refactor quick settings sliders and dialog elements.
  • Dependency Updates: Documentation dependencies for Astro have been updated to newer versions.
  • Settings GUI Enhancements: The settings graphical user interface now includes a dedicated tab for layout configuration and uses TOML for saving changes, along with improved notification handling.
  • Codebase Cleanup and Consistency: Various modules have been refactored to remove redundant imports, centralize common regex patterns, and improve variable usage for better maintainability.

🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request introduces a significant and well-executed migration from JSON to TOML for configuration files, which greatly improves their readability and maintainability. The changes are comprehensive, touching upon configuration loading, file watching, documentation, and helper utilities. Additionally, the PR includes valuable code quality improvements, such as centralizing constants and refactoring SCSS to use mixins for better reusability. My review includes one minor suggestion to replace a debug print statement with a proper logger call for consistency.

if module_options.get("overview", {}).get("enabled", False):
from modules.overview import OverViewOverlay

print("Adding overview")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

This print() statement appears to be for debugging purposes. It is recommended to use the logger for all logging to maintain consistency and control over log output, preventing debug messages from appearing in the standard output for end-users.

Suggested change
print("Adding overview")
logger.info("[Main] Adding overview module")

ruwusty and others added 3 commits January 2, 2026 20:21
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: CatNowBlue <43247023+raluvy95@users.noreply.github.com>
Co-authored-by: Rubin Bhandari <roobin.bhandari@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants