yopass 1.1.0 → 1.1.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/.gemspec +1 -1
- data/README.md +3 -2
- data/lib/static/packaged/css/font.css +36 -0
- data/lib/views/header.erb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 687e4922514a580bb51d8a9d85174a519b31d6ba
|
|
4
|
+
data.tar.gz: 8a0a6dae9bc3054641e5424bbdae20645de8c943
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 19e8fb94dab66b23c05dc3a23dec89cb1f5d3cadb056840affa818e3254e1bf07391b9bf2229e93bd58b465739f7476a316cb1038a437ee20c2e7a0144a9e3be
|
|
7
|
+
data.tar.gz: 22675e3b02a946b0abdff389148b2dd40489adc4ff991fc5f81faa7dab24f293702b0755aa35358f779fa32c59637888c6820347c8d5ec8ca5f90bca3c6be2b6
|
data/.gemspec
CHANGED
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
|
-

|
|
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
|
+

|
|
@@ -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='
|
|
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.
|
|
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
|