[REL] Flectra v1.5 Rufous

This commit is contained in:
Parthiv 2018-11-01 10:52:32 +05:30
parent 35046ba1b9
commit b55f10ae64
3 changed files with 27 additions and 2 deletions

View File

@ -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

View File

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

View File

@ -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])