phpDVDProfiler
Welcome, Guest. Please login or register.
September 06, 2010, 03:48:25 AM

Login with username, password and session length
Search:     Advanced search
5341 Posts in 713 Topics by 850 Members
Latest Member: Beammeup
* Home Help Search Login Register
+  phpDVDProfiler
|-+  phpDVDProfiler
| |-+  Announcements (Moderators: ajm, SH84, fredlooks)
| | |-+  New New Version (3.5.1.1) v3-20090527.zip
« previous next »
Pages: [1] Print
Author Topic: New New Version (3.5.1.1) v3-20090527.zip  (Read 1808 times)
fredlooks
Moderator
HVD (Holographic Versatile Disc)
*****
Posts: 1019



View Profile WWW
« on: June 04, 2009, 08:58:12 AM »

Sorry for the delay.

I want to get this out before I mess up the code trying some new stuff. This time it's in two zipfiles (it got a bit too large for the forum software limits). The second file just contains some skins stuff that you can do without if you want. No schema changes.

Enjoy

Version 3.5.1.1 (phpdvdprofiler_v3-20090527.zip)
Changes since version 3.5.1.0 (phpdvdprofiler_v3-20090119.zip)
        - updated Danish translation (thanks again CalInTheZone!)
        - modified update parser to support utf-8 encodings
        - changed gallery to display thumbs using resize_jpg() code, which provides HD headers appropriately
        - fixed bug in regex handling epg colors
        - added some Finnish ratings images (thanks Jykke!)
        - added code to Highlight titles differently in some circumstances (loaned, overdue, recent, etc.)
        - added missing urlencode() call around ratings filenames
        - added code and tunable to work around libxml bug affecting some users ($WorkAroundLibxmlBug: default false)
        - modified audio presentation to be more verbose (thanks tomricci!)
        - changed actor/credit popups to count profiles as well as results (thanks 8ballMax!)
        - update database to grab Rating descriptions from localities file
        - minor code changes to facilitate skins functionality
        - fixed an ancient octal bug related to date processing in incupdate
        - fixed broken DD4.0 support in global.php
        - fixed region support, which has been wrong for Blu-ray since the beginning
        - fixed an old bug in AcquireAThumbnail() routine caused when mode 3 was introduced
        - added a tunable to specify resize image quality in gallery ($thumbqual: default 80)
        - made some performance enhancements for adding HD banners to thumbnails
        - added Profile Links to Miscellaneous links
        - added option for originaltitle display ($titleorig: default 0 - documented in siteconfig.php)
        - fixed problem with searchtext containing meta-characters (&, etc.)
        - updated ratings icons for locale 5 (Germany)
        - incorporated changes to ws.php (thanks DJ Doena!)
        - fixed bug in summarising roles in actor popup
        - fixed case-sensitivity problem in recognizing XML encoding
        - updated ws.php version and infrastructure
        - modified ws.php to work with all-zero runtimes
        - added a knob to control the secondary sort order ($SecondarySortFollowPrimary: default true)
        - put all of the ini_set() calls under the $TryToChangeMemoryAndTimeLimits knob
        - changed code to not emit warnings if locks missing from XML file
        - tried to make incomplete XML warning more noticeable

« Last Edit: June 04, 2009, 09:27:37 AM by fredlooks » Logged

fredlooks
Moderator
HVD (Holographic Versatile Disc)
*****
Posts: 1019



View Profile WWW
« Reply #1 on: June 04, 2009, 08:59:21 AM »

Aaaaaand, the second file ...
Logged

DJ Doena
HD-DVD
*****
Posts: 236


Link Master


View Profile WWW
« Reply #2 on: June 04, 2009, 01:35:35 PM »

Hi,

one small thing I noticed but forgot to tell you

ws.php line 1568. I accidentally ordered by title instead of sorttitle. Could you change that?
Logged

theFRAGGLE
VHS is King
**
Posts: 29


Hooka hey!

5990782 daniel@notthoff.net TheFraggle78
View Profile WWW
« Reply #3 on: June 10, 2009, 12:26:18 AM »

Great update! Thank you so much for the highlighting of loaned and new titles! :-)
Logged

fredlooks
Moderator
HVD (Holographic Versatile Disc)
*****
Posts: 1019



View Profile WWW
« Reply #4 on: June 10, 2009, 09:55:52 AM »

Glad you like it.  I really like the "new" gifs on your site ... I hadn't thought of that and it looks very cool!
Logged

DJ Doena
HD-DVD
*****
Posts: 236


Link Master


View Profile WWW
« Reply #5 on: June 10, 2009, 02:44:34 PM »

And here some documentation on how I modified the ws.php

When you configure your banner in your localsiteconfig.php you've got a number of new options:

ExcludeTag
for example
Code:
"excludetag" => "Disc Profile"
When you set this, every profile with that tag will be ignored in the banner creation. For example, if you want to show the recently purchased box set, but not all its children.

IncludeTag
for example
Code:
"includetag" => "Purchase Item"
When you set this, only profiles with that tag will be considered in the banner creation. For example, if you want to show the recently purchased box set, but not all its children.

CreateMap
for example
Code:
"createmap" => true
When you set this a text file named after your profile with the extension .map will be created in your imagecache directory. You can use it to bind it to the image with a script language like PHP and the result will be an HTML ImageMap.

Here's a code snippet how I do it on my homepage:
Code:
        <?php
          $handle 
fopen ("phpdvdprofiler/imagecache/djdoena_15_en.map""r");
          while (!
feof($handle)) {
            
$buffer fgets($handle);
            echo(
$buffer);
          }
          
fclose ($handle);
        
?>

        <img usemap="#djdoena_15_en" style="border: 0px;" src="phpdvdprofiler/imagecache/djdoena_15_en.jpg" alt="recently watched" title="recently watched"/>

MapToProfilerPath
for example:
Code:
"maptoprofilerpath" => "http://doena-soft.de/phpdvdprofiler_en/"
In order for the generation of links in the .map file, it needs to know where phpDVDProfiler is located so that it can create links to it.

MapWithDate
for example
Code:
"mapwithdate" => true
If you want to show the purchase date/watched date, when you hover over the image.

If you want to see a working example of the above, visit http://doena-soft.de/index_en.php and hover over the banners with your mouse. Smiley
Logged

snk429
VHS is King
**
Posts: 39


View Profile Email
« Reply #6 on: July 22, 2009, 11:10:30 AM »

I dont really need to update..but why not  Grin
Logged
tomricci
VHS is King
**
Posts: 32


View Profile Email
« Reply #7 on: January 17, 2010, 04:47:11 PM »

Fred I just realized you gave me thanks for this update "- modified audio presentation to be more verbose (thanks tomricci!)" please, no need to thank me it was just an idea I had you did the work, but thank you for the for the mention
Logged
fredlooks
Moderator
HVD (Holographic Versatile Disc)
*****
Posts: 1019



View Profile WWW
« Reply #8 on: January 18, 2010, 08:02:43 AM »

No problem -- ideas are more important than implementations, i think.

Pity Ken is changing all of the sound stuff yet again. it makes that part of the code a real swamp ...
Logged

Pages: [1] Print 
« previous next »
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.11 | SMF © 2006-2009, Simple Machines LLC Valid XHTML 1.0! Valid CSS!