slices 2.0.1 → 2.0.2
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 +10 -1
- data/app/helpers/admin/site_maps_helper.rb +1 -1
- data/lib/slices/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 514eb4935381c02117e9e1057c7432d9930c5348
|
|
4
|
+
data.tar.gz: cc7c785d4455b92e2296362dae8f10d6bdaf6164
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5045358ed6237afa974c7ee96f7a1e6b0939a37ea7f0ad9e2b3df99d364da9896d3a7bde1d36d691d20a704e815875149ff60810020a7b64eaa904389e48dc33
|
|
7
|
+
data.tar.gz: 4c41f5dcd8097fa640ea84cbfe3f4363b84b60e91c94f799b703aaccffe94a100976de3a98d7abd8520d8e8e9f35c4f94213f0e254612454f24e8c1357b7f24d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,19 @@
|
|
|
1
|
+
# 2.0.2 / 2016-02-02
|
|
2
|
+
|
|
3
|
+
### Bug fixes
|
|
4
|
+
|
|
5
|
+
* [#157](https://github.com/withassociates/slices/pull/157): Fix issue where
|
|
6
|
+
sitemap wasn't showing correct icons for page types and wasn't showing child
|
|
7
|
+
pages in correct order (fixed in [#152](https://github.com/withassociates/slices/pull/152)
|
|
8
|
+
on master)
|
|
9
|
+
|
|
1
10
|
# 2.0.1 / 2016-02-02
|
|
2
11
|
|
|
3
12
|
### Bug fixes
|
|
4
13
|
|
|
5
14
|
* [#154](https://github.com/withassociates/slices/pull/154): Fix issue where
|
|
6
15
|
sitemap wasn't showing correct icons for page types and wasn't showing child
|
|
7
|
-
pages in correct order (fixed in [#152](https://github.com/withassociates/slices/pull/
|
|
16
|
+
pages in correct order (fixed in [#152](https://github.com/withassociates/slices/pull/152)
|
|
8
17
|
on master)
|
|
9
18
|
|
|
10
19
|
# 2.0.0 / 2016-01-15
|
|
@@ -7,7 +7,7 @@ module Admin::SiteMapsHelper
|
|
|
7
7
|
#
|
|
8
8
|
# @!visibility private
|
|
9
9
|
def sitemap_pages
|
|
10
|
-
@sitemap_pages ||= proper_pages.excluding_slices.
|
|
10
|
+
@sitemap_pages ||= proper_pages.excluding_slices.group_by(&:page_id)
|
|
11
11
|
end
|
|
12
12
|
|
|
13
13
|
# Returns children for a given page
|
data/lib/slices/version.rb
CHANGED