Skip to content

Commit da3f11f

Browse files
authored
Merge pull request #326 from shreesh-webkul/qlo-changelog-update
Changelog and Version update for QloApps 1.5.2
2 parents 63031e6 + 068de22 commit da3f11f

53 files changed

Lines changed: 385 additions & 25 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.txt

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,90 @@
1+
####################################
2+
# V1.5.2
3+
####################################
4+
5+
## Added Features:
6+
- #264: Added SECURITY.md file.
7+
- #313: Update for module upgrade and suggestion
8+
9+
10+
## Improvements:
11+
- core
12+
- #240: Updated TCPDF library
13+
- #242: Changes for PHP7 compatibility
14+
- #243: Removed pclzip library
15+
- #244: Removed pear JSON lib instead use PHP JSON library
16+
- #245: Updated swift mailer
17+
- #246: Updated htmlpurifier
18+
- #247: Updated Smarty library
19+
- #249: Updated Sql Parser Library
20+
- #250: Updated Pear and Archive tar library
21+
- #267: Removed mysql support, pdomysql now required
22+
- #269: Replaced mcrypt with openssl
23+
- #272: Changed default DB prefix to qlo_
24+
- #276: Paypal and PaypalUSA module removed
25+
- #290: Updated path for including css and js in modules | Moved plugins to core js folder
26+
- #299: Added composer.json file
27+
28+
- Front Office:
29+
- #296: Improved Social Sharing module
30+
- #316: Display Room Capacity on room type detail page
31+
32+
- Back Office
33+
- #297: Changed import button icon on Localization page
34+
- #310: Dashboard improvement
35+
- #327: Resolved QloApps dashboard issues
36+
37+
38+
## Bug Fixed:
39+
- core:
40+
- #238: Update date format in invoice according to format provided in language
41+
- #253: Using room status as constants instead in values
42+
- #270: Using room availability status as constants instead in values
43+
- #273: Fixed date format for additional facilities in invoice
44+
- #281: Resolved smarty html comments issue.
45+
- #283: Invalid value inserted in 'special_days' field in htl_room_type_feature_pricing table through API
46+
- #284: Resolved: No validation for the fields in 'hotel_refund_rules' API for add and update.
47+
- #285: Resolved: No validation for the fields in 'hotel_features' API for add and update
48+
- #286: Validations added for 'password' and 'email' fields for the 'employees' API.
49+
- #287: Resolved fatal error while generating class index file
50+
- #288: Resolved: No validation for field 'id_parent in' in 'categories' API.
51+
- #289: Validations added to the fields of "bookings" API for POST / PUT API requests
52+
- #307: Cart and Order API Issues resolved
53+
- #312: Text issues solved
54+
- #321: Fixed QloApps installation issues
55+
- #324: Resolved compatibility issue with php5.6
56+
57+
- Back Office:
58+
- #255: Fixed filter by Due amount results in "Bad SQL query"
59+
- #259: Fixed room reallocation availability list for temporary unavailable rooms
60+
- #256: Fixed Swap rooms leads to reservations duplications
61+
- #251: Removed unused options from images controller
62+
- #271: Fixed syntax issue in admin information cont
63+
- #275: Resolve order total update issue on additional facilities update
64+
- #282: Order refund states 'Refunded' and 'Denied' should not enabled together from render list
65+
- #293: Add profile access restriction when adding room types
66+
- #294: Resolve order edit issues, Added hooks in order edit process
67+
- #303: In 'Manage Hotel' Controller, validation added for 'check-out time must be before check in'
68+
- #304, #315: Text change.
69+
- #318: Resolve multiple rooms addition issue on AdminOrdersController
70+
- #320: Resolved new room features automatically mapping to all the room types
71+
72+
- Front Office:
73+
- #252: Update function getRoomBookingData
74+
- #268: Update blockrss module
75+
- #277: In _DB_PREFIX__orders table column advance_paid_amount value is wrong
76+
- #280: Wrong amount displayed in Order confirmation page in the payment gateways PaymentReturn Hook
77+
- #291: Resolved: Wrong price return by advance payment functions in HotelAdvancedPayment class
78+
- #295: Resolve DNI field issue during guest checkout
79+
- #298, #274: QloApps text changes
80+
- #300: Room amenities name shown with feature icon in room type details page
81+
- #301: Unused CSS file htl-reservation-general.css and its classes are removed
82+
- #302: Resolved: On translating page checking and checkout dates are changed to NaN-NaN-NaN
83+
- #305: Resolve tab design issue on room type detail page
84+
- #317: Resolve jQZoom issue on room type detail page
85+
- #319: Resolved smarty minify HTML issue
86+
87+
188
####################################
289
# V1.5.1
390
####################################

install/install_version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@
2525
*/
2626

2727
define('_PS_INSTALL_VERSION_', '1.6.1.23');
28-
define('_QLO_INSTALL_VERSION_', '1.5.1.0');
28+
define('_QLO_INSTALL_VERSION_', '1.5.2.0');

modules/bankwire/CHANGELOG.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
------------------------------
2+
# V1.1.3 to V1.1.4
3+
------------------------------
4+
5+
## Improved/Changed Features:
6+
7+
* [CO] : [#280] Fixed wrong amount in the payment gateway PaymentReturn Hook.
8+
* [FO] : [#301] Unused classes removed
9+
10+
111
------------------------------
212
# V1.1.2 to V1.1.3
313
------------------------------

modules/bankwire/bankwire.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public function __construct()
4141
{
4242
$this->name = 'bankwire';
4343
$this->tab = 'payments_gateways';
44-
$this->version = '1.1.3';
44+
$this->version = '1.1.4';
4545
$this->author = 'PrestaShop';
4646
$this->controllers = array('payment', 'validation');
4747
$this->is_eu_compatible = 1;

modules/blockcart/CHANGELOG.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
-----------------------------
2+
# V1.6.3 to V1.6.4
3+
-----------------------------
4+
5+
## Improved/Changed Features:
6+
7+
* [FO] : [#304] Text changes
8+
* [CO] : [#281] Optimized ajax cart functions, new function ajaxcart.update added
9+
* [CO] : [#281] Updated assignContentVars function, now function returns json encoded content without fetching from tpl
10+
* [CO] : [#244] Changed Tools::jsonEncode to json_encode
11+
12+
113
-----------------------------
214
# V1.6.2 to V1.6.3
315
-----------------------------

modules/blockcart/blockcart.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function __construct()
3434
{
3535
$this->name = 'blockcart';
3636
$this->tab = 'front_office_features';
37-
$this->version = '1.6.3';
37+
$this->version = '1.6.4';
3838
$this->author = 'PrestaShop';
3939
$this->need_instance = 0;
4040

modules/blockcategories/CHANGELOG.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
-----------------------------
2+
# V2.9.4 to V2.9.5
3+
-----------------------------
4+
5+
## Improved/Changed Features:
6+
7+
* [CO] : [#244] Changed Tools::jsonEncode to json_encode
8+
9+
110
2014-04-22 18:56:57 +0200 // Changelog updated
211
2014-04-01 14:17:21 +0200 // blockcategories new module version
312
2014-03-27 11:46:01 +0100 // follow up #PSCSX-1405 again

modules/blockcategories/blockcategories.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public function __construct()
3333
{
3434
$this->name = 'blockcategories';
3535
$this->tab = 'front_office_features';
36-
$this->version = '2.9.4';
36+
$this->version = '2.9.5';
3737
$this->author = 'PrestaShop';
3838

3939
$this->bootstrap = true;

modules/blocklayered/CHANGELOG.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
-----------------------------
2+
# V2.1.2 to V2.1.3
3+
-----------------------------
4+
5+
## Improved/Changed Features:
6+
7+
* [CO] : [#244] Changed Tools::jsonEncode to json_encode
8+
* [CO] : [#242] PHP7 compatibility changes
9+
10+
111
2014-04-22 18:57:17 +0200 // Changelog updated
212
2014-04-17 15:49:24 +0200 [-] MO : Blocklayered - FixBug #PSCSX-1505
313
2014-04-17 12:21:18 +0200 [-] MO : Blocklayered - FixBug #PSCSX-1337

modules/blocklayered/blocklayered.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public function __construct()
3737
{
3838
$this->name = 'blocklayered';
3939
$this->tab = 'front_office_features';
40-
$this->version = '2.1.2';
40+
$this->version = '2.1.3';
4141
$this->author = 'PrestaShop';
4242
$this->need_instance = 0;
4343
$this->bootstrap = true;

0 commit comments

Comments
 (0)