Skip to main content

Messages

This section allows you to view all Messages made by this member. Note that you can only see Messages made in areas you currently have access to.

Messages - fullessness

3
Otter Browser Forum / Re: Not responding while page buildup
@Emdek thanks to you for this web browser! :)

I confrim that QtWebEngine version not suffer this issue, and this issue is not really a problem for me, so I wait the fix.
Thanks again to you and all other guys behind this software!
4
Otter Browser Forum / Re: Not responding while page buildup
@Emdek disablingJS solve, but the issue return when I reenable it.
I've notice that the problem exits only at the first loading of the website. Once the page has been loaded, the browser works whether refreshing or clearing cache.
9
Otter Browser Forum / Re: [Userjs] Enable Flash player on youtube
Simple updated to have a link to fullscreen version of the video and some other improvements
Code: [Select]
// ==UserScript==
// @name Youtube Html5 Disable
// @homepageURL https://productforums.google.com/forum/#!topic/youtube/CUaTWvKhAuE (original bulk code by Alexander Nartov https://productforums.google.com/d/msg/youtube/CUaTWvKhAuE/q6P1m1kpAwAJ)
// @namespace    
// @description  
// @author       
// @run-at document-start
// @version 1.0
// ==/UserScript==
(function() {
// regex by Nass O https://userstyles.org/styles/117673
if (false || (new RegExp("^https?://apis.google.com/.*/hovercard.*$")).test(document.location.href) || (new RegExp("^https?://www.youtube.(com|([a-z]{2}))(.[a-z]{2})?/((\\?|channel|results|feed|playlist|feature|watch|user|hovercard|upload|my_videos|view_all_playlists|subscription_manager|dashboard|subscribers|c|#|messages|analytics|index).*)$")).test(document.location.href) || (new RegExp("^https?://www.youtube.(com|([a-z]{2}))(.[a-z]{2})?.$")).test(document.location.href) || (new RegExp("^https?://apis.google.com/u/b/.*$")).test(document.location.href)) {

window.setTimeout(function() {
var embedFrame = document.createElement("iframe");
//embedFrame.src = location.href.replace("watch?v=", "embed/");
embedFrame.src = location.href.replace("watch?v=", "v/");
//embedFrame.style = "width: 100%; height: 100%;";
embedFrame.setAttribute("width", "100%");
embedFrame.setAttribute("height", "100%");
var player = document.getElementById("player-api");
if (player != null) {
player.innerHTML = "";
player.appendChild(embedFrame);

var container = document.getElementById("watch7-headline");
var div = document.getElementsByClassName("fullscreen-link");
if (container != null && div.length == 0) {
div = document.createElement("div");
div.className = 'fullscreen-link';
var src = location.href.replace("watch?v=", "v/");
var a = document.createElement("a");
a.setAttribute('href', src);
a.setAttribute('target', '_blank');
a.innerHTML = "fullscreen link";
a.setAttribute("style","color: red !important; float: right");
div.appendChild(a);
container.insertBefore(div, container.firstChild);
}
}
unsafeWindow.spf.dispose();
}, 3000);
}
})();
10
Otter Browser Forum / [Userjs] Enable Flash player on youtube
Hi all,
I have found a script that can disable html5 media player and enable again flash player on youtube to watching video at 1080p, until html5 media supports is complete.
The script can be found here: https://productforums.google.com/d/msg/youtube/CUaTWvKhAuE/q6P1m1kpAwAJ but to works on otter [otter-browser-win32-weekly188 WebKit backend] the script needs for some changes
Code: [Select]
// ==/UserScript==
(function() {
window.setTimeout(function() {
  var embedFrame = document.createElement("iframe");
  //embedFrame.src = location.href.replace("watch?v=", "embed/");
  embedFrame.src = location.href.replace("watch?v=", "v/");
  //embedFrame.style = "width: 100%; height: 100%;";
  embedFrame.setAttribute("width", "100%");
  embedFrame.setAttribute("height", "100%");
  var player = document.getElementById("player-api");
  player.innerHTML = "";
  player.appendChild(embedFrame);
},
3000);
})();
Unfortunately, It brakes the fullscreen mode.

Thanks again to Emdek and all the guys behind this awesome browser!  :D
12
Otter Browser Forum / [weekly168] Searching through Navigation bar bug
closing tab or clicking on thumbnail in Start Page always open a new tab with searching results, if there is content on Search Field.

step to reproduce #1
  • open new tab to open Start page
  • write something in Search Field on address bar
  • close tab through x icon

step to reproduce #2
  • open new tab to open Start page
  • write something on searching field on address bar
  • click on any thumbnail

Btw, thanks for this other great release, now that web panels and resize are back, we can do crazy stuff like this  :D
14
Otter Browser Forum / Re: [weekly165 qtwebengine] Otter silently crash at startup
The weekly166 solves the problem  :) , even if the debug.log file report the following error
Code: [Select]
[0308/205817:WARNING:resource_bundle_qt.cpp(114)] locale_file_path.empty() for locale 
[0308/205829:WARNING:resource_bundle_qt.cpp(114)] locale_file_path.empty() for locale
[0308/205829:WARNING:resource_bundle_qt.cpp(114)] locale_file_path.empty() for locale
16
Otter Browser Forum / Re: Custom menu: support on duplicate entry
Thanks again Emdek, here it is the extract I'm talking about
Code: [Select]
{
"type": "include",
"includeIn": "standard",
"actions":
[
"CloseTab", // this command doesn't appear
"GoBack",
"GoForward",
"Rewind",
"FastForward",
"separator",
"ReloadOrStop",
"ScheduleReload",
"separator",
"BookmarkPage",
"CopyAddress",
"Print",

....

"ContentBlocking",
"WebsitePreferences",
"Preferences",
"separator",
"FullScreen",
"CloseTab" // this wins over first item
   ]
}
17
Otter Browser Forum / Re: [weekly165 qtwebengine] Otter silently crash at startup
Thanks Emdek, this is the content of debug.log
Code: [Select]
[0305/160530:ERROR:icu_util.cc(178)] Invalid file descriptor to ICU data received.
[0305/160530:FATAL:icu_util.cc(297)] Check failed: result.
Backtrace:
QtWebEngineCore::WebContentsAdapter::d_func [0x0F7E4F97+731175]
QtWebEngineCore::WebContentsAdapter::d_func [0x0F7A84A7+482615]
CertificateErrorController::resourceType [0x1073BEED+407037]
QtWebEngineCore::WebContentsAdapter::webChannel [0x103DA3D6+2388710]
QtWebEngineCore::WebContentsAdapter::webContents [0x0F5BD249+14249]
QtWebEngineCore::WebContentsAdapter::webContents [0x0F5BD4F5+14933]
QtWebEngineCore::BrowserContextAdapter::defaultContext [0x0F58173F+15]
QWebEngineProfile::defaultProfile [0x0F03A5A3+83]
(No symbol) [0x00C0CF10]
(No symbol) [0x00C14477]
18
Otter Browser Forum / Custom menu: support on duplicate entry
In my opera12 I have the context menu of document window customized with the first and last items in the list with the close-tab command.
I have tried to do some things in Otter editing webWidget.json file, but seems that the last occurance wins over the other.

Is it a "feature" or is it a bug? And if this is a feature, is there the possibility to change it to have the flexibility like in opera12 ?
19
Otter Browser Forum / [weekly165 qtwebengine] Otter silently crash at startup
Otter win32 on win 7 qtwebengine version doesn't start.
The only info I can collect comes from the event viewer
Code: [Select]
Name of the application that generated the error: otter-browser.exe, Version: 0.9.1.1, time stamp: 0x58b6b428
Name of the module that generated the error: Qt5WebEngineCore.dll, Version: 5.8.0.0, time stamp: 0x588148ea
Exception code: 0x80000003
Offset error 0x002f4f71
20
Otter Browser Forum / Open Otter-browser in portable mode from Opera12 issue [solved]
If memory doesn't betray me shouldn't it be like this?
Code: [Select]
Item, "Open in Otter-browser"="Execute program, "C:\otter-browser-win32-weekly163\otter-browser.exe","--portable %u""
Thanks Frenzie! This is the right way!
I've never had the necessity of this command in opera12 before Otter and some old documentation I found  around the web is soo poor in this days...
...and this resolve the issue with arguments.txt file too!

 :beer:
21
Otter Browser Forum / Open Otter-browser in portable mode from Opera12 issue [solved]
I don't know if this is a right place to ask, but I've tried to have this feature in my opera menu and seems there are some problems.

I set up my otter-browser using "arguments.txt" file with --portable parameter.

I've tried these commands and only the first works but Otter doesn't start in portable mode
Code: [Select]
[Document Popup Menu]
; This command works, BUT ignore "arguments.txt" and open a new otter-browser but using a user account profile
Item, "Open in Otter-browser"="Execute program, "C:\otter-browser-win32-weekly163\otter-browser.exe","%u""

; Not work, otter-browser doesn't start
Item, "Open in Otter-browser"="Execute program, "C:\otter-browser-win32-weekly163\otter-browser.exe --portable","%u""
Item, "Open in Otter-browser"="Execute program, "C:\otter-browser-win32-weekly163\otter-browser.exe --new-window","%u""
Item, "Open in Otter-browser"="Execute program, "C:\otter-browser-win32-weekly163\otter-browser.exe --new-tab","%u""

Is this a webkit issue or is there a way to start Otter in portable mode from my opera12 ?
Sorry for my english and Thanks in advance.

I'm on #163 win32 webkit version.
22
Otter Browser Forum / [weekly163] toolbar bugs
First of all: the new multi-sidebar feature are really cool! and thanks to all otter-devs for the changelog! :yes:

I've encounter some bug in this first implementations of the new sidebar:
1- I'm no longer able to resize it
2 - adding web-panel seems not working anymore.

I've found another two bugs only on notes panel:
1- adding new note from webpage doesn't create new entry in the actual selected folder, but always on bottom of the main root folder
2- keybord shortcuts not working

At last, one request on toolbar feature: the new toggle button is too thin both horizontally and vertically and it is too hard to interact with, it would be better if the user can set its dimensions (through about:config or proper input control on configuration dialog).

Sorry for my english and greetings for another great release!

[otter-browser-win32-weekly163]
23
Otter Browser Forum / Re: bugs
I have a similar problem on 32bit windows webkit version beta 12 (no xp) here on youtube, where i have no images on the preview thumbnails of the videos; I have tried to disable content-blocking and all user js scripts with no results.
the xp webkit-legacy version works well.

anyway, a  :cheers: for the beta12!
25
Otter Browser Forum / Re: Beta 5 release (01-04-2015)
First of all, thanks to all the developers behind Otter Browser! Your work is really awesome, and I thinks that you all and Otter has the true spirit of Opera 12!
I've downloaded the beta5 hotfix version and make a clean install, but this version does not seem to create the bookmarks.xbel file on my otter appdata profile folder, while on previous weekly65 all works well; if this file
already exists, beta5 version can manage all bookmarks funtionality without problems.

My environment and install mode: win7 ultimate 32bit using 7z package.

Please, go on Otter and keep coding! :up: