================================
30 September, 2019 - Version 1.7
================================

-------------------------------------------------------------------------------------------
Backup your theme/style folder and files before applying these updates.
-------------------------------------------------------------------------------------------
The best way is to use a compare tool, like: https://sourceforge.net/projects/kdiff3/files/
and use it to compare the 'folders' (the version you're using with the new version)
-------------------------------------------------------------------------------------------
Updating HTML Templates Requires Manual Work.
-------------------------------------------------------------------------------------------


*. WHMCS template updated to be compatible with latest "WHMCS Version 7.8.3":
-----------------------------------------------------------------------------

    *. New File/Folders Added:
    -------------------
	-> account-paymentmethods-billing-contacts.tpl
	-> account-paymentmethods-manage.tpl
	-> account-paymentmethods.tpl
	-> css/blue.png
	-> css/blue@2x.png
	-> includes/generate-password.tpl
	-> password-reset-change-prompt.tpl
	-> password-reset-container.tpl
	-> password-reset-email-prompt.tpl	
	-> password-reset-security-prompt.tpl
	
        
    *. Files Affected (Need to Replace):
    ------------------
	-> clientareaaddcontact.tpl
	-> clientareachangepw.tpl
	-> clientareacontacts.tpl
	-> clientareacreditcard.tpl
	-> clientareadomaindetails.tpl
	-> clientareainvoices.tpl
	-> clientareaproductdetails.tpl
	-> clientareaquotes.tpl
	-> clientareasecurity.tpl
	-> clientregister.tpl
	-> creditcard.tpl
	-> css/all.css
	-> css/all.min.css
	-> css/invoice.css
	-> css/styles.css
	-> invoicepdf.tpl
	-> js/scripts.js
	-> js/scripts.min.js
	-> js/whmcs.js
	-> login.tpl
	-> masspay.tpl
	-> oauth/login.tpl
	-> pwreset.tpl
	-> store/css/style.css
	-> store/ssl/competitive-upgrade.tpl
	-> store/ssl/dv.tpl
	-> store/ssl/ev.tpl
	-> store/ssl/index.tpl
	-> store/ssl/ov.tpl
	-> store/ssl/shared/certificate-pricing.tpl
	-> store/ssl/shared/features.tpl
	-> store/ssl/shared/logos.tpl
	-> store/ssl/shared/nav.tpl
	-> viewannouncement.tpl
	-> viewinvoice.tpl
	-> viewquote.tpl
	-> viewticket.tpl


	*. File Changes:
	--------------------------
	-> header.tpl
	-----------------------------

		=> Deleted:
		-----------
		Line 337: <input type="submit" name="transfer" class="btn transfer{$captcha->getButtonClass($captchaForm)}" value="{$LANG.domainstransfer}" />

		=> Added:
		---------
		Line 337: <input type="submit" id="btnTransfer" class="btn transfer{$captcha->getButtonClass($captchaForm)}" value="{$LANG.domainstransfer}" />
		
		(After line 327 include new line): <input type="hidden" name="transfer" />
		
	-> footer.tpl
	-----------------------------

		=> Deleted:
		-----------
		Line 162: <p class="copyright--text">Copyright {$date_year} &copy; <a href="#">CloudSky</a>. All Rights Reserved.</p>
		Line 177: <div class="modal-content panel panel-primary">
		Line 181: <span class="sr-only">Close</span>
		Line 183: <h4 class="modal-title">Title</h4>
		Line 186: Loading...
		Line 190: <i class="fas fa-circle-notch fa-spin"></i> Loading...
		Line 193: Close
		Line 196: Submit

		=> Added:
		---------
		Line 162: <p class="copyright--text">{lang key="copyrightFooterNotice" year=$date_year company=$companyname}</p>
		Line 177: <div class="modal-content panel-primary">
		Line 181: <span class="sr-only">{$LANG.close}</span>
		Line 183: <h4 class="modal-title"></h4>
		Line 186: {$LANG.loading}
		Line 190: <i class="fas fa-circle-notch fa-spin"></i>
                {$LANG.loading}
		Line 193: {$LANG.close}
		Line 196: {$LANG.submit}
		(After line 203 include new line): {include file="$template/includes/generate-password.tpl"}

	-> css/theme/overrides-style.css
	---------------------------------
		=> Deleted:
		-----------
		Line 58 : 
		/* ##. INPUTS */
		input[type=checkbox],
		input[type=radio] {
			margin-top: 2px;
		}
		Line 90: 
		.btn-google { background-color: #dd4b39;}

		=> Added:
		-----------
		Line 90:
			.btn-google { background-color: #dd4b39; color: #fff;}
			.btn-google:hover { color: #fff;}
