aboutsummaryrefslogtreecommitdiff
path: root/components/member-list.js (follow)
Commit message (Collapse)AuthorAgeFilesLines
* components/buffer-list: show realname as tooltipSimon Ser2024-02-201-1/+1
|
* lib/irc: add formatURLSimon Ser2023-04-191-2/+1
|
* Sort lists with localeCompareNolan Prescott2022-09-051-1/+1
| | | | | | | | | | | | | | | | | | | | | | 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'.
* components/member-list: re-render on State.users updateSimon Ser2021-11-281-2/+4
|
* Dim away users in member listSimon Ser2021-11-281-1/+7
| | | | References: https://todo.sr.ht/~emersion/gamja/13
* Hide meaningless real namesSimon Ser2021-09-211-1/+2
|
* Display account nameSimon Ser2021-09-211-0/+4
|
* Add support for extended-joinSimon Ser2021-09-211-2/+15
|
* Display username/hostname in member listSimon Ser2021-09-211-0/+9
|
* Add STATUSMSG indicatorSimon Ser2021-06-111-2/+6
| | | | Closes: https://todo.sr.ht/~emersion/gamja/65
* s/var/let/Simon Ser2021-06-101-2/+2
|
* Display prefixes in member listDrew DeVault2021-05-311-4/+50
| | | | Closes: https://todo.sr.ht/~emersion/gamja/43
* Add case-mapping support for channel membersSimon Ser2021-05-271-1/+1
| | | | Make a buffer's members an irc.CaseMapMap.
* Make all resource paths relativeSimon Ser2021-03-021-2/+2
| | | | Closes: https://todo.sr.ht/~emersion/gamja/17
* Add message URLs, unify URL generationSimon Ser2020-07-151-2/+2
|
* Add shouldComponentUpdate to member listSimon Ser2020-07-131-17/+35
|
* Don't use `this` in functional componentsSimon Ser2020-07-091-1/+1
| | | | This works in preact, but doesn't with react.
* Rename sidebar and topbarSimon Ser2020-06-261-1/+1
|
* Sort buffers and membersSimon Ser2020-06-261-1/+1
|
* Add member listSimon Ser2020-06-261-0/+25