yopass 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6dc9d56a8a1b507d0da36f9e583ae7ad3054fc30
4
- data.tar.gz: 1cf44795dedfcd2d3383ab0f48767fda14ee92b6
3
+ metadata.gz: 687e4922514a580bb51d8a9d85174a519b31d6ba
4
+ data.tar.gz: 8a0a6dae9bc3054641e5424bbdae20645de8c943
5
5
  SHA512:
6
- metadata.gz: d1c38d4091fc76859284483b9e81ab344c77e5b4615e8dc9cb76d704c9b24d3fef8864e1a2bcd79c89189462a96a609393c3f2933d474320e902036d2c4b5009
7
- data.tar.gz: 1090ef54c8cf481065709b4b6976b77653262208829e3184e2abfdb030575c7c373b6fe92d350209aab6ff64be63d810e7d8feb729675ed4da0db7cba2313dc0
6
+ metadata.gz: 19e8fb94dab66b23c05dc3a23dec89cb1f5d3cadb056840affa818e3254e1bf07391b9bf2229e93bd58b465739f7476a316cb1038a437ee20c2e7a0144a9e3be
7
+ data.tar.gz: 22675e3b02a946b0abdff389148b2dd40489adc4ff991fc5f81faa7dab24f293702b0755aa35358f779fa32c59637888c6820347c8d5ec8ca5f90bca3c6be2b6
data/.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
  Gem::Specification.new do |s|
3
3
  # Metadata
4
4
  s.name = 'yopass'
5
- s.version = '1.1.0'
5
+ s.version = '1.1.1'
6
6
  s.author = 'Johan Haals'
7
7
  s.email = ['jhaals@spotify.com']
8
8
  s.homepage = 'https://github.com/jhaals/yopass'
data/README.md CHANGED
@@ -8,8 +8,6 @@ Secrets can then be shared more securely over channels such as IRC and Email. Th
8
8
  * No accounts and user management required
9
9
  * Secrets self destruct after X hours
10
10
 
11
- ![YoPass website](http://f.cl.ly/items/1Y3I3J0f1S0Z1K172n2X/screenshot.png)
12
-
13
11
  #### Workflow
14
12
  * Generate secret
15
13
  * Paste into the yopass website
@@ -34,3 +32,6 @@ Use the bulksms provider in ```lib/sms_provider/bulksms.rb``` as example
34
32
 
35
33
  ##### Supported Providers
36
34
  Bulksms
35
+
36
+ ### Screenshot
37
+ ![YoPass website](http://f.cl.ly/items/2F2T1L3a3R162K2G383q/yopass.png)
@@ -0,0 +1,36 @@
1
+ @font-face {
2
+ font-family: 'Open Sans';
3
+ font-style: normal;
4
+ font-weight: 300;
5
+ src: local('Open Sans Light'), local('OpenSans-Light'), url(http://themes.googleusercontent.com/static/fonts/opensans/v7/DXI1ORHCpsQm3Vp6mXoaTYnF5uFdDttMLvmWuJdhhgs.ttf) format('truetype');
6
+ }
7
+ @font-face {
8
+ font-family: 'Open Sans';
9
+ font-style: normal;
10
+ font-weight: 400;
11
+ src: local('Open Sans'), local('OpenSans'), url(http://themes.googleusercontent.com/static/fonts/opensans/v7/cJZKeOuBrn4kERxqtaUH3aCWcynf_cDxXwCLxiixG1c.ttf) format('truetype');
12
+ }
13
+ @font-face {
14
+ font-family: 'Open Sans';
15
+ font-style: normal;
16
+ font-weight: 700;
17
+ src: local('Open Sans Bold'), local('OpenSans-Bold'), url(http://themes.googleusercontent.com/static/fonts/opensans/v7/k3k702ZOKiLJc3WVjuplzInF5uFdDttMLvmWuJdhhgs.ttf) format('truetype');
18
+ }
19
+ @font-face {
20
+ font-family: 'Open Sans';
21
+ font-style: italic;
22
+ font-weight: 300;
23
+ src: local('Open Sans Light Italic'), local('OpenSansLight-Italic'), url(http://themes.googleusercontent.com/static/fonts/opensans/v7/PRmiXeptR36kaC0GEAetxrfB31yxOzP-czbf6AAKCVo.ttf) format('truetype');
24
+ }
25
+ @font-face {
26
+ font-family: 'Source Sans Pro';
27
+ font-style: normal;
28
+ font-weight: 400;
29
+ src: local('Source Sans Pro'), local('SourceSansPro-Regular'), url(http://themes.googleusercontent.com/static/fonts/sourcesanspro/v7/ODelI1aHBYDBqgeIAH2zlNzbP97U9sKh0jjxbPbfOKg.ttf) format('truetype');
30
+ }
31
+ @font-face {
32
+ font-family: 'Source Sans Pro';
33
+ font-style: normal;
34
+ font-weight: 700;
35
+ src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url(http://themes.googleusercontent.com/static/fonts/sourcesanspro/v7/toadOcfmlt9b38dHJxOBGLsbIrGiHa6JIepkyt5c0A0.ttf) format('truetype');
36
+ }
data/lib/views/header.erb CHANGED
@@ -9,7 +9,7 @@
9
9
  <!-- Site Properities -->
10
10
  <title>Yopass - Share secrets</title>
11
11
 
12
- <link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700|Open+Sans:300italic,400,300,700' rel='stylesheet' type='text/css'>
12
+ <link href='/packaged/css/font.css' rel='stylesheet' type='text/css'>
13
13
  <link rel="stylesheet" type="text/css" href="/packaged/css/semantic.css">
14
14
 
15
15
  <script src="/js/jquery.js"></script>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yopass
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Johan Haals
@@ -66,6 +66,7 @@ files:
66
66
  - conf/yopass.yaml
67
67
  - lib/static/js/jquery.address.js
68
68
  - lib/static/js/jquery.js
69
+ - lib/static/packaged/css/font.css
69
70
  - lib/static/packaged/css/semantic.css
70
71
  - lib/static/packaged/css/semantic.min.css
71
72
  - lib/static/packaged/fonts/basic.icons.eot