Tor Hveem
38f5e998fc
Merge pull request #302 from glowing-bear/updateangular
...
Update angular to 1.3.0-beta.8
11 years ago
Lorenz Hübschle-Schneider
7b6c1df954
Update angular to 1.3.0-beta.8
...
Fixes multibyte utf-8 issue
11 years ago
David Cormier
b7c508dc14
Merge pull request #300 from glowing-bear/indentation
...
Fix broken indentation and closing tags
11 years ago
David Cormier
89c971be72
Merge pull request #299 from glowing-bear/bugfixesimprovementsandothermiscellanii
...
Bugfixes, Improvements, and other miscellanii
11 years ago
Lorenz Hübschle-Schneider
f5223cc602
Fix broken indentation and closing tags
...
There were extraneous </div>s around, ugh
11 years ago
Lorenz Hübschle-Schneider
6b99efb4ac
Handle _buffer_localvar_{add,remov}ed events
...
fixes indendation of newly opened buffers
11 years ago
Lorenz Hübschle-Schneider
afc3aa169f
Reduce number of watchers for buffer list
...
One watcher for each buffer
One additional watcher for each buffer without activity
11 years ago
Lorenz Hübschle-Schneider
78056fd994
Remove unnecessary DOM element for plugin
11 years ago
Lorenz Hübschle-Schneider
bf4488a60a
remove nonexistent clickhandler nickAction
11 years ago
Lorenz Hübschle-Schneider
703953a0f6
Rename highlightNick to addMention
...
...because that's what it does
11 years ago
Lorenz Hübschle-Schneider
101699cce2
Clarify that self-hosting GB is *not* needed
11 years ago
David Cormier
90757f343b
Merge pull request #297 from torhve/log-unhandled
...
Log unhandled events
11 years ago
Tor Hveem
71ecdb2608
Log unhandled events
11 years ago
Tor Hveem
de29e40a3c
Merge pull request #295 from glowing-bear/fixbufferclosing
...
Fix buffer closing
11 years ago
Lorenz Hübschle-Schneider
a2073d893e
Fix buffer closing
...
0cbf5fc4 uncovered an old bug
Thanks for noticing, @torhve
11 years ago
Tor Hveem
60b1c48f14
Merge pull request #294 from glowing-bear/fixnickclick
...
Fix nick clicking
11 years ago
Lorenz Hübschle-Schneider
3d9619abaf
Fix nick clicking
...
- move to correct scope
- use Angular input model instead of accessing DOM directly
- nicklist has changed, adapt to that
11 years ago
Lorenz Hübschle-Schneider
28d3bde907
inputBar.sendMessage: remove unused variable
11 years ago
Tor Hveem
47c9b38d75
Merge pull request #292 from glowing-bear/fixinitialhighlight
...
Fix initial query notifications
11 years ago
Lorenz Hübschle-Schneider
49a96d5cc0
Merge pull request #293 from torhve/fix-input
...
Fix problems with inputbar history and nick complete
11 years ago
Tor Hveem
06f3e50684
Fix problems with inputbar history and nick complete
11 years ago
Lorenz Hübschle-Schneider
cc6c159707
Use http URLs in app manifest, too
11 years ago
Lorenz Hübschle-Schneider
cfb7ff3c40
Fix GitHub pages link
...
SSL isn't officially supported yet and the old link redirects to http:// anyways. That, plus the unsecure websocket on https pages issue, we're better off just linking the http version
11 years ago
Lorenz Hübschle-Schneider
abfa26d6ed
Clean up buffer model a bit
...
* use type local variable to determine whether to indent
* local_variables is not used, don't export/save it
11 years ago
Lorenz Hübschle-Schneider
64af1f357c
Fix query notifications on first connect
...
Fixes #284
11 years ago
Lorenz Hübschle-Schneider
236b0da97b
Merge pull request #291 from torhve/fix-empty
...
Don't send empty commands, use angular model instead of accessing element value directly. Fixes problem with pressing enter will send previous value in history.
11 years ago
Lorenz Hübschle-Schneider
91bca211ee
Merge pull request #290 from torhve/sslerror
...
Better user feedback for connection problems
11 years ago
Tor Hveem
91b0ddc259
Fix syntax. Emit relaydisconnect so connect button changes
11 years ago
Tor Hveem
3f595ea0ac
Don't send empty commands, use angular model instead of accessing
...
element value directly. Fixes problem with pressing enter will send
previous value in history.
11 years ago
Lorenz Hübschle-Schneider
2eddc9ff3d
Merge pull request #288 from torhve/clear
...
Support clearing of buffer lines with command /c or /clear
11 years ago
Tor Hveem
695c429c4f
Only support the weechat defaults for clearing buffer
11 years ago
Tor Hveem
fbfeec8fca
Change the connect button text based on connection status
11 years ago
Tor Hveem
d2f11ad89d
Catch DOMException
11 years ago
Tor Hveem
f21cf4c046
Support clearing of buffer lines with command /c or /clear
11 years ago
David Cormier
9121407ddd
Merge pull request #283 from glowing-bear/fixsearch
...
Don't send input bar contents on buffer switch
11 years ago
Tor Hveem
3499998764
Merge pull request #285 from glowing-bear/encryptioninstructions
...
Improve encryption instructions
11 years ago
Lorenz Hübschle-Schneider
b766b41ed4
Improve encryption instructions
11 years ago
Lorenz Hübschle-Schneider
84270655ee
Don't send input bar contents on buffer switch
...
Fixes #277
11 years ago
Tor Hveem
b06f6f8589
Merge pull request #280 from glowing-bear/fixnickspeak
...
Fix bug where updateNickSpeak would fail on lines without a prefix
11 years ago
Tor Hveem
512f7d726b
Merge pull request #282 from glowing-bear/fixonelinebug
...
Fix that bug where only one line was loaded
11 years ago
Lorenz Hübschle-Schneider
9f6f598f40
Merge pull request #281 from glowing-bear/travisbequiet
...
Travis: disable build success IRC notifications
11 years ago
Lorenz Hübschle-Schneider
aab111bb80
Fix that bug where only one line was loaded
...
Let me tell the story backwards:
For some reason, only one line would be fetched in `fetchMoreLines`, but
neither `numLines` nor `buffer.requestedLines` were `undefined`. The
paramater `numLines` must have had some strange value, though.
`connection.fetchMoreLines` is invoked through the main controllers
`$scope.fetchMoreLines`, which sets the parameter to `$scope.lines` if it was
undefined before. That value is computed in `$scope.calculateNumLines`,
which takes the height of the lines area and divides it by the height of the first
bufferline. This computation is retriggered on every `resize` event.
The first bufferline is the 'fetch more lines' link at the top of the window. If the
currently active buffer doesn't have more lines, it is hidden with `ngHide`,
causing its `clientHeight` property to be `0`, and the number of lines to be
fetched `$scope.lines = Infinity` (due to a division by zero).
In `connection.fetchMoreLines`, the following request is then made:
`"buffer:0x" + buffer.id + "/own_lines/last_line(-" + numLines + ")/data"`
to which WeeChat responds with one line. Voilà, there's your mess.
11 years ago
Lorenz Hübschle-Schneider
f3a94eaa6c
Travis: disable build success IRC notifications
11 years ago
Lorenz Hübschle-Schneider
36a35628e2
Fix bug where updateNickSpeak would fail on lines without a prefix
11 years ago
Tor Hveem
6812501f12
Merge pull request #278 from glowing-bear/uifix
...
Add space to bottom of #bufferlines
11 years ago
Lorenz Hübschle-Schneider
116e984ac8
Add space to bottom of bufferlines
11 years ago
David Cormier
6e88dfe963
Merge pull request #275 from glowing-bear/countWatchers
...
Better countWatchers, remove jQuery uses
11 years ago
David Cormier
c104385834
css: merge body tags
11 years ago
Tor Hveem
fb2134736c
Pixel adjustments to attempt perfectly align icons in top bar
11 years ago
Tor Hveem
dc077ac903
Improve CSS layout. Fix 98% bug that affects chrome/ff differently.
...
Conflicts:
css/glowingbear.css
11 years ago