You are not logged in.
You can always revert to some previous commit with hg.
I think it's only worth it if you or someone else hits that again.
Try the new version and see how it stands
thanks portix
.:[ git me! ] :.
Offline
Sounds about right. I'll start using the new one unstripped just to be ready then.
Offline
Well that was quick--it's morning here and I just woke up. Does this mean there is no point doing the gdb thing now? I will have to recompile and that will pull in your latest fixes.
As i said i'm not completely sure if the issue is fixed, if you still get segfaults when closing a tab you could create a backtrace but i think you could simply update to the latest revision without compiling with debugging symbols.
Offline
No problem. Will run with gdb for a couple of days (have already got the unstripped new version) and see how things go.
Offline
Using latest dwb-hg unstripped. This has been happening for a day or two, when I press 'd' while a page is loading. Sometimes the whole window closes (usually if closed at 10%), but in this case it simply stopped responding and I had to kill -9 the process.
Offline
This is incredible, thanks portix. One small gripe I have is that I'm not able to rearrange tabs - unless I missed it in the doc - but this is worlds better than vimperator.
Also, I've noticed dwb segfaulting occasionally as well. I'll be running it unstripped through gdb in case it happens again.
Offline
Using latest dwb-hg unstripped. This has been happening for a day or two, when I press 'd' while a page is loading. Sometimes the whole window closes (usually if closed at 10%), but in this case it simply stopped responding and I had to kill -9 the process.
This should be fixed now.
One small gripe I have is that I'm not able to rearrange tabs - unless I missed it in the doc - but this is worlds better than vimperator.
Also, I've noticed dwb segfaulting occasionally as well. I'll be running it unstripped through gdb in case it happens again.
Currently it is not possible to rearrange tabs but i will try to implement it in the next days, it's on my todo list for quite a long time now.
Offline
mutantpineapple wrote:http://codepad.org/t2g8mUFD
Using latest dwb-hg unstripped. This has been happening for a day or two, when I press 'd' while a page is loading. Sometimes the whole window closes (usually if closed at 10%), but in this case it simply stopped responding and I had to kill -9 the process.This should be fixed now.
Unfortunately not. Perhaps I'm doing something wrong. I'm installing dwb-hg through yaourt, which appears to pull the latest source and compile it. I can now reproduce the bug 100% of the time, by simply starting to load any page and pressing 'd' before it finishes.
http://codepad.org/WQgYqmhm
Offline
You are right but this is a different error, but it also should be fixed now.
Offline
Yep, that's sorted it. Thanks for the quick fix!
Offline
This is incredible, thanks portix. One small gripe I have is that I'm not able to rearrange tabs - unless I missed it in the doc - but this is worlds better than vimperator.
There are now three new commands available in the hg-version, tab_move, tab_move_left and tab_move_right with shortcuts gm, gl and gr and aliases tabm, tabl and tabr.
Offline
There are now three new commands available in the hg-version, tab_move, tab_move_left and tab_move_right with shortcuts gm, gl and gr and aliases tabm, tabl and tabr.
You are my hero.
Offline
it seems like the hide-tabbar setting ins't working. when i set it in the web interface, a red line comes up in the status bar saying "No such setting: hide-tabbar".
Is there another way to hide the tab bar? I've gotten around it right now by setting the widget packing to "dTws", but whenever I switch tabs, the tab bar pops up again briefly.
Offline
The hide-tabbar setting was removed, you can now hide the tabbar with widget-packing. To hide the tabbar use an uppercase t, the default layout with hidden tabbar is 'dTws'.
Offline
ok, is there a way to disable the tab bar from showing up again when I switch tabs with J or K?
Offline
ok, is there a way to disable the tab bar from showing up again when I switch tabs with J or K?
In tip now there is an option, it is called tabbar-visible, if set to 0 the tabbar is always hidden.
Offline
awesome, that was fast. thanks!
Offline
Has anyone tested dwb with Google Voice? I can't seem to get the voicemails to play...the play/pause button will switch symbols but nothing gets played. I made sure the plugin blocker was disabled and the 'replace plugins with clickable link' option was disabled, just for testing, but it made no difference. Not sure if this is an HTML5 issue with webkit or something dwb-ish.
Thanks!
Scott
Edit: Well, I tested with midori, and it looks like an identical problem. Disregard, I guess. Although any ideas for getting it to work would be welcome!
Last edited by firecat53 (2012-02-13 21:21:05)
Offline
Another question...there are several sites (most notably my router's admin page and evernote (login or create account)) that won't load and display this error:
Error writing data to TLS socket: The specified session has been invalidated for some reason.
Any workarounds for that? It seems like it might be another webkit issue, as I saw mention of it on a Luakit mailing list post as well.
Thanks,
Scott
Offline
Another question...there are several sites (most notably my router's admin page and evernote (login or create account)) that won't load and display this error:
Error writing data to TLS socket: The specified session has been invalidated for some reason.
Any workarounds for that? It seems like it might be another webkit issue, as I saw mention of it on a Luakit mailing list post as well.
Thanks,
Scott
This is indeed a webkit bug, it occurs in all webkit-gtk browsers.
Offline
How to add hotkeys keymap for cyrillic letters? As example,
in vimperator:
map р h
map о j
map л k
map д l
luakit:
key({}, "j", function (w) w:scroll_vert(more) end),
key({}, "о", function (w) w:scroll_vert(more) end),
Sorry, english is not my native language...
Offline
It is not possible to map different keymaps in dwb://keys directly, however you can map them via the custom commands, you can use the textarea in dwb://keys for that or save them directly in $XDG_CONFIG_HOME/dwb/default/custom_keys:
р:scroll_left
о:scroll_right
л:scroll_up
д:scroll_down
Offline
It is not possible to map different keymaps in dwb://keys directly, however you can map them via the custom commands, you can use the textarea in dwb://keys for that or save them directly in $XDG_CONFIG_HOME/dwb/default/custom_keys:
It works for roman alphabet only, not for cyrillic
Sorry, english is not my native language...
Offline
portix wrote:It is not possible to map different keymaps in dwb://keys directly, however you can map them via the custom commands, you can use the textarea in dwb://keys for that or save them directly in $XDG_CONFIG_HOME/dwb/default/custom_keys:
It works for roman alphabet only, not for cyrillic
Then you are doing something wrong, i've tested it with russian keyboard layout and both, mapping the normal shortcuts and mapping custom commands works here. Can you paste your ~/.config/dwb/default/custom_keys?
Offline
~/.config/dwb/default/custom_keys:
о:scroll_down
д:scroll_right
р:scroll_left
л:scroll_up
PS. dwb-hg rev. 1041
Last edited by from_by (2012-02-15 11:02:47)
Sorry, english is not my native language...
Offline