Skip to content

Commit

Permalink
v0.0.11 Consult CHANGELOG for changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Diemen Design committed Jan 24, 2020
1 parent 63e5c19 commit 8b02897
Show file tree
Hide file tree
Showing 76 changed files with 1,052 additions and 2,250 deletions.
27 changes: 24 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,32 @@
### v0.0.11
- Adjust administration avatar styling to reflect account type when logged in.
- Continue to prepare for PHP7.4 compatibility. Remove {} in favour [].
- Set permissions per account of what is allowed in media manager.
- Fix elFinder dialog buttons to be more consistent with other dialogs.
- Fix elFinder multi-menu styling.
- Fix administration rewards page Date/Time picker.
- Fix initial number of notifications displayed in title on page load.
- Fix administration navigation stats.
- Add Define VERSION constant.
- Fix formatting of password reset email layouts.
- Update PHPMailer and fix references and interaction to use new version.
- Fix unlogged in users accessing Settings page.
- Add Password remove Page Block, and reset Password Update button colour.
- Add login.html parsing to display Terms of Service in Modal.
- Add logged in info alert.
- Fix all themes form layouts and ajax processing to a single ajax method and feedback.
- Add check for Nonexistent user emails when display Comments in Administration.
- Remove unneeded URL forward slash for extra pages in menu.
- Add parsing for Inventory Item status.

### v0.0.10
- Fix Administration Service Worker not displaying Offline Page.
- Add Markdown Parsing for prettier, easier to read CHANGELOG.
- Prepare for PHP7.4 Compatibilty. Remove {} in favour [].
- Add PHP Version to Developer Display and move to top of page.
- Prepare for PHP7.4 Compatibility. Remove {} in favour [].
- Add PHP Version to Developer Display and move to the top of the page.
- Add Developer Information to Administration.
- Fix Logo Width overriding other header items in Administration.
- Fix typo's and missing SQL Fields in add_testimonial.php file.
- Fix typos and missing SQL Fields in add_testimonial.php file.
- Relabel "Screen against WordPress Attacks" to "Screen Against Attacks".
- Update Summernote WYSIWYG Editor to v0.8.14
- Move other platform security checks so they only check when enabled.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AuroraCMS the **Free** Australian Open Source [MIT](https://github.com/DiemenDesign/AuroraCMS/blob/master/LICENSE) Content Management System, built primarily for Australian Businesses, built utilising [PHP](http://php.net/), PDO, [jQuery](http://jquery.com/), [Bootstrap](http://getbootstrap.com/), and [iCONS](https://github.com/DiemenDesign/iCONS). Built to take advantage of HTML5 and CSS3, with necessary SEO attributes that fit in with Google's recommendations, Micro-formats, JSON-LD, ARIA (A11Y), and general SEO Markup.

#### Version
We are currently at Version v0.0.10
We are currently at Version v0.0.11

### FAQ
- Why no Plugins?
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.0.10
v0.0.11
9 changes: 4 additions & 5 deletions core/add_data.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@
* @author Dennis Suitters <[email protected]>
* @copyright 2014-2019 Diemen Design
* @license http://opensource.org/licenses/MIT MIT License
* @version 0.0.10
* @version 0.0.11
* @link https://github.com/DiemenDesign/AuroraCMS
* @notes This PHP Script is designed to be executed using PHP 7+
* @changes v0.0.4 Fix Tooltips.
* @changes v0.0.10 Fix Rewards Display Layout.
* @changes v0.0.10 Fix Toastr Notifications.
* @changes v0.0.11 Fix Rewards Date/Time Picker value retrieval.
*/
$getcfg=true;
require'db.php';
Expand Down Expand Up @@ -42,10 +43,8 @@ function svg2($svg,$class=null,$size=null){
$method=filter_input(INPUT_POST,'method',FILTER_SANITIZE_NUMBER_INT);
$value=filter_input(INPUT_POST,'value',FILTER_SANITIZE_NUMBER_INT);
$quantity=filter_input(INPUT_POST,'quantity',FILTER_SANITIZE_NUMBER_INT);
$tis=filter_input(INPUT_POST,'tis',FILTER_SANITIZE_STRING);
$tie=filter_input(INPUT_POST,'tie',FILTER_SANITIZE_STRING);
$tis=$tis!=''?strtotime($tis):0;
$tie=$tie!=''?strtotime($tie):0;
$tis=filter_input(INPUT_POST,'tisx',FILTER_SANITIZE_STRING);
$tie=filter_input(INPUT_POST,'tiex',FILTER_SANITIZE_STRING);
if($code!=''&&$title!=''&&$value!=0&&$quantity!=0){
$q=$db->prepare("INSERT INTO `".$prefix."rewards` (code,title,method,value,quantity,tis,tie,ti) VALUES (:code,:title,:method,:value,:quantity,:tis,:tie,:ti)");
$q->execute([
Expand Down
4 changes: 3 additions & 1 deletion core/admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@
* @author Dennis Suitters <[email protected]>
* @copyright 2014-2019 Diemen Design
* @license http://opensource.org/licenses/MIT MIT License
* @version 0.0.1
* @version 0.0.11
* @link https://github.com/DiemenDesign/AuroraCMS
* @notes This PHP Script is designed to be executed using PHP 7+
* @changes v0.0.11 Define 'VERSION' constant.
*/
if(!defined('DS'))define('DS',DIRECTORY_SEPARATOR);
if(!defined('VERSION'))define('VERSION',trim(file_get_contents('VERSION')));
if(!isset($_COOKIE['bookingview'])){
setcookie("bookingview","calendar",time()+(60*60*24*14));
$_COOKIE['bookingview']='calendar';
Expand Down
1 change: 0 additions & 1 deletion core/css/1summernote-lite.min.css

This file was deleted.

2 changes: 1 addition & 1 deletion core/css/bootstrap.min.css

Large diffs are not rendered by default.

84 changes: 15 additions & 69 deletions core/css/style.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 8b02897

Please sign in to comment.