aboutsummaryrefslogtreecommitdiff
path: root/components/app.js (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Init App.configSimon Ser2021-05-311-0/+1
|
* Hide composer when disconnected from serverSimon Ser2021-05-311-1/+9
|
* Use Client.isMyNick in NOTICE/PRIVMSG handlingSimon Ser2021-05-281-2/+2
|
* Unregister PING timer when destroying clientSimon Ser2021-05-281-5/+2
|
* Implement case-mapping for buffers and message handlerSimon Ser2021-05-271-12/+20
|
* Ignore TAGMSG messagesSimon Ser2021-05-271-0/+1
| | | | | We get these from clients that support typing notifications, for instance.
* Switch to channel buffer on /joinSimon Ser2021-05-271-2/+4
| | | | Closes: https://todo.sr.ht/~emersion/gamja/37
* Implement togglable sidebars for narrow viewportsDrew DeVault2021-05-271-9/+78
| | | | | Closed: https://l.sr.ht/96AD.jpg Open: https://l.sr.ht/gr_9.jpg
* Implement optional opportunistic pingsDrew DeVault2021-05-271-0/+10
|
* Handle incoming MODE messages in appropriate bufferDrew DeVault2021-05-271-0/+6
|
* Fix cross-network mixups when handling QUIT and NICKSimon Ser2021-05-271-0/+6
| | | | Only mutate buffers if they belong to our connection.
* Add case-mapping support for channel membersSimon Ser2021-05-271-7/+21
| | | | Make a buffer's members an irc.CaseMapMap.
* Add hint to run /help in unknown command error messageSimon Ser2021-05-271-2/+2
|
* Add nick URL paramSimon Ser2021-05-271-0/+3
| | | | Closes: https://todo.sr.ht/~emersion/gamja/40
* Open error bubbles for IRC numeric errorsSimon Ser2021-05-271-5/+4
|
* Improve command error reportingSimon Ser2021-05-271-2/+2
| | | | state.error is expected to be a String, not an Error.
* Implement /kick and KICK handling in buffersDrew DeVault2021-05-271-0/+16
|
* Always parse autojoin channels from URL paramsSimon Ser2021-05-271-18/+23
| | | | Even if connection parameters were previously saved to local storage.
* Fix config.json relative pathSimon Ser2021-05-261-1/+1
| | | | The path should be relative to index.html, not the JS file.
* Read auto-join channels from browser URL hashSimon Ser2021-05-261-0/+4
| | | | This is easier to type than trying to escape the # in ?channels=#XXX.
* Introduce store helperSimon Ser2021-05-261-18/+11
| | | | | | | | Responsible for serializing/deserializing data to be saved in localStorage. Add a prefix to all localStorage entries to avoid conflicts with other webapps. Stop guarding against localStorage not existing, browsers can just implement a dumb interface to disable it.
* Add support for IRCv3 setnameSimon Ser2021-05-251-0/+6
|
* Ignore BOUNCER NETWORK messages if we're already bound to a networkSimon Ser2021-05-251-0/+6
|
* Display bouncer network statusSimon Ser2021-05-251-1/+7
|
* Add support for the soju.im/bouncer-networks-notify capSimon Ser2021-05-251-19/+46
|
* Fix close() for bouncer networksSimon Ser2021-05-251-3/+30
|
* Add UI to edit/delete a networkSimon Ser2021-05-251-12/+54
|
* Add UI to add a new bouncer networkSimon Ser2021-05-251-0/+34
|
* Add support for the soju.im/bouncer-networks extensionSimon Ser2021-05-251-0/+21
|
* Fix TypeError in handleBufferScrollTopSimon Ser2021-05-251-1/+1
| | | | | | Fixes the following: TypeError: client is undefined
* Clear local storage when clicking "Disconnect"Simon Ser2021-05-251-0/+4
|
* Only switch to autojoin channel onceSimon Ser2021-05-251-2/+7
|
* Add support for config fileSimon Ser2021-05-251-26/+66
| | | | Closes: https://todo.sr.ht/~emersion/gamja/20
* Use ISUPPORT CHATHISTORY to discover max page sizeSimon Ser2021-05-111-1/+1
|
* Parse ISUPPORT tokens in clientSimon Ser2021-05-111-4/+1
|
* Fix TypeError in App.render()Simon Ser2021-05-101-1/+1
| | | | | | Fixes the following error: Uncaught (in promise) TypeError: activeBuffer is undefined
* Remove client from map on disconnectSimon Ser2021-03-101-0/+1
|
* Display error popup on FAILSimon Ser2021-03-091-0/+5
|
* Add some space between error message and close buttonSimon Ser2021-03-091-3/+2
|
* Break long tag attributes on multiple linesSimon Ser2021-03-091-7/+38
| | | | Makes that stuff more readable.
* Rename Connect/Join to ConnectForm/JoinFormSimon Ser2021-03-091-4/+4
|
* Cleanup compareBuffersSimon Ser2021-03-091-18/+12
|
* Only switch buffer on connect if there's no active bufferSimon Ser2021-03-091-1/+3
|
* Fix whitespace issuesSimon Ser2021-03-091-11/+11
|
* Remove unused DEFAULT_NETWORK constantSimon Ser2021-03-081-2/+0
|
* Add help section for commandsSimon Ser2021-03-081-1/+1
|
* Add help dialog with keybindings referenceSimon Ser2021-03-081-0/+12
|
* Add dialog for join formSimon Ser2021-03-081-6/+28
|
* Extract error message popupSimon Ser2021-03-081-3/+8
|
* Display server messages in server bufferSimon Ser2021-03-081-1/+5
| | | | References: https://todo.sr.ht/~emersion/gamja/21