Skip to content

Commit 078d414

Browse files
committed
Add Device and Kind types
1 parent ac6126f commit 078d414

8 files changed

Lines changed: 57 additions & 11 deletions

File tree

Dash/DHAppDelegate.m

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -248,18 +248,18 @@ - (void)clipboardChanged:(NSNotification*)notification
248248

249249
- (void)checkCommitHashes
250250
{
251-
NSDictionary *hashes = @{@"DHDBSearcher": @"f3a251f7",
252-
@"DHDBResult": @"f561a420",
253-
@"DHDBUnifiedResult": @"f2731133",
254-
@"DHQueuedDB": @"0199255c",
255-
@"DHUnifiedQueuedDB": @"dd42266b",
256-
@"DHDBUnifiedOperation": @"1671a905",
257-
@"DHWebViewController": @"8e3d5ba2",
258-
@"DHWebPreferences": @"19872dd4",
251+
NSDictionary *hashes = @{@"DHDBSearcher": @"31900da1",
252+
@"DHDBResult": @"31900da1",
253+
@"DHDBUnifiedResult": @"31900da1",
254+
@"DHQueuedDB": @"31900da1",
255+
@"DHUnifiedQueuedDB": @"31900da1",
256+
@"DHDBUnifiedOperation": @"31900da1",
257+
@"DHWebViewController": @"da4e9df6",
258+
@"DHWebPreferences": @"6896e837",
259259
@"DHDocsetDownloader": @"5bc1aef5",
260-
@"PlatformIcons": @"e966e5d6",
261-
@"DHTypes": @"9e61df75",
262-
@"Types": @"9e61df75",
260+
@"PlatformIcons": @"31900da1",
261+
@"DHTypes": @"062c6b03",
262+
@"Types": @"062c6b03",
263263
@"CSS": @"7be5591d",
264264
};
265265
[hashes enumerateKeysAndObjectsUsingBlock:^(id key, id obj, BOOL *stop) {

Dash/DHTypes.m

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,8 @@ - (void)setUp
160160
[orderedTypeObjects addObject:[DHType typeWithHumanType:@"Register" humanPlural:@"Registers"]];
161161
[orderedTypeObjects addObject:[DHType typeWithHumanType:@"State" humanPlural:@"States"]];
162162
[orderedTypeObjects addObject:[DHType typeWithHumanType:@"Alias" humanPlural:@"Aliases"]];
163+
[orderedTypeObjects addObject:[DHType typeWithHumanType:@"Device" humanPlural:@"Devices"]];
164+
[orderedTypeObjects addObject:[DHType typeWithHumanType:@"Kind" humanPlural:@"Kinds"]];
163165
[orderedTypeObjects addObject:[DHType typeWithHumanType:@"Node" humanPlural:@"Nodes"]];
164166
[orderedTypeObjects addObject:[DHType typeWithHumanType:@"Flag" humanPlural:@"Flags"]];
165167
[orderedTypeObjects addObject:[DHType typeWithHumanType:@"Sender" humanPlural:@"Senders"]];
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"images" : [
3+
{
4+
"idiom" : "universal",
5+
"filename" : "Device.png",
6+
"scale" : "1x"
7+
},
8+
{
9+
"idiom" : "universal",
10+
"filename" : "Device@2x.png",
11+
"scale" : "2x"
12+
},
13+
{
14+
"idiom" : "universal",
15+
"scale" : "3x"
16+
}
17+
],
18+
"info" : {
19+
"version" : 1,
20+
"author" : "xcode"
21+
}
22+
}
15.6 KB
Loading
16 KB
Loading
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"images" : [
3+
{
4+
"idiom" : "universal",
5+
"filename" : "Kind.png",
6+
"scale" : "1x"
7+
},
8+
{
9+
"idiom" : "universal",
10+
"filename" : "Kind@2x.png",
11+
"scale" : "2x"
12+
},
13+
{
14+
"idiom" : "universal",
15+
"scale" : "3x"
16+
}
17+
],
18+
"info" : {
19+
"version" : 1,
20+
"author" : "xcode"
21+
}
22+
}
2.79 KB
Loading
3.25 KB
Loading

0 commit comments

Comments
 (0)