-
Notifications
You must be signed in to change notification settings - Fork 56
chore: rename to evolve #607
Conversation
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Summary of Changes
Hello @tac0turtle, 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 executes a full rebrand of the project from 'Rollkit' to 'Evolve'. It involves a sweeping update across all documentation, configuration files, and visual assets to introduce a new brand identity and messaging, aiming to provide a clearer and more impactful representation of the project's purpose and capabilities.
Highlights
- Comprehensive Rebranding: The project has undergone a complete rebrand from 'Rollkit' to 'Evolve', affecting all public-facing documentation, internal configurations, and code references. This includes updating names, descriptions, and URLs to align with the new brand identity.
- Documentation Overhaul: All guides, learn sections, and introductory pages have been extensively updated to reflect the 'Evolve' branding. This includes revised vision statements, strategic positioning, and problem-solving narratives, emphasizing 'Launch Fast. Build Your Own Network.'.
- Configuration and Script Updates: Key configuration files such as
.vitepress/config.tsand.vitepress/constants/constants.jshave been modified to use 'Evolve' related names, URLs, and paths. Various command-line examples and scripts within the guides have also been updated to reflect the new naming conventions (e.g.,--rollkit.daflags becoming--evolve.da). A new.gitignoreentry for./newwas added, likely for new brand assets. - Visual Identity Refresh: The website's visual identity has been significantly updated in
.vitepress/theme/style.css. This includes a new brand color palette (shifting from blue to red/pink), new typography, and extensive homepage layout adjustments such as a grid background, transparent layout components, and updated logo styling to enhance the new brand aesthetic. - New Brand Narrative Document: A new markdown file,
new/new.md, has been added. This document serves as the central source for the 'EVOLVE: Rebrand for Rollkit' strategy, detailing the brand narrative, naming architecture (e.g.,ev-node,ev-reth), messaging framework, visual elements, and a comprehensive launch plan.
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 in your pull request via creating an issue comment (i.e. comment on the pull request page) using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands.
| 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 issue 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 or fill out our survey to provide feedback.
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
-
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. ↩
There was a problem hiding this 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 executes a large-scale rebranding from "Rollkit" to "Evolve". The changes are extensive, touching documentation, configuration, and styling. While the renaming is mostly consistent, I've found a few issues that need attention. These include a potentially leaked internal document, some CSS practices that could hinder maintainability, and a typo in an interface definition in the documentation. Addressing these points will improve the overall quality of this rebranding effort.
.vitepress/constants/constants.js
Outdated
| evolveLatestTag: "v1.0.0-beta.1", | ||
| evolveLatestSha: "cd1970de", | ||
| evolveCosmosSDKVersion: "v0.50.6-evolve-v0.13.3-no-fraud-proofs", | ||
| evolveIgniteAppVersion: "evolve/v0.2.1", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
rollkit/v0.3.0
a new tag will happen once the re-branded components have properly updated (ev-node / ev-abci, etc..): ignite/apps#220
.vitepress/constants/constants.js
Outdated
| rollkitLatestSha: "cd1970de", | ||
| rollkitCosmosSDKVersion: "v0.50.6-rollkit-v0.13.3-no-fraud-proofs", | ||
| rollkitIgniteAppVersion: "rollkit/v0.2.1", | ||
| evolveLatestTag: "v1.0.0-beta.1", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| evolveLatestTag: "v1.0.0-beta.1", | |
| evolveLatestTag: "v1.0.0-beta.2", |
shouldn't it be evNodeLatestTag?
.vitepress/constants/constants.js
Outdated
| rollkitIgniteAppVersion: "rollkit/v0.2.1", | ||
| evolveLatestTag: "v1.0.0-beta.1", | ||
| evolveLatestSha: "cd1970de", | ||
| evolveCosmosSDKVersion: "v0.50.6-evolve-v0.13.3-no-fraud-proofs", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
to revert as well. however, i wonder where this is used. you can use normal sdk
.vitepress/config.ts
Outdated
|
|
||
| editLink: { | ||
| pattern: "https://github.com/rollkit/docs/edit/main/:path", | ||
| pattern: "https://github.com/evolve/docs/edit/main/:path", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
repo is wrong here
.vitepress/config.ts
Outdated
| { icon: "twitter", link: "https://twitter.com/RollkitDev" }, | ||
| { icon: { svg: telegramSVG }, link: "https://t.me/rollkit" }, | ||
| { icon: "github", link: "https://github.com/evolve/evolve" }, | ||
| { icon: "twitter", link: "https://twitter.com/EvolveDev" }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is that claimed already?
.vitepress/config.ts
Outdated
| { icon: "github", link: "https://github.com/rollkit/rollkit" }, | ||
| { icon: "twitter", link: "https://twitter.com/RollkitDev" }, | ||
| { icon: { svg: telegramSVG }, link: "https://t.me/rollkit" }, | ||
| { icon: "github", link: "https://github.com/evolve/evolve" }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wrong repo
.vitepress/config.ts
Outdated
| { icon: { svg: telegramSVG }, link: "https://t.me/rollkit" }, | ||
| { icon: "github", link: "https://github.com/evolve/evolve" }, | ||
| { icon: "twitter", link: "https://twitter.com/EvolveDev" }, | ||
| { icon: { svg: telegramSVG }, link: "https://t.me/evolve" }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wrong as well
Overview