Skip to main content

Topics

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

Topics - fullessness

1
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
2
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
3
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 ?
4
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
5
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.
6
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]