pageflow-panorama 1.0.0 → 1.0.1
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1dd8882acc8a93ab6dc8a02b67f151d2c3ed5afc
|
|
4
|
+
data.tar.gz: 104f93596ecaadcfad90f8be78c85900a2a6b0d7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e1f75d47dbca60c4a4ed35e1650eeb6502af56ae253c7bf2cf1d03059b8cf0610b5bce364d2bf97cee92b948b07244129d08dcab5344df19a51f86fda1a4df46
|
|
7
|
+
data.tar.gz: b6368917787af55b1ca3cc0df19731806dde3669b2faec32451841aad817e2ee026c1ff83d30daf82bbd4760d65511a9b90ee4578c49c14fcec5811b20f4c1e2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
### Version 1.0.1
|
|
4
|
+
|
|
5
|
+
2017-08-10
|
|
6
|
+
|
|
7
|
+
[Compare changes](https://github.com/codevise/pageflow-panorama/compare/v1.0.0...v1.0.1)
|
|
8
|
+
|
|
9
|
+
- Rename .css.scss files to just .css and update readme
|
|
10
|
+
([#20](https://github.com/codevise/pageflow-panorama/pull/20))
|
|
11
|
+
|
|
3
12
|
### Version 1.0.0
|
|
4
13
|
|
|
5
14
|
2017-08-10
|
data/README.md
CHANGED
|
@@ -20,7 +20,7 @@ Register the page type:
|
|
|
20
20
|
|
|
21
21
|
# config/initializers/pageflow.rb
|
|
22
22
|
Pageflow.configure do |config|
|
|
23
|
-
config.
|
|
23
|
+
config.page_types.register(Pageflow::Panorama.page_type)
|
|
24
24
|
end
|
|
25
25
|
|
|
26
26
|
Include javascripts and stylesheets:
|
|
@@ -31,13 +31,13 @@ Include javascripts and stylesheets:
|
|
|
31
31
|
# app/assets/javascripts/pageflow/editor.js
|
|
32
32
|
//= require pageflow/panorama/editor
|
|
33
33
|
|
|
34
|
-
# app/assets/stylesheets/pageflow/application.
|
|
34
|
+
# app/assets/stylesheets/pageflow/application.scss
|
|
35
35
|
@import "pageflow/panorama";
|
|
36
36
|
|
|
37
|
-
# app/assets/stylesheets/pageflow/editor.
|
|
37
|
+
# app/assets/stylesheets/pageflow/editor.scss
|
|
38
38
|
@import "pageflow/panorama/editor";
|
|
39
39
|
|
|
40
|
-
# app/assets/stylesheets/pageflow/themes/default.
|
|
40
|
+
# app/assets/stylesheets/pageflow/themes/default.scss
|
|
41
41
|
@import "pageflow/panorama/themes/default";
|
|
42
42
|
|
|
43
43
|
Install and run migrations:
|
|
File without changes
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pageflow-panorama
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Codevise Solutions
|
|
@@ -202,8 +202,8 @@ files:
|
|
|
202
202
|
- app/assets/javascripts/pageflow/panorama/editor/models/package.js
|
|
203
203
|
- app/assets/javascripts/pageflow/panorama/editor/views/configuration_editor.js
|
|
204
204
|
- app/assets/javascripts/pageflow/panorama/page_type.js
|
|
205
|
-
- app/assets/stylesheets/pageflow/panorama.
|
|
206
|
-
- app/assets/stylesheets/pageflow/panorama/editor.
|
|
205
|
+
- app/assets/stylesheets/pageflow/panorama.scss
|
|
206
|
+
- app/assets/stylesheets/pageflow/panorama/editor.scss
|
|
207
207
|
- app/assets/stylesheets/pageflow/panorama/themes/default.scss
|
|
208
208
|
- app/helpers/pageflow/panorama/packages_helper.rb
|
|
209
209
|
- app/jobs/pageflow/panorama/unpack_package_job.rb
|