Skip to content

Commit 0e7382b

Browse files
author
epriestley
committed
Fix conpherence sprites
Summary: The map had "conph" but everything else refers to "conpher". The "conph" sprite thing won when I regenerated sprites for tokens. I should just fix this so it can't happen, but unbreak for now. Renamed "conph" -> "conpher", regenerated sprites, nuked all the "conph" stuff. Test Plan: Looked at Conpherence, saw icons. Reviewers: chad Reviewed By: chad CC: aran Differential Revision: https://secure.phabricator.com/D4982
1 parent dad7c65 commit 0e7382b

File tree

6 files changed

+92
-11
lines changed

6 files changed

+92
-11
lines changed
Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
{
2+
"version" : 1,
3+
"sprites" : {
4+
"conpher_calendar_off" : {
5+
"name" : "conpher_calendar_off",
6+
"rule" : ".conpher_calendar_off",
7+
"hash" : "9ead08702b8028d28aedfa1a0dfbe43a"
8+
},
9+
"conpher_calendar_on" : {
10+
"name" : "conpher_calendar_on",
11+
"rule" : ".conpher_calendar_on, .device-desktop .conpher_calendar_off:hover ",
12+
"hash" : "f00d0854260ab1bc1a9b4f7f21a64f56"
13+
},
14+
"conpher_conversation_off" : {
15+
"name" : "conpher_conversation_off",
16+
"rule" : ".conpher_conversation_off",
17+
"hash" : "97f9e8131c741dbba8091a92776036dd"
18+
},
19+
"conpher_conversation_on" : {
20+
"name" : "conpher_conversation_on",
21+
"rule" : ".conpher_conversation_on, .device-desktop .conpher_conversation_off:hover ",
22+
"hash" : "01d5bae305a37debbc44f4131f0863dc"
23+
},
24+
"conpher_files_off" : {
25+
"name" : "conpher_files_off",
26+
"rule" : ".conpher_files_off",
27+
"hash" : "b6a89827978cf06618d4ba572953049a"
28+
},
29+
"conpher_files_on" : {
30+
"name" : "conpher_files_on",
31+
"rule" : ".conpher_files_on, .device-desktop .conpher_files_off:hover ",
32+
"hash" : "05f38d8b45077a8a9b5bd21ecc15f958"
33+
},
34+
"conpher_list_off" : {
35+
"name" : "conpher_list_off",
36+
"rule" : ".conpher_list_off",
37+
"hash" : "6f9b685a553e58aa67668494a88f864c"
38+
},
39+
"conpher_list_on" : {
40+
"name" : "conpher_list_on",
41+
"rule" : ".conpher_list_on, .device-desktop .conpher_list_off:hover ",
42+
"hash" : "7d495ee16be1162affd3a480ee4b86d4"
43+
},
44+
"conpher_more_off" : {
45+
"name" : "conpher_more_off",
46+
"rule" : ".conpher_more_off",
47+
"hash" : "c65da03207be1e69ceaa09f15a95d8f4"
48+
},
49+
"conpher_more_on" : {
50+
"name" : "conpher_more_on",
51+
"rule" : ".conpher_more_on, .device-desktop .conpher_more_off:hover ",
52+
"hash" : "70464cdbd30a77cad597c593ca40ab1f"
53+
},
54+
"conpher_people_off" : {
55+
"name" : "conpher_people_off",
56+
"rule" : ".conpher_people_off",
57+
"hash" : "a40f1f129d2e3c33134a4103161c0792"
58+
},
59+
"conpher_people_on" : {
60+
"name" : "conpher_people_on",
61+
"rule" : ".conpher_people_on, .device-desktop .conpher_people_off:hover ",
62+
"hash" : "fd99a5b329ebe0144acc8fe669f0d936"
63+
},
64+
"conpher_settings_off" : {
65+
"name" : "conpher_settings_off",
66+
"rule" : ".conpher_settings_off",
67+
"hash" : "e4b389edbeb7825e4304faf7d20f7469"
68+
},
69+
"conpher_settings_on" : {
70+
"name" : "conpher_settings_on",
71+
"rule" : ".conpher_settings_on, .device-desktop .conpher_settings_off:hover ",
72+
"hash" : "8ad76234fffb3f4cc59238ec3b4a6999"
73+
}
74+
},
75+
"scales" : [
76+
1,
77+
2
78+
],
79+
"header" : "\/**\n * @provides sprite-conpher-css\n * @generated\n *\/\n\n.sprite-conpher {\n background-image: url(\/rsrc\/image\/sprite-conpher.png);\n background-repeat: no-repeat;\n}\n\n@media\nonly screen and (min-device-pixel-ratio: 1.5),\nonly screen and (-webkit-min-device-pixel-ratio: 1.5) {\n .sprite-conpher {\n background-image: url(\/rsrc\/image\/sprite-conpher-X2.png);\n background-size: {X}px {Y}px;\n }\n}\n",
80+
"type" : "standard"
81+
}

scripts/celerity/generate_sprites.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
'icon' => $generator->buildIconSheet(),
3131
'menu' => $generator->buildMenuSheet(),
3232
'apps' => $generator->buildAppsSheet(),
33-
'conph' => $generator->buildConpherenceSheet(),
33+
'conpher' => $generator->buildConpherenceSheet(),
3434
'apps-large' => $generator->buildAppsLargeSheet(),
3535
'tokens' => $generator->buildTokenSheet(),
3636
// TODO: @chad: should we actually remove this?

src/__celerity_resource_map__.php

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -483,18 +483,18 @@
483483
'disk' => '/rsrc/image/sprite-apps.png',
484484
'type' => 'png',
485485
),
486-
'/rsrc/image/sprite-conph-X2.png' =>
486+
'/rsrc/image/sprite-conpher-X2.png' =>
487487
array(
488-
'hash' => '8f79b9888577dab95d6019d1b7f2a204',
489-
'uri' => '/res/8f79b988/rsrc/image/sprite-conph-X2.png',
490-
'disk' => '/rsrc/image/sprite-conph-X2.png',
488+
'hash' => '88f5bf563e90d99ebe1b4ec552a963fc',
489+
'uri' => '/res/88f5bf56/rsrc/image/sprite-conpher-X2.png',
490+
'disk' => '/rsrc/image/sprite-conpher-X2.png',
491491
'type' => 'png',
492492
),
493-
'/rsrc/image/sprite-conph.png' =>
493+
'/rsrc/image/sprite-conpher.png' =>
494494
array(
495-
'hash' => 'a6329b4baa648b57c00de65f6758cbd2',
496-
'uri' => '/res/a6329b4b/rsrc/image/sprite-conph.png',
497-
'disk' => '/rsrc/image/sprite-conph.png',
495+
'hash' => '08dcc68a6b2a89ecce11322f9ffe9d69',
496+
'uri' => '/res/08dcc68a/rsrc/image/sprite-conpher.png',
497+
'disk' => '/rsrc/image/sprite-conpher.png',
498498
'type' => 'png',
499499
),
500500
'/rsrc/image/sprite-gradient.png' =>
@@ -3343,12 +3343,12 @@
33433343
),
33443344
'sprite-conpher-css' =>
33453345
array(
3346-
'uri' => '/res/f640f0c5/rsrc/css/sprite-conph.css',
3346+
'uri' => '/res/6277b31f/rsrc/css/sprite-conpher.css',
33473347
'type' => 'css',
33483348
'requires' =>
33493349
array(
33503350
),
3351-
'disk' => '/rsrc/css/sprite-conph.css',
3351+
'disk' => '/rsrc/css/sprite-conpher.css',
33523352
),
33533353
'sprite-gradient-css' =>
33543354
array(

0 commit comments

Comments
 (0)