From simon at peacock.onl Thu Apr 2 08:56:03 2020 From: simon at peacock.onl (Simon F. Peacock) Date: Thu, 2 Apr 2020 07:56:03 +0100 Subject: [qutebrowser] Hint mode and pop-ups Message-ID: <20200402065603.GA11471@T480> Hi, I have recently started using qutebrowser and think it's excellent, however on certain pages hint mode doesn't give the option for links on pop-up panes. This mostly happens with banners that ask to accept cookies. Similarly, if there are more than one pane in a window, such as the text boxes on stackexchange, is there a way to select the correct box to allow scrolling? Thanks for you help, Simon -- -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 488 bytes Desc: not available URL: From me at the-compiler.org Wed Apr 8 11:24:22 2020 From: me at the-compiler.org (Florian Bruhin) Date: Wed, 8 Apr 2020 11:24:22 +0200 Subject: [qutebrowser] Using importer.py In-Reply-To: <158556454971.12999.16149154051716164368@abysm> References: <1585563978.21810.0@smtp.mailbox.org> <158556454971.12999.16149154051716164368@abysm> Message-ID: <20200408092422.zdbmtmos7dlwpd23@hooch.localdomain> Hey, better late than never: On Mon, Mar 30, 2020 at 12:35:49PM +0200, Felix Van der Jeugt wrote: > Dear Erazem Kokot, > > Quoting Erazem Kokot (2020-03-30 12:26:18) > > python3 importer.py -i mozilla ~/.mozilla/firefox/ > > > > which returned this error: > > > > > Traceback (most recent call last): > > > File "importer.py", line 351, in > > > main() > > > File "importer.py", line 84, in main > > > output_format) > > > File "importer.py", line 298, in import_moz_places > > > c.execute(place_query[typ]) > > > sqlite3.OperationalError: database is locked > > > > I'm guessing the cause of the 2nd error message is that the profile > > is somehow encrypted, but how can I unlock it or use either of the > > commands to import my bookmarks? > > This last seems correct to me, but maybe qutebrowser is still running > during execution? I'd expect qb to lock the bookmarks while it's > running. > > I'll leave it up to experts to answer if this is not the solution. I think Felix is almost correct here: It's probably Firefox which is still running (or did quit in an unclean way), since the script is failing when trying to open Firefox' places.sqlite. qutebrowser's bookmarks are just a plaintext file, not a sqlite database (only the history is). Florian -- me at the-compiler.org (Mail/XMPP) | https://www.qutebrowser.org https://bruhin.software/ | https://github.com/sponsors/The-Compiler/ GPG: 916E B0C8 FD55 A072 | https://the-compiler.org/pubkey.asc I love long mails! | https://email.is-not-s.ms/ -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: not available URL: From me at the-compiler.org Wed Apr 8 11:32:34 2020 From: me at the-compiler.org (Florian Bruhin) Date: Wed, 8 Apr 2020 11:32:34 +0200 Subject: [qutebrowser] Hint mode and pop-ups In-Reply-To: <20200402065603.GA11471@T480> References: <20200402065603.GA11471@T480> Message-ID: <20200408093234.3kaou6ufs7mm2p5f@hooch.localdomain> Hey Simon, On Thu, Apr 02, 2020 at 07:56:03AM +0100, Simon F. Peacock wrote: > I have recently started using qutebrowser and think it's excellent, however on > certain pages hint mode doesn't give the option for links on pop-up panes. This > mostly happens with banners that ask to accept cookies. Do you have concrete examples? I can think of two reasons why that could be happening: 1) Those banners use JS click handlers on span/div elements rather than proper links/buttons. -> https://github.com/qutebrowser/qutebrowser/pull/4817 might help 2) They are in separate iframes, not much qutebrowser can do then. > Similarly, if there are more than one pane in a window, such as the text > boxes on stackexchange, is there a way to select the correct box to allow > scrolling? https://github.com/qutebrowser/qutebrowser/pull/4715 should help with that. So, hopefully both will be fixed in the forseeable future. Florian -- me at the-compiler.org (Mail/XMPP) | https://www.qutebrowser.org https://bruhin.software/ | https://github.com/sponsors/The-Compiler/ GPG: 916E B0C8 FD55 A072 | https://the-compiler.org/pubkey.asc I love long mails! | https://email.is-not-s.ms/ -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: not available URL: From rajiv at nwesc.top Wed Apr 8 11:40:56 2020 From: rajiv at nwesc.top (Rajiv Parfenov) Date: Wed, 08 Apr 2020 12:40:56 +0300 Subject: [qutebrowser] Tab history Message-ID: <11497568.O9o76ZdvQC@dell> Hi, Is there a way to get history of a tab in the form of a list? Sometimes it becomes tedious to press H and L multiple times to find exact page. -- Regards, Rajiv From me at the-compiler.org Wed Apr 8 12:03:52 2020 From: me at the-compiler.org (Florian Bruhin) Date: Wed, 8 Apr 2020 12:03:52 +0200 Subject: [qutebrowser] Tab history In-Reply-To: <11497568.O9o76ZdvQC@dell> References: <11497568.O9o76ZdvQC@dell> Message-ID: <20200408100352.s2z767i5kdewvbnu@hooch.localdomain> Hey, On Wed, Apr 08, 2020 at 12:40:56PM +0300, Rajiv Parfenov wrote: > Is there a way to get history of a tab in the form of a list? Sometimes it > becomes tedious to press H and L multiple times to find exact page. There's an open PR for completion for :back and :forward: https://github.com/qutebrowser/qutebrowser/pull/4180 Florian -- me at the-compiler.org (Mail/XMPP) | https://www.qutebrowser.org https://bruhin.software/ | https://github.com/sponsors/The-Compiler/ GPG: 916E B0C8 FD55 A072 | https://the-compiler.org/pubkey.asc I love long mails! | https://email.is-not-s.ms/ -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: not available URL: From contact at erazem.eu Wed Apr 8 13:19:48 2020 From: contact at erazem.eu (Erazem Kokot) Date: Wed, 08 Apr 2020 13:19:48 +0200 Subject: [qutebrowser] Using importer.py In-Reply-To: <20200408092422.zdbmtmos7dlwpd23@hooch.localdomain> Message-ID: > I think Felix is almost correct here: It's probably Firefox which is > still > running (or did quit in an unclean way), since the script is failing > when > trying to open Firefox' places.sqlite. Thanks for replying. Luckily I've originally imported those bookmarks from qutebrowser, so it wasn't hard to update only a couple of bookmarks. I'll keep this in mind if the issue occurs in the future. Regards, Erazem From rajiv at nwesc.top Wed Apr 8 14:09:46 2020 From: rajiv at nwesc.top (Rajiv Parfenov) Date: Wed, 08 Apr 2020 15:09:46 +0300 Subject: [qutebrowser] Tab history In-Reply-To: <20200408100352.s2z767i5kdewvbnu@hooch.localdomain> References: <11497568.O9o76ZdvQC@dell> <20200408100352.s2z767i5kdewvbnu@hooch.localdomain> Message-ID: <5588090.lOV4Wx5bFT@dell> On Wednesday, April 8, 2020 1:03:52 PM MSK Florian Bruhin wrote: > Hey, > > On Wed, Apr 08, 2020 at 12:40:56PM +0300, Rajiv Parfenov wrote: > > Is there a way to get history of a tab in the form of a list? Sometimes it > > becomes tedious to press H and L multiple times to find exact page. > > There's an open PR for completion for :back and :forward: > https://github.com/qutebrowser/qutebrowser/pull/4180 > > Florian Any chance for merge? -- Regards, Rajiv From contact at erazem.eu Wed Apr 8 16:23:44 2020 From: contact at erazem.eu (Erazem Kokot) Date: Wed, 08 Apr 2020 16:23:44 +0200 Subject: [qutebrowser] Desktop notifications not working Message-ID: Hi, I've recently tried to use Discord's web app (discordapp.com) inside qutebrowser, but it seems notifications aren't working. I've tested this with [0] Ben Kennish's HTML5 Web Notifications Test, where I could allow it to send notifications, but no notifications would be visible. I'm using SwayWM with Mako (on Arch) as my notification daemon (which shows notifications outside qutebrowser properly). Afaik Mako uses `libnotify` if that changes anything. I've allowed both sites (Discord and [0]) to always send notifications, along with some other websites, but none of them do. What could be the cause of this? Regards, Erazem K. --- [0] https://www.bennish.net/web-notifications.html From contact at erazem.eu Wed Apr 8 16:35:40 2020 From: contact at erazem.eu (Erazem Kokot) Date: Wed, 08 Apr 2020 16:35:40 +0200 Subject: [qutebrowser] Desktop notifications not working In-Reply-To: Message-ID: I just found [0] #4780, which explains the issue, but I'd still like to know how to show notifications using Qt or whichever method qutebrowser uses, since I couldn't track down anything useful. Thanks for any replies. Regards, Erazem K. --- [0] https://github.com/qutebrowser/qutebrowser/issues/4780 From contact at erazem.eu Wed Apr 8 17:12:51 2020 From: contact at erazem.eu (Erazem Kokot) Date: Wed, 08 Apr 2020 17:12:51 +0200 Subject: [qutebrowser] Desktop notifications not working In-Reply-To: Message-ID: Hi again, Please disregard the previous messages, after looking more closely at #4780, it appears that in Sway, the tray has to be enabled (I disabled it manually), to be able to show notifications from qutebrowser. After I re-enabled it, everything worked as expected. Sorry for these last few messages. Regards, Erazem K. From me at the-compiler.org Thu Apr 9 20:41:37 2020 From: me at the-compiler.org (Florian Bruhin) Date: Thu, 9 Apr 2020 20:41:37 +0200 Subject: [qutebrowser] Tab history In-Reply-To: <5588090.lOV4Wx5bFT@dell> References: <11497568.O9o76ZdvQC@dell> <20200408100352.s2z767i5kdewvbnu@hooch.localdomain> <5588090.lOV4Wx5bFT@dell> Message-ID: <20200409184137.lsc7tykggsarwen5@hooch.localdomain> On Wed, Apr 08, 2020 at 03:09:46PM +0300, Rajiv Parfenov wrote: > On Wednesday, April 8, 2020 1:03:52 PM MSK Florian Bruhin wrote: > > Hey, > > > > On Wed, Apr 08, 2020 at 12:40:56PM +0300, Rajiv Parfenov wrote: > > > Is there a way to get history of a tab in the form of a list? Sometimes it > > > becomes tedious to press H and L multiple times to find exact page. > > > > There's an open PR for completion for :back and :forward: > > https://github.com/qutebrowser/qutebrowser/pull/4180 > > > > Florian > > Any chance for merge? I plan to get back to looking at PRs in 2-3 weeks or so. However, I'll finish the webinspector one first: https://github.com/qutebrowser/qutebrowser/pull/4996 After that, no guarantees as to in which order I'll be looking at things. The :back/:forward completion is something I missed myself occasionally, so it does have a good chance to land on my table (or screen, rather) sooner rather than later. Florian -- me at the-compiler.org (Mail/XMPP) | https://www.qutebrowser.org https://bruhin.software/ | https://github.com/sponsors/The-Compiler/ GPG: 916E B0C8 FD55 A072 | https://the-compiler.org/pubkey.asc I love long mails! | https://email.is-not-s.ms/ -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: not available URL: From me at the-compiler.org Fri Apr 17 19:38:02 2020 From: me at the-compiler.org (Florian Bruhin) Date: Fri, 17 Apr 2020 19:38:02 +0200 Subject: [qutebrowser] qutebrowser v1.10.2 released! Message-ID: <20200417173802.cnf4r25g42h4i4oz@hooch.localdomain> Hey, I'm happy to announce I just released qutebrowser v1.10.2. This is a minor bugfix release, with the main aim to get Qt 5.14.2 out to Windows/macOS users. Thus, the changelog is rather boring: Changed ~~~~~~~ - Windows and macOS releases now bundle Qt 5.14.2, including security fixes up to Chromium 80.0.3987.132. Fixed ~~~~~ - The WhatsApp workaround now also works when using WhatsApp in languages other than English. - The `mkvenv.py` script now also works properly on Windows. Florian -- me at the-compiler.org (Mail/XMPP) | https://www.qutebrowser.org https://bruhin.software/ | https://github.com/sponsors/The-Compiler/ GPG: 916E B0C8 FD55 A072 | https://the-compiler.org/pubkey.asc I love long mails! | https://email.is-not-s.ms/ -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: not available URL: From me at the-compiler.org Sat Apr 18 14:15:57 2020 From: me at the-compiler.org (Florian Bruhin) Date: Sat, 18 Apr 2020 14:15:57 +0200 Subject: [qutebrowser] qutebrowser v1.10.2 released! In-Reply-To: <20200417173802.cnf4r25g42h4i4oz@hooch.localdomain> References: <20200417173802.cnf4r25g42h4i4oz@hooch.localdomain> Message-ID: <20200418121557.ehektk5wgf7zwcww@hooch.localdomain> Hey again, I forgot a "git pull" on my Mac between the version bump and uploading the release, which caused the release to be uploaded as v1.10.1 instead. Thus, there was no .dmg in the releases. Fixed now by: - Restoring the v1.10.1 .dmg to its original version - Re-uploading the correct v1.10.2 .dmg - Improving the release scripts so this shouldn't happen again Sorry for the trouble, and enjoy your weekend! Florian -- me at the-compiler.org (Mail/XMPP) | https://www.qutebrowser.org https://bruhin.software/ | https://github.com/sponsors/The-Compiler/ GPG: 916E B0C8 FD55 A072 | https://the-compiler.org/pubkey.asc I love long mails! | https://email.is-not-s.ms/ -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: not available URL: From joeygoodwell66 at gmail.com Tue Apr 21 08:47:00 2020 From: joeygoodwell66 at gmail.com (Joey Goodwell) Date: Tue, 21 Apr 2020 13:17:00 +0630 Subject: [qutebrowser] About plugins or Add-on Message-ID: Dear to qutebrowser team I am trying to install add-on or plugins. Could you please kindly instruct me how to do so. Thank you -------------- next part -------------- An HTML attachment was scrubbed... URL: From me at the-compiler.org Tue Apr 21 09:34:19 2020 From: me at the-compiler.org (Florian Bruhin) Date: Tue, 21 Apr 2020 09:34:19 +0200 Subject: [qutebrowser] About plugins or Add-on In-Reply-To: References: Message-ID: <20200421073419.imjuvhskwopafsd5@hooch.localdomain> On Tue, Apr 21, 2020 at 01:17:00PM +0630, Joey Goodwell wrote: > Dear to qutebrowser team > I am trying to install add-on or plugins. > Could you please kindly instruct me how to do so. > Thank you What exactly are you trying to do? There isn't an extension API yet - at some point it'll be possible to write Python extensions[1], but WebExtensions (i.e. Chrome/Firefox extensions) will need support from the underlying engine. What's possible right now is to run Greasemonkey scripts (see point 18 in the FAQ[2]) or do some simple things via userscripts[3] (written in e.g. bash or Python). Florian [1] https://github.com/qutebrowser/qutebrowser/issues/30 [2] https://github.com/qutebrowser/qutebrowser/blob/master/doc/faq.asciidoc [3] https://github.com/qutebrowser/qutebrowser/blob/master/doc/userscripts.asciidoc -- me at the-compiler.org (Mail/XMPP) | https://www.qutebrowser.org https://bruhin.software/ | https://github.com/sponsors/The-Compiler/ GPG: 916E B0C8 FD55 A072 | https://the-compiler.org/pubkey.asc I love long mails! | https://email.is-not-s.ms/ -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: not available URL: From joeygoodwell66 at gmail.com Tue Apr 21 12:07:37 2020 From: joeygoodwell66 at gmail.com (Joey Goodwell) Date: Tue, 21 Apr 2020 16:37:37 +0630 Subject: [qutebrowser] About plugins or Add-on In-Reply-To: <20200421073419.imjuvhskwopafsd5@hooch.localdomain> References: <20200421073419.imjuvhskwopafsd5@hooch.localdomain> Message-ID: Thank you for your reply. I really appreciate it. What am I trying to do is that I need to enable/install a plugin or add-on to view the web page correctly.And the add-on is available for other browsers but I really want to use it on " qutebrowser ". I am just a normal linux end-user and no advanced-level user or no programmer.But I will try my best to do as you suggested.Thank you so much, again. On Tue, Apr 21, 2020 at 2:04 PM Florian Bruhin wrote: > On Tue, Apr 21, 2020 at 01:17:00PM +0630, Joey Goodwell wrote: > > Dear to qutebrowser team > > I am trying to install add-on or plugins. > > Could you please kindly instruct me how to do so. > > Thank you > > What exactly are you trying to do? > > There isn't an extension API yet - at some point it'll be possible to write > Python extensions[1], but WebExtensions (i.e. Chrome/Firefox extensions) > will > need support from the underlying engine. > > What's possible right now is to run Greasemonkey scripts (see point 18 in > the > FAQ[2]) or do some simple things via userscripts[3] (written in e.g. bash > or > Python). > > Florian > > [1] https://github.com/qutebrowser/qutebrowser/issues/30 > [2] > https://github.com/qutebrowser/qutebrowser/blob/master/doc/faq.asciidoc > [3] > https://github.com/qutebrowser/qutebrowser/blob/master/doc/userscripts.asciidoc > > -- > me at the-compiler.org (Mail/XMPP) | https://www.qutebrowser.org > https://bruhin.software/ | > https://github.com/sponsors/The-Compiler/ > GPG: 916E B0C8 FD55 A072 | https://the-compiler.org/pubkey.asc > I love long mails! | https://email.is-not-s.ms/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From me at the-compiler.org Tue Apr 21 12:10:21 2020 From: me at the-compiler.org (Florian Bruhin) Date: Tue, 21 Apr 2020 12:10:21 +0200 Subject: [qutebrowser] About plugins or Add-on In-Reply-To: References: <20200421073419.imjuvhskwopafsd5@hooch.localdomain> Message-ID: <20200421101021.pz74drocmpovnqqn@hooch.localdomain> On Tue, Apr 21, 2020 at 04:37:37PM +0630, Joey Goodwell wrote: > What am I trying to do is that I need to enable/install a plugin or add-on to > view the web page correctly.And the add-on is available for other browsers > but I really want to use it on " qutebrowser ". Then the answer probably is "that's not possible". If you have more details (What website? What addon?) there might be alternatives to suggest, but your question doesn't have much detailed information so far ;-) Florian -- me at the-compiler.org (Mail/XMPP) | https://www.qutebrowser.org https://bruhin.software/ | https://github.com/sponsors/The-Compiler/ GPG: 916E B0C8 FD55 A072 | https://the-compiler.org/pubkey.asc I love long mails! | https://email.is-not-s.ms/ -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: not available URL: From joeygoodwell66 at gmail.com Tue Apr 21 12:19:15 2020 From: joeygoodwell66 at gmail.com (Joey Goodwell) Date: Tue, 21 Apr 2020 16:49:15 +0630 Subject: [qutebrowser] About plugins or Add-on In-Reply-To: <20200421101021.pz74drocmpovnqqn@hooch.localdomain> References: <20200421073419.imjuvhskwopafsd5@hooch.localdomain> <20200421101021.pz74drocmpovnqqn@hooch.localdomain> Message-ID: Thank you for your help. As I mentioned before, I am no tech guy so sorry that I can't providemore precise information. As I can think, let me provide the extension that I am talking about and it's address is " https://chrome.google.com/webstore/detail/mua-web-unicode-converter/jnmdbgnckbbmblkbammnfagdmikchhnp ". It is an extension that convert non-unicode fonts to unicode font . I sincerely hope that you can check it for me if you get time. On Tue, Apr 21, 2020 at 4:40 PM Florian Bruhin wrote: > On Tue, Apr 21, 2020 at 04:37:37PM +0630, Joey Goodwell wrote: > > What am I trying to do is that I need to enable/install a plugin or > add-on to > > view the web page correctly.And the add-on is available for other > browsers > > but I really want to use it on " qutebrowser ". > > Then the answer probably is "that's not possible". If you have more details > (What website? What addon?) there might be alternatives to suggest, but > your > question doesn't have much detailed information so far ;-) > > Florian > > -- > me at the-compiler.org (Mail/XMPP) | https://www.qutebrowser.org > https://bruhin.software/ | > https://github.com/sponsors/The-Compiler/ > GPG: 916E B0C8 FD55 A072 | https://the-compiler.org/pubkey.asc > I love long mails! | https://email.is-not-s.ms/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From contact at erazem.eu Tue Apr 21 14:58:35 2020 From: contact at erazem.eu (Erazem Kokot) Date: Tue, 21 Apr 2020 14:58:35 +0200 Subject: [qutebrowser] Weird website layout Message-ID: Hi, I've been working on a school project, which involves modifying a website that uses Javascript, Handlebars for the layout and an SQLite database. The website is running locally using nodejs. Weirdly though, qutebrowser doesn't show the correct layout, rendering it like this: https://imgbbb.com/images/2020/04/21/21-04-20_14-51-50.png, while the correct layout should be like this: https://imgbbb.com/images/2020/04/21/21-04-20_14-52-11.png (displayed in Firefox Developer Edition). I've moved the qutebrowser config directory elsewhere (so it used its default settings). Does anybody have any idea what could be the cause of this? I can share the code if needed. Kind regards, Erazem Kokot From me at the-compiler.org Tue Apr 21 16:43:01 2020 From: me at the-compiler.org (Florian Bruhin) Date: Tue, 21 Apr 2020 16:43:01 +0200 Subject: [qutebrowser] Weird website layout In-Reply-To: References: Message-ID: <20200421144301.hfs4qrhs76ppwtqw@hooch.localdomain> Hey, On Tue, Apr 21, 2020 at 02:58:35PM +0200, Erazem Kokot wrote: > I've been working on a school project, which involves modifying a > website that uses Javascript, Handlebars for the layout and an SQLite > database. > The website is running locally using nodejs. > > Weirdly though, qutebrowser doesn't show the correct layout, rendering it like > this: https://imgbbb.com/images/2020/04/21/21-04-20_14-51-50.png, while the > correct layout should be like this: > https://imgbbb.com/images/2020/04/21/21-04-20_14-52-11.png > (displayed in Firefox Developer Edition). > > I've moved the qutebrowser config directory elsewhere (so it used its > default settings). > > Does anybody have any idea what could be the cause of this? > > I can share the code if needed. Weird. That looks lot like the CSS isn't being loaded. Some questions/ideas: - Does it happen with --temp-basedir? - Do you see any errors in the devtools console ('wi' or :inspector -> console, then reload)? - Does it happen in Chromium? - Does it happen in KDE Falkon (another QtWebEngine browser)? - Can you show your :version info? Florian -- me at the-compiler.org (Mail/XMPP) | https://www.qutebrowser.org https://bruhin.software/ | https://github.com/sponsors/The-Compiler/ GPG: 916E B0C8 FD55 A072 | https://the-compiler.org/pubkey.asc I love long mails! | https://email.is-not-s.ms/ -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: not available URL: From contact at erazem.eu Tue Apr 21 17:03:04 2020 From: contact at erazem.eu (Erazem Kokot) Date: Tue, 21 Apr 2020 17:03:04 +0200 Subject: [qutebrowser] Weird website layout In-Reply-To: <20200421144301.hfs4qrhs76ppwtqw@hooch.localdomain> Message-ID: Thanks for the fast reply, > Does it happen with --temp-basedir? It works like it's supposed to with this argument (which I'm guessing means that there is something wrong with my config or the cache?). I skipped the other recommendations since it appears to work normally in qutebrowser. > Can you show your :version info? https://paste.the-compiler.org/view/12459d88 Regards, Erazem Kokot From me at the-compiler.org Tue Apr 21 17:16:14 2020 From: me at the-compiler.org (Florian Bruhin) Date: Tue, 21 Apr 2020 17:16:14 +0200 Subject: [qutebrowser] Weird website layout In-Reply-To: References: <20200421144301.hfs4qrhs76ppwtqw@hooch.localdomain> Message-ID: <20200421151614.yt5fevkqkelkcj72@hooch.localdomain> On Tue, Apr 21, 2020 at 05:03:04PM +0200, Erazem Kokot wrote: > > Does it happen with --temp-basedir? > > It works like it's supposed to with this argument (which I'm guessing > means that there is something wrong with my config or the cache?). Indeed. I'd probably try Shift-R (:reload --force) first. If that doesn't help, quit qutebrowser and remove ~/.cache/qutebrowser. If that doesn't help either, can you show your ":open qute://configdiff" please? Often, one of the content.* settings is the offender ;-) Florian -- me at the-compiler.org (Mail/XMPP) | https://www.qutebrowser.org https://bruhin.software/ | https://github.com/sponsors/The-Compiler/ GPG: 916E B0C8 FD55 A072 | https://the-compiler.org/pubkey.asc I love long mails! | https://email.is-not-s.ms/ -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: not available URL: From me at the-compiler.org Tue Apr 21 17:26:38 2020 From: me at the-compiler.org (Florian Bruhin) Date: Tue, 21 Apr 2020 17:26:38 +0200 Subject: [qutebrowser] About plugins or Add-on In-Reply-To: References: <20200421073419.imjuvhskwopafsd5@hooch.localdomain> <20200421101021.pz74drocmpovnqqn@hooch.localdomain> Message-ID: <20200421152638.i5opkwbbqkkhjuua@hooch.localdomain> Hey, On Tue, Apr 21, 2020 at 04:49:15PM +0630, Joey Goodwell wrote: > Thank you for your help. As I mentioned before, I am no tech guy so sorry > that I can't providemore precise information. No worries! The link to the extension helped a lot to know what your goal is :) > As I can think, let me provide the extension that I am talking about and > it's address is " > https://chrome.google.com/webstore/detail/mua-web-unicode-converter/jnmdbgnckbbmblkbammnfagdmikchhnp > ". > It is an extension that convert non-unicode fonts to unicode font . > I sincerely hope that you can check it for me if you get time. This should be something which can be done as a Greasemonkey script. So there are two possibilities: 1) Look at the sourcecode[1] of the extension and convert it to a Greasemonkey script, without using any of the chrome.* extension APIs (which this extension only seems to use for settings?). Needs some time and JavaScript skills, though. 2) Find an alternative as Greasemonkey script. Here's some I found with a quick search: https://userscripts-mirror.org/scripts/show/31211 https://userscripts-mirror.org/scripts/show/12332 (by the same author as above?) https://userscripts-mirror.org/scripts/show/42941 https://userscripts-mirror.org/scripts/show/103745 https://userscripts-mirror.org/scripts/show/49538 (wrong way?) Maybe one of those work with qutebrowser and does what you want. See the FAQ for how to install them: https://github.com/qutebrowser/qutebrowser/blob/master/doc/faq.asciidoc (point 18) Florian -- me at the-compiler.org (Mail/XMPP) | https://www.qutebrowser.org https://bruhin.software/ | https://github.com/sponsors/The-Compiler/ GPG: 916E B0C8 FD55 A072 | https://the-compiler.org/pubkey.asc I love long mails! | https://email.is-not-s.ms/ -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: not available URL: From contact at erazem.eu Tue Apr 21 17:24:08 2020 From: contact at erazem.eu (Erazem Kokot) Date: Tue, 21 Apr 2020 17:24:08 +0200 Subject: [qutebrowser] Weird website layout In-Reply-To: <20200421151614.yt5fevkqkelkcj72@hooch.localdomain> Message-ID: > Indeed. I'd probably try Shift-R (:reload --force) first. If that > doesn't help, > quit qutebrowser and remove ~/.cache/qutebrowser. Both didn't work. > If that doesn't help either, can you show your ":open qute://configdiff" > please? Often, one of the content.* settings is the offender ;-) https://pastebin.com/ubLey68W I've tested removing the blocklists and globally enabling Javascript, but neither worked. I also moved the qutebrowser config directory, so the browser used its default settings, but that didn't work either. Is there anything else that --temp-basedir changes/removes? Regards, Erazem Kokot From me at the-compiler.org Tue Apr 21 17:52:52 2020 From: me at the-compiler.org (Florian Bruhin) Date: Tue, 21 Apr 2020 17:52:52 +0200 Subject: [qutebrowser] Weird website layout In-Reply-To: References: <20200421151614.yt5fevkqkelkcj72@hooch.localdomain> Message-ID: <20200421155252.lehkzjvtt2off5wn@hooch.localdomain> On Tue, Apr 21, 2020 at 05:24:08PM +0200, Erazem Kokot wrote: > > If that doesn't help either, can you show your ":open qute://configdiff" > > please? Often, one of the content.* settings is the offender ;-) > > https://pastebin.com/ubLey68W Nothing looks suspicious there. > I've tested removing the blocklists and globally enabling Javascript, > but neither worked. > I also moved the qutebrowser config directory, so the browser used its > default settings, but that didn't work either. > > Is there anything else that --temp-basedir changes/removes? There's ~/.local/share/qutebrowser with things like cookies and such. Florian -- me at the-compiler.org (Mail/XMPP) | https://www.qutebrowser.org https://bruhin.software/ | https://github.com/sponsors/The-Compiler/ GPG: 916E B0C8 FD55 A072 | https://the-compiler.org/pubkey.asc I love long mails! | https://email.is-not-s.ms/ -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: not available URL: From contact at erazem.eu Tue Apr 21 17:57:50 2020 From: contact at erazem.eu (Erazem Kokot) Date: Tue, 21 Apr 2020 17:57:50 +0200 Subject: [qutebrowser] Weird website layout In-Reply-To: <20200421155252.lehkzjvtt2off5wn@hooch.localdomain> Message-ID: > There's ~/.local/share/qutebrowser with things like cookies and such. Wiping the folder seemed to work (didn't have any important data), thank you very much :) Regards, Erazem Kokot From me at the-compiler.org Tue Apr 21 18:00:05 2020 From: me at the-compiler.org (Florian Bruhin) Date: Tue, 21 Apr 2020 18:00:05 +0200 Subject: [qutebrowser] Weird website layout In-Reply-To: References: <20200421155252.lehkzjvtt2off5wn@hooch.localdomain> Message-ID: <20200421160005.wvptuajx5bh6dt43@hooch.localdomain> On Tue, Apr 21, 2020 at 05:57:50PM +0200, Erazem Kokot wrote: > > There's ~/.local/share/qutebrowser with things like cookies and such. > > Wiping the folder seemed to work (didn't have any important data), > thank you very much :) ...which now makes it impossible to find out what was to blame ;) Glad to hear that helped, though! Florian -- me at the-compiler.org (Mail/XMPP) | https://www.qutebrowser.org https://bruhin.software/ | https://github.com/sponsors/The-Compiler/ GPG: 916E B0C8 FD55 A072 | https://the-compiler.org/pubkey.asc I love long mails! | https://email.is-not-s.ms/ -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: not available URL: From contact at erazem.eu Tue Apr 21 18:00:26 2020 From: contact at erazem.eu (Erazem Kokot) Date: Tue, 21 Apr 2020 18:00:26 +0200 Subject: [qutebrowser] Weird website layout In-Reply-To: <20200421160005.wvptuajx5bh6dt43@hooch.localdomain> Message-ID: > ...which now makes it impossible to find out what was to blame ;) My bad, if the issue ever occurs again, I'll be sure to report it. For now I'm just glad it's fixed. Regards, Erazem Kokot From joeygoodwell66 at gmail.com Tue Apr 21 18:16:05 2020 From: joeygoodwell66 at gmail.com (Joey Goodwell) Date: Tue, 21 Apr 2020 22:46:05 +0630 Subject: [qutebrowser] About plugins or Add-on In-Reply-To: <20200421152638.i5opkwbbqkkhjuua@hooch.localdomain> References: <20200421073419.imjuvhskwopafsd5@hooch.localdomain> <20200421101021.pz74drocmpovnqqn@hooch.localdomain> <20200421152638.i5opkwbbqkkhjuua@hooch.localdomain> Message-ID: This is great, thank you so much! I tried to install it. And also checked the article " 18.*How do I make qutebrowser use greasemonkey scripts? " *and still haven't got a clue.Sorry. I will try again. Thanks a lot. On Tue, Apr 21, 2020 at 9:56 PM Florian Bruhin wrote: > Hey, > > On Tue, Apr 21, 2020 at 04:49:15PM +0630, Joey Goodwell wrote: > > Thank you for your help. As I mentioned before, I am no tech guy so sorry > > that I can't providemore precise information. > > No worries! The link to the extension helped a lot to know what your goal > is :) > > > As I can think, let me provide the extension that I am talking about and > > it's address is " > > > https://chrome.google.com/webstore/detail/mua-web-unicode-converter/jnmdbgnckbbmblkbammnfagdmikchhnp > > ". > > It is an extension that convert non-unicode fonts to unicode font . > > I sincerely hope that you can check it for me if you get time. > > This should be something which can be done as a Greasemonkey script. So > there are two possibilities: > > 1) Look at the sourcecode[1] of the extension and convert it to a > Greasemonkey > script, without using any of the chrome.* extension APIs (which this > extension > only seems to use for settings?). Needs some time and JavaScript > skills, though. > > 2) Find an alternative as Greasemonkey script. > > Here's some I found with a quick search: > https://userscripts-mirror.org/scripts/show/31211 > https://userscripts-mirror.org/scripts/show/12332 (by the same author as > above?) > https://userscripts-mirror.org/scripts/show/42941 > https://userscripts-mirror.org/scripts/show/103745 > https://userscripts-mirror.org/scripts/show/49538 (wrong way?) > > Maybe one of those work with qutebrowser and does what you want. See the > FAQ > for how to install them: > > https://github.com/qutebrowser/qutebrowser/blob/master/doc/faq.asciidoc > (point 18) > > Florian > > -- > me at the-compiler.org (Mail/XMPP) | https://www.qutebrowser.org > https://bruhin.software/ | > https://github.com/sponsors/The-Compiler/ > GPG: 916E B0C8 FD55 A072 | https://the-compiler.org/pubkey.asc > I love long mails! | https://email.is-not-s.ms/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From me at the-compiler.org Mon Apr 27 18:29:51 2020 From: me at the-compiler.org (Florian Bruhin) Date: Mon, 27 Apr 2020 18:29:51 +0200 Subject: [qutebrowser] qutebrowser v1.11.0 released Message-ID: <20200427162951.pt4ko4ijt72fv3vf@hooch.localdomain> Hey, I'm happy to announce that I released v1.11.0 today! There are a lot of small features here and there, thanks to all the contributors involved! Also, this release has some initial adoptions for Qt 5.15, including an important change related to sessions: Since Qt doesn't provide an API to load the history of a tab, qutebrowser relies on a reverse-engineered binary serialization format to load tab history from session files. With Qt 5.15, unfortunately that format changed (due to the underlying Chromium upgrade), in a way which makes it impossible for qutebrowser to load tab history from existing session data. A new session format which stores part of the needed binary data in saved sessions is in development and will be released with qutebrowser v1.12.0: https://github.com/qutebrowser/qutebrowser/issues/5359 As a stop-gap measure: - Loading a session with this release will only load the most recently opened page for every tab. As a result, the back/forward-history of every tab will be lost as soon as the session is saved again. - A one-time backup of the session folder will been created in a "before-qt-515" subfolder inside the session folder. - A warning will be shown at the first start with Qt 5.15 with essentially the text above. Stay tuned for a proper fix! Here's the full changelog: ## Added - New settings: * `search.wrap` which can be set to false to prevent wrapping around the page when searching. With QtWebEngine, Qt 5.14 or newer is required. * `content.unknown_url_scheme_policy` which allows controlling when an external application is opened for external links (never, from user interaction, always). * `content.fullscreen.overlay_timeout` to configure how long the fullscreen overlay should be displayed. If set to `0`, no overlay is displayed. * `hints.padding` to add additional padding for hints. * `hints.radius` to set a border radius for hints (set to `3` by default). - New placeholders for `url.searchengines` values: * `{unquoted}` inserts the search term without any quoting. * `{semiquoted}` (same as `{}`) quotes most special characters, but slashes remain unquoted. * `{quoted}` (same as `{}` in earlier releases) also quotes slashes. ## Changed - First adaptions to Qt 5.15, including a stop-gap measure for session loading not working properly with it. - Searching now wraps around the page by default with QtWebKit (where it didn't before). Set `search.wrap` to `false` to restore the old behavior. - The `{}` placeholder for search engines (the `url.searchengines` setting) now does not quote slashes anymore, but other characters typically encoded in URLs still get encoded. This matches the behavior of search engines in Chromium. To revert to the old behavior, use `{quoted}` instead. - The `content.windowed_fullscreen` setting got renamed to `content.fullscreen.window`. - Mouse-wheel scrolling is now prevented while hints are active. - Changes to userscripts: * `qute-bitwarden` now has an optional `--totp` flag which can be used to copy TOTP codes to clipboard (requires the `pyperclip` module). * `readability-js` now opens readability tabs next to the original tab (using the `:open --related` flag). * `readability-js` now displays a favicon for readability tabs. * `password_fill` now triggers a `change` JavaScript event after filling the data. - The `dictcli.py` script now shows better error messages. - Various improvements to the `mkvenv.py` script (mainly useful for development). - Minor performance improvements. ## Deprecated - A warning about old Qt versions is now also shown with Qt 5.9 and 5.10, as support for Qt < 5.11 will be dropped in qutebrowser v2.0. ## Fixed - `unsafeWindow` is now defined for Greasemonkey scripts with QtWebKit. - The proxied `window` global is now shared between different Greasemonkey scripts (but still separate from the page's `window`), to match the original Greasemonkey implementation. - The `--output-messages` (`-m`) flag added in v1.9.0 now also works correctly when using `:spawn --userscript`. - `:version` and `--version` now don't crash if there's an (invalid) `/etc/os-release` file which has non-comment lines without a `=` character. - Scripts in `scripts/` now report errors to `stderr` correctly, instead of using `stdout`. Florian -- me at the-compiler.org (Mail/XMPP) | https://www.qutebrowser.org https://bruhin.software/ | https://github.com/sponsors/The-Compiler/ GPG: 916E B0C8 FD55 A072 | https://the-compiler.org/pubkey.asc I love long mails! | https://email.is-not-s.ms/ -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: not available URL: From ahiunglim89 at gmail.com Tue Apr 28 04:48:23 2020 From: ahiunglim89 at gmail.com (Ahiung Lim) Date: Tue, 28 Apr 2020 09:48:23 +0700 Subject: [qutebrowser] bug:youtube Message-ID: qutebowser version, latest till this date [28/4/2020] youtube comment does not show up, loading.... forever. notification cannot be opened also. I love qutebrowser to the core, i hope it can replace all browser in the world. wish QTB the best. Good luck From me at the-compiler.org Tue Apr 28 09:39:36 2020 From: me at the-compiler.org (Florian Bruhin) Date: Tue, 28 Apr 2020 09:39:36 +0200 Subject: [qutebrowser] bug:youtube In-Reply-To: References: Message-ID: <20200428073936.l2ixrvbmgtbj74dc@hooch.localdomain> Hey, On Tue, Apr 28, 2020 at 09:48:23AM +0700, Ahiung Lim wrote: > qutebowser version, latest till this date [28/4/2020] > youtube comment does not show up, loading.... forever. > notification cannot be opened also. Works fine for me. - Does it work when you start qutebrowser with --temp-basedir? - Can you show your :version info? - If it works with --temp-basedir, can you show ":open qute://configdiff"? Florian -- me at the-compiler.org (Mail/XMPP) | https://www.qutebrowser.org https://bruhin.software/ | https://github.com/sponsors/The-Compiler/ GPG: 916E B0C8 FD55 A072 | https://the-compiler.org/pubkey.asc I love long mails! | https://email.is-not-s.ms/ -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: not available URL: From contact at erazem.eu Tue Apr 28 10:08:18 2020 From: contact at erazem.eu (Erazem Kokot) Date: Tue, 28 Apr 2020 10:08:18 +0200 Subject: [qutebrowser] bug:youtube In-Reply-To: Message-ID: > notification cannot be opened also. Besides what Florian already said you should test, if you're using a WM like Sway (possibly also something similar, like i3) and none of the notifications work, not just on youtube, it might be that you've disabled the application tray, which is what prevents qutebrowser from showing notifications. For swaybar the option is `tray_output none`, but it should be different if you're not using Sway and/or swaybar. Regards, Erazem Kokot From ahiunglim89 at gmail.com Wed Apr 29 05:32:44 2020 From: ahiunglim89 at gmail.com (Ahiung Lim) Date: Wed, 29 Apr 2020 10:32:44 +0700 Subject: [qutebrowser] bug:youtube In-Reply-To: <20200428073936.l2ixrvbmgtbj74dc@hooch.localdomain> References: <20200428073936.l2ixrvbmgtbj74dc@hooch.localdomain> Message-ID: On 4/28/20, Florian Bruhin wrote: > Hey, > > On Tue, Apr 28, 2020 at 09:48:23AM +0700, Ahiung Lim wrote: >> qutebowser version, latest till this date [28/4/2020] >> youtube comment does not show up, loading.... forever. >> notification cannot be opened also. > > Works fine for me. > > - Does it work when you start qutebrowser with --temp-basedir? > - Can you show your :version info? > - If it works with --temp-basedir, can you show ":open qute://configdiff"? > > Florian > > -- > me at the-compiler.org (Mail/XMPP) | https://www.qutebrowser.org > https://bruhin.software/ | https://github.com/sponsors/The-Compiler/ > GPG: 916E B0C8 FD55 A072 | https://the-compiler.org/pubkey.asc > I love long mails! | https://email.is-not-s.ms/ > the --temp-basedir did the job just fine. here is my :version qutebrowser v1.11.0 Backend: QtWebEngine (Chromium 56.0.2924.122) Qt: 5.9.5 CPython: 3.6.9 PyQt: 5.10.1 sip: 4.19.7 colorama: no pypeg2: 2.15 jinja2: 2.10 pygments: 2.2.0 yaml: 3.12 cssutils: no attr: 17.4.0 PyQt5.QtWebEngineWidgets: yes PyQt5.QtWebEngine: yes PyQt5.QtWebKitWidgets: no pdf.js: no sqlite: 3.22.0 QtNetwork SSL: OpenSSL 1.1.1 11 Sep 2018 Style: Adwaita::Style Platform plugin: xcb Platform: Linux-5.3.0-46-generic-x86_64-with-Zorin-15-bionic, 64bit Linux distribution: Zorin OS 15.2 (unknown) Frozen: False Imported from /home/tentram/Applications/qutebrowser/qutebrowser Using Python from /usr/bin/python3 Qt library executable path: /usr/lib/x86_64-linux-gnu/qt5/libexec, data path: /usr/share/qt5 OS Version: --- /etc/lsb-release --- DISTRIB_ID=Zorin DISTRIB_RELEASE=15 DISTRIB_CODENAME=bionic DISTRIB_DESCRIPTION="Zorin OS 15.2" --- /etc/os-release --- NAME="Zorin OS" VERSION="15.2" ID=zorin ID_LIKE=ubuntu PRETTY_NAME="Zorin OS 15.2" VERSION_ID="15" PRIVACY_POLICY_URL="https://www.zorinos.com/legal/privacy" VERSION_CODENAME=bionic UBUNTU_CODENAME=bionic Paths: cache: /home/tentram/.cache/qutebrowser config: /home/tentram/.config/qutebrowser data: /home/tentram/.local/share/qutebrowser runtime: /run/user/1000/qutebrowser Autoconfig loaded: yes Config.py: no config.py was loaded Uptime: 20:36:19 and this is my configdiff looks like: content.headers.user_agent = Linux x86_64 content.host_blocking.enabled = true url.default_page = about:blank url.incdec_segments = ["path", "query"] url.searchengines = {"DEFAULT": "https://google.com/search?q={}"} url.start_pages = about:blank I suspect the useragent thing From me at the-compiler.org Wed Apr 29 09:41:20 2020 From: me at the-compiler.org (Florian Bruhin) Date: Wed, 29 Apr 2020 09:41:20 +0200 Subject: [qutebrowser] bug:youtube In-Reply-To: Message-ID: <20200429074120.bnxg5ba5wkjvordi@hooch.localdomain> Hey, (Note to people on the ML: The later mails I'm quoting were sent to me directly, not to the ML) On Wed, Apr 29, 2020 at 10:32:44AM +0700, Ahiung Lim wrote: > Backend: QtWebEngine (Chromium 56.0.2924.122) > Qt: 5.9.5 Qt 5.9 is quite old, and it looks like the underlying Chromium (from January 2017) is too old for YouTube to work correctly. There are various ways to get a newer Qt: - Use a virtualenv install with a Qt binary: https://github.com/qutebrowser/qutebrowser/blob/master/doc/install.asciidoc#tox Probably the easiest way if you don't care about proprietary video codecs. - Wait for the next Zorin OS release based on Ubuntu 20.04. I had a quick look at their blog: * Ubuntu 16.04 was released in April 2016 Zorin OS 12 based on it: September 2016 * Ubuntu 18.04 was released in April 2018 Zorin OS 15 based on it: June 2019 (!) So this probably will take some time... - Build Qt/QtWebEngine yourself. This is quite a pain and you're mostly on your own. FWIW I intend to drop support for Qt < 5.11 with qutebrowser v2.0.0: https://github.com/qutebrowser/qutebrowser/issues/3839 > and this is my configdiff looks like: > content.headers.user_agent = Linux x86_64 > [...] > > I suspect the useragent thing Yeah. That's not really a valid user agent string, and will probably break various websites. Don't do that :) On Wed, Apr 29, 2020 at 11:50:38AM +0700, Ahiung Lim wrote: > one more thing, I just tried to input the user agent to be exact as the > --temp-basedir one FWIW you can probably do :config-unset content.headers.user_agent > now the youtube can load comments, but the problem still persists with the > notification and profile, when clicked it just show rectangle with spinning > loading thing. same thing happened in temp-basedir also, which i didn't tried > before. That one is definitely caused by the old Qt, it works with Qt 5.12 but I can reproduce the issue with older Qt versions. On Wed, Apr 29, 2020 at 11:51:55AM +0700, Ahiung Lim wrote: > the user agent input is "Mozilla/5.0 ({os_info}) > AppleWebKit/{webkit_version} (KHTML, like Gecko) {qt_key}/{qt_version} > {upstream_browser_key}/{upstream_browser_version} Safari/{webkit_version}" > which is basedir default. normally it displayed blank. A blank user agent was the default before qutebrowser v1.9.0. There, the template string format was introduced instead. Florian -- me at the-compiler.org (Mail/XMPP) | https://www.qutebrowser.org https://bruhin.software/ | https://github.com/sponsors/The-Compiler/ GPG: 916E B0C8 FD55 A072 | https://the-compiler.org/pubkey.asc I love long mails! | https://email.is-not-s.ms/ -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: not available URL: From alison_souza1010 at hotmail.com Thu Apr 30 04:31:12 2020 From: alison_souza1010 at hotmail.com (Alison Souza) Date: Thu, 30 Apr 2020 02:31:12 +0000 Subject: [qutebrowser] Does fake-key work in Insert Mode? Message-ID: I bound fake-key to send a key that?s missing in my keyboard. I tried it in two input fields from different websites and it seems that it doesn?t work in Insert Mode. I am using the global flag. If this is expected behavior, is it possible to change fake-key so that it does work in Insert Mode? Thanks for reading. Sent from Mail for Windows 10. -------------- next part -------------- An HTML attachment was scrubbed... URL: From alison_souza1010 at hotmail.com Thu Apr 30 05:53:41 2020 From: alison_souza1010 at hotmail.com (Alison Souza) Date: Thu, 30 Apr 2020 03:53:41 +0000 Subject: [qutebrowser] Is qutebrowser compatible with Selenium? Message-ID: I find that it loads pages faster than Chrome does, so I need to know. Thanks for reading. Sent from Mail for Windows 10. -------------- next part -------------- An HTML attachment was scrubbed... URL: From ahiunglim89 at gmail.com Thu Apr 30 10:01:59 2020 From: ahiunglim89 at gmail.com (Ahiung Lim) Date: Thu, 30 Apr 2020 15:01:59 +0700 Subject: [qutebrowser] How to connect to DNS? Message-ID: I tried the --qt-flag dns-over-https and restarted the browser, it still not connecting to 1.1.1.1. I'm using Zorin OS, I already set 1.1.1.1 and 1.0.0.1 on DNS Network setttings. what did I miss? From me at the-compiler.org Thu Apr 30 11:42:14 2020 From: me at the-compiler.org (Florian Bruhin) Date: Thu, 30 Apr 2020 11:42:14 +0200 Subject: [qutebrowser] How to connect to DNS? In-Reply-To: References: Message-ID: <20200430094214.3gmc5fuzd4kmlxxh@hooch.localdomain> On Thu, Apr 30, 2020 at 03:01:59PM +0700, Ahiung Lim wrote: > I tried the --qt-flag dns-over-https and restarted the browser, it > still not connecting to 1.1.1.1. > I'm using Zorin OS, I already set 1.1.1.1 and 1.0.0.1 on DNS Network > setttings. what did I miss? It looks like the dns-over-https flag was added in Chromium 78. Qt 5.14 (which is the latest release at the moment) is based on Chromium 77. Qt 5.15 based on Chromium 80 is scheduled to be released on May 19th. You could try the older flags instead: --qt-flag enable-features="dns-over-https From me at the-compiler.org Thu Apr 30 11:48:09 2020 From: me at the-compiler.org (Florian Bruhin) Date: Thu, 30 Apr 2020 11:48:09 +0200 Subject: [qutebrowser] Is qutebrowser compatible with Selenium? In-Reply-To: References: Message-ID: <20200430094809.pweghgne4zwtias7@hooch.localdomain> On Thu, Apr 30, 2020 at 03:53:41AM +0000, Alison Souza wrote: > I find that it loads pages faster than Chrome does, so I need to know. No idea. Apparently some people have tried with QtWebEngine with mixed results: https://forum.qt.io/topic/96202/unrecognized-chrome-version-when-using-selenium-python-bindings-and-chromedriver Give it a try and see what happens? Florian -- me at the-compiler.org (Mail/XMPP) | https://www.qutebrowser.org https://bruhin.software/ | https://github.com/sponsors/The-Compiler/ GPG: 916E B0C8 FD55 A072 | https://the-compiler.org/pubkey.asc I love long mails! | https://email.is-not-s.ms/ -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: not available URL: From me at the-compiler.org Thu Apr 30 11:50:14 2020 From: me at the-compiler.org (Florian Bruhin) Date: Thu, 30 Apr 2020 11:50:14 +0200 Subject: [qutebrowser] Does fake-key work in Insert Mode? In-Reply-To: References: Message-ID: <20200430095014.n6xqlltdtbk6ge2g@hooch.localdomain> On Thu, Apr 30, 2020 at 02:31:12AM +0000, Alison Souza wrote: > I bound fake-key to send a key that?s missing in my keyboard. I tried it > in two input fields from different websites and it seems that it doesn?t > work in Insert Mode. I am using the global flag. > > If this is expected behavior, is it possible to change fake-key so that it > does work in Insert Mode? Works fine for me (though the -g shouldn't be needed). Not much more I can say with such little information... What exactly did you bind, what did you do, and what happens? Does it work with --temp-basedir? Can you show your :version info? Florian -- me at the-compiler.org (Mail/XMPP) | https://www.qutebrowser.org https://bruhin.software/ | https://github.com/sponsors/The-Compiler/ GPG: 916E B0C8 FD55 A072 | https://the-compiler.org/pubkey.asc I love long mails! | https://email.is-not-s.ms/ -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: not available URL: From me at the-compiler.org Thu Apr 30 22:27:18 2020 From: me at the-compiler.org (Florian Bruhin) Date: Thu, 30 Apr 2020 22:27:18 +0200 Subject: [qutebrowser] Paving the road towards qutebrowser v2.0 Message-ID: <20200430202718.exfpo27pf6yfjdht@hooch.localdomain> Hey, For a long time, the qutebrowser blog was quite inactive - to the point there might be people here who don't know about it existing ;) I just wrote a new post there - it's gotten rather long, talking about what has happened in the past few months, what the current state is, and what qutebrowser's plans for the future are :) You can find it here: https://blog.qutebrowser.org/paving-the-road-towards-qutebrowser-v20.html Enjoy! Florian -- me at the-compiler.org (Mail/XMPP) | https://www.qutebrowser.org https://bruhin.software/ | https://github.com/sponsors/The-Compiler/ GPG: 916E B0C8 FD55 A072 | https://the-compiler.org/pubkey.asc I love long mails! | https://email.is-not-s.ms/ -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: not available URL: