pageflow 0.11.0 → 0.11.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 +4 -4
- data/CHANGELOG.md +11 -0
- data/admins/pageflow/entry.rb +1 -1
- data/app/assets/stylesheets/pageflow/base.scss +13 -13
- data/config/locales/en.yml +2 -2
- data/lib/pageflow/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: ecf6ba9f315745f843e7d90128a9fba8aa6476bc
|
|
4
|
+
data.tar.gz: fb95b521c8b1ae2e6e24dee2f8ea7599175b6977
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4d080636d5f6623ec718f75882005d510d0fbc830b098d1d0029e8b894875fcdc14462c18cb81fda8d6352237f247ff9d545f51ef3a516b54afe58f806e4caac
|
|
7
|
+
data.tar.gz: 4e8afe5e547caa2c5e49ec0912e9cf45929346b16491386a57996fac8855bdcebb92d774b37bcc150ebfb457264a74ce5ff088843cd11d8eaf5c4ff7d5b9f978
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
### Version 0.11.1
|
|
4
|
+
|
|
5
|
+
2016-10-05
|
|
6
|
+
|
|
7
|
+
[Compare changes](https://github.com/codevise/pageflow/compare/v0.11.0...v0.11.1)
|
|
8
|
+
|
|
9
|
+
- Bug fix: Show account filter to admins only
|
|
10
|
+
([#639](https://github.com/codevise/pageflow/pull/639))
|
|
11
|
+
- Bug fix: Extend facebook in-app-browser fix to ios platform
|
|
12
|
+
([#638](https://github.com/codevise/pageflow/pull/638))
|
|
13
|
+
|
|
3
14
|
### Version 0.11.0
|
|
4
15
|
|
|
5
16
|
2016-09-09
|
data/admins/pageflow/entry.rb
CHANGED
|
@@ -8,19 +8,6 @@ html, body, #outer_wrapper {
|
|
|
8
8
|
-webkit-tap-highlight-color: transparent; /* we need this for some Android browsers */
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
-
// Facebook app displays a toolbar at the bottom of the screen on iOS
|
|
12
|
-
// phone which hides parts of the browser viewport. Normally this is
|
|
13
|
-
// hidden once the user scrolls, but since there is no native
|
|
14
|
-
// scrolling in Pageflow, the bar stays and hides page elements like
|
|
15
|
-
// the slim player controls. Setting the wrapper to fixed, makes it
|
|
16
|
-
// work for some reason.
|
|
17
|
-
.has_facebook_toolbar #outer_wrapper {
|
|
18
|
-
height: auto;
|
|
19
|
-
position: fixed;
|
|
20
|
-
top: 0;
|
|
21
|
-
bottom: 0;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
11
|
html {
|
|
25
12
|
background-color: black;
|
|
26
13
|
}
|
|
@@ -40,6 +27,19 @@ body.js, .js #outer_wrapper {
|
|
|
40
27
|
overflow: hidden;
|
|
41
28
|
}
|
|
42
29
|
|
|
30
|
+
// Apps like Twitter and Facebook displays a toolbar at the bottom of
|
|
31
|
+
// the screen on iOS phone which hides parts of the browser
|
|
32
|
+
// viewport. Normally this is hidden once the user scrolls, but since
|
|
33
|
+
// there is no native scrolling in Pageflow, the bar stays and hides
|
|
34
|
+
// page elements like the player controls. Setting the wrapper to
|
|
35
|
+
// fixed makes it work and does not seem to affect other browsers.
|
|
36
|
+
.has_ios_platform #outer_wrapper {
|
|
37
|
+
height: auto;
|
|
38
|
+
position: fixed;
|
|
39
|
+
top: 0;
|
|
40
|
+
bottom: 0;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
43
|
a {
|
|
44
44
|
cursor: pointer;
|
|
45
45
|
}
|
data/config/locales/en.yml
CHANGED
|
@@ -379,8 +379,8 @@ en:
|
|
|
379
379
|
pageflow/entry:
|
|
380
380
|
publication_states:
|
|
381
381
|
not_published: Not published
|
|
382
|
-
published_with_password_protection: Published
|
|
383
|
-
published_without_password_protection: Published
|
|
382
|
+
published_with_password_protection: Published with password protection
|
|
383
|
+
published_without_password_protection: Published without password protection
|
|
384
384
|
pageflow/page:
|
|
385
385
|
atmo_during_playback:
|
|
386
386
|
mute: Mute
|
data/lib/pageflow/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pageflow
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.11.
|
|
4
|
+
version: 0.11.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Codevise Solutions Ltd
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-10-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|