How to Change the Author Name of Your Odoo App on Odoo App Store (Step-by-Step Guide)

Mehedi Khan
3 min readNov 21, 2024

--

How to Change the Author Name of Your Odoo App on Odoo App Store

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:

  1. Open your module directory where the __manifest__.py file is located.
  2. Locate the author field.
  3. 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):

  1. Open a terminal in your app’s directory.
  2. 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:

  1. Log in to the Odoo App Store.
  2. Navigate to your app’s dashboard.
  3. 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

  1. 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.

Thank you for reading! If you notice any kind of mistakes or have suggestions for improvement, please leave a comment below.

If you helpful this post, please click the 👏 button to help others discover it. You can also follow me on:

GitHub | daily.dev | LinkedIn | YouTube

More Libraries

--

--

Mehedi Khan
Mehedi Khan

Written by Mehedi Khan

I'm a Software engineer. I'm comfortable with Python, Django, and Full-stack Web Development. Follow To Support Me On Medium 🫠

No responses yet