screenkit 0.0.14 → 0.0.15
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
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5046dd700d6f01eba17a3661706bbca3cb9863b606ecbbbea25c3eddcdc61d07
|
|
4
|
+
data.tar.gz: 5850190db9f71456c00c758153fcf299471e47825eb32d9680d5621d6d6e28be
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 71596d697f47938a58655926d29cacb8538716a3fd4a77e179e35b8b6eb0f6435ae7c1ce60517508df486887705fceb06d7de085ce4b3488f806fb4b0c58a978
|
|
7
|
+
data.tar.gz: 2d9cbedb5885895ea06c371a05051d15b24177a344d7456dfa1b4d9a99f1422126a1affdb3ef66c40ffa62b5196687b84b57bde4b747d6a4c6c4229db702c0d3
|
data/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,11 @@ Prefix your message with one of the following:
|
|
|
11
11
|
- [Security] in case of vulnerabilities.
|
|
12
12
|
-->
|
|
13
13
|
|
|
14
|
+
## v0.0.15
|
|
15
|
+
|
|
16
|
+
- [Fixed] Fix reference to wrong configuration object.
|
|
17
|
+
- [Fixed] Add required properties to the inline block callout.
|
|
18
|
+
|
|
14
19
|
## v0.0.14
|
|
15
20
|
|
|
16
21
|
- [Fixed] Fix file redacting when no API key is defined.
|
|
@@ -548,8 +548,8 @@ module ScreenKit
|
|
|
548
548
|
end
|
|
549
549
|
|
|
550
550
|
def callout_styles
|
|
551
|
-
@callout_styles ||=
|
|
552
|
-
|
|
551
|
+
@callout_styles ||= config.callout_styles
|
|
552
|
+
.deep_merge(config.callout_styles)
|
|
553
553
|
end
|
|
554
554
|
|
|
555
555
|
def output_video_path
|
|
@@ -312,6 +312,11 @@ callout_styles:
|
|
|
312
312
|
style: inline_block
|
|
313
313
|
anchor: [left, bottom]
|
|
314
314
|
margin: 100
|
|
315
|
+
background_color: "#ffffff"
|
|
316
|
+
text_style:
|
|
317
|
+
color: "#000000"
|
|
318
|
+
size: 48
|
|
319
|
+
font_path: open-sans/OpenSans-ExtraBold.ttf
|
|
315
320
|
animation: fade
|
|
316
321
|
in_transition:
|
|
317
322
|
duration: 0.4s
|
|
@@ -8,6 +8,14 @@
|
|
|
8
8
|
"type": "string",
|
|
9
9
|
"description": "Color scheme to use when capturing the video.",
|
|
10
10
|
"enum": ["light", "dark"]
|
|
11
|
+
},
|
|
12
|
+
"state_path": {
|
|
13
|
+
"type": "string",
|
|
14
|
+
"format": "uri"
|
|
15
|
+
},
|
|
16
|
+
"user_data_path": {
|
|
17
|
+
"type": "string",
|
|
18
|
+
"format": "uri"
|
|
11
19
|
}
|
|
12
20
|
}
|
|
13
21
|
}
|
data/lib/screenkit/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: screenkit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.15
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nando Vieira
|
|
@@ -421,10 +421,10 @@ metadata:
|
|
|
421
421
|
rubygems_mfa_required: 'true'
|
|
422
422
|
homepage_uri: https://github.com/fnando/screenkit
|
|
423
423
|
bug_tracker_uri: https://github.com/fnando/screenkit/issues
|
|
424
|
-
source_code_uri: https://github.com/fnando/screenkit/tree/v0.0.
|
|
425
|
-
changelog_uri: https://github.com/fnando/screenkit/tree/v0.0.
|
|
426
|
-
documentation_uri: https://github.com/fnando/screenkit/tree/v0.0.
|
|
427
|
-
license_uri: https://github.com/fnando/screenkit/tree/v0.0.
|
|
424
|
+
source_code_uri: https://github.com/fnando/screenkit/tree/v0.0.15
|
|
425
|
+
changelog_uri: https://github.com/fnando/screenkit/tree/v0.0.15/CHANGELOG.md
|
|
426
|
+
documentation_uri: https://github.com/fnando/screenkit/tree/v0.0.15/README.md
|
|
427
|
+
license_uri: https://github.com/fnando/screenkit/tree/v0.0.15/LICENSE.md
|
|
428
428
|
rdoc_options: []
|
|
429
429
|
require_paths:
|
|
430
430
|
- lib
|