Skip to content

Commit

Permalink
Merge pull request #326 from shreesh-webkul/qlo-changelog-update
Browse files Browse the repository at this point in the history
Changelog and Version update for QloApps 1.5.2
  • Loading branch information
rohit053 authored Feb 10, 2022
2 parents 63031e6 + 068de22 commit da3f11f
Show file tree
Hide file tree
Showing 53 changed files with 385 additions and 25 deletions.
87 changes: 87 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,90 @@
####################################
# V1.5.2
####################################

## Added Features:
- #264: Added SECURITY.md file.
- #313: Update for module upgrade and suggestion


## Improvements:
- core
- #240: Updated TCPDF library
- #242: Changes for PHP7 compatibility
- #243: Removed pclzip library
- #244: Removed pear JSON lib instead use PHP JSON library
- #245: Updated swift mailer
- #246: Updated htmlpurifier
- #247: Updated Smarty library
- #249: Updated Sql Parser Library
- #250: Updated Pear and Archive tar library
- #267: Removed mysql support, pdomysql now required
- #269: Replaced mcrypt with openssl
- #272: Changed default DB prefix to qlo_
- #276: Paypal and PaypalUSA module removed
- #290: Updated path for including css and js in modules | Moved plugins to core js folder
- #299: Added composer.json file

- Front Office:
- #296: Improved Social Sharing module
- #316: Display Room Capacity on room type detail page

- Back Office
- #297: Changed import button icon on Localization page
- #310: Dashboard improvement
- #327: Resolved QloApps dashboard issues


## Bug Fixed:
- core:
- #238: Update date format in invoice according to format provided in language
- #253: Using room status as constants instead in values
- #270: Using room availability status as constants instead in values
- #273: Fixed date format for additional facilities in invoice
- #281: Resolved smarty html comments issue.
- #283: Invalid value inserted in 'special_days' field in htl_room_type_feature_pricing table through API
- #284: Resolved: No validation for the fields in 'hotel_refund_rules' API for add and update.
- #285: Resolved: No validation for the fields in 'hotel_features' API for add and update
- #286: Validations added for 'password' and 'email' fields for the 'employees' API.
- #287: Resolved fatal error while generating class index file
- #288: Resolved: No validation for field 'id_parent in' in 'categories' API.
- #289: Validations added to the fields of "bookings" API for POST / PUT API requests
- #307: Cart and Order API Issues resolved
- #312: Text issues solved
- #321: Fixed QloApps installation issues
- #324: Resolved compatibility issue with php5.6

- Back Office:
- #255: Fixed filter by Due amount results in "Bad SQL query"
- #259: Fixed room reallocation availability list for temporary unavailable rooms
- #256: Fixed Swap rooms leads to reservations duplications
- #251: Removed unused options from images controller
- #271: Fixed syntax issue in admin information cont
- #275: Resolve order total update issue on additional facilities update
- #282: Order refund states 'Refunded' and 'Denied' should not enabled together from render list
- #293: Add profile access restriction when adding room types
- #294: Resolve order edit issues, Added hooks in order edit process
- #303: In 'Manage Hotel' Controller, validation added for 'check-out time must be before check in'
- #304, #315: Text change.
- #318: Resolve multiple rooms addition issue on AdminOrdersController
- #320: Resolved new room features automatically mapping to all the room types

- Front Office:
- #252: Update function getRoomBookingData
- #268: Update blockrss module
- #277: In _DB_PREFIX__orders table column advance_paid_amount value is wrong
- #280: Wrong amount displayed in Order confirmation page in the payment gateways PaymentReturn Hook
- #291: Resolved: Wrong price return by advance payment functions in HotelAdvancedPayment class
- #295: Resolve DNI field issue during guest checkout
- #298, #274: QloApps text changes
- #300: Room amenities name shown with feature icon in room type details page
- #301: Unused CSS file htl-reservation-general.css and its classes are removed
- #302: Resolved: On translating page checking and checkout dates are changed to NaN-NaN-NaN
- #305: Resolve tab design issue on room type detail page
- #317: Resolve jQZoom issue on room type detail page
- #319: Resolved smarty minify HTML issue


####################################
# V1.5.1
####################################
Expand Down
2 changes: 1 addition & 1 deletion install/install_version.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@
*/

define('_PS_INSTALL_VERSION_', '1.6.1.23');
define('_QLO_INSTALL_VERSION_', '1.5.1.0');
define('_QLO_INSTALL_VERSION_', '1.5.2.0');
10 changes: 10 additions & 0 deletions modules/bankwire/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
------------------------------
# V1.1.3 to V1.1.4
------------------------------

## Improved/Changed Features:

* [CO] : [#280] Fixed wrong amount in the payment gateway PaymentReturn Hook.
* [FO] : [#301] Unused classes removed


------------------------------
# V1.1.2 to V1.1.3
------------------------------
Expand Down
2 changes: 1 addition & 1 deletion modules/bankwire/bankwire.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function __construct()
{
$this->name = 'bankwire';
$this->tab = 'payments_gateways';
$this->version = '1.1.3';
$this->version = '1.1.4';
$this->author = 'PrestaShop';
$this->controllers = array('payment', 'validation');
$this->is_eu_compatible = 1;
Expand Down
12 changes: 12 additions & 0 deletions modules/blockcart/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
-----------------------------
# V1.6.3 to V1.6.4
-----------------------------

## Improved/Changed Features:

* [FO] : [#304] Text changes
* [CO] : [#281] Optimized ajax cart functions, new function ajaxcart.update added
* [CO] : [#281] Updated assignContentVars function, now function returns json encoded content without fetching from tpl
* [CO] : [#244] Changed Tools::jsonEncode to json_encode


-----------------------------
# V1.6.2 to V1.6.3
-----------------------------
Expand Down
2 changes: 1 addition & 1 deletion modules/blockcart/blockcart.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function __construct()
{
$this->name = 'blockcart';
$this->tab = 'front_office_features';
$this->version = '1.6.3';
$this->version = '1.6.4';
$this->author = 'PrestaShop';
$this->need_instance = 0;

Expand Down
9 changes: 9 additions & 0 deletions modules/blockcategories/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
-----------------------------
# V2.9.4 to V2.9.5
-----------------------------

## Improved/Changed Features:

* [CO] : [#244] Changed Tools::jsonEncode to json_encode


2014-04-22 18:56:57 +0200 // Changelog updated
2014-04-01 14:17:21 +0200 // blockcategories new module version
2014-03-27 11:46:01 +0100 // follow up #PSCSX-1405 again
Expand Down
2 changes: 1 addition & 1 deletion modules/blockcategories/blockcategories.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function __construct()
{
$this->name = 'blockcategories';
$this->tab = 'front_office_features';
$this->version = '2.9.4';
$this->version = '2.9.5';
$this->author = 'PrestaShop';

$this->bootstrap = true;
Expand Down
10 changes: 10 additions & 0 deletions modules/blocklayered/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
-----------------------------
# V2.1.2 to V2.1.3
-----------------------------

## Improved/Changed Features:

* [CO] : [#244] Changed Tools::jsonEncode to json_encode
* [CO] : [#242] PHP7 compatibility changes


2014-04-22 18:57:17 +0200 // Changelog updated
2014-04-17 15:49:24 +0200 [-] MO : Blocklayered - FixBug #PSCSX-1505
2014-04-17 12:21:18 +0200 [-] MO : Blocklayered - FixBug #PSCSX-1337
Expand Down
2 changes: 1 addition & 1 deletion modules/blocklayered/blocklayered.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function __construct()
{
$this->name = 'blocklayered';
$this->tab = 'front_office_features';
$this->version = '2.1.2';
$this->version = '2.1.3';
$this->author = 'PrestaShop';
$this->need_instance = 0;
$this->bootstrap = true;
Expand Down
9 changes: 9 additions & 0 deletions modules/blocknavigationmenu/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
-----------------------------
# V1.1.0 to V1.1.1
-----------------------------

## Improved/Changed Features:

[*] FO : [#290] Using $this->_path for including css and js


-----------------------------
# V1.0.1 to V1.1.0
-----------------------------
Expand Down
2 changes: 1 addition & 1 deletion modules/blocknavigationmenu/blocknavigationmenu.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function __construct()
{
$this->name = 'blocknavigationmenu';
$this->tab = 'front_office_features';
$this->version = '1.1.0';
$this->version = '1.1.1';
$this->author = 'webkul';
$this->need_instance = 0;

Expand Down
9 changes: 9 additions & 0 deletions modules/blockrss/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
-----------------------------
# V1.3.2 to V1.3.3
-----------------------------

## Improved/Changed Features:

* [CO] : [#268] Added xml parser library in module.


2014-04-22 18:57:39 +0200 // Changelog updated
2014-03-24 11:43:28 +0100 / MO blockrss : ps_versions_compliancy modified (1.5.6.1 => 1.6)
2014-03-24 11:03:34 +0100 // MO blockrss/ : ps_versions_compliancy added
Expand Down
2 changes: 1 addition & 1 deletion modules/blockrss/blockrss.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function __construct()
$this->displayName = $this->l('RSS feed block');
$this->description = $this->l('Adds a block displaying a RSS feed.');

$this->version = '1.3.2';
$this->version = '1.3.3';
$this->author = 'PrestaShop';
$this->error = false;
$this->valid = false;
Expand Down
9 changes: 9 additions & 0 deletions modules/blockwishlist/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
-----------------------------
# V1.3.1 to V1.3.2
-----------------------------

## Improved/Changed Features:

* [CO] : [#244] Changed Tools::jsonEncode to json_encode


2014-04-22 14:58:26 +0200 // blockwishlist: attempt at better wording.
2014-04-07 12:22:33 +0200 // managewishlist: better wording.
2014-03-25 10:21:04 +0100 [-] : Blockwishlist Fix bug #PSCSX-654, could not delete a wishlist
Expand Down
2 changes: 1 addition & 1 deletion modules/blockwishlist/blockwishlist.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function __construct()
{
$this->name = 'blockwishlist';
$this->tab = 'front_office_features';
$this->version = '1.3.1';
$this->version = '1.3.2';
$this->author = 'PrestaShop';
$this->need_instance = 0;

Expand Down
10 changes: 10 additions & 0 deletions modules/cheque/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
------------------------------
# V2.6.4 to V2.6.5
------------------------------

## Improved/Changed Features:

* [CO] : [#280] Fixed wrong amount in the payment gateway PaymentReturn Hook.
* [FO] : [#301] Unused classes removed


------------------------------
# V2.6.3 to V2.6.4
------------------------------
Expand Down
2 changes: 1 addition & 1 deletion modules/cheque/cheque.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function __construct()
{
$this->name = 'cheque';
$this->tab = 'payments_gateways';
$this->version = '2.6.4';
$this->version = '2.6.5';
$this->author = 'PrestaShop';
$this->controllers = array('payment', 'validation');
$this->is_eu_compatible = 1;
Expand Down
10 changes: 10 additions & 0 deletions modules/dashactivity/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
------------------------------
# V1.0.0 to V1.0.1
------------------------------

## Improved/Changed Features:

* [BO] : [#310] Updated Activity Overview section
* [BO] : [#310] Removed notifications section.


------------------------------
# V0.5.0 to V1.0.0
------------------------------
Expand Down
2 changes: 1 addition & 1 deletion modules/dashactivity/dashactivity.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function __construct()
{
$this->name = 'dashactivity';
$this->tab = 'dashboard';
$this->version = '1.0.0';
$this->version = '1.0.1';
$this->author = 'PrestaShop';
$this->push_filename = _PS_CACHE_DIR_.'push/activity';
$this->allow_push = true;
Expand Down
9 changes: 9 additions & 0 deletions modules/dashgoals/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
------------------------------
# V1.0.0 to V1.0.1
------------------------------

## Improved/Changed Features:

* [BO] : [#310] Updated forcast section design


------------------------------
# V0.6.6 to V1.0.0
------------------------------
Expand Down
9 changes: 9 additions & 0 deletions modules/dashproducts/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
------------------------------
# V1.0.0 to V1.0.1
------------------------------

## Improved/Changed Features:

* [BO] : [#310] Updated sales section


------------------------------
# V0.3.3 to V1.0.0
------------------------------
Expand Down
8 changes: 8 additions & 0 deletions modules/dashtrends/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
------------------------------
# V1.0.0 to V1.0.1
------------------------------

## Improved/Changed Features:

* [BO] : [#310] Updated revenue section design

------------------------------
# V0.7.5 to V1.0.0
------------------------------
Expand Down
9 changes: 9 additions & 0 deletions modules/graphnvd3/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
-----------------------------
# V1.5.1 to V1.5.2
-----------------------------

## Improved/Changed Features:

* [CO] : [#244] Changed Tools::jsonEncode to json_encode


2014-04-22 18:58:39 +0200 // Changelog updated
2014-04-17 11:58:28 +0200 [-] MO : graphnvd3 - Fix 1.5 ps_version_compliancy issue
2014-03-24 15:21:45 +0100 / MO graphnvd3 : ps_versions_compliancy added
Expand Down
2 changes: 1 addition & 1 deletion modules/graphnvd3/graphnvd3.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public function __construct($type = null)

$this->name = 'graphnvd3';
$this->tab = 'administration';
$this->version = '1.5.1';
$this->version = '1.5.2';
$this->author = 'PrestaShop';
$this->need_instance = 0;

Expand Down
9 changes: 9 additions & 0 deletions modules/gridhtml/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
------------------------------
# V1.3.1 to V1.3.2
------------------------------

## Improved/Changed Features:

* [CO] : [#244] Changed Tools::jsonEncode to json_encode


------------------------------
# V1.2.2 to V1.3.1
------------------------------
Expand Down
2 changes: 1 addition & 1 deletion modules/gridhtml/gridhtml.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function __construct($type = null)
{
$this->name = 'gridhtml';
$this->tab = 'administration';
$this->version = '1.3.1';
$this->version = '1.3.2';
$this->author = 'PrestaShop';
$this->need_instance = 0;

Expand Down
Loading

0 comments on commit da3f11f

Please sign in to comment.