Client Details
12 |
13 | | Name | Value |
14 | | ------------- | ------------- |
15 | {{# each(applicationDetails)}}| {{ @key }} | {{.}} |
16 | {{/}}
17 |
18 |
19 |
20 |
21 | {{#additionalData}}
22 | {{additionalData}}
23 | {{/additionalData}}
24 |
25 | {{#screenshotURL}}
26 | 
27 | {{/screenshotURL}}
--------------------------------------------------------------------------------
/GitYourFeedback/Classes/.gitkeep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gabek/GitYourFeedback/f1f2af8f6952c564b4faa61f79449c084cad0463/GitYourFeedback/Classes/.gitkeep
--------------------------------------------------------------------------------
/GitYourFeedback/Classes/CLImageEditorExtension.swift:
--------------------------------------------------------------------------------
1 | //
2 | // CLImageEditorExtension.swift
3 | // Pods
4 | //
5 | // Created by Gabe Kangas on 10/30/16.
6 | //
7 | //
8 |
9 | import Foundation
10 | import CLImageEditor
11 |
12 | extension CLImageEditor {
13 | func setup() {
14 | disable(tools: ["CLToneCurveTool", "CLFilterTool", "CLEffectTool", "CLAdjustmentTool", "CLBlurTool", "CLRotateTool", "CLSplashTool", "CLResizeTool", "CLEmoticonTool", "CLStickerTool"])
15 | rename(tool: "CLDrawTool", name: "Markup")
16 | }
17 |
18 | func disable(tools: [String]) {
19 | for tool in tools {
20 | let tool = toolInfo.subToolInfo(withToolName: tool, recursive: true)
21 | tool?.available = false
22 | }
23 | }
24 |
25 | func rename(tool: String, name: String) {
26 | let tool = toolInfo.subToolInfo(withToolName: tool, recursive: true)
27 | tool?.title = name
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/GitYourFeedback/Classes/Errors.swift:
--------------------------------------------------------------------------------
1 | //
2 | // Errors.swift
3 | // GitYourFeedback
4 | //
5 | // Created by Gabe Kangas on 10/17/16.
6 | //
7 | //
8 | // Using the approach partially documented at
9 | // http://alisoftware.github.io/swift/async/error/2016/02/06/async-errors/ so
10 | // check that out if you want to contribute.
11 |
12 | import Foundation
13 |
14 | enum Result