alchemy_cms 3.4.0.rc1 → 3.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +2 -1
- data/README.md +1 -3
- data/app/views/alchemy/admin/elements/update.js.erb +1 -1
- data/lib/alchemy/resources_helper.rb +3 -1
- data/lib/alchemy/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aec4c696d9a0d912eacadd6ed08fe1dd67c0d111
|
|
4
|
+
data.tar.gz: fe8a26eaf78f62e2f7cfdb52996a4d2f4090ba17
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4b7c23ecbd08aa5b0b38d9bdc4950e6f84e11995421a9f1e40a1c8b8f03bfc2d461586cc22cea73a45a047a101d35ad912c905f7cea7bab444fa1b20dfb796d4
|
|
7
|
+
data.tar.gz: 8733411d7224af839cb461f501efb405433b2c2d08164ab009031cd3acb7aa2d0525c55c540b6878ed44a3e8ca4df15d7767b335a4eef68a8c7e09b839e942ff
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## 3.4.0 (
|
|
3
|
+
## 3.4.0 (2016-08-02)
|
|
4
4
|
|
|
5
5
|
__New Features__
|
|
6
6
|
|
|
@@ -42,6 +42,7 @@ __Notable Changes__
|
|
|
42
42
|
__Fixed Bugs__
|
|
43
43
|
|
|
44
44
|
* Generators don't delete directories any more (#850)
|
|
45
|
+
* Some elements crashed the backend's JS when being saved (#1091)
|
|
45
46
|
|
|
46
47
|
## 3.3.2 (unreleased)
|
|
47
48
|
|
data/README.md
CHANGED
|
@@ -56,7 +56,7 @@ For a Ruby 1.8.7 compatible version use the [`2.3-stable` branch](https://github
|
|
|
56
56
|
Use the installer:
|
|
57
57
|
|
|
58
58
|
```shell
|
|
59
|
-
$ gem install alchemy_cms
|
|
59
|
+
$ gem install alchemy_cms
|
|
60
60
|
$ alchemy new my_magicpage
|
|
61
61
|
```
|
|
62
62
|
|
|
@@ -78,8 +78,6 @@ Put this into your `Gemfile`:
|
|
|
78
78
|
gem 'alchemy_cms', github: 'AlchemyCMS/alchemy_cms', branch: '3.4-stable'
|
|
79
79
|
```
|
|
80
80
|
|
|
81
|
-
**NOTE:** You normally want to use a stable branch, like `3.3-stable`.
|
|
82
|
-
|
|
83
81
|
If you want to use Russian translation and have better i18n support, you should put:
|
|
84
82
|
|
|
85
83
|
```ruby
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<%- if @element_validated -%>
|
|
7
7
|
|
|
8
8
|
$errors.hide();
|
|
9
|
-
$el.trigger('SaveElement.Alchemy', {previewText: '<%= sanitize(@element.preview_text) %>'});
|
|
9
|
+
$el.trigger('SaveElement.Alchemy', {previewText: '<%= j sanitize(@element.preview_text) %>'});
|
|
10
10
|
Alchemy.growl('<%= Alchemy.t(:element_saved) %>');
|
|
11
11
|
Alchemy.PreviewWindow.refresh(function() {
|
|
12
12
|
Alchemy.ElementEditors.selectElementInPreview(<%= @element.id %>);
|
data/lib/alchemy/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: alchemy_cms
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.4.0
|
|
4
|
+
version: 3.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Thomas von Deyen
|
|
@@ -13,7 +13,7 @@ authors:
|
|
|
13
13
|
autorequire:
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
|
-
date: 2016-
|
|
16
|
+
date: 2016-08-04 00:00:00.000000000 Z
|
|
17
17
|
dependencies:
|
|
18
18
|
- !ruby/object:Gem::Dependency
|
|
19
19
|
name: actionpack-page_caching
|
|
@@ -1022,9 +1022,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
1022
1022
|
version: 2.0.0
|
|
1023
1023
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1024
1024
|
requirements:
|
|
1025
|
-
- - "
|
|
1025
|
+
- - ">="
|
|
1026
1026
|
- !ruby/object:Gem::Version
|
|
1027
|
-
version:
|
|
1027
|
+
version: '0'
|
|
1028
1028
|
requirements:
|
|
1029
1029
|
- ImageMagick (libmagick), v6.6 or greater.
|
|
1030
1030
|
rubyforge_project:
|