@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.

Transactions - change show all key from "~" to "@"

Summary: (some) international keyboard layouts can not type "~" in a way as to trigger this so use "@" instead. Save the suggested "+" as that seems like it would be useful for some future "adding stuff" keyboard workflow. Pretty stoked to get this squared away as I am quite confident our unreleased product will now be a huge smashing success. Ref T6683.

Test Plan: made sure my choice was okay via https://en.wikipedia.org/wiki/Dead_key#Dead_keys_on_various_keyboard_layouts; used the "@" key to show all transactions

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin, epriestley

Maniphest Tasks: T6683

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

+10 -10
+9 -9
resources/celerity/map.php
··· 8 8 return array( 9 9 'names' => array( 10 10 'core.pkg.css' => '669b2c21', 11 - 'core.pkg.js' => 'da3ab00a', 11 + 'core.pkg.js' => 'bc72b978', 12 12 'darkconsole.pkg.js' => 'df001cab', 13 13 'differential.pkg.css' => '8af45893', 14 14 'differential.pkg.js' => '42c10e78', ··· 420 420 'rsrc/js/application/repository/repository-crossreference.js' => 'f9539603', 421 421 'rsrc/js/application/search/behavior-reorder-queries.js' => 'e9581f08', 422 422 'rsrc/js/application/slowvote/behavior-slowvote-embed.js' => 'd6f54db0', 423 - 'rsrc/js/application/transactions/behavior-show-older-transactions.js' => '77fcaaee', 423 + 'rsrc/js/application/transactions/behavior-show-older-transactions.js' => 'bde958eb', 424 424 'rsrc/js/application/transactions/behavior-transaction-comment-form.js' => '9f7309fb', 425 425 'rsrc/js/application/transactions/behavior-transaction-list.js' => '13c739ea', 426 426 'rsrc/js/application/uiexample/JavelinViewExample.js' => 'd4a14807', ··· 623 623 'javelin-behavior-phabricator-remarkup-assist' => 'e32d14ab', 624 624 'javelin-behavior-phabricator-reveal-content' => '60821bc7', 625 625 'javelin-behavior-phabricator-search-typeahead' => '724b1247', 626 - 'javelin-behavior-phabricator-show-older-transactions' => '77fcaaee', 626 + 'javelin-behavior-phabricator-show-older-transactions' => 'bde958eb', 627 627 'javelin-behavior-phabricator-tooltips' => '3ee3408b', 628 628 'javelin-behavior-phabricator-transaction-comment-form' => '9f7309fb', 629 629 'javelin-behavior-phabricator-transaction-list' => '13c739ea', ··· 1308 1308 'javelin-install', 1309 1309 'javelin-util', 1310 1310 ), 1311 - '77fcaaee' => array( 1312 - 'javelin-behavior', 1313 - 'javelin-stratcom', 1314 - 'javelin-dom', 1315 - 'phabricator-busy', 1316 - ), 1317 1311 '7814b593' => array( 1318 1312 'javelin-request', 1319 1313 'javelin-behavior', ··· 1650 1644 'javelin-stratcom', 1651 1645 'phabricator-tooltip', 1652 1646 'changeset-view-manager', 1647 + ), 1648 + 'bde958eb' => array( 1649 + 'javelin-behavior', 1650 + 'javelin-stratcom', 1651 + 'javelin-dom', 1652 + 'phabricator-busy', 1653 1653 ), 1654 1654 'be807912' => array( 1655 1655 'javelin-behavior',
+1 -1
webroot/rsrc/js/application/transactions/behavior-show-older-transactions.js
··· 105 105 JX.Stratcom.listen('hashchange', null, check_hash); 106 106 check_hash(); 107 107 108 - new JX.KeyboardShortcut(['~'], 'Show all older changes in the timeline.') 108 + new JX.KeyboardShortcut(['@'], 'Show all older changes in the timeline.') 109 109 .setHandler(JX.bind(null, load_older, load_all_older_callback)) 110 110 .register(); 111 111 });