PCAXE forum

Go Back   PCAXE forum > SOFTVER > Aplikativni softver

Reply
 
Thread Tools Display Modes
Old 28th August 2009, 17:33   #71
BigJoe
Moderator
BigJoe's PC
 
BigJoe's Avatar
 
Join Date: 28th March 2009
Posts: 2,453
Evo poigrah se malo sa RC verzijom. RSS feed-ovi se prikazuju na onaj njihov ružan način, doduše moguće je to srediti ako neko želi da napiše novi HTML i CSS za prikazivanje RSS-a. I dalje nema načina da se lako dodaju feed readeri u padajući meni za pretplatu ili ja nešto ne znam. FireFox dodaje sam aplikacije za feedovanje kada ih instalirate (pr. Outlook 2k7). Najbolji prikaz feedova je u IE-u 8, bolji je čak i od FireFox-a.

Opera i dalje ima problem sa JCE editorom za Joomlu, ali to je više problem JCE-a jer je očigledno napisan da radi u FF-u.
Pozitivna strana je interfejs i brzina.

BigJoe is offline   Reply With Quote
Old 28th August 2009, 17:58   #72
djalex
PCAXE member
djalex's PC
 
djalex's Avatar
 
Join Date: 7th May 2009
Location: Prokuplje
Posts: 195
Opera 10.0 Release Candidate 2

Changelog

User Interface
Native skin fixes
Several fixes to strings that don't fit
Fixed Bug DSK-210876 (Reload Image is ignored after unfinished image load)
Fixed Bug DSK-262341 (Deleting Speed Dials aren't synced)
Fixed Bug DSK-262356 (Crash on exit after deleting private data)
Fixed Bug DSK-262389 (Crash in address bar dropdown)
Fixed Bug DSK-262523 ("Sychronize Opera" button in Speed Dial is not working)
Fixed Bug DSK-262622 (Crash when downloading spelling checker languages)

Core
Fixed high CPU on HTML5 spec page
Fixed Bug CORE-21052 (Using keys in match expressions causes crash)
Fixed Bug CORE-23155 (Blocking content that is added as an iframe src using JavaScript causes page to never stop loading)
Fixed Bug CORE-23169 (Opera claims collapsed selection isn't collapsed -- causes emoticon deletion in Gmail): Bad selection values in scripts when selection is the caret in documentedit
Fixed Bug DSK-248214 (Crash when saving a picture that has not been fully downloaded)
Fixed Bug DSK-258402 (Several images redirected to same URL can cause NSL)
Fixed Bug DSK-261860 (Upgrading Opera from 9.64 to 10, widgets connecting to the Internet get network problems on first run, works after reload)

Windows
Improved 8-bit icons, added 4-bit icons, PNG compressed bigger icons, lower quality icons for mail and chat
Fixed Bug DSK-262674 (Context menu height calculations off, causing "more items..." to show)

Unix
New/updated icons
Fixed Bug DSK-238564 (Icon files are not installed with install.sh)
Fixed Bug DSK-262492 (Old icon shows when dragging text)
Fixed Bug DSK-262757 (Qt3: Do not use XPM files to draw icon in system tray, use images from skin instead)
Fixed Bug DSK-252305 (Can not easily focus a widget on major Linux desktop environments)

Windows MSI / Windows Classic
Mac (Universal) / Mac (Intel-only)
UNIX/Linux
djalex is offline   Reply With Quote
Old 29th August 2009, 20:20   #73
c-p-r
PCAXE member
c-p-r's PC
 
c-p-r's Avatar
 
Join Date: 23rd April 2009
Location: Beograd
Posts: 492
Moje vecerasnje iskustvo:

Reko da update-ujem Operu 10 16xx build na ovu najnoviju kad ono preko automatic updates nece nikako, prijavljuje error. Ok, krenem ja u Revo Uninstaller kad on lepo skrese i Operu 9.64. A bile u odvojenom folderu u PF.

Havarija.
c-p-r is offline   Reply With Quote
Old 30th August 2009, 23:16   #74
illidan
Moderator
 
illidan's Avatar
 
Join Date: 31st March 2009
Posts: 3,438
ako je neko probao nesto sa rapidshare...

rapidshare je nesto menjao

http://my.opera.com/community/forums...1580651&page=1

Q: it's a Opera or rapidshare issue?

A: Both.
Rapidshare lost Content-Type header.
Opera is the only browser without autodetection content type.

Code:
before: 
17.08.2009 00:24:56 Headers: Location: http://rapidshare.com/files/264336343/LaborPains.2009.BDRip.720p.Up.bY.Veralex.part49.rar HTTP/1.1 200 OK P3P: CP="ALL DSP COR CURa ADMa DEVa TAIa PSAa PSDa IVAa IVDa CONa TELa OUR STP UNI NAV STA PRE" Date: Sun, 16 Aug 2009 20:25:03 GMT Connection: close Accept-Ranges: bytes Content-Type: text/html; charset=ISO-8859-1 Cache-Control: no-cache Content-Length: 13183

now:
30.08.2009 10:25:23 Headers: Location: http://rapidshare.com/files/263546805/Ti.krutohr.part01.rar HTTP/1.1 200 OK P3P: CP="ALL DSP COR CURa ADMa DEVa TAIa PSAa PSDa IVAa IVDa CONa TELa OUR STP UNI NAV STA PRE" Date: Sun, 30 Aug 2009 06:25:47 GMT Connection: close Accept-Ranges: bytes Cache-Control: no-cache Content-Length: 13093
Quick fix:
Code:
// ==UserScript==
// @name Fix for rapidshare.com
// @version 0.2
// @include *
// ==/UserScript==

document.addEventListener('DOMContentLoaded', function(){
var links = document.getElementsByTagName('a');
for(var i = 0, a; a = links[i]; i++){
if(a.href && a.host == 'rapidshare.com' && a.href.indexOf('.htm') == -1)
a.href += '.html';
};
if(location.hostname == 'rapidshare.com'){
var f = document.getElementsByTagName('form')[0];
if(f && f.id == 'ff' && f.action.indexOf('.htm') == -1){
f.action += '.html';
};
}
}, false);
Save the given text as rapidshare-fix.js and put in folder with user scripts (advanced - content - javascript options). E.g. opera_profile_folder\userjs (profile path can be found here - opera:about).
Last edited by illidan; 30th August 2009 at 23:35..
illidan is offline   Reply With Quote
Old 1st September 2009, 09:41   #75
djalex
PCAXE member
djalex's PC
 
djalex's Avatar
 
Join Date: 7th May 2009
Location: Prokuplje
Posts: 195
Opera 10.0 final

Najzad finalno izdanje Opere 10.0

Changes since RC2:

Icon fix for Unix
Minor fixes default search engines and bookmarks

Za sve operativne sisteme mozete skinuti odgovarajucu verziju na ovoj stranici:

Download

Sacekajte malo izgleda da im je server dosta opterecen.
djalex is offline   Reply With Quote
Old 1st September 2009, 10:17   #76
Hector Ruiz
PCAXE member
Hector Ruiz's PC
 
Hector Ruiz's Avatar
 
Join Date: 9th May 2009
Location: Beograd-Koceljeva
Posts: 617
Napokon
Hector Ruiz is offline   Reply With Quote
Old 2nd September 2009, 09:03   #77
djalex
PCAXE member
djalex's PC
 
djalex's Avatar
 
Join Date: 7th May 2009
Location: Prokuplje
Posts: 195
Opera 10.0 final

Changelog since Opera 10 beta 3


User Interface

Added
* New Opera product icon

Improved
* Opera Turbo dialog box margins and whitespace
* Tab states and positioning of the Standard Skin
* Visual tabs appearance
* Minor alterations to the opera:x, Error and Fraud pages appearance
* Increased Auto update check interval

Fixed
* Opening the Address bar dropdown
* Navigating back and forth to a form with an open input suggester
* Disabling links on the Navigation bar
* Toolbar updates
* Gmail Contact manager issue
* Collapsed Address Bar not showing domain name until page finishes loading
* Problem while navigating History
* BitTorrent problem
* Not being able to remove the Menu button
* Issue when saving a picture that has not been fully downloaded
* Problem with "Sychronize Opera" button in Opera Speed Dial
* Deletion of speed dials not being synchronized


Display and Scripting

Fixed
* ECMAScript allocator/garbage collector issue
* Web font with a local src not working
* Spotify link conversion issue
* History entry incorrectly created when IFRAME added using JavaScript (Yandex)
* XMLHttpRequest buffer overflow


Mail, News, Chat

Fixed
* Message body missing when marking a message as read before the body is downloaded
* Unchecking "import messages" in the import dialog still processes messages
* E-mail addresses are not fetched from a header using iso-8859-15 encoding
* The customized HTML font dropdown in the Appearance dialog
* Resetting HTML compose toolbar making the font list unusable
* Words in Opera Mail and Feeds being cut off by the vertical scrollbar
* Problem when opening image attachments


Security

Fixed
* Sometimes unable to complete a secure transaction


Windows

Fixed
* Printer not being accessible when printing a selection
* Pressing Alt+Shift focuses the menu bar instead of switching languages
* Removal of all private data in an upgraded profile
* Showing list of closed tabs requires multiple clicks
* Programs using the http protocol to open websites in Opera rendered blank pages in Windows Vista® and Windows 7®
djalex is offline   Reply With Quote
Old 2nd September 2009, 18:22   #78
c-p-r
PCAXE member
c-p-r's PC
 
c-p-r's Avatar
 
Join Date: 23rd April 2009
Location: Beograd
Posts: 492
I jel imate utisak da nije zivahna kao beta?
c-p-r is offline   Reply With Quote
Old 5th September 2009, 18:00   #79
djalex
PCAXE member
djalex's PC
 
djalex's Avatar
 
Join Date: 7th May 2009
Location: Prokuplje
Posts: 195
Opera 10.10 with Unite build 1767

Changelog

User Interface
Substantially reduced the memory usage and startup time of Opera's history
Link: Work on checking if there is outstanding data to sync before doing the exit sync
Added middle click and double click to close tabs
Crash fixes, including in the Windows panel
Fixed Bug DSK-119010 (Opera doesn't allow access to longdesc="..." URLs)
Fixed Bug DSK-262131 (Panel bar open by default when starting Opera for the first time)
Fixed Bug DSK-262908 (Can't distinguish normal tabs from tabs that need attention in the page cycler)
Fixed Bug DSK-257203 (Strings don't fit in mail account properties dialog)
Fixed Bug DSK-261130 (Strings don't fit in Account Properties > Outgoing dialog [ru])
Fixed Bug DSK-261135 (Strings don't fit in Message Filters dialog [ru])
Fixed Bug DSK-263283 (Configure Speed Dial can crash Opera)
Fixed Bug DSK-263527 (No "Open With" in transfer manager)

Core
Fixed Bug DSK-251118 (URL crash)

Opera Mail/Chat
Added automatic re-joining of channels in chat (will try a maximum of 20 times to the server and then the channels)
4 weeks before a new consistency check
Don't schedule a database check when creating the account, but after the 4 weeks after that
Leak fixes, including leak on attachment adding failure
Fixed Bug DSK-261733 (From is missing on some e-mails in M2): Email address corruption when no space after quote or name
Fixed Bug DSK-239575 (Zoom box in e-mail compose page is broken)
Fixed Bug DSK-262732 (Mail header images appear under the mail toolbar buttons)

Opera Unite
Fixed Bug CORE-21620 (Unite crash)
Aditional fix for Bug DSK-255935 (Upgrade from non-Unite to Unite build does not add Unite status icon): Changing version numbers to check toolbar upgrade up until 10.10
Upload service list when (re-)connecting to the proxy. Adjust to send max every 30 seconds if problems when connecting to the proxy
Fixes for Bug DSK-261243 (UPnP requests even though Unite and service discovery is turned off)
Fixed Bug DSK-261689 (Opera doesn't connect to proxy if the router doesn't respond to UPnP M-SEARCH)
Fixed Bug DSK-261871 (Home service opened before installed service is configured)
Fixed Bug DSK-262772 ("Add new service" goes to unite.opera.com instead of unite.opera.com/services)

BitTorrent
Fix for non-cached BitTorrent meta file
Fix for modal/blocking dialogs for torrents
Fix for utf-8 encoded name and paths, also assume utf-8 encoding of all strings in accordance to latest BitTorrent specification

Windows
Fixed version information copyright string
Menu fixes: Use the system menu height setting for the menus. Use the system menu highlight color blended 20% with the background for the selected menu items. Add some more space for the icons on the left and right. Let the separator in menus start under the text instead of under the icons
Fixed Bug DSK-193359 (Buttons on the Block content toolbar get displaced in Windows Native skin)
Fixed Bug DSK-254648 (Crash with certain Chinese IMEs)
Fixed Bug DSK-260498 (The list of closed tabs needs clicks to be shown)
Fixed Bug DSK-262357 (Crash related to Unite icon in Windows tray)
Fixed Bug DSK-263425 (Upgrading single-user install of Opera with no reference in registry causes problems)

Unix
Fixed bugs related to JavaScript executed by plugins
Improved chat system tray indication looks (Qt3)
Make all script execution from plugins on unix synchronous, testing ns4plugins tweak
Fixed Bug DSK-262813 (Buttons offset in "Tools > Preferences > Advanced > Content")
Fixed Bug DSK-262938 (Missing app icon for Opera in Gnome panel and Applications/Internet/Opera): Fixed the SVG icon to be more compatible
Partially fixed Bug DSK-212990 (Swfdec doesn't work)
Fixed Bug DSK-262820 (Downloaded files with spaces are not opened): Added support for quoted arguments
Fixed Bug DSK-262906 (Not possible to close widget from the task bar)
Fixed Bug DSK-263684 (KDE not detected in KDE4): + Cleanup
Fixed Bug DSK-263680 (Opera doesn't start on Mandriva)

Mac
Fixed version information copyright string
Enabled plugin JavaScript tweak for direct execution

Windows MSI / Windows Classic
Macintosh (Universal) / Macintosh (Intel-only)
UNIX/Linux
djalex is offline   Reply With Quote
Old 5th September 2009, 18:09   #80
Vule
PCAXE member
 
Vule's Avatar
 
Join Date: 2nd April 2009
Location: Novi Sad
Posts: 764
Instalirao sam na poslu ovu Final i bio izuzetno zadovoljan, dok mi se nije uber zabagovao Gmail, počeo da izbacuje neke istekle sertifikate i gluposti, čak i čišćenje kukija i istorije nije pomoglo, ostalo je zabagovano... Probaću i kući, svidela mi se kako radi, iako i dalje ima one standardne gluposti...
Vule is offline   Reply With Quote
Go Back   PCAXE forum > SOFTVER > Aplikativni softver
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 18:04.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Copyright by PCAXE