forked from FluidGroup/Brightroom
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
406 additions
and
288 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"images" : [ | ||
{ | ||
"filename" : "L1000069.jpeg", | ||
"idiom" : "universal" | ||
} | ||
], | ||
"info" : { | ||
"author" : "xcode", | ||
"version" : 1 | ||
}, | ||
"properties" : { | ||
"template-rendering-intent" : "original" | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"images" : [ | ||
{ | ||
"filename" : "L1000316.jpeg", | ||
"idiom" : "universal" | ||
} | ||
], | ||
"info" : { | ||
"author" : "xcode", | ||
"version" : 1 | ||
}, | ||
"properties" : { | ||
"template-rendering-intent" : "original" | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"images" : [ | ||
{ | ||
"filename" : "L1002725.jpeg", | ||
"idiom" : "universal" | ||
} | ||
], | ||
"info" : { | ||
"author" : "xcode", | ||
"version" : 1 | ||
}, | ||
"properties" : { | ||
"template-rendering-intent" : "original" | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,20 +12,21 @@ target "PixelEditor" do | |
pod "Verge", git: "[email protected]:VergeGroup/Verge.git", branch: "main" | ||
end | ||
|
||
target "Demo" do | ||
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks | ||
use_frameworks! | ||
pod "MosaiqueAssetsPicker", :git => "[email protected]:eure/AssetsPicker.git" | ||
pod "Reveal-SDK" | ||
pod "Verge", git: "[email protected]:VergeGroup/Verge.git", branch: "main" | ||
pod "TransitionPatch" | ||
end | ||
abstract_target 'Demo_Apps' do | ||
|
||
target "SwiftUIDemo" do | ||
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks | ||
use_frameworks! | ||
pod "Reveal-SDK" | ||
pod "Verge", git: "[email protected]:VergeGroup/Verge.git", branch: "main" | ||
pod "TransitionPatch" | ||
pod "SwiftGen" | ||
|
||
target "Demo" do | ||
pod "MosaiqueAssetsPicker", :git => "[email protected]:eure/AssetsPicker.git" | ||
end | ||
|
||
target "SwiftUIDemo" do | ||
use_frameworks! | ||
end | ||
|
||
end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
PODS: | ||
- MosaiqueAssetsPicker (1.2.0) | ||
- Reveal-SDK (28) | ||
- SwiftGen (6.4.0) | ||
- TransitionPatch (1.0.2) | ||
- Verge (8.8.0): | ||
- Verge/Store (= 8.8.0) | ||
|
@@ -11,12 +12,14 @@ PODS: | |
DEPENDENCIES: | ||
- "MosaiqueAssetsPicker (from `[email protected]:eure/AssetsPicker.git`)" | ||
- Reveal-SDK | ||
- SwiftGen | ||
- TransitionPatch | ||
- "Verge (from `[email protected]:VergeGroup/Verge.git`, branch `main`)" | ||
|
||
SPEC REPOS: | ||
trunk: | ||
- Reveal-SDK | ||
- SwiftGen | ||
- TransitionPatch | ||
|
||
EXTERNAL SOURCES: | ||
|
@@ -37,9 +40,10 @@ CHECKOUT OPTIONS: | |
SPEC CHECKSUMS: | ||
MosaiqueAssetsPicker: e3d2be37a1a7d91d60f2904347f556fc1811e4d7 | ||
Reveal-SDK: 1a2a678648fc4d277bad71c86d15530424324288 | ||
SwiftGen: 67860cc7c3cfc2ed25b9b74cfd55495fc89f9108 | ||
TransitionPatch: c02b48b1429255b14ef82b7e411034e0958b9681 | ||
Verge: 8c03af6abae2835c42e7bba71551593295087219 | ||
|
||
PODFILE CHECKSUM: 9d82cadbdfcf718c9b15ea20168dbadfe273492a | ||
PODFILE CHECKSUM: 186d0e5dec0e4cacc3a0f0e421b8e5c59ea2d991 | ||
|
||
COCOAPODS: 1.10.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
class String | ||
def red | ||
"\e[31m#{self}\e[0m" | ||
end | ||
|
||
def green | ||
"\e[32m#{self}\e[0m" | ||
end | ||
|
||
def blue | ||
"\e[34m#{self}\e[0m" | ||
end | ||
|
||
def bold | ||
"\e[1m#{self}\e[22m" | ||
end | ||
end | ||
|
||
WORKDIR = File.dirname(__FILE__) | ||
SWIFTGEN = File.join(WORKDIR, "Pods/SwiftGen/bin/swiftgen") | ||
|
||
desc "generate" | ||
namespace :gen do | ||
desc "asset" | ||
task :asset do | ||
sh "#{SWIFTGEN}" | ||
end | ||
end | ||
|
||
private | ||
|
||
def verbose(s) | ||
puts s | ||
end | ||
|
||
def info(s) | ||
puts s.bold.red | ||
end | ||
|
||
def success(s) | ||
puts s.bold.green | ||
end | ||
|
||
def fail(s) | ||
abort s.bold.red | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.