@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix 2 minor issues with Durable Column

Summary: I left in an opacity change by mistake, and fix language on threads.

Test Plan: review in sandbox

Reviewers: epriestley, btrahan

Reviewed By: btrahan

Subscribers: Korvin, epriestley

Differential Revision: https://secure.phabricator.com/D12054

+17 -18
+14 -14
resources/celerity/map.php
··· 44 44 'rsrc/css/application/config/config-welcome.css' => '6abd79be', 45 45 'rsrc/css/application/config/setup-issue.css' => '22270af2', 46 46 'rsrc/css/application/config/unhandled-exception.css' => '37d4f9a2', 47 - 'rsrc/css/application/conpherence/durable-column.css' => '7c5f3bf5', 47 + 'rsrc/css/application/conpherence/durable-column.css' => 'acefcb30', 48 48 'rsrc/css/application/conpherence/menu.css' => 'c6ac5299', 49 49 'rsrc/css/application/conpherence/message-pane.css' => '5930260a', 50 50 'rsrc/css/application/conpherence/notification.css' => '04a6e10a', ··· 353 353 'rsrc/js/application/auth/behavior-persona-login.js' => '9414ff18', 354 354 'rsrc/js/application/config/behavior-reorder-fields.js' => '14a827de', 355 355 'rsrc/js/application/conpherence/ConpherenceThreadManager.js' => '0324970d', 356 - 'rsrc/js/application/conpherence/behavior-durable-column.js' => 'ad539b06', 356 + 'rsrc/js/application/conpherence/behavior-durable-column.js' => '9142e483', 357 357 'rsrc/js/application/conpherence/behavior-menu.js' => 'c4151295', 358 358 'rsrc/js/application/conpherence/behavior-pontificate.js' => '21ba5861', 359 359 'rsrc/js/application/conpherence/behavior-quicksand-blacklist.js' => '7927a7d3', ··· 514 514 'changeset-view-manager' => '88be0133', 515 515 'config-options-css' => '7fedf08b', 516 516 'config-welcome-css' => '6abd79be', 517 - 'conpherence-durable-column-view' => '7c5f3bf5', 517 + 'conpherence-durable-column-view' => 'acefcb30', 518 518 'conpherence-menu-css' => 'c6ac5299', 519 519 'conpherence-message-pane-css' => '5930260a', 520 520 'conpherence-notification-css' => '04a6e10a', ··· 585 585 'javelin-behavior-diffusion-locate-file' => '6d3e1947', 586 586 'javelin-behavior-diffusion-pull-lastmodified' => '2b228192', 587 587 'javelin-behavior-doorkeeper-tag' => 'e5822781', 588 - 'javelin-behavior-durable-column' => 'ad539b06', 588 + 'javelin-behavior-durable-column' => '9142e483', 589 589 'javelin-behavior-error-log' => '6882e80a', 590 590 'javelin-behavior-fancy-datepicker' => 'c51ae228', 591 591 'javelin-behavior-global-drag-and-drop' => '07f199d8', ··· 1546 1546 'javelin-uri', 1547 1547 'phabricator-notification', 1548 1548 ), 1549 + '9142e483' => array( 1550 + 'javelin-behavior', 1551 + 'javelin-dom', 1552 + 'javelin-stratcom', 1553 + 'javelin-behavior-device', 1554 + 'javelin-scrollbar', 1555 + 'javelin-quicksand', 1556 + 'phabricator-keyboard-shortcut', 1557 + 'conpherence-thread-manager', 1558 + ), 1549 1559 '92eb531d' => array( 1550 1560 'javelin-behavior', 1551 1561 'javelin-dom', ··· 1663 1673 'javelin-dom', 1664 1674 'javelin-util', 1665 1675 'phabricator-prefab', 1666 - ), 1667 - 'ad539b06' => array( 1668 - 'javelin-behavior', 1669 - 'javelin-dom', 1670 - 'javelin-stratcom', 1671 - 'javelin-behavior-device', 1672 - 'javelin-scrollbar', 1673 - 'javelin-quicksand', 1674 - 'phabricator-keyboard-shortcut', 1675 - 'conpherence-thread-manager', 1676 1676 ), 1677 1677 'b1f0ccee' => array( 1678 1678 'javelin-install',
+3 -3
src/applications/conpherence/storage/ConpherenceTransaction.php
··· 55 55 case ConpherenceTransactionType::TYPE_TITLE: 56 56 if ($old && $new) { 57 57 $title = pht( 58 - '%s renamed this Thread from "%s" to "%s".', 58 + '%s renamed this thread from "%s" to "%s".', 59 59 $this->renderHandleLink($author_phid), 60 60 $old, 61 61 $new); 62 62 } else if ($old) { 63 63 $title = pht( 64 - '%s deleted the Thread name "%s".', 64 + '%s deleted the thread name "%s".', 65 65 $this->renderHandleLink($author_phid), 66 66 $old); 67 67 } else { 68 68 $title = pht( 69 - '%s named this Thread "%s".', 69 + '%s named this thread "%s".', 70 70 $this->renderHandleLink($author_phid), 71 71 $new); 72 72 }
-1
webroot/rsrc/css/application/conpherence/durable-column.css
··· 198 198 border-top-color: {$sky}; 199 199 border-bottom-color: {$sky}; 200 200 box-shadow: none; 201 - opacity: 0.6; 202 201 } 203 202 204 203 .conpherence-durable-column-footer {