X-Git-Url: https://code.delx.au/comingnext/blobdiff_plain/ad54e0ed7ea367431f976dcb6676e56a2df82119..7462eb0578c84056fb0934aa0cbd1acb4873a993:/comingNext/index.html diff --git a/comingNext/index.html b/comingNext/index.html index 7eee074..f30cb7d 100644 --- a/comingNext/index.html +++ b/comingNext/index.html @@ -960,16 +960,21 @@ function updateData() // called by handleOnShow() and onResize events function updateScreen() { - log('updateScreen()'); + log('updateScreen(): mode=' + mode + ', window.innerHeight=' + window.innerHeight); // check if opening fullscreen - if( window.innerHeight > 91 && mode == 0) { + + // Note: according to Nokia's documentation, an innerHeight of >91 is an indicator for fullscreen view. + // However a bug in E6's firmware causes different window widths and heights (disabled compatibility scaling). + // So far, values of 104 and 115 for window.innerHeight were reported, we use a safty margin here and check + // for 150 instead. + if( window.innerHeight > 150 && mode == 0) { mode = 1; cacheEntriesHtml = ''; document.getElementById('body').style.backgroundImage = ""; showFullscreen(); } - else if (window.innerHeight <= 91 && mode != 0) { + else if (window.innerHeight <= 150 && mode != 0) { mode = 0; cacheEntriesHtml = ''; showHomescreen(); @@ -1392,7 +1397,7 @@ function printHintBox(text) { uniqueId++; return '' + getLocalizedText('settings.help') + ''+ - '
' + text + '
'; + ''; } function showAbout() @@ -1772,13 +1777,15 @@ hr { color:#ffffff; background-color:#ffffff; height:1px; text-align:left; borde

Contributions:

Paul Moore (bug fixes, new features and code cleanup)

Manfred Hanselmann (DST support)

-

Christophe Milsent (translation support & french translation)

-

Flavio Nathan (portuguese-brazilian translation)

-

Tokeda (russian translation)

-

Marcella Ferrari (italian translation)

-

Venos (italian translation)

-

Francisco Rodero (catalan translation)

-

zbigzbig20 (polish translation)

+

Christophe Milsent (translation support & French translation)

+

Flavio Nathan (Portuguese-Brazilian translation)

+

Tokeda (Russian translation)

+

Marcella Ferrari (Italian translation)

+

Venos (Italian translation)

+

Francisco Rodero (Catalan translation)

+

zbigzbig20 (Polish translation)

+

Streamkeskus (Finnish translation)

+

renek (Czech translation)

This software is open source and licensed under the GPLv3.

Visit comingnext.sf.net for free updates.