Skip to content

Commit 78278f4

Browse files
Committing version 1.0.4-beta (#9)
1 parent 91eb26f commit 78278f4

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

.github/README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,16 @@ The detailed documentation is available here: https://github.com/TheraForge/OTFR
66

77
## Change Log
88
<details open>
9+
<summary>Release 1.0.4-beta</summary>
10+
<ul>
11+
<li>Added WatchOS target</li>
12+
</ul>
13+
</details>
14+
15+
<details>
916
<summary>Release 1.0.3-beta</summary>
1017
<ul>
11-
<li>Added Watch OS support</li>
18+
<li>Added WatchOS support</li>
1219
</ul>
1320
</details>
1421

.swiftlint.yml

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ disabled_rules:
66
- cyclomatic_complexity
77
- type_body_length
88
- file_length
9+
- todo
10+
911
opt_in_rules:
1012
- empty_count
1113
- empty_string

samples/ORKCatalog/ORKCatalog/Tasks/TaskListRow.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1374,7 +1374,7 @@ enum TaskListRow: Int, CustomStringConvertible {
13741374
videoCaptureStep.accessibilityHint = NSLocalizedString("Captures the video visible in the preview", comment: "")
13751375
videoCaptureStep.templateImage = UIImage(named: "hand_outline_big")!
13761376
videoCaptureStep.templateImageInsets = UIEdgeInsets(top: 0.05, left: 0.05, bottom: 0.05, right: 0.05)
1377-
videoCaptureStep.duration = 30.0; // 30 seconds
1377+
videoCaptureStep.duration = 30.0 // 30 seconds
13781378

13791379
return ORKOrderedTask(identifier: String(describing: Identifier.videoCaptureTask), steps: [
13801380
instructionStep,

0 commit comments

Comments
 (0)