gamja-old/components
Nolan Prescott 096fcbf829 Sort lists with localeCompare
The difference in case sensitivity is the most obvious change with
servers like soju that support CASEMAPPING ascii and
rfc1459. Currently the list:
  'Alpha', 'aardvark', 'Charlie', 'comma'
currently sorts to:
  'Alpha', 'Charlie', 'aardvark', 'comma'
with this change it will instead become:
  'aardvark', 'Alpha', 'Charlie', 'comma'

If something like RFC 7613 gets broader support then there are a few
more differences for a list like:
  'éclair', 'ecstatic, 'aardvark', 'zed', 'Gamma'
currently sorts to:
  'Gamma', 'aardvark', 'ecstatic', 'zed', 'éclair'
with this patch would instead sort to:
  'aardvark', 'éclair', 'ecstatic', 'Gamma', 'zed'

The above examples were run with a locale unspecified which fell back
to my browser/host default of 'en'.
2022-09-05 09:03:42 +02:00
..
app.js Drop support for soju.im/read 2022-09-03 14:41:53 +02:00
auth-form.js Add post-connect UI to login via SASL 2021-11-21 16:40:46 +01:00
buffer-header.js components/buffer-header: fix duplicate settings button 2022-06-28 15:11:48 +02:00
buffer-list.js components/buffer-list: remove pointless temporary variable 2022-02-04 14:32:29 +01:00
buffer.js components/buffer: show disclaimer for +draft/channel-context messages 2022-06-28 15:55:35 +02:00
composer.js Limit composer length 2022-08-28 19:16:41 +02:00
connect-form.js Convert remaining simple quotes to double quotes 2022-02-26 09:54:31 +01:00
dialog.js Turn dialog close button into a <button> 2021-06-22 16:02:55 +02:00
help.js components/help: use bold for command name only 2022-01-09 19:28:23 +01:00
join-form.js Ask confirmation before JOIN on irc:// link click 2021-11-08 10:44:10 +01:00
member-list.js Sort lists with localeCompare 2022-09-05 09:03:42 +02:00
membership.js Add STATUSMSG indicator 2021-06-11 11:18:29 +02:00
network-form.js Auto-join when adding new network on irc:// link click 2021-11-07 19:47:49 +01:00
register-form.js Add support for draft/account-registration 2021-11-30 14:59:44 +01:00
scroll-manager.js components/scroll-manager: don't crash when Buffer is empty 2022-04-22 12:32:54 +02:00
settings-form.js Add button to enable protocol handler in settings 2022-06-27 17:01:15 +02:00
verify-form.js Mark register/verify dialogs as loading 2021-11-30 15:49:52 +01:00