Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
andrelopez committed Apr 27, 2018
2 parents 70f1d2a + 09e3fea commit 832bf55
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Enupal Backup Changelog

## 1.0.12 - 2018.04.27
### Fixed
- Fixed bug related to reflection class not found in some scenarios.

## 1.0.11 - 2018.04.10
### Improved
- Improved general performance
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "enupal/backup",
"description": "Fully integrated Backup solution for Craft CMS",
"type": "craft-plugin",
"version": "1.0.11",
"version": "1.0.12",
"keywords": [
"craft",
"cms",
Expand Down
2 changes: 1 addition & 1 deletion src/templates/_layouts/settings.twig
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,4 @@

{% endset %}

{% do view.registerAssetBundle("enupal\\backup\\assetbundles\\FontAwesomeAsset") %}
{% do view.registerAssetBundle("enupal\\backup\\web\\assets\\FontAwesomeAsset") %}
4 changes: 2 additions & 2 deletions src/templates/backups/_viewBackup.twig
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,8 @@
</div>
{% endblock %}

{% do view.registerAssetBundle("enupal\\backup\\assetbundles\\BackupAsset") %}
{% do view.registerAssetBundle("enupal\\backup\\assetbundles\\FontAwesomeAsset") %}
{% do view.registerAssetBundle("enupal\\backup\\web\\assets\\BackupAsset") %}
{% do view.registerAssetBundle("enupal\\backup\\web\\assets\\FontAwesomeAsset") %}
{% js %}
$(document).ready(function() {
new EnupalBackup();
Expand Down
2 changes: 1 addition & 1 deletion src/templates/backups/index.twig
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
{% extends "enupal-backup/_layouts/elementindex" %}
{% set title = "Backups"|t %}
{% set elementType = 'enupal\\backup\\elements\\Backup' %}
{% do view.registerAssetBundle("enupal\\backup\\assetbundles\\FontAwesomeAsset") %}
{% do view.registerAssetBundle("enupal\\backup\\web\\assets\\FontAwesomeAsset") %}
{% block actionButton %}
<div class="buttons">
<form id="run-backup" method="post">
Expand Down
6 changes: 3 additions & 3 deletions src/templates/settings/schedule.twig
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@
{% set webhookUrl = siteUrl ~ 'enupal-backup/schedule?key='~settings.webhookSecretKey %}
<hr>
{{ forms.field({
label: webhookUrl,
instructions: "Webhook URL"|t('enupal-backup'),
label: "Webhook URL"|t('enupal-backup'),
instructions: webhookUrl,
}, null) }}

{{ forms.field({
Expand Down Expand Up @@ -93,7 +93,7 @@
{% css %}

{% endcss %}
{% do view.registerAssetBundle("enupal\\backup\\assetBundles\\HighlightAsset") %}
{% do view.registerAssetBundle("enupal\\backup\\web\\assets\\HighlightAsset") %}

{% js %}
$(document).ready(function() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* @copyright Copyright (c) 2017 Enupal
*/

namespace enupal\backup\assetbundles;
namespace enupal\backup\web\assets;

use craft\web\AssetBundle;
use craft\web\assets\cp\CpAsset;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* @copyright Copyright (c) 2017 Enupal
*/

namespace enupal\backup\assetbundles;
namespace enupal\backup\web\assets;

use craft\web\AssetBundle;
use craft\web\assets\cp\CpAsset;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* @copyright Copyright (c) 2017 Enupal
*/

namespace enupal\backup\assetbundles;
namespace enupal\backup\web\assets;

use craft\web\AssetBundle;
use craft\web\assets\cp\CpAsset;
Expand Down

0 comments on commit 832bf55

Please sign in to comment.