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: e300f330550b46c23a90c6433c534bb473f65cc71c49c82a97a6d9dde1a35c61
4
- data.tar.gz: 8030a806d8daab8ab3df20dfc93b4b315746e330e0c2f11d16ba70725f6f6e21
3
+ metadata.gz: 5046dd700d6f01eba17a3661706bbca3cb9863b606ecbbbea25c3eddcdc61d07
4
+ data.tar.gz: 5850190db9f71456c00c758153fcf299471e47825eb32d9680d5621d6d6e28be
5
5
  SHA512:
6
- metadata.gz: ad8cdfd064da26fff6013df15e41562fb8b9463493dcc26510a5f48ddf4880c1b55bcf566c82c34ff1abd77b8102d93092283b4987ff8f62d19b33249e1e6e8b
7
- data.tar.gz: 9b9302661f3b0c65a7b4c365a516b2833297d2fc683a2d6d75c84e051bfa70cc1daeeb0b22aa4f53be4aad8597604944100646a4a6d96935092b49f77a2a9b3e
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 ||= project_config.callout_styles
552
- .deep_merge(config.callout_styles)
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
  }
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ScreenKit
4
- VERSION = "0.0.14"
4
+ VERSION = "0.0.15"
5
5
  end
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.14
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.14
425
- changelog_uri: https://github.com/fnando/screenkit/tree/v0.0.14/CHANGELOG.md
426
- documentation_uri: https://github.com/fnando/screenkit/tree/v0.0.14/README.md
427
- license_uri: https://github.com/fnando/screenkit/tree/v0.0.14/LICENSE.md
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