Fatal's Journal

Subscribe to RSS feed

Opera Mobile 14 beta testing

I gave WebKit-based Opera Mobile 14 for Android a shot on Motorolla Xoom tablet with Android 3.2.1.
Will start from positive wink

I really like that new tab is created after currently active one (both on creating new tab and opening links).

I like menu and controls on the right: less hand moving and I don't cover part of the screen with my hand while taping on a buttons. This is on a tablet. I think that menu on the right is not very good idea for phones which are usually hold with just one hand.

I really welcome Private tabs.

Some improvements in in-page search: counts added and ability to jump on previous instance. Nice!

Discover page is nice, but I can't zoom here (body text is small) and content tiles are constantly reloading while I scrolling up and down.

Would be useful if I can select multiple regions for Discovery. I.e. Russia and Ukraine or USA and Canada or Global and USA. Even more useful would be if I can setup content categories for each region individually. I.e. for Global: news, science, technology; for USA: lifestyle, living, entertainment.

Discovery categories icons are rough in small size when they placed on tiles.

Sometimes while navigating back in history web page becomes black. Only switching on other tabs and return to problematic one solves the problem.

Default portrait mode on first start (initialization) and rotating from portrait to landscape on every cold or warm start of the browser.

No explicit Quit command in menu.

Was stumbled for a couple seconds with inability to go back in history (there is no usual Back button). Then, after I kind of used to it, I find out that this soft button is always looks active, but if you have no history to navigate it does nothing. Basically you need to tap it couple times before you understand that you can't go back any further. Maybe it's a good idea for portrait mode on a phone, but is any other case there is plenty of space for normal back button.

No Forward button. If I went back, sometimes I want to return.
*Oh, found it under menu.

On a tablet in landscape mode tab switching is unproductive. Thumbnails are too wide and I can see only 3-4 at once, but there are plenty of space to have 8-10 of portrait or square thumbnails.

Long press on a link that has formatting inside (say, part of a link is in bold) highlighting only part of the link.

Sometimes same text rendered blurry, sometimes doesn't. Try to double tap and zoom with pinch on the same text multiple times to see the effect.

No text wrapping by default (as was in Opera previously), nor there is an option for this (as in Firefox with "Pinch to reflow text" setting), nor text reflow works as in most WebKit-based browsers (pinch, then double tap).

Fonts are serif on many sites (Reddit as prominent example) instead sans serif ones.

Overall I can open new tabs and switch between them in Opera Mobile 12.10 noticeably faster; those operations "feels" reliable and solid-built there. Opera Mobile 14 is not as responsive, and I "feel" some lagginess.

Newly created tabs (after link is opened in new tab) not loading in background and shows blank thumbnails. I expect opened links already loaded in background before I switch to them.

How I can search on something different than Google?

VK.com (vkontakte.ru) is broken somehow. I can't go anywhere from initial Feed page.

How I can create my own searches? I usually have 3-5 custom searches in addition to couple built in options.

Speed Dial thumbnails are usually blurry and unreadable in comparison with Opera 12.10. I prefer to see some site content on thumbnail (preferrable) or a small icon. Most of the sites don't have an icon, and probably never will. Try some: http://d3.ru http://habr.ru http://tema.lj.ru

Bookmark (add to Speed Dial) button sometimes blinking or switching to loading state after page seems to be loaded, so it's become hard to bookmark such page. Maybe this is caused by some AJAX calls (e.g. changing banners, updating content). Example: http://tema.lj.ru

Bookmark (add to Speed Dial) button has no "already bookmarked" state. Even worse that pressing this button again will remove existed bookmark pretty silently (there is tiny message far below from the button itself that is displayed for a short time).

As for bookmarks which are gone. If Opera Link will work in a future, how desktop bookmarks will be synchronized? If bookmarks will be gone in desktop version too, well, in this case I have nothing to say... Maybe Opera Mobile 14 will sync only SpeedDial via Opera Link, and it is disabled for now because it's incompatible with current version of Opera Link.

Page loading indication was much more useful and visible in Opera 12.10 -- it showed progress, and you had some guess of how much is loaded already.

After I played with browser a bit and opened ~10 tabs, and then trying to bookmark the same page multiple times (maybe unrelated), I noticed that some already loaded tabs are converted to empty Speed Dials.

And Flash support is gone (no surprise here). That means no embedded online music players, embedded in page podcasts, some videos, etc. Will need to keep Opera 12.10 or Firefox for this.

Opera Link is lost? Or it's temporary solution to use bookmark to web page...

Double taping on images that zoom them to 100% is lost. Back button was useful to bring zoom back after this.

If you tapped on a links that are too tiny and close to each other Opera highlighted both links and automatically zoomed in, so you can confirm your selection.

Just noticed that new Opera Mobile is missing nifty icon animation when you open tab in background.

No more questions for download location (can't choose a folder) as it was previously.

BTW, something gone wrong with installation. It renders pages only in Off-road mode, in normal mode it always show blank page. And with other Wi-Fi spot at work new Opera Mobile started to render pages normally, but after I came back to home it again back to render blanks (tested this behaviour couple times already).

Build dynamic Web presentations without Flash

, , , ...

Just a week ago Chris Mills said that he is "planning a series of articles to show that you can really do all Flash type stuff using open standards". He also asked thoughts on what to cover. And in a couple days I stumble upon Flash photo portfolio presentation in New Yorker magazine and decided to convert it to standards. It looked pretty doable with CSS and JavaScript to me, so I decided to go with CSS-only, because I'm interesting in trying out some upcoming CSS3 goodies.

If you don't want to go into implementation details, here is a demo (alternative link). Sorry for stupid My Opera nag screen, no harm will be provided to you or your computer. Also you will need Google Chrome 4 or Safari 4 or Firefox 4 or Opera with Presto 2.3+ engine.

So, I started with examining the Flash presentation sample. Thankfully it appears that creators separated data (XML and pictures) from presentation (Flash), so anyone can pretty easily create their own implementation.

To locally saved XML I applied small XSL, that generated HTML markup for presentation, and that was pretty straightforward.

Here is most interesting part of HTML structure:
<div id="name">
  <div id="country">
    <div id="age">
      <div id="gender">
        <div id="tenure">
          <p id="menu">Order by:
            <a href="#name" id="menu-name">Name</a>
            <a href="#country" id="menu-country">Country</a>
            <a href="#age" id="menu-age">Age</a>
            <a href="#gender" id="menu-gender">Gender</a>
            <a href="#tenure" id="menu-tenure">Tenure</a>
          </p>
          <ul> 
            <li>...</li>
            <li>...</li>
            ...
          </ul>
        </div>
      </div>
    </div>
  </div>
</div>

Now it was CSS turn. In two words: using :target pseudo-class I was able to switch sorting of photos, using CSS3 transitions I was able to show "visual sorting" and smooth fade-in-out effects. To show big pictures I decided to use :active pseudo-class (user needs to hold mouse button on a thumbnail). From CSS3 I also used RGBA and box-shadow.

Here is an example of current CSS nightmare that we need to write in order to get all current and future browsers on board:
-webkit-transition-property: opacity;
-webkit-transition-duration: .6s;
-webkit-transition-delay: .6s;
-moz-transition-property: opacity;
-moz-transition-duration: .6s;
-moz-transition-delay: .6s;
-o-transition-property: opacity;
-o-transition-duration: .6s;
-o-transition-delay: .6s;
transition-property: opacity;
transition-duration: .6s;
transition-delay: .6s;

Once CSS3 transitions module will become a recommendation, we will need to add properties without vendor prefixes.

That is pretty much it. This CSS-only demo doesn't cover all functionality of original presentation, but sure that is 100% doable if we add some JavaScript and any technology to play audio files.

I tested this demo in Google Chrome 4, Apple Safari 4, and Mozilla Firefox 3.7 builds. Firefox seems has some glitches with CSS transitions, but it is useful even in this state. I added -o- prefixes, so someone can test this on Opera Mobile 10 (Presto 2.3) or next Opera for desktop (Presto 2.4).

Any comments, suggestions and corrections are welcome.

Opera wish-list guide: restore detach of tabs

, , , ...

Here is a list of just some relevant forum topics where people ask for return of real detach of tabs -- as it was in pre Opera 9.5 or do it better. Opera "fixed" one potential (I didn't find any public complains about this on Opera forums, nor anywhere on Opera Community blogs) UI problem with simply removal of this feature completely.

Topic Replies Views
Detach command not working properly 102 7241
Detach windows 49 1992
Opera's lost features, which should really come back? 36 2649
Opera 9.20 "Detach" tab option removed? 31 1838
Dragging tabs out in 9.5 24 439
Detachable/Tearable Tabs in Opera 10 Alpha for Mac OS X? 11 416
Detached tab functionality killed with 9.5/9.6 23 419
Detachable Tabs 5 407
Detaching pages 4 278
I need _blank pages in tabs, but popup out of the main window 4 160
Tab: cut and paste 4 116
Draging a Tab and Droping to the Desktop performs differently 3 178
Tab Tearing in Opera 10? 3 141
Tab tearing to multiple monitors 3 125
q: Move out tab from Opera 3 154
Problems with Stickam & Chat Windows. 2 127
Getting small pop-up windows out of the frame 1 45
Managing multiple tabs 72
Misc Problems: 116
new opera:config setting: "allow tabs outside windows" 13 300

I believe ~20 topics, ~300 replies and ~15000 views should finally bring some attention of Opera developers.

With Safari 4 and Chrome have almost the same functionality working (tabs tearing) I think there will be more and more new treads asking the same for Opera. BTW, even Firefox now has smother tab tearing behaviour than modern Opera does (for example, it doesn't leave empty window after last tab was moved to other window).

Adobe CS4 GUI is total crap!

, , , ...

New interface in Adobe CS4 is even more bloated and slow than ever before. In addition to that it is big waster of space and time -- now you can't have only bottom property panel opened or it should be automatically collapsabele (you need to stop and wait until it opens). F4 key is the only "all or nothing" solution to that -- or you will have all panels opened around (left, right, bottom), or you will not see anything (and you cant open anything too)!
furious
All these always showed iconic panels looks even stupider on standard 4:3 displays -- huge waste of space. Damn, I never hated GUI this big!
So, what we have in the end: very useful new features + damn slow and annoying interface = CS4 cry
I agree with someones' comment somewhere that CS4 GUI may be pleasant for newcomers that will use CS4 applications occasionally, but very annoing to some who use Adobe apps a lot.
Will Adobe bother to fix it with paths? I don't now, but very hope for this...

P.S. Will update this post with other notes about other troubles with Adobe CS products.

Dreamweaver:
I still can't copy files (images, videos, etc.) from Assets to Files panel. Why not implement this?
Happenning pretty often sporadic selection of source code (CSS, XSL). This often happens when you copy/paste and navigating through code.
Changing keyboard layout in Dreamweaver causes the toolbars to be redrawn and mouse cursor constantly blinking.
http://forums.adobe.com/message/2175960
http://forums.adobe.com/message/2502063

Fireworks:
Not about UI, but anyway feature regression -- no system font antialiasing! Damn!
How you can release product with such regressions? I already accustomed to Opera regressions, but Adobe?

Originally posted by Alan Musselman (Adobe):

On the topic of the System Anti-alias...this is very difficult for us to implement. We actually had to re-engineer every feature that worked with text to support the new text engine. I know it may not seem like a lot to you now and sorry for that, but please understand there are only so many engineers on the fireworks team and we have to make the right choices. If we implemented system anti-alias and didnt implement core functionality like editing a text block and see the bounding box would you have been ok with that?
We are still seriously looking into system anti-alias implementation to see if its possible within the development cycle. We want to release a stable product and engineering a new version of system anti-alias is sketchy right now.

From Fireworks CS4 Beta tread (disable JS to view).

Another problem with new text engine.

Russia and Ukraine browser usage statistics chart (2006-2008)

, , , ...

Browser usage in post-USSR countries such as Russia and Ukraine is very different from global statistics.
That's how it looks from 2006 to 2008, according to liveinternet.ru:

You can see how Opera browser compares to Firefox share -- they are almost equal.
Also notice a big and quickly increasing presence of Opera Mini.
But most exciting thing to notice is that Blue Sea of IE is drying out year by year, month by month. up

How to copy pictures from free Flickr accounts

, , , ...

I just hate when some "smart ass" developers think that other people are stupid by "protecting" their content with disabling "right click menu" or putting transparent image on top of real one. doh
I was surprised to see last "trick" on Flickr free account, like this one.
So, how to save a picture you like in that case? Opera's Block Content feature created for such purpose -- to fight stupidity on the World Wild Web. wink
Solution for Opera users:
  • do right mouse click somewhere on a page (not on an image);
  • select "Block content..." from opened context menu;
  • press Shift key and click on an image
  • click Done on Block content toolbar (some image like http://l.yimg.com/g/images/spaceball.gif will be blocked now);
  • now you can save real images on any Flikr pages
headbang

Internet Explorer 8 will have "auto-fix" feature similar to Opera's

, , ,

IE8 is not the first browser to consider making website compatibility fixes for specific highly trafficked sites. Opera has “a feature that allows Opera to automatically fix incompatible Web pages.” It’s “automatically distributed by Opera Software ASA, and can be used to apply fixes to specific Web sites.”

via MS IE blog

Opera 10 alpha logo

, , ,

While waiting for Opera 10 I decided to create some sort of new logo, because I expect that at least Alpha version will be released with ugly and old one.
Enjoy!

In hope that Alpha will be released today...

Hello world!

,


BTW it's a real USB keyboard for kids... wink
This is the only toy he can play with for several minutes at that age of 3.5 months!

My wife just released a baby boy!

My wife just released a brand-new baby boy just between Opera 9.5 and Firefox 3 releases. bigsmile
He was born on June 15th (it's Father's Day in USA). We named him Zoryan (Зорян) -- this Ukrainian name means something like "star" or "dawn".
The boy is big -- 4.471 kg and 55 cm tall! headbang
[/url]
[/url]

Opera 10: пожелания русскоязычной ветки форума на my.opera.com

, , ,

Предварительный подсчёт самых популярных "хотелок" с русскоязычной ветки форума на my.opera.com.

There probably will be English translation of Russian Opera wish list soon...

Итак, с большим отрывом лидирует...

1. Внесение усовершенствований в Закачки (Transfers) -- 14 голосов
Видимо, любит славянин файло покачать, и хочет чтобы это было максимально удобно. wink
Больше всего востребованы ограничение количества одновременных закачек и пересортируемая очередь.

Далее идут...

2. Общие жалобы на совместимость с популярными и не очень сайтами -- 7 голосов
Больше всего народ жаждет дружбы Оперы с гугловскими сервисами.

Третье место разделили аж 4 желания имеющие в активе по 6 голосов:

3.1. Требоване нормальной работы в автономном режиме (Work offline). Если сюда прибавить пожелания по улучшению интеррфейса (сделать различимыми ссылки доступные в автономном режиме), то можно присвоить этому пожеланию 2-е место с 8-ю голосами.

3.2. Улучшения лент новостей (News feeds). В частности категоризация или поддержка структуры папок и объединение лент в удобочитаемую газету по категориям или папкам.

3.3. Народ, вероятно, часто сносит Винду, а по этому озабочен экспортом и импортом настроек, лент ловостей и всего остального одним махом. Не нравится копирывать вручную -- хочется цивильно -- через интерфейс.

3.4. Пролетариат требует (уже не первый год, кстати) обеспечить работу с закладками прямо в меню -- удаление, редактирование, перемещение.

Четвёртое место делят два желания с 5-ю голосами:

4.1. "По щучьему велению, по моему хотению" одним нажатием кнопки обновить все новостные ленты или выделенную группу. (Что-то помню усовершенствовали уже в 9.5...)

4.2. Не ставят ни во что нашего крестьянина... Хочет народ файлы с исконо русскими именами правильно сохранять, и без "кракозябр"!

Заключительное 5-е место из 3-х пунктов, набравших по 4 голоса

5.1. В индивидуальные настройки сайта (Site preferences) добавить выбор режима показа изображений.

5.2. Убрать флеш-графику одной кнопкой!

5.3. Самый страшный пункт! smile
Люди хотят поддержки ActiveX, хотя бы на уровне plug-in. У-ж-ж-ж-ж-а-с!


Уже осуществлённые желания:

  • Поддержка NTLM аутентификации пользователей (3 желания)
  • Поиск по странице с подсветкой как у Firefox (2 желания)
  • К индивидуальным настройкам сайта добавить кодировку (2 желания)
  • Нужен сервис синхронизации закладок (2 желания)
  • Когда выполняется щелчок средней кнопкой (не на ссылке), вместо курсора появляется крестик прокрутки. Второй раз щёлкаешь - вместо крестика появляется курсор, но остаётся там же, в центре экрана. Очень хочется, чтобы он возвращался туда, где находился перед первым щелчком. (1 желание, но видимо сильно хотелось smile
  • Хочется чтобы фокус переходил на вкладку, следующую за закрытой или предыдущую ей (как в Maxfone или Фоксе). (1 желание, но знаю, просили многие)
  • Запоминать последний тип сохранения страницы (1 желание)
  • Адекватное перемещение страницы (вправо-вниз, вниз-влево и т.п.) зажатой правой кнопкой мыши как в IrfanView. (1 желание) Ctrl+Alt+mouse drag
  • Хотелось бы, чтобы при сохранении страницы в списке ("Тип файла") на первое место было бы поставлено "HTML-файл с рисунками", а потом уже "HTML-файл". (1 желание) Желание исполнено, но пока не работает smile
  • Значения масштаба просмотра не должны ограничиваться шагом 10 процентов — должна быть возможность выбора произвольного масштаба (если я хочу 112 процентов, то пусть и будет 112, а не 120). (1 желание) Да, будет так!

HitsLink browsers trend

, , , ...

Just created two charts from HitsLink data that show browsers trends:

On the first chart we can see a stable fall of IE. Yay! And release of IE7 doesn’t really help Microsoft. Also here we clearly see fast growth of Firefox and stable growth of Safari. You can hardly see Opera here in comparison to other 3 browsers, so I created 2nd chart that shows growth of non-IE browsers. wink

Here we can see that growth of Firefox is fast but not as stable as Safari’s. Netscape and Mozilla suite seems already a history — their small market share is slowly falling, recent releases of Netscape browser seems not help.
Opera hopefully will be “new Netscape of 2004″ in a year with market share of 2% or so — we can see pretty stable growth in last 10-12 months. Opera Mini grows fast and stable, so expect that it may outrun desktop version of Opera in a year or so.


I will update charts, so this post will show browsers trends up to date.

Russian internet (Runet) browser statistics

, , , ...

Tucows - just another Web 2.0 silliness

,


Now I can't browse a stupid catalog w/o JavaScript?! yikes

Read more...

Завёл журнал на Я.ру

, , ,

Created blog on beta.ya.ru

It's just a sting for import my posts from here:
13101.b17cf570426d3e88997acf1e90c21995.1190146942.d2a0a17d7ed4163dd908c98634451821

wink

Read more...

ajaxWindows uses Opera widgets but doesn't support Opera browser itself

, ,



I can see Torus game widget, Widgetize, Weather and couple of other Opera widgets.

See additional screenshot and video inside...

Read more...

Opera Mobile got some Russian press

, ,

Opera Mobile included in 10 most needed applications for Windows Mobile for PocketPC published on 3DNews.ru.
iXBT published article about Opera Mobile 8.65 for Nokia S60 platform.

5 wishes for future Opera browser

, ,

In answer to 5 wishes Opera tag game started by Daniel Goldman.
I was tagged by Eddie Lopez from Usability blog.
5 wishes as user
  • cross-platform profile sync (bookmarks, news feeds, contacts, blocked content, etc.)
  • better news feeds (folders, folder views, trash can)
  • give more focus to Opera mail (don't forget to add ability of removing attachments)
  • undo closed window or undo tabs from closed window(s)
  • improved Notes (rich text, pictures, date stamp, sorting, integration of Notes and some blogging systems??)

5 wishes as web developer and web designer
  • native developer tools
  • better source viewer/editor
  • fix all known bugs in CSS 2.1
  • support parts of CSS 3: border-radius, selectors, multiple backgrounds, RGBA, box-shadow
  • XSLT document() function

5 wishes as Opera fan and tester:
  • better icon (logo of Opera browser, not company)
  • better update system
  • open or half-open bug tracking system (ability to see at least your own submissions)
  • better handling of needed but not presented plug-ins
  • "I prefer ergonomics over being a populist platform." Eddie Lopez' wish #4
    Don't move tab bar to "correct" place by default please!

Extra wishes as user
  • fit to width, zoom, encoding in per-site prefs
  • better sessions management
  • saving files with original filename, not 8.3 DOS format
  • based on Notes basic PIM
  • Unified meta-data interface from non-tropo's wish #2
  • Tabs grouping
  • improved Bookmarks (option to store textual content of a page inside bookmark, and this should be searchable)
  • contact managment with views instead of folders (so I can have contacts in multiple groups without having to copy them)

Next in line
I would like to see 5 wishes from these guys:

New "beta" Ask and AllTheWeb block Opera

, , ,

Two beta versions of search engines (Ask and AllTheWeb Livesearch) block Opera for no reason. Both services work pretty well (only with small quirks) when mask as Firefox for example.
That's what I got on AllTheWeb's page:

For an optimal Livesearch experience,
we only support the following browsers with javascript at this time:
Windows 98/2000/XP - IE 6.0, Firefox 1.5
Mac OSX 10.3 - Firefox 1.5
Mac OSX 10.4 - Firefox 1.5
We plan to support Safari soon. Please let us know if there is interest.

No mention about support of Opera at all, even in future.
The new experemental Ask supports only this:

Minimum browsers versions:
Microsoft Internet Explorer 6.0
Firefox 1.5
Safari 2.0
Netscape 7.0
Camino 1.0

When I try to search it redirects me to old Ask interface.
All these are truly Web 2.0! furious

US goverment site where Opera works but Firefox doesn't

,

That site is the prove that not only Opera suffers from browser sniffing.
If you try to click on Calculate button using Firefox you will get this message:

Please ise Netscape4.7 and below
to see your result
or, please use IE.
Thank you

Digg? wink
May 2013
M T W T F S S
April 2013June 2013
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31