Skip to content

Commit a95c729

Browse files
Adding doc and split symbols (#15)
* Adjusted branch symbol to try to get it working with Ventura * Adjusted branch symbol to try to get it working with Ventura * Added doc and split symbols
1 parent 26cab26 commit a95c729

File tree

17 files changed

+1145
-7
lines changed

17 files changed

+1145
-7
lines changed

Sources/CodeEditSymbols/CodeEditSymbols.swift

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,22 @@ public extension Image {
1717
// MARK: - Symbols
1818

1919
static let vault: Image = .init(symbol: "vault")
20-
static let vault_fill: Image = .init(symbol: "vault.fill")
20+
static let vaultFill: Image = .init(symbol: "vault.fill")
2121
static let commit: Image = .init(symbol: "commit")
2222
static let checkout: Image = .init(symbol: "checkout")
2323
static let branch: Image = .init(symbol: "branch")
2424
static let breakpoint: Image = .init(symbol: "breakpoint")
25-
static let breakpoint_fill: Image = .init(symbol: "breakpoint.fill")
26-
static let customChevronUpChevronDown: Image = .init(symbol: "custom.chevron.up.chevron.down")
25+
static let breakpointFill: Image = .init(symbol: "breakpoint.fill")
26+
static let chevronUpChevronDown: Image = .init(symbol: "chevron.up.chevron.down")
2727
static let github: Image = .init(symbol: "github")
28-
28+
static let docJava: Image = .init(symbol: "doc.java")
29+
static let docJavascript: Image = .init(symbol: "doc.javascript")
30+
static let docJson: Image = .init(symbol: "doc.json")
31+
static let docPython: Image = .init(symbol: "doc.python")
32+
static let docRuby: Image = .init(symbol: "doc.ruby")
33+
static let squareSplitHorizontalPlus: Image = .init(symbol: "square.split.horizontal.plus")
34+
static let squareSplitVerticalPlus: Image = .init(symbol: "square.split.vertical.plus")
35+
2936
// add static properties for your symbols above this line
3037

3138
}
@@ -43,14 +50,21 @@ public extension NSImage {
4350
// MARK: - Symbols
4451

4552
static let vault: NSImage = .symbol(named: "vault")
46-
static let vault_fill: NSImage = .symbol(named: "vault.fill")
53+
static let vaultFill: NSImage = .symbol(named: "vault.fill")
4754
static let commit: NSImage = .symbol(named: "commit")
4855
static let checkout: NSImage = .symbol(named: "checkout")
4956
static let branch: NSImage = .symbol(named: "branch")
5057
static let breakpoint: NSImage = .symbol(named: "breakpoint")
51-
static let breakpoint_fill: NSImage = .symbol(named: "breakpoint.fill")
52-
static let customChevronUpChevronDown: NSImage = .symbol(named: "custom.chevron.up.chevron.down")
58+
static let breakpointFill: NSImage = .symbol(named: "breakpoint.fill")
59+
static let chevronUpChevronDown: NSImage = .symbol(named: "chevron.up.chevron.down")
5360
static let github: NSImage = .symbol(named: "github")
61+
static let docJava: Image = .symbol(named: "doc.java")
62+
static let docJavascript: Image = .symbol(named: "doc.javascript")
63+
static let docJson: Image = .symbol(named: "doc.json")
64+
static let docPython: Image = .symbol(named: "doc.python")
65+
static let docRuby: Image = .symbol(named: "doc.ruby")
66+
static let squareSplitHorizontalPlus: Image = .symbol(named: "square.split.horizontal.plus")
67+
static let squareSplitVerticalPlus: Image = .symbol(named: "square.split.vertical.plus")
5468

5569
// add static properties for your symbols above this line
5670

Sources/CodeEditSymbols/Symbols.xcassets/custom.chevron.up.chevron.down.symbolset/Contents.json renamed to Sources/CodeEditSymbols/Symbols.xcassets/chevron.up.chevron.down.symbolset/Contents.json

File renamed without changes.

Sources/CodeEditSymbols/Symbols.xcassets/custom.chevron.up.chevron.down.symbolset/custom.chevron.up.chevron.down.svg renamed to Sources/CodeEditSymbols/Symbols.xcassets/chevron.up.chevron.down.symbolset/chevron.up.chevron.down.svg

File renamed without changes.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"info": {
3+
"author": "xcode",
4+
"version": 1
5+
},
6+
"symbols": [
7+
{
8+
"filename": "doc.java.svg",
9+
"idiom": "universal"
10+
}
11+
]
12+
}

Sources/CodeEditSymbols/Symbols.xcassets/doc.java.symbolset/doc.java.svg

Lines changed: 161 additions & 0 deletions
Loading
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"info": {
3+
"author": "xcode",
4+
"version": 1
5+
},
6+
"symbols": [
7+
{
8+
"filename": "doc.javascript.svg",
9+
"idiom": "universal"
10+
}
11+
]
12+
}

Sources/CodeEditSymbols/Symbols.xcassets/doc.javascript.symbolset/doc.javascript.svg

Lines changed: 161 additions & 0 deletions
Loading
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"info": {
3+
"author": "xcode",
4+
"version": 1
5+
},
6+
"symbols": [
7+
{
8+
"filename": "doc.json.svg",
9+
"idiom": "universal"
10+
}
11+
]
12+
}

Sources/CodeEditSymbols/Symbols.xcassets/doc.json.symbolset/doc.json.svg

Lines changed: 161 additions & 0 deletions
Loading
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"info": {
3+
"author": "xcode",
4+
"version": 1
5+
},
6+
"symbols": [
7+
{
8+
"filename": "doc.python.svg",
9+
"idiom": "universal"
10+
}
11+
]
12+
}

0 commit comments

Comments
 (0)