-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fix Canonical URL for pages. - Adjust page parser to include elements encoded with entities. - Fix Product Schema missing comma and priceValidUntil. - Improve CSS Styling. - Add SEO Warnings for various content with highlights. - Fix some styling in Administration. - Allow all Reviews to display in Administration Reviews Page. - Add Template Parser and Administration Editing for Advertisements. - Add Impressions Count. - Add Click Count. - Add Cost for monetising Advertisements. - Add Date restriction for start and end of Impressions.
- Loading branch information
Dennis Suitters
committed
Oct 25, 2022
1 parent
98b52bd
commit 545fc73
Showing
40 changed files
with
983 additions
and
240 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
### v0.2.19 | ||
- Fix bitwise toggling issue for entries with only 1 offset value. | ||
- Fix error of Administration theme mode throwing error if cookie not set. | ||
- Add User details check for set values in parser_items.php Line 404. | ||
- Adjust script loading to be async within the head area. | ||
- Add Meta-Tag viewer for Administrators to enable checking information on content pages. | ||
- Fix media display size in pages and content, and add webp format. | ||
- Refine Visitor Tracker viewer to load visitors after page loaded to show activity. | ||
- Fix Administration Tooltips. | ||
- Update Summernote and Plugins. | ||
- Add button to view Theme Changelog. | ||
### v0.2.20 | ||
- Fix Canonical URL for pages. | ||
- Adjust page parser to include elements encoded with entities. | ||
- Fix Product Schema missing comma and priceValidUntil. | ||
- Improve CSS Styling. | ||
- Add SEO Warnings for various content with highlights. | ||
- Fix some styling in Administration. | ||
- Allow all Reviews to display in Administration Reviews Page. | ||
- Add Template Parser and Administration Editing for Advertisements. | ||
- Add Impressions Count. | ||
- Add Click Count. | ||
- Add Cost for monetising Advertisements. | ||
- Add Date restriction for start and end of Impressions. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v0.2.19 | ||
v0.2.20 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
* @author Dennis Suitters <[email protected]> | ||
* @copyright 2014-2019 Diemen Design | ||
* @license http://opensource.org/licenses/MIT MIT License | ||
* @version 0.2.18 | ||
* @version 0.2.20 | ||
* @link https://github.com/DiemenDesign/AuroraCMS | ||
* @notes This PHP Script is designed to be executed using PHP 7+ | ||
*/ | ||
|
@@ -391,6 +391,10 @@ function add($args=false){ | |
$view='add'; | ||
require'admin.php'; | ||
} | ||
function adverts($args=false){ | ||
$view='adverts'; | ||
require'admin.php'; | ||
} | ||
function bookings($args=false){ | ||
$view='bookings'; | ||
require'admin.php'; | ||
|
@@ -674,6 +678,7 @@ function page($args=false){ | |
$settings['system']['admin'].'/add'=>['admin','add'], | ||
$settings['system']['admin'].'/accounts'=>['admin','accounts'], | ||
$settings['system']['admin'].'/activity'=>['admin','activity'], | ||
$settings['system']['admin'].'/adverts'=>['admin','adverts'], | ||
$settings['system']['admin'].'/bookings'=>['admin','bookings'], | ||
$settings['system']['admin'].'/livechat'=>['admin','livechat'], | ||
$settings['system']['admin'].'/comments'=>['admin','comments'], | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.