Brand Configuration for MistWarp
This guide outlines how to configure the branding for your MistWarp mod, including renaming your application and customizing icons and links.
Renaming Your Mod
To rename your mod, update the APP_NAME property in src/lib/brand.js within your fork of the Scratch GUI repository:
module.exports = {
APP_NAME: 'YourModName',
FEEDBACK_URL: 'https://scratch.mit.edu/users/m1stium#comments',
GITHUB_URL: 'https://github.com/MistWarp'
};
You can also update the FEEDBACK_URL and GITHUB_URL to point to your own feedback page or GitHub repository.
After making these changes, save the file and rebuild your project for them to take effect.
Changing the Favicon
To update the favicon used by your mod:
- Prepare your new favicon as an
.icofile. - Navigate to the
static/directory in your fork of the Scratch GUI. - Replace the existing
favicon.icofile with your new icon.
Make sure the new file is named exactly favicon.ico so it will be picked up correctly.
After replacing the file, rebuild your project to apply the changes in the browser.