pageflow 0.11.0 → 0.11.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of pageflow might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a73607737150129fbb7b4aada5619097592844f8
4
- data.tar.gz: 9caedfec77d8e308bba2c89a6d9ef65f588c8627
3
+ metadata.gz: ecf6ba9f315745f843e7d90128a9fba8aa6476bc
4
+ data.tar.gz: fb95b521c8b1ae2e6e24dee2f8ea7599175b6977
5
5
  SHA512:
6
- metadata.gz: a6dcf4e0fe53e80e448a3c9906e323307e856b77a0b763070b1ed915a871cf58a23152e1f25e901cfc0ba0d92e40be8d3a335f0e467520a05d254716764c1ae1
7
- data.tar.gz: f30680dae1fcac19f8a50d75080fb311a10c4e46175ccee2c21fa80c7f259962d06ce798b985546ba34121e33210c063feb7203b53373c1ec26c947f243988dc
6
+ metadata.gz: 4d080636d5f6623ec718f75882005d510d0fbc830b098d1d0029e8b894875fcdc14462c18cb81fda8d6352237f247ff9d545f51ef3a516b54afe58f806e4caac
7
+ data.tar.gz: 4e8afe5e547caa2c5e49ec0912e9cf45929346b16491386a57996fac8855bdcebb92d774b37bcc150ebfb457264a74ce5ff088843cd11d8eaf5c4ff7d5b9f978
@@ -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
@@ -45,7 +45,7 @@ module Pageflow
45
45
  end
46
46
 
47
47
  filter :title
48
- filter :account
48
+ filter :account, if: ->(_) { authorized?(:read, Account) }
49
49
  filter :created_at
50
50
  filter :edited_at
51
51
  filter :first_published_at
@@ -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
  }
@@ -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 without password protection
383
- published_without_password_protection: Published with password protection
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
@@ -1,3 +1,3 @@
1
1
  module Pageflow
2
- VERSION = '0.11.0'
2
+ VERSION = '0.11.1'
3
3
  end
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.0
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-09-09 00:00:00.000000000 Z
11
+ date: 2016-10-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails