aboutsummaryrefslogtreecommitdiff
path: root/components/app.js (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Implement /topic commandSimon Ser2020-07-091-0/+12
|
* Handle QUIT messagesSimon Ser2020-07-081-1/+18
|
* Allow paths in server URL query paramSimon Ser2020-07-011-7/+14
|
* Reply to PINGSimon Ser2020-07-011-0/+1
|
* Fix RPL_NAMREPLY handling with multiple nicksSimon Ser2020-06-301-1/+1
|
* Add basic autocompletionSimon Ser2020-06-291-1/+22
|
* Open notification on new highlightSimon Ser2020-06-291-0/+22
|
* Detect highlightsSimon Ser2020-06-291-1/+6
|
* Add button to join new channelSimon Ser2020-06-291-0/+14
|
* Add key attr to log linesSimon Ser2020-06-281-0/+5
|
* Add reason arg to /partSimon Ser2020-06-281-4/+8
|
* Implement /meSimon Ser2020-06-281-8/+27
|
* Rename sidebar and topbarSimon Ser2020-06-261-5/+5
|
* Enable echo-messageSimon Ser2020-06-261-2/+5
|
* Add member listSimon Ser2020-06-261-0/+14
|
* Add away indicatorSimon Ser2020-06-261-0/+8
|
* Parse RPL_MYINFOSimon Ser2020-06-261-1/+10
|
* Send WHO query when opening nick bufferSimon Ser2020-06-261-2/+20
|
* Introduce buffer typeSimon Ser2020-06-261-2/+14
|
* Implement /bufferSimon Ser2020-06-251-0/+8
|
* Make nick links clickableSimon Ser2020-06-251-1/+22
|
* Add buffer headerSimon Ser2020-06-251-10/+32
| | | | Only for channels for now
* Hide CAP and AUTHENTICATE messages in server bufferSimon Ser2020-06-251-0/+4
|
* Save and restore buffer scroll positionSimon Ser2020-06-251-3/+7
|
* Set default connect params in App constructorSimon Ser2020-06-241-33/+32
| | | | Fixes default params not populated in Connect component.
* Fix TypeError when auto-filling server URLSimon Ser2020-06-241-1/+1
|
* Fix unread indicator not showing upSimon Ser2020-06-241-3/+3
|
* Store message date in addMessageSimon Ser2020-06-241-1/+12
|
* Mark buffers as unread on new messageSimon Ser2020-06-241-21/+31
|
* Make setBufferState merge the new state with the prev oneSimon Ser2020-06-241-12/+10
|
* Remove disconnect()Simon Ser2020-06-241-8/+1
|
* Implement /closeSimon Ser2020-06-241-0/+16
|
* Add isChannelSimon Ser2020-06-241-2/+6
|
* Fix missing channel name in setBufferState callSimon Ser2020-06-241-1/+1
|
* Reset buffers on disconnectSimon Ser2020-06-241-1/+5
|
* Switch to reactSimon Ser2020-06-241-0/+388
Under the hood, preact is used to reduce dependency size. We still don't have a build stage, so htm is used instead of JSX.