From 784aff1007f24dc5e5eadd15661c15a26c9c9241 Mon Sep 17 00:00:00 2001 From: Suherdy Yacob Date: Tue, 20 Jan 2026 16:05:05 +0700 Subject: [PATCH] feat: Update manifest version to 19.0.1.0.1, remove the website field, and add a .gitignore file. update module to Odoo 19.0 --- .gitignore | 15 +++++++++++++++ __manifest__.py | 3 +-- 2 files changed, 16 insertions(+), 2 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0764234 --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class + +# OS +.DS_Store +Thumbs.db + +# Editor +.vscode/ +.idea/ + +# Odoo +*.pot diff --git a/__manifest__.py b/__manifest__.py index fc9ee65..18d401a 100644 --- a/__manifest__.py +++ b/__manifest__.py @@ -10,10 +10,9 @@ Adds a checkbox to list view group headers allowing rapid selection or deselection of all records within a group, including nested sub-groups. Compatible with all standard bulk operations (Export, Archive, Delete, etc.). """, - "version": "17.0.1.0.1", + "version": "19.0.1.0.1", "category": "Web", "author": "Suherdy Yacob", - "website": "https://www.example.com", "license": "LGPL-3", "depends": ["web"], "data": [],