How to Change the Author Name of Your Odoo App on Odoo App Store (Step-by-Step Guide)
Introduction:
If you’ve published an app on the Odoo App Store and want to update the author name displayed (e.g., from John Doe to Mehedi Khan), this guide will show you exactly how to do it. Whether you’ve rebranded, collaborated with new developers, or simply want a fresh start, changing the author name in Odoo is simple but requires a few precise steps.
Step 1: Update the __manifest__.py
File
The __manifest__.py
file is the metadata file for your Odoo module. It contains important details like the app name, description, and author name.
Example:
- Open your module directory where the
__manifest__.py
file is located. - Locate the
author
field. - Update the value of the
author
field to your desired name.
{
'name': 'Awesome App',
'version': '1.0',
'author': 'Mehedi Khan', # Updated author name
'category': 'Tools',
'summary': 'A goes to your odoo short description of the app.',
'description': """
This app provides awesome features for your Odoo setup.
""",
'depends': ['base'],
'installable': True,
'application': True,
}
Step 2: Commit and Push Your Changes
If your app is hosted on a version control platform like GitHub, you need to commit and push your changes.
Steps to Commit Changes (Using Git):
- Open a terminal in your app’s directory.
- Run the following commands:
git add __manifest__.py
git commit -m "Updated author name to Mehedi Khan"
git push origin main # Replace `main` with your branch name with your odoo version
Step 3: Sync Your App on the Odoo App Store
The Odoo App Store automatically syncs with the repository linked to your app. After pushing the changes:
- Log in to the Odoo App Store.
- Navigate to your app’s dashboard.
- If the new name doesn’t appear immediately, click the Update Module button or wait for the next scheduled sync.
Step 4: Verify the Change
Once synced, visit your app’s page on the Odoo App Store. The author name should now reflect the new name, Mehedi Khan.
Common Issues and Fixes
- The author name doesn’t update:
- Ensure that you’ve pushed the changes to the correct git branch.
- Double-check the
__manifest__.py
file for syntax errors.
2. Manual Override Required:
- If the name still doesn’t update, contact Odoo Support. Provide your app name, app link, and the desired author name what you want.
Bonus: Customize the README File
For consistency, update the README.md
file in your app repository. This file is displayed on the Odoo App Store and provides additional details about your module.
Example:
# Awesome App
Author: Mehedi Khan
## Features
- Feature 1
- Feature 2
- Feature 3
## Installation
1. Download the module.
2. Install via the Odoo app dashboard.
Conclusion:
Changing the author name on the Odoo App Store is a simple yet crucial step in maintaining your branding. By following this guide, you can ensure your app reflects your identity or your team’s collaboration.