From b55f10ae647ce6ae4cb20da259b4f3084620d14a Mon Sep 17 00:00:00 2001 From: Parthiv Date: Thu, 1 Nov 2018 10:52:32 +0530 Subject: [PATCH] [REL] Flectra v1.5 Rufous --- CHANGELOG.md | 25 +++++++++++++++++++++++++ flectra/addons/base/__manifest__.py | 2 +- flectra/release.py | 2 +- 3 files changed, 27 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8bcf3d2a..4242e3b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,31 @@ As Flectra Team is working on Odoo's fork. It is team's responsibilities to main This changelog contains things those are improved version by version and also things those are not identical with Odoo. So, users can consider this **CHANGELOG** to find the differences between **Flectra** and **Odoo(Community Edition)**. +Introduction + +## [1.5.0] - Rufous - 2018-10-31 +### Added + +- One Click App Install +- Email Digest +- United Arab Emirates (UAE) Accounting Localization +- Automated Abandon Cart Recovery +- Inter-Company Transaction (Extra Addons) +- Email Validation (Extra Addons) + +### Fixes +- #95 Installation issue with Linux Mint 19 +- #98 Helpdesk module: Related Partner field changes user_id name and Related Partner +- #99 Hide Helpdesk Issue Form page for not logged in visitors +- #100 Portal User has no rights to access /my/ticket page +- #104 Incorrect layout for billing orders +- #105 Flectra Client Error: TypeError: Cannot read property 'id' of undefined +- #107 Documentation Link Fix +- #126, #131 Multi-Company Multi Accounting plan +- #132 multiple shipment issue with PO +- #134 oauth data error +- #164 Wrong order of taxes in quotation + ## [1.4.0] - Lucifer - 2018-08-07 ### Added diff --git a/flectra/addons/base/__manifest__.py b/flectra/addons/base/__manifest__.py index 49234adc..492e153f 100644 --- a/flectra/addons/base/__manifest__.py +++ b/flectra/addons/base/__manifest__.py @@ -5,7 +5,7 @@ { 'name': 'Base', 'author': 'Odoo S.A', - 'version': '1.4', + 'version': '1.5', 'category': 'Hidden', 'description': """ The kernel of Odoo, needed for all installation. diff --git a/flectra/release.py b/flectra/release.py index b9061e84..89925924 100644 --- a/flectra/release.py +++ b/flectra/release.py @@ -12,7 +12,7 @@ RELEASE_LEVELS_DISPLAY = {ALPHA: ALPHA, # properly comparable using normal operarors, for example: # (6,1,0,'beta',0) < (6,1,0,'candidate',1) < (6,1,0,'candidate',2) # (6,1,0,'candidate',2) < (6,1,0,'final',0) < (6,1,2,'final',0) -version_info = (1, 4, 0, FINAL, 0, '') +version_info = (1, 5, 0, FINAL, 0, '') version = '.'.join(str(s) for s in version_info[:2]) + RELEASE_LEVELS_DISPLAY[version_info[3]] + str(version_info[4] or '') + version_info[5] series = serie = major_version = '.'.join(str(s) for s in version_info[:2])