Robert Flack
Robert Flack
Ultimately we should be updating quickopen to run on python3, this is just a workaround to support providing and using python2.
I don't believe there is a [chrome extension API](https://developer.chrome.com/extensions/api_index) for [making the raw TCP connections](https://developer.chrome.com/apps/sockets_tcp) necessary for connecting to an IRC server, but please correct me if I am mistaken....
CIRC will not be able to exist as a Chrome App for much longer: https://blog.chromium.org/2020/01/moving-forward-from-chrome-apps.html I have started a rewrite to a progressive web app in a branch, and I'll...
FYI I did [try](https://github.com/flackr/circ/tree/chrome-sockets-tcp-secure) using `chrome.socket.secure` but it seems to require additional authentication that most SSL IRC servers don't provide, e.g. ``` /server chat.freenode.net +6697 Socket Error: failed to secure...
I tried using chrome.socket as well but found that it fails on many popular ssl irc servers with `net::ERR_SSL_CLIENT_AUTH_CERT_NEEDED (error 110)`. A more compatible change would be to use forge's...
As you pointed out I have a similar change https://github.com/flackr/circ/tree/chrome-sockets-tcp-secure. The issue I found when trying this is that chrome.socket requires additional attestation which fails on many SSL irc servers....
I'm not sure, though chrome.socket now has a secure method which uses built-in SSL so CIRC doesn't need to rely on forge anymore: https://developer.chrome.com/apps/socket#method-secure.
Can you provide more details? What command did you try? What was the error? If you open chrome://inspect in chrome and inspect CIRC under applications are there any errors in...
Yes, it's coming along slowly but if you want to see it there's a new version in development on the "server" branch. It currently requires running a nodejs server but...
Yes, adding an icon next to users, or otherwise customizing the message presentation will be possible.