Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15454706
D17456.id41978.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
D17456.id41978.diff
View Options
diff --git a/src/applications/badges/icon/PhabricatorBadgesIconSet.php b/src/applications/badges/icon/PhabricatorBadgesIconSet.php
--- a/src/applications/badges/icon/PhabricatorBadgesIconSet.php
+++ b/src/applications/badges/icon/PhabricatorBadgesIconSet.php
@@ -15,21 +15,33 @@
'fa-user' => pht('Average Person'),
'fa-bug' => pht('Ladybug'),
'fa-users' => pht('Triplets'),
-
'fa-book' => pht('Nominomicon'),
+
'fa-rocket' => pht('Escape Route'),
'fa-life-ring' => pht('Foam Circle'),
'fa-birthday-cake' => pht('Cake Day'),
-
'fa-camera-retro' => pht('Leica Enthusiast'),
'fa-beer' => pht('Liquid Lunch'),
+
'fa-gift' => pht('Free Stuff'),
'fa-eye' => pht('Eye See You'),
-
'fa-heart' => pht('Love is Love'),
'fa-trophy' => pht('Winner at Things'),
'fa-umbrella' => pht('Rain Defender'),
+
'fa-graduation-cap' => pht('In Debt'),
+ 'fa-empire' => pht('The Empire'),
+ 'fa-first-order' => pht('First Order'),
+ 'fa-rebel' => pht('Rebel'),
+ 'fa-space-shuttle' => pht('Star Ship'),
+
+ 'fa-anchor' => pht('Anchors Away'),
+ 'fa-code' => pht('Coder'),
+ 'fa-briefcase' => pht('Serious Business'),
+ 'fa-globe' => pht('International'),
+ 'fa-desktop' => pht('Glowing Rectangle'),
+
+
);
$icons = array();
diff --git a/src/applications/files/controller/PhabricatorFileIconSetSelectController.php b/src/applications/files/controller/PhabricatorFileIconSetSelectController.php
--- a/src/applications/files/controller/PhabricatorFileIconSetSelectController.php
+++ b/src/applications/files/controller/PhabricatorFileIconSetSelectController.php
@@ -31,6 +31,7 @@
$ii = 0;
$buttons = array();
+ $breakpoint = ceil(sqrt(count($set->getIcons())));
foreach ($set->getIcons() as $icon) {
$label = $icon->getLabel();
@@ -75,7 +76,7 @@
$view,
));
- if ((++$ii % 4) == 0) {
+ if ((++$ii % $breakpoint) == 0) {
$buttons[] = phutil_tag('br');
}
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Mar 30, 7:51 PM (4 d, 13 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7613800
Default Alt Text
D17456.id41978.diff (2 KB)
Attached To
Mode
D17456: Add more icon choices to Badges
Attached
Detach File
Event Timeline
Log In to Comment