camaleon_cms 2.4.3.4 → 2.4.3.5
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/README.md +1 -1
- data/app/views/camaleon_cms/admin/posts/index.html.erb +4 -4
- data/lib/camaleon_cms/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a70abf6d23b59ecc47fdf7666258242f837fe8af
|
|
4
|
+
data.tar.gz: 3e1bc98690fd647da857231f85be2f9bb844d2e1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4fba30af329005cdbfd531987208ee1d763b7d80be12b5b44f2a0e00fb13ac50b941c17bbda2a80361272fab3ecad728acc92e6e94c7623bbc64abd37badae14
|
|
7
|
+
data.tar.gz: 8c31ce3068330cd538ac544e5a641b4171c9ee80011e443d5a203ff5f9633e0643743be3db1c24cf40f94c2a49972d0d44d646e667a54d0e54bf8d18f0c06ba3
|
data/README.md
CHANGED
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
* Add the gem in your Gemfile
|
|
40
40
|
|
|
41
41
|
```
|
|
42
|
-
gem "camaleon_cms", '>= 2.4.3.
|
|
42
|
+
gem "camaleon_cms", '>= 2.4.3.5' # Stable versions 2.4.3.2, 2.3.6, 2.2.1, 2.1.1, 2.1.0
|
|
43
43
|
# gem "camaleon_cms", github: 'owen2345/camaleon-cms' # current development version
|
|
44
44
|
```
|
|
45
45
|
* Only Rails 5 support
|
|
@@ -32,15 +32,15 @@
|
|
|
32
32
|
<th><%= t('camaleon_cms.admin.table.status') %></th>
|
|
33
33
|
<th><%= t('camaleon_cms.admin.table.author') %></th>
|
|
34
34
|
<% if @post_type.manage_categories? %>
|
|
35
|
-
<th><%= t('camaleon_cms.admin.table.categories') %></th>
|
|
35
|
+
<th><%= t('camaleon_cms.admin.table.categories', default: 'Categories') %></th>
|
|
36
36
|
<% end %>
|
|
37
37
|
<% if @post_type.manage_tags? %>
|
|
38
|
-
<th><%= t('camaleon_cms.admin.table.tags') %></th>
|
|
38
|
+
<th><%= t('camaleon_cms.admin.table.tags', default: 'Tags') %></th>
|
|
39
39
|
<% end %>
|
|
40
40
|
<% extra_column = {post_type: @post_type, content: "", from_body: false}; hooks_run("list_post_extra_columns", extra_column) %>
|
|
41
41
|
<%= raw extra_column[:content] %>
|
|
42
|
-
<th><%= t("updated_at") %></th>
|
|
43
|
-
<th style="width: 98px; text-align: right"><%= t('camaleon_cms.admin.table.actions') %></th>
|
|
42
|
+
<th><%= t("camaleon_cms.admin.table.updated_at", default: 'Updated at') %></th>
|
|
43
|
+
<th style="width: 98px; text-align: right"><%= t('camaleon_cms.admin.table.actions', default: 'Actions') %></th>
|
|
44
44
|
</tr>
|
|
45
45
|
</thead>
|
|
46
46
|
<tbody>
|
data/lib/camaleon_cms/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: camaleon_cms
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.4.3.
|
|
4
|
+
version: 2.4.3.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Owen Peredo Diaz
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-04-
|
|
11
|
+
date: 2017-04-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bcrypt
|