Now saved brightness, contrast. hue and colour for monitors.

Support and queries relating to all previous versions of ZoneMinder
Locked
oskin
Posts: 84
Joined: Tue May 25, 2004 7:03 pm
Location: Moscow, Russia

Now saved brightness, contrast. hue and colour for monitors.

Post by oskin »

This patch fixed a bug published in http://www.zoneminder.com/forums/viewtopic.php?t=3437.

Database update required:

Code: Select all

alter table Monitors add column Brightness mediumint(5) unsigned NOT NULL default '32767' after RefBlendPerc;
alter table Monitors add column Contrast mediumint(5) unsigned NOT NULL default '32767' after Brightness;
alter table Monitors add column Hue mediumint(5) unsigned NOT NULL default '32767' after Contrast;
alter table Monitors add column Colour mediumint(5) unsigned NOT NULL default '32767' after Hue;
Download patch[/code]
oskin
Posts: 84
Joined: Tue May 25, 2004 7:03 pm
Location: Moscow, Russia

Post by oskin »

User avatar
zoneminder
Site Admin
Posts: 5215
Joined: Wed Jul 09, 2003 2:07 pm
Location: Bristol, UK
Contact:

Post by zoneminder »

Hi Oskin,

I am trying to apply this patch for 1.19.5 but I believe that the patch for zm_local_camera.cpp is reversed, can you confirm this?

Phil,
oskin
Posts: 84
Joined: Tue May 25, 2004 7:03 pm
Location: Moscow, Russia

Post by oskin »

First it is necessary to apply a patch http://www.zoneminder.com/forums/viewtopic.php?t=3424. By changes in version 1.19.5 I have understood, that the problem is solved. :)
Locked