<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.linuxmce.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Tschak909</id>
	<title>LinuxMCE - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.linuxmce.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Tschak909"/>
	<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php/Special:Contributions/Tschak909"/>
	<updated>2026-07-21T19:41:51Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.44.0</generator>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Game_Database_Schema&amp;diff=37015</id>
		<title>Game Database Schema</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Game_Database_Schema&amp;diff=37015"/>
		<updated>2017-06-04T20:29:43Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the proposed schema for the lmce_game database. As the first version was used as is between the first two Game Player versions, the new version of the schema will be called v2.&lt;br /&gt;
&lt;br /&gt;
As was before, this database is used to reconcile the possible metadata for game media found on a LinuxMCE system. &lt;br /&gt;
&lt;br /&gt;
== Goals ==&lt;br /&gt;
&lt;br /&gt;
The goals with this particular database schema are:&lt;br /&gt;
&lt;br /&gt;
* Deal with the differences between &amp;quot;Software List&amp;quot; based collections that are baked collections for a given emulator (e.g. MAME soft list), and loose ROMs.&lt;br /&gt;
* Try to consolidate media metadata to cleaned sanitized titles utilizing hashes made from normalized strings&lt;br /&gt;
* Consolidate and Handle multiple game systems&lt;br /&gt;
&lt;br /&gt;
== Tables ==&lt;br /&gt;
&lt;br /&gt;
The Database is comprised of the following tables:&lt;br /&gt;
&lt;br /&gt;
=== Attribute ===&lt;br /&gt;
&lt;br /&gt;
This stores the type of attributes to keep for media metadata.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
CREATE TABLE Attribute (&lt;br /&gt;
    PK_Attribute INTEGER AUTO_INCREMENT NOT NULL,&lt;br /&gt;
    Description VARCHAR(128),&lt;br /&gt;
    Define VARCHAR(128),&lt;br /&gt;
    PRIMARY KEY(PK_Attribute)&lt;br /&gt;
);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Emulator ===&lt;br /&gt;
&lt;br /&gt;
This table provides overall configuration data for a given emulator.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
CREATE TABLE Emulator (&lt;br /&gt;
    PK_Emulator INTEGER AUTO_INCREMENT NOT NULL,&lt;br /&gt;
    Descripition VARCHAR(128),&lt;br /&gt;
    Define CHARCHAR(128),&lt;br /&gt;
    PRIMARY KEY(PK_Emulator)&lt;br /&gt;
);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== File ===&lt;br /&gt;
&lt;br /&gt;
This table is the entry point for a file, usually a ROM.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
CREATE TABLE File  (&lt;br /&gt;
    PK_File INTEGER AUTO_INCREMENT NOT NULL,&lt;br /&gt;
    Description VARCHAR(1024),&lt;br /&gt;
    SHA1_Hash UNIQUE CHAR(40),&lt;br /&gt;
    PRIMARY_KEY(PK_File),&lt;br /&gt;
    KEY(SHA1_Hash)&lt;br /&gt;
);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== GameSystem ===&lt;br /&gt;
&lt;br /&gt;
A Game System is a particular system that can play a given game. Examples, Arcade, Atari 2600, NES, Sega Master System, etc.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
CREATE TABLE GameSystem (&lt;br /&gt;
    PK_GameSystem INTEGER AUTO_INCREMENT NOT NULL,&lt;br /&gt;
    Description VARCHAR(128),&lt;br /&gt;
    PRIMARY KEY(PK_GameSystem)&lt;br /&gt;
);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Game_Database_Schema&amp;diff=37014</id>
		<title>Game Database Schema</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Game_Database_Schema&amp;diff=37014"/>
		<updated>2017-06-04T20:20:14Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the proposed schema for the lmce_game database. As the first version was used as is between the first two Game Player versions, the new version of the schema will be called v2.&lt;br /&gt;
&lt;br /&gt;
As was before, this database is used to reconcile the possible metadata for game media found on a LinuxMCE system. &lt;br /&gt;
&lt;br /&gt;
== Goals ==&lt;br /&gt;
&lt;br /&gt;
The goals with this particular database schema are:&lt;br /&gt;
&lt;br /&gt;
* Deal with the differences between &amp;quot;Software List&amp;quot; based collections that are baked collections for a given emulator (e.g. MAME soft list), and loose ROMs.&lt;br /&gt;
* Try to consolidate media metadata to cleaned sanitized titles utilizing hashes made from normalized strings&lt;br /&gt;
* Consolidate and Handle multiple game systems&lt;br /&gt;
&lt;br /&gt;
== Tables ==&lt;br /&gt;
&lt;br /&gt;
The Database is comprised of the following tables:&lt;br /&gt;
&lt;br /&gt;
=== Attribute ===&lt;br /&gt;
&lt;br /&gt;
This stores the type of attributes to keep for media metadata.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
CREATE TABLE Attribute (&lt;br /&gt;
    PK_Attribute INTEGER AUTO_INCREMENT NOT NULL,&lt;br /&gt;
    Description VARCHAR(128),&lt;br /&gt;
    Define VARCHAR(128),&lt;br /&gt;
    PRIMARY KEY(Attribute)&lt;br /&gt;
);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== File ===&lt;br /&gt;
&lt;br /&gt;
This table is the entry point for a file, usually a ROM.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
CREATE TABLE File  (&lt;br /&gt;
    PK_File INTEGER AUTO_INCREMENT NOT NULL,&lt;br /&gt;
    Description VARCHAR(1024),&lt;br /&gt;
    SHA1_Hash UNIQUE CHAR(40),&lt;br /&gt;
    PRIMARY_KEY(PK_File),&lt;br /&gt;
    KEY(SHA1_Hash)&lt;br /&gt;
);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== GameSystem ===&lt;br /&gt;
&lt;br /&gt;
A Game System is a particular system that can play a given game. Examples, Arcade, Atari 2600, NES, Sega Master System, etc.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
CREATE TABLE GameSystem (&lt;br /&gt;
    PK_GameSystem INTEGER AUTO_INCREMENT NOT NULL,&lt;br /&gt;
    Description VARCHAR(128),&lt;br /&gt;
    PRIMARY KEY(PK_GameSystem)&lt;br /&gt;
);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Game_Database_Schema&amp;diff=37013</id>
		<title>Game Database Schema</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Game_Database_Schema&amp;diff=37013"/>
		<updated>2017-06-04T05:11:15Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: /* GameSystem */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the proposed schema for the lmce_game database. As the first version was used as is between the first two Game Player versions, the new version of the schema will be called v2.&lt;br /&gt;
&lt;br /&gt;
As was before, this database is used to reconcile the possible metadata for game media found on a LinuxMCE system. &lt;br /&gt;
&lt;br /&gt;
== Goals ==&lt;br /&gt;
&lt;br /&gt;
The goals with this particular database schema are:&lt;br /&gt;
&lt;br /&gt;
* Deal with the differences between &amp;quot;Software List&amp;quot; based collections that are baked collections for a given emulator (e.g. MAME soft list), and loose ROMs.&lt;br /&gt;
* Try to consolidate media metadata to cleaned sanitized titles utilizing hashes made from normalized strings&lt;br /&gt;
* Consolidate and Handle multiple game systems&lt;br /&gt;
&lt;br /&gt;
== Tables ==&lt;br /&gt;
&lt;br /&gt;
The Database is comprised of the following tables:&lt;br /&gt;
&lt;br /&gt;
=== File ===&lt;br /&gt;
&lt;br /&gt;
This table is the entry point for a file, usually a ROM.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
CREATE TABLE File  (&lt;br /&gt;
    PK_File INTEGER AUTO_INCREMENT NOT NULL,&lt;br /&gt;
    Description VARCHAR(1024),&lt;br /&gt;
    SHA1_Hash CHAR(40)&lt;br /&gt;
);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== GameSystem ===&lt;br /&gt;
&lt;br /&gt;
A Game System is a particular system that can play a given game. Examples, Arcade, Atari 2600, NES, Sega Master System, etc.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
CREATE TABLE GameSystem (&lt;br /&gt;
    PK_GameSystem INTEGER AUTO_INCREMENT NOT NULL,&lt;br /&gt;
    Description VARCHAR(128),&lt;br /&gt;
    PRIMARY KEY(PK_GameSystem)&lt;br /&gt;
);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Game_Database_Schema&amp;diff=37012</id>
		<title>Game Database Schema</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Game_Database_Schema&amp;diff=37012"/>
		<updated>2017-06-04T03:55:12Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: Initial content.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the proposed schema for the lmce_game database. As the first version was used as is between the first two Game Player versions, the new version of the schema will be called v2.&lt;br /&gt;
&lt;br /&gt;
As was before, this database is used to reconcile the possible metadata for game media found on a LinuxMCE system. &lt;br /&gt;
&lt;br /&gt;
== Goals ==&lt;br /&gt;
&lt;br /&gt;
The goals with this particular database schema are:&lt;br /&gt;
&lt;br /&gt;
* Deal with the differences between &amp;quot;Software List&amp;quot; based collections that are baked collections for a given emulator (e.g. MAME soft list), and loose ROMs.&lt;br /&gt;
* Try to consolidate media metadata to cleaned sanitized titles utilizing hashes made from normalized strings&lt;br /&gt;
* Consolidate and Handle multiple game systems&lt;br /&gt;
&lt;br /&gt;
== Tables ==&lt;br /&gt;
&lt;br /&gt;
The Database is comprised of the following tables:&lt;br /&gt;
&lt;br /&gt;
=== File ===&lt;br /&gt;
&lt;br /&gt;
This table is the entry point for a file, usually a ROM.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
CREATE TABLE File  (&lt;br /&gt;
    PK_File INTEGER AUTO_INCREMENT NOT NULL,&lt;br /&gt;
    Description VARCHAR(1024),&lt;br /&gt;
    SHA1_Hash CHAR(40)&lt;br /&gt;
);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== GameSystem ===&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=MAME_Merged_or_Split_ROM_notes&amp;diff=37011</id>
		<title>MAME Merged or Split ROM notes</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=MAME_Merged_or_Split_ROM_notes&amp;diff=37011"/>
		<updated>2017-06-04T02:25:06Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: Created page with &amp;quot;Currently, MAME has the ability to store ROM information for not only the parent game, but for any child games that may derive from it; such as clones or bootlegs.  == Merged...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Currently, MAME has the ability to store ROM information for not only the parent game, but for any child games that may derive from it; such as clones or bootlegs.&lt;br /&gt;
&lt;br /&gt;
== Merged ROM set == &lt;br /&gt;
&lt;br /&gt;
Given a ROM set, such as puckman.zip, which corresponds to a parent game of Burning Rubber, you have inside it:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 Length   Method    Size  Cmpr    Date    Time   CRC-32   Name&lt;br /&gt;
--------  ------  ------- ---- ---------- ----- --------  ----&lt;br /&gt;
    2048  Defl:X     1570  23% 1996-12-24 23:32 0b102302  abscam/as0.bin&lt;br /&gt;
    2048  Defl:X     1354  34% 1996-12-24 23:32 bc0281e0  abscam/as1.bin&lt;br /&gt;
    2048  Defl:X      872  57% 1996-12-24 23:32 81d50c98  abscam/as10.bin&lt;br /&gt;
    2048  Defl:X      692  66% 1996-12-24 23:32 9d802b68  abscam/as11.bin&lt;br /&gt;
    2048  Defl:X     1482  28% 1996-12-24 23:32 e05d46ad  abscam/as2.bin&lt;br /&gt;
    2048  Defl:X     1387  32% 1996-12-24 23:32 b39eb940  abscam/as3.bin&lt;br /&gt;
    2048  Defl:X     1371  33% 1996-12-24 23:32 3116a8ec  abscam/as4.bin&lt;br /&gt;
     256  Defl:X       72  72% 1996-12-24 23:32 1605b324  abscam/as4a.bin&lt;br /&gt;
    2048  Defl:X     1353  34% 1996-12-24 23:32 428ee2e8  abscam/as5.bin&lt;br /&gt;
    2048  Defl:X     1510  26% 1996-12-24 23:32 3ae9a8cb  abscam/as6.bin&lt;br /&gt;
    2048  Defl:X     1388  32% 1996-12-24 23:32 16cf1c67  abscam/as7.bin&lt;br /&gt;
    2048  Defl:X      879  57% 1996-12-24 23:32 61daabe5  abscam/as8.bin&lt;br /&gt;
    2048  Defl:X      153  93% 1996-12-24 23:32 a3bd1613  abscam/as9.bin&lt;br /&gt;
    2048  Defl:X     1590  22% 1996-12-24 23:32 2c0fa0ab  bucaner/buc1.6e&lt;br /&gt;
    2048  Defl:X      505  75% 1996-12-24 23:32 09f66dec  bucaner/buc10.5f&lt;br /&gt;
    2048  Defl:X      626  69% 1996-12-24 23:32 e3861283  bucaner/buc11.5h&lt;br /&gt;
    2048  Defl:X      525  74% 1996-12-24 23:32 653314e7  bucaner/buc12.5j&lt;br /&gt;
    2048  Defl:X     1380  33% 1996-12-24 23:32 6b53ada9  bucaner/buc2.6f&lt;br /&gt;
    2048  Defl:X     1503  27% 1996-12-24 23:32 9045a44c  bucaner/buc3.6h&lt;br /&gt;
    2048  Defl:X     1338  35% 1996-12-24 23:32 292de161  bucaner/buc4.6j&lt;br /&gt;
    2048  Defl:X     1266  38% 1996-12-24 23:32 afeca2f1  bucaner/buc5.6k&lt;br /&gt;
    2048  Defl:X     1352  34% 1996-12-24 23:32 35f3ca84  bucaner/buc6.6m&lt;br /&gt;
    2048  Defl:X     1458  29% 1996-12-24 23:32 888f3c3e  bucaner/buc7.6n&lt;br /&gt;
    2048  Defl:X      785  62% 1996-12-24 23:32 884af858  bucaner/buc8.6p&lt;br /&gt;
    2048  Defl:X      620  70% 1996-12-24 23:32 4060c077  bucaner/buc9.5e&lt;br /&gt;
    2048  Defl:X     1314  36% 1996-12-24 23:32 bed4a077  crockman/p4.6j&lt;br /&gt;
    2048  Defl:X     1460  29% 1996-12-24 23:32 93f344c5  crockman/p7.6n&lt;br /&gt;
    2048  Defl:X      816  60% 1996-12-24 23:32 800be41e  crockman/p8.6p&lt;br /&gt;
    2048  Defl:X      629  69% 1996-12-24 23:32 a10218c4  crockman/p9.5e&lt;br /&gt;
    2048  Defl:X     1591  22% 1996-12-24 23:32 9d027c4a  ctrpllrp/c1.bin&lt;br /&gt;
    2048  Defl:X      839  59% 1996-12-24 23:32 ba9ec199  ctrpllrp/c10.bin&lt;br /&gt;
    2048  Defl:X      637  69% 1996-12-24 23:32 46f72fef  ctrpllrp/c11.bin&lt;br /&gt;
    2048  Defl:X      818  60% 1996-12-24 23:32 41c09655  ctrpllrp/c12.bin&lt;br /&gt;
    2048  Defl:X     1380  33% 1996-12-24 23:32 afa149a8  ctrpllrp/c2.bin&lt;br /&gt;
    2048  Defl:X     1507  26% 1996-12-24 23:32 6bb282a1  ctrpllrp/c3.bin&lt;br /&gt;
    2048  Defl:X     1325  35% 1996-12-24 23:32 86c91e0e  ctrpllrp/c4.bin&lt;br /&gt;
    2048  Defl:X     1398  32% 1996-12-24 23:32 f39846d3  ctrpllrp/c5.bin&lt;br /&gt;
    2048  Defl:X     1424  31% 1996-12-24 23:32 baf5461e  ctrpllrp/c6.bin&lt;br /&gt;
    2048  Defl:X     1510  26% 1996-12-24 23:32 fa2140f5  ctrpllrp/c7.bin&lt;br /&gt;
    2048  Defl:X     1145  44% 1996-12-24 23:32 3d28134e  ctrpllrp/c8.bin&lt;br /&gt;
    2048  Defl:X      627  69% 1996-12-24 23:32 1c4617be  ctrpllrp/c9.bin&lt;br /&gt;
    2048  Defl:X      631  69% 1996-12-24 23:32 44a45b72  ghostmun/blpac10b&lt;br /&gt;
    2048  Defl:X      881  57% 1996-12-24 23:32 ab88b2c4  ghostmun/blpac11b&lt;br /&gt;
    2048  Defl:X      797  61% 1996-12-24 23:32 b2ed320b  ghostmun/blpac12b&lt;br /&gt;
    2048  Defl:X      783  62% 1996-12-24 23:32 fa84659f  ghostmun/blpac9b&lt;br /&gt;
      32  Defl:X       35  -9% 1996-12-24 23:32 759647e3  ghostmun/ghostmun.clr&lt;br /&gt;
    4096  Defl:X     2867  30% 1996-12-24 23:32 19338c70  ghostmun/pac1.bin&lt;br /&gt;
    4096  Defl:X     2712  34% 1996-12-24 23:32 18db074d  ghostmun/pac2.bin&lt;br /&gt;
    4096  Defl:X     2880  30% 1996-12-24 23:32 abb98b1d  ghostmun/pac3.bin&lt;br /&gt;
    4096  Defl:X     2246  45% 1996-12-24 23:32 2403c78e  ghostmun/pac4.bin&lt;br /&gt;
    4096  Defl:X     2891  29% 1996-12-24 23:32 5fe8610a  hangly/hangly.6e&lt;br /&gt;
    4096  Defl:X     2736  33% 1996-12-24 23:32 73726586  hangly/hangly.6f&lt;br /&gt;
    4096  Defl:X     2912  29% 1996-12-24 23:32 4e7ef99f  hangly/hangly.6h&lt;br /&gt;
    4096  Defl:X     2317  43% 1996-12-24 23:32 7f4147e6  hangly/hangly.6j&lt;br /&gt;
    4096  Defl:X     1257  69% 1996-12-24 23:32 0c944964  hangly/pacman.5e&lt;br /&gt;
    4096  Defl:X     1149  72% 1996-12-24 23:32 958fedf9  hangly/pacman.5f&lt;br /&gt;
    2048  Defl:X     1377  33% 1996-12-24 23:32 5ba228bb  hangly2/hangly2.6f&lt;br /&gt;
    2048  Defl:X     1327  35% 1996-12-24 23:32 51305374  hangly2/hangly2.6j&lt;br /&gt;
    2048  Defl:X     1123  45% 1996-12-24 23:32 427c9d4d  hangly2/hangly2.6p&lt;br /&gt;
    4096  Defl:X     1205  71% 1996-12-24 23:32 299fb17a  hangly2/pacmanh.5e&lt;br /&gt;
    2048  Defl:X     1504  27% 1996-12-24 23:32 08419c4a  hangly3/hm3.6h&lt;br /&gt;
    2048  Defl:X     1325  35% 1996-12-24 23:32 5039b082  hangly3/hm4.6j&lt;br /&gt;
    2048  Defl:X     1400  32% 1996-12-24 23:32 194c7189  hangly3/hm5.6k&lt;br /&gt;
    2048  Defl:X     1509  26% 1996-12-24 23:32 ab74b51f  hangly3/hm7.6n&lt;br /&gt;
    2048  Defl:X     1121  45% 1996-12-24 23:32 931770d7  hangly3/hm8.6p&lt;br /&gt;
    2048  Defl:X      583  72% 1996-12-24 23:32 5f4be3cc  hangly3/hm9.5e&lt;br /&gt;
    2048  Defl:X     1587  23% 1996-12-24 23:32 d844b679  joyman/joy1.6e&lt;br /&gt;
    2048  Defl:X      674  67% 1996-12-24 23:32 338771a6  joyman/joy10.5f&lt;br /&gt;
    2048  Defl:X      706  66% 1996-12-24 23:32 33e0289e  joyman/joy11.5h&lt;br /&gt;
    2048  Defl:X      625  70% 1996-12-24 23:32 f4f0add5  joyman/joy12.5j&lt;br /&gt;
    2048  Defl:X     1292  37% 1996-12-24 23:32 00b553f8  joyman/joy4.6j&lt;br /&gt;
    2048  Defl:X     1269  38% 1996-12-24 23:32 ab9c8f29  joyman/joy5.6k&lt;br /&gt;
    2048  Defl:X     1357  34% 1996-12-24 23:32 b3c8d32e  joyman/joy6.6m&lt;br /&gt;
    2048  Defl:X      788  62% 1996-12-24 23:32 5d5ce992  joyman/joy8.6p&lt;br /&gt;
    2048  Defl:X      578  72% 1996-12-24 23:32 39b557bc  joyman/joy9.5e&lt;br /&gt;
    2048  Defl:X      572  72% 1996-12-24 23:32 ca8c184c  newpuc2/5f.cpu&lt;br /&gt;
    2048  Defl:X      704  66% 1996-12-24 23:32 777c70d3  newpuc2/5h.cpu&lt;br /&gt;
    2048  Defl:X      572  72% 1996-12-24 23:32 7dc75a81  newpuc2/5j.cpu&lt;br /&gt;
    2048  Defl:X     1587  23% 1996-12-24 23:32 69496a98  newpuc2/6e.cpu&lt;br /&gt;
    2048  Defl:X     1507  26% 1996-12-24 23:32 81719de8  newpuc2/6h.cpu&lt;br /&gt;
    2048  Defl:X     1328  35% 1996-12-24 23:32 e6675736  newpuc2/6j.cpu&lt;br /&gt;
    2048  Defl:X     1331  35% 1996-12-24 23:32 158fc01c  newpuc2/6k.cpu&lt;br /&gt;
    2048  Defl:X     1419  31% 1996-12-24 23:32 70810ccf  newpuc2/6m.cpu&lt;br /&gt;
    2048  Defl:X     1486  27% 1996-12-24 23:32 3f250c58  newpuc2/6n.cpu&lt;br /&gt;
    2048  Defl:X     1083  47% 1996-12-24 23:32 1f81e765  newpuc2/6p.cpu&lt;br /&gt;
    2048  Defl:X     1505  27% 1996-12-24 23:32 f5e4b2b1  newpuc2b/np2b3.bin&lt;br /&gt;
    2048  Defl:X     1333  35% 1996-12-24 23:32 f068e009  newpuc2b/np2b4.bin&lt;br /&gt;
    2048  Defl:X     1080  47% 1996-12-24 23:32 1fadcc2f  newpuc2b/np2b8.bin&lt;br /&gt;
    4096  Defl:X     2664  35% 1996-12-24 23:32 1a6fb2d4  newpuckx/pacman.6f&lt;br /&gt;
    4096  Defl:X     2758  33% 1996-12-24 23:32 a8ae23c5  newpuckx/puckman.6e&lt;br /&gt;
    4096  Defl:X     2864  30% 1996-12-24 23:32 197443f8  newpuckx/puckman.6h&lt;br /&gt;
    4096  Defl:X     2103  49% 1996-12-24 23:32 2e64a3ba  newpuckx/puckman.6j&lt;br /&gt;
   65536  Defl:X     2798  96% 1996-12-24 23:32 70941a50  pac90/char.ic85&lt;br /&gt;
   32768  Defl:X    11140  66% 1996-12-24 23:32 8af34306  pac90/rom1.ic87&lt;br /&gt;
   65536  Defl:X      677  99% 1996-12-24 23:32 bc9bfdf2  pac90/rom2.ic67&lt;br /&gt;
   65536  Defl:X     1201  98% 1996-12-24 23:32 1c4d17fd  pac90/rom3.ic54&lt;br /&gt;
   65536  Defl:X     1685  97% 1996-12-24 23:32 190852ea  pac90/sprite1.ic50&lt;br /&gt;
   65536  Defl:X     1696  97% 1996-12-24 23:32 33effbea  pac90/sprite2.ic60&lt;br /&gt;
   65536  Defl:X    51156  22% 1996-12-24 23:32 abc61f3d  pac90/voice.ic82&lt;br /&gt;
    2048  Defl:X      579  72% 1996-12-24 23:32 c62bbabf  pacheart/pacheart.ch1&lt;br /&gt;
    2048  Defl:X     1285  37% 1996-12-24 23:32 b9152a38  pacheart/pacheart.pg2&lt;br /&gt;
    2048  Defl:X     1362  34% 1996-12-24 23:32 842d6574  pacheart/pacheart.pg4&lt;br /&gt;
    2048  Defl:X     1332  35% 1996-12-24 23:32 f5265c10  pacheart/pacheart.pg7&lt;br /&gt;
    2048  Defl:X      814  60% 1996-12-24 23:32 1a21a381  pacheart/pacheart.pg8&lt;br /&gt;
    4096  Defl:X     2742  33% 1996-12-24 23:32 c1e6ab10  pacman/pacman.6e&lt;br /&gt;
    4096  Defl:X     2865  30% 1996-12-24 23:32 bcdd1beb  pacman/pacman.6h&lt;br /&gt;
    4096  Defl:X     2234  46% 1996-12-24 23:32 817d94e3  pacman/pacman.6j&lt;br /&gt;
    2048  Defl:X     1592  22% 1996-12-24 23:32 6718df42  pacmanbl/1&lt;br /&gt;
    2048  Defl:X     1354  34% 1996-12-24 23:32 33be3648  pacmanbl/2&lt;br /&gt;
    2048  Defl:X     1373  33% 1996-12-24 23:32 f98c0ceb  pacmanbl/3&lt;br /&gt;
    2048  Defl:X     1407  31% 1996-12-24 23:32 a9cd0082  pacmanbl/4&lt;br /&gt;
    2048  Defl:X     1446  29% 1996-12-24 23:32 6d475afc  pacmanbl/5&lt;br /&gt;
    2048  Defl:X     1477  28% 1996-12-24 23:32 cbe863d3  pacmanbl/6&lt;br /&gt;
    2048  Defl:X     1109  46% 1996-12-24 23:32 7daef758  pacmanbl/7&lt;br /&gt;
      32  Defl:X       35  -9% 1996-12-24 23:32 24652bc4  pacmanbl/sn74s288n.6l&lt;br /&gt;
    4096  Defl:X     2971  28% 1996-12-24 23:32 75e4f967  pacmanbla/rom1.bin&lt;br /&gt;
    4096  Defl:X     2783  32% 1996-12-24 23:32 5b2e4293  pacmanbla/rom2.bin&lt;br /&gt;
    4096  Defl:X     2477  40% 1996-12-24 23:32 c06e30a4  pacmanbla/rom3.bin&lt;br /&gt;
    4096  Defl:X     1427  65% 1996-12-24 23:32 592b4ba8  pacmanbla/rom4.bin&lt;br /&gt;
    4096  Defl:X     1350  67% 1996-12-24 23:32 f2d8c01e  pacmanbla/rom5.bin&lt;br /&gt;
    4096  Defl:X     1560  62% 1996-12-24 23:32 346a1720  pacmanbla/rom6.bin&lt;br /&gt;
      32  Defl:X       33  -3% 1996-12-24 23:32 4e3caeab  pacmanblb/MB7051.6L&lt;br /&gt;
    2048  Defl:X     1501  27% 1996-12-24 23:32 d1542234  pacmanblb/MOON1&lt;br /&gt;
    2048  Defl:X     1592  22% 1996-12-24 23:32 06b60bca  pacmanblb/MOON2&lt;br /&gt;
    2048  Defl:X     1115  46% 1996-12-24 23:32 93d22cee  pacmanblb/MOON3&lt;br /&gt;
    2048  Defl:X     1355  34% 1996-12-24 23:32 88eca6fb  pacmanblb/MOON4&lt;br /&gt;
    2048  Defl:X     1373  33% 1996-12-24 23:32 cf25a673  pacmanblb/MOON5&lt;br /&gt;
    2048  Defl:X     1408  31% 1996-12-24 23:32 86230500  pacmanblb/MOON6&lt;br /&gt;
    2048  Defl:X     1446  29% 1996-12-24 23:32 287fcbe0  pacmanblb/MOON7&lt;br /&gt;
    4096  Defl:X     2665  35% 1996-12-24 23:32 720dc3ee  pacmanf/pacfast.6f&lt;br /&gt;
    2048  Defl:X     1309  36% 1996-12-24 23:32 258580a2  pacmanjpm/jpm4&lt;br /&gt;
    2048  Defl:X      772  62% 1996-12-24 23:32 b4d7ee8c  pacmanjpm/jpm8&lt;br /&gt;
    2048  Defl:X     1593  22% 1996-12-24 23:32 183d235a  pacmanpe/come1.6e&lt;br /&gt;
    2048  Defl:X     1499  27% 1996-12-24 23:32 cc92abb1  pacmanpe/come3.6h&lt;br /&gt;
    2048  Defl:X     1304  36% 1996-12-24 23:32 a02ce07f  pacmanpe/come4.6j&lt;br /&gt;
    2048  Defl:X     1412  31% 1996-12-24 23:32 2771c530  pacmanpe/come5.6k&lt;br /&gt;
    2048  Defl:X     1463  29% 1996-12-24 23:32 8810b38e  pacmanpe/come7.6n&lt;br /&gt;
    2048  Defl:X      811  60% 1996-12-24 23:32 34e9566d  pacmanpe/come8.6p&lt;br /&gt;
    2048  Defl:X      573  72% 1996-12-24 23:32 2229ab07  pacmanpe/come9.5e&lt;br /&gt;
    2048  Defl:X     1599  22% 1996-12-24 23:32 76dbed21  pacmanso/PM-1R.6E&lt;br /&gt;
    2048  Defl:X     1500  27% 1996-12-24 23:32 a5af382c  pacmanso/PM-3R.6H&lt;br /&gt;
    2048  Defl:X     1315  36% 1996-12-24 23:32 cd03135a  pacmanso/PM-4R.6J&lt;br /&gt;
    2048  Defl:X     1384  32% 1996-12-24 23:32 965bb9b2  pacmanso/PM-5R.6K&lt;br /&gt;
    2048  Defl:X     1444  30% 1996-12-24 23:32 fb397ced  pacmanso/PM-8R.6P&lt;br /&gt;
    2048  Defl:X      617  70% 1996-12-24 23:32 2ee076d2  pacmanso/PM-9S.5E&lt;br /&gt;
   32768  Defl:X    14380  56% 1996-12-24 23:32 f2404b4d  pacmansp/1.bin&lt;br /&gt;
    8192  Defl:X     2250  73% 1996-12-24 23:32 7a75b696  pacmansp/2.bin&lt;br /&gt;
    4096  Defl:X     2744  33% 1996-12-24 23:32 3b2ec270  pacmod/pacmanh.6e&lt;br /&gt;
    4096  Defl:X     2866  30% 1996-12-24 23:32 18811780  pacmod/pacmanh.6h&lt;br /&gt;
    4096  Defl:X     2234  46% 1996-12-24 23:32 5c96a733  pacmod/pacmanh.6j&lt;br /&gt;
    2048  Defl:X     1582  23% 1996-12-24 23:32 ec8c1ed8  pacuman/pacuman01.bin&lt;br /&gt;
    2048  Defl:X     1236  40% 1996-12-24 23:32 40edaf56  pacuman/pacuman02.bin&lt;br /&gt;
    2048  Defl:X     1377  33% 1996-12-24 23:32 db4f702b  pacuman/pacuman03.bin&lt;br /&gt;
    2048  Defl:X     1351  34% 1996-12-24 23:32 28f7257d  pacuman/pacuman04.bin&lt;br /&gt;
    2048  Defl:X     1504  27% 1996-12-24 23:32 212acb41  pacuman/pacuman05.bin&lt;br /&gt;
    2048  Defl:X     1474  28% 1996-12-24 23:32 e73dd1b9  pacuman/pacuman06.bin&lt;br /&gt;
    2048  Defl:X     1313  36% 1996-12-24 23:32 908a2cb2  pacuman/pacuman07.bin&lt;br /&gt;
    2048  Defl:X      803  61% 1996-12-24 23:32 cf4ba26c  pacuman/pacuman08.bin&lt;br /&gt;
    2048  Defl:X     1569  23% 1996-12-24 23:32 69a3e6ea  piranha/pir1.bin&lt;br /&gt;
    2048  Defl:X      292  86% 1996-12-24 23:32 d19399fb  piranha/pir10.bin&lt;br /&gt;
    2048  Defl:X      854  58% 1996-12-24 23:32 5f8bdabe  piranha/pir11.bin&lt;br /&gt;
    2048  Defl:X      627  69% 1996-12-24 23:32 cfb4403d  piranha/pir12.bin&lt;br /&gt;
    2048  Defl:X     1376  33% 1996-12-24 23:32 62cb6954  piranha/pir2.bin&lt;br /&gt;
    2048  Defl:X     1488  27% 1996-12-24 23:32 843fbfe5  piranha/pir3.bin&lt;br /&gt;
    2048  Defl:X     1421  31% 1996-12-24 23:32 4cdf6704  piranha/pir4.bin&lt;br /&gt;
    2048  Defl:X     1379  33% 1996-12-24 23:32 245e753f  piranha/pir5.bin&lt;br /&gt;
    2048  Defl:X     1352  34% 1996-12-24 23:32 cb0700bc  piranha/pir6.bin&lt;br /&gt;
    2048  Defl:X     1460  29% 1996-12-24 23:32 73084d5e  piranha/pir7.bin&lt;br /&gt;
    2048  Defl:X     1313  36% 1996-12-24 23:32 b86fedb3  piranha/pir8.bin&lt;br /&gt;
    2048  Defl:X      875  57% 1996-12-24 23:32 0f19eb28  piranha/pir9.bin&lt;br /&gt;
     256  Defl:X       70  73% 1996-12-24 23:32 08c9447b  piranha/piranha.4a&lt;br /&gt;
    4096  Defl:X     2861  30% 1996-12-24 23:32 bc5ad024  piranhah/pr1.cpu&lt;br /&gt;
    4096  Defl:X     2869  30% 1996-12-24 23:32 473c379d  piranhah/pr3.cpu&lt;br /&gt;
    4096  Defl:X     2125  48% 1996-12-24 23:32 63fbf895  piranhah/pr4.cpu&lt;br /&gt;
    2048  Defl:X      735  64% 1996-12-24 23:32 3fc4030c  piranhah/pr5.cpu&lt;br /&gt;
    2048  Defl:X      252  88% 1996-12-24 23:32 f3e9c9d5  piranhah/pr6.cpu&lt;br /&gt;
    2048  Defl:X      790  61% 1996-12-24 23:32 30b9a010  piranhah/pr7.cpu&lt;br /&gt;
    2048  Defl:X      542  74% 1996-12-24 23:32 133d720d  piranhah/pr8.cpu&lt;br /&gt;
    2048  Defl:X     1592  22% 1996-12-24 23:32 c6ce1bfc  piranhao/p1.bin&lt;br /&gt;
    2048  Defl:X      251  88% 1996-12-24 23:32 84165a2c  piranhao/p10.bin&lt;br /&gt;
    2048  Defl:X      857  58% 1996-12-24 23:32 a3606973  piranhao/p11.bin&lt;br /&gt;
    2048  Defl:X      584  72% 1996-12-24 23:32 2699ba9e  piranhao/p12.bin&lt;br /&gt;
    2048  Defl:X     1419  31% 1996-12-24 23:32 9363a4d1  piranhao/p4.bin&lt;br /&gt;
    2048  Defl:X     1374  33% 1996-12-24 23:32 a2655a33  piranhao/p5.bin&lt;br /&gt;
    2048  Defl:X     1324  35% 1996-12-24 23:32 2769979c  piranhao/p8.bin&lt;br /&gt;
    2048  Defl:X      814  60% 1996-12-24 23:32 94eb7563  piranhao/p9.bin&lt;br /&gt;
      32  Defl:X       21  34% 1996-12-24 23:32 2fc650bd  pm1-1.7f&lt;br /&gt;
     256  Defl:X       23  91% 1996-12-24 23:32 77245b66  pm1-2.3m&lt;br /&gt;
     256  Defl:X      136  47% 1996-12-24 23:32 a9cc86bf  pm1-3.1m&lt;br /&gt;
     256  Defl:X       70  73% 1996-12-24 23:32 3eb3a8e4  pm1-4.4a&lt;br /&gt;
    2048  Defl:X      616  70% 1996-12-24 23:32 2066a0b7  pm1_chg1.5e&lt;br /&gt;
    2048  Defl:X      639  69% 1996-12-24 23:32 3591b89d  pm1_chg2.5h&lt;br /&gt;
    2048  Defl:X      622  70% 1996-12-24 23:32 9e39323a  pm1_chg3.5f&lt;br /&gt;
    2048  Defl:X      572  72% 1996-12-24 23:32 1b1d9096  pm1_chg4.5j&lt;br /&gt;
    2048  Defl:X     1589  22% 1996-12-24 23:32 f36e88ab  pm1_prg1.6e&lt;br /&gt;
    2048  Defl:X     1250  39% 1996-12-24 23:32 618bd9b3  pm1_prg2.6k&lt;br /&gt;
    2048  Defl:X     1376  33% 1996-12-24 23:32 7d177853  pm1_prg3.6f&lt;br /&gt;
    2048  Defl:X     1352  34% 1996-12-24 23:32 d3e8914c  pm1_prg4.6m&lt;br /&gt;
    2048  Defl:X     1504  27% 1996-12-24 23:32 6bf4f625  pm1_prg5.6h&lt;br /&gt;
    2048  Defl:X     1460  29% 1996-12-24 23:32 a948ce83  pm1_prg6.6n&lt;br /&gt;
    2048  Defl:X     1315  36% 1996-12-24 23:32 b6289b26  pm1_prg7.6j&lt;br /&gt;
    2048  Defl:X      816  60% 1996-12-24 23:32 17a88c13  pm1_prg8.6p&lt;br /&gt;
    2048  Defl:X      713  65% 1996-12-24 23:32 014fb5a4  popeyeman/pop10.5f&lt;br /&gt;
    2048  Defl:X      665  68% 1996-12-24 23:32 21b91c64  popeyeman/pop12.5j&lt;br /&gt;
    2048  Defl:X      628  69% 1996-12-24 23:32 b569c4c1  popeyeman/pop9.5e&lt;br /&gt;
    4096  Defl:X     2759  33% 1996-12-24 23:32 fee263b3  puckmanb/namcopac.6e&lt;br /&gt;
    4096  Defl:X     2667  35% 1996-12-24 23:32 39d1fc83  puckmanb/namcopac.6f&lt;br /&gt;
    4096  Defl:X     2865  30% 1996-12-24 23:32 02083b03  puckmanb/namcopac.6h&lt;br /&gt;
    4096  Defl:X     2080  49% 1996-12-24 23:32 7a36fe55  puckmanb/namcopac.6j&lt;br /&gt;
    4096  Defl:X     2668  35% 1996-12-24 23:32 51b38db9  puckmanf/nampfast.6f&lt;br /&gt;
    4096  Defl:X     2737  33% 1996-12-24 23:32 61d38c6c  puckmanh/pm02.6f&lt;br /&gt;
    4096  Defl:X     2339  43% 1996-12-24 23:32 8939ddd2  puckmanh/pm04.6j&lt;br /&gt;
    4096  Defl:X     2079  49% 1996-12-24 23:32 7d98d5f5  puckmod/npacmod.6j&lt;br /&gt;
--------          -------  ---                            -------&lt;br /&gt;
  947584           359941  62%                            213 files&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Notice the different subdirectories with names like abscam, and popeyeman. These are different variations of the game, which also have different ROM labeling (MAME&#039;s policy is to always match the labeling of the ROMs on the board)...&lt;br /&gt;
&lt;br /&gt;
This is called the merged variation of a ROM.&lt;br /&gt;
&lt;br /&gt;
== Split ROM set ==&lt;br /&gt;
&lt;br /&gt;
Whereas, in the split form, one may have ROM ZIPs with each of the games, and their clones as seperate files, such as puckman.zip, abscam.zip, popeyeman.zip, npacmod.zip, and so on, each containing a flat set of ROMs for that specific game. This form is called a &amp;quot;split&amp;quot; ROM archive.&lt;br /&gt;
&lt;br /&gt;
== How to solve Ingestion ==&lt;br /&gt;
&lt;br /&gt;
The only clean way to solve inROMgestion here, is to literally have a relationship where one Rom entry in the game database may reference multiple individual Games. This way, we can catch on a file content hash and use appropriately.&lt;br /&gt;
&lt;br /&gt;
== Important other pages ==&lt;br /&gt;
&lt;br /&gt;
[[Game Database Schema]]&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=User:Tschak909&amp;diff=37010</id>
		<title>User:Tschak909</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=User:Tschak909&amp;diff=37010"/>
		<updated>2017-06-04T02:07:14Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== About Me ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Name:&#039;&#039;&#039; Thomas Cherryhomes&lt;br /&gt;
* &#039;&#039;&#039;Email:&#039;&#039;&#039; thom.cherryhomes at gmail dot com&lt;br /&gt;
&lt;br /&gt;
== My Current .plan ==&lt;br /&gt;
&lt;br /&gt;
* Working on The [[New Wii Remote Driver]]&lt;br /&gt;
* Polishing the MAME Media type for release in 0810.&lt;br /&gt;
* Working on MID support in LinuxMCE. Current research prototype is the [[Archos 9]]&lt;br /&gt;
* Smashing bugs in http://svn.linuxmce.org/&lt;br /&gt;
&lt;br /&gt;
== Notes Pages ==&lt;br /&gt;
&lt;br /&gt;
* [[Game Player MAME ROM Ingestion Notes]]&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=37002</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=37002"/>
		<updated>2017-05-21T02:00:33Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: /* Upcoming fixes... */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the latest changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo much easier.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please include the pkg #s to facilitate building on 3x i386 targets in addition to 2x amd64 and 3x armhf targets where full builds are not always practical.  Keep in mind that most packages are referred to by two (2) package numbers from the database, a source package and a binary package.  &amp;quot;Thank you for your co-operation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
* pluto-storage-devices (533) - Push ZFS changes&lt;br /&gt;
* lmce-zfs-support (937) - Set mountpoint to legacy upon creation.&lt;br /&gt;
* pluto-website-admin (220) - ZFS Changes galore.&lt;br /&gt;
&lt;br /&gt;
== Update 1204 i386 only - 201705152225+363cfe3f ==&lt;br /&gt;
Temporarily remove ZFS from precise for debugging.&lt;br /&gt;
&lt;br /&gt;
* lmce-core (888) - remove dep for precise&lt;br /&gt;
* lmce-md-meta (450) - remove dep for precise&lt;br /&gt;
* lmce-zfs-support (937) - remove dep for precise&lt;br /&gt;
&lt;br /&gt;
== Update 1204 i386, 1404/1604 i386/amd64 201705131304+14f85ee9 ==&lt;br /&gt;
Attaching ZFS to the install...&lt;br /&gt;
* lmce-core (888) - Add dependency for ZFS&lt;br /&gt;
* lmce-md-meta (450) - Add dependency for ZFS&lt;br /&gt;
&lt;br /&gt;
== Update 1204 i386, 1404/1604 i386/amd64 201705131304+14f85ee9 ==&lt;br /&gt;
ZFS Support Extravaganza!&lt;br /&gt;
&lt;br /&gt;
* lmce-zfs-support (937) - dependencies added below for ZFS support&lt;br /&gt;
* mountall (938) - package added for ZFS support&lt;br /&gt;
* spl (939) - package added for ZFS support&lt;br /&gt;
* spl-dkms (940) - package added for ZFS support&lt;br /&gt;
* ubuntu-zfs (941) - package added for ZFS support&lt;br /&gt;
* zfs-auto-snapshot (942) - package added for ZFS support&lt;br /&gt;
* libnvpair1 (943) - package added for ZFS support&lt;br /&gt;
* libuutil1 (944) - package added for ZFS support&lt;br /&gt;
* libzfs2 (945) - package added for ZFS support&lt;br /&gt;
* libzpool2 (946) - package added for ZFS support&lt;br /&gt;
* zfs-dkms (947) - package added for ZFS support&lt;br /&gt;
* zfs-initramfs (948) - package added for ZFS support&lt;br /&gt;
* zfsutils (949) - package added for ZFS support&lt;br /&gt;
* zfs-zed (950) - package added for ZFS support&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201705110719+14f85ee9 ==&lt;br /&gt;
* Replacement packages in ubuntu/&lt;br /&gt;
** mountall - replacement package&lt;br /&gt;
** zfs-linux - ZFS support&lt;br /&gt;
** spl-linux - SPL library for ZFS support&lt;br /&gt;
** zfs-auto-snapshot - ZFS support&lt;br /&gt;
** ubuntu-zfs - ZFS support&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201705030817+f0afe768 ==&lt;br /&gt;
* lmce-zfs-support - remove the mkr_postinst.sh right now, as that was causing problems for everybody. Will bring the ZFS code into repo.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201705030817+f0afe768 ==&lt;br /&gt;
* pluto-bootscripts (234) firewall need to work together with the vpn.&lt;br /&gt;
* lmce-asterisk (920) - db_create_dialplan.sh to add blacklist better check option on asterisk dialplan. add Voicemailmain op extension *100&lt;br /&gt;
* lmce-vlc-player (884,882) - Further work on VLC_Player&#039;s transport controls. Please test and tell me if they work better. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Addition of ZFS templates.&lt;br /&gt;
* pluto-raid-tools (617) - Additions for ZFS&lt;br /&gt;
* lmce-zfs-support (937) - NEW PACKAGE for ZFS support.&lt;br /&gt;
* pluto-storage-devices (533) - Add ZFS support to automounter.&lt;br /&gt;
* pluto-website-admin (220) - Add ZFS support to RAID pages.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201704211536+941ae691 ==&lt;br /&gt;
* pluto-website-admin (220) - Blacklist.php added for administrating asterisk blacklist of phone numbers #2691&lt;br /&gt;
* lmce-asterisk (920) - db_create_dialplan.sh to add blacklist check on asterisk dialplan.&lt;br /&gt;
* pluto-database* - GRANT to localhost as well (just 127.0.0.1 doesn&#039;t help since MySQL 5.7)&lt;br /&gt;
&lt;br /&gt;
== Update armhf 201704191739+13f4f937 ==&lt;br /&gt;
* pluto-vdr - Don&#039;t check for the existence of a Xine device in the tree. There are many ways to display VDR.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201704182328+13f4f937  ==&lt;br /&gt;
* pluto-text-to-speech - Fix for initial installation which might effect usability.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704181123+a26d414e ==&lt;br /&gt;
* pluto-security-database - Localhost or 127.0.0.1 matters for MySQL - This should be the last fix needed to get MySQL Server v5.7 sorted out - at least for the install.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704180809+9af5cc66 ==&lt;br /&gt;
* pluto-boot-scripts - Set MySqlUser name in ConfigOps if it isn&#039;t already set.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201704171950+9af5cc66 ==&lt;br /&gt;
* pluto-sqlcvs, pluto*database* - Final fixes for 1404 and 1604.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704161042+f5455665 ==&lt;br /&gt;
* pluto-sqlcvs - Now has a dependency to pluto-database-settings&lt;br /&gt;
* pluto-database-settings - all user creation happens in here&lt;br /&gt;
* pluto-database-system - no more user creation.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 - 201704151808+866a5886 ==&lt;br /&gt;
* pluto-database-settings - Takes way too long to get fixed.&lt;br /&gt;
&lt;br /&gt;
== Update 201704151034+80dd9806 ==&lt;br /&gt;
* pluto-database-settings - *grml* don&#039;t just blindly copy other peoples code.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704142323+6ad66efd ==&lt;br /&gt;
* pluto-database-settings - Put user creation into mkr_postinst_mysql instead of mkr_postinst_system. Let&#039;s hope this fixes this sucker.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 2.0.0.47.201704050752+ddbbb689 ==&lt;br /&gt;
* lmce-vlc-player (884,882) - preprocess URL to ensure that file paths with # in them play correctly.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 amd64/i386 201704041743+906d69eb ==&lt;br /&gt;
* pluto-bootscripts (234) - Typo fix for insert rule to the db. /ppp/ip-up.d/lmce-vpn-up and /ppp/ip-down.d/lmce-vpn-down works now niceley togheter with the new firewall.&lt;br /&gt;
* pluto-system-database (211) - sqlCVS commit to add Imagemagick as dependency to VLC Player, finally squashing that #($#@( start bug! (TSCHAK)&lt;br /&gt;
** Also added ir-keytable depedency to pluto-lirc-wrapper&lt;br /&gt;
** Also added generic cd and dvd icons for External Media Identifier&lt;br /&gt;
* pluto-lirc-wrapper (340,421) - Ensure that ir-keytable is cleared before lircd starts to avoid unusual behavior with remotes that use kernel event subsystem (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - Fix DVD to use cifs instead of smbfs (which has been deprecated for 10 years.)&lt;br /&gt;
* lmce-vlc-player (884,882) - bug fixes for multi room sync&lt;br /&gt;
* lmce-vlc-plugin (874,875) - bug fixes for multi room sync&lt;br /&gt;
* lmce-media-identifier (931,932) - add generic dvd and cd identification if disc can&#039;t be identified by normal means.&lt;br /&gt;
* pluto-website-admin (220) - phonelines.php shows the state of a SPA protocol phonline. And firewall.php updated preg_match to find lines on pluto.conf and change them if exists. Issue2745.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201703301804+358c1c45 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fixes Bug #2726 - Media details now work, again.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 - 201703272335+efdf6de9 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Issue #2730 - Media Plugin changes to add support for FIFO capture card playback to VLC Player (route messages to VLC Player if it exists) -TSCHAK&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue #2729, #2730 - Implement FIFO device playback for local devices similar to file playback. (TBD: recompile VLC with PVR functionality), also multi-room playback. VLC Player is now in beta. -TSCHAK&lt;br /&gt;
* lmce-vlc-plugin (874,875) - Issue #2729 - Implement multi-room playback, VLC sync listener on core, etc. VLC functionality is now beta. -TSCHAK&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201702201438+325cc736 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix for multiple cameras and Get Image command&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue 2727, Issue 2728 - Trick play overhaul and fix audio glitches when trick play is used. &lt;br /&gt;
* pluto-boot-scripts (234) - SetupAudioVideo.sh - slight change to libvlc.conf so that trick play OSD works.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1204-1404-1604/amd64 c20633ff ==&lt;br /&gt;
* pluto-website-admin (220) - Added the case for section energyGraph and sipConf, fixed permissions for mysql asteriskuser, add sql credentials for myth, change MYSQL_NUM to MYSQLI_NUM&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1404/amd64 a7c10426 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add backports so 1204 diskless create works&lt;br /&gt;
* lmce-oauth2-server (668) - initial build of lmce oauth2 server for cloud interfacing&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404/1604 i386 - 1404x64 - 201611190055+fee90f43 ==&lt;br /&gt;
* pluto-boot-scripts (234) - database upgrades&lt;br /&gt;
* pluto-orbitergen (226,227) - database upgrades&lt;br /&gt;
* pluto-pluto-main-db (201,237) - database upgrades&lt;br /&gt;
* pluto-pluto-security-db (278,277) - database upgrades&lt;br /&gt;
* lmce-asterisk (replacement) - database upgrades&lt;br /&gt;
* pluto-system-database (211) - database upgrades&lt;br /&gt;
* pluto-local-database (214) - database upgrades&lt;br /&gt;
* pluto-security-database (256) - database upgrades&lt;br /&gt;
* pluto-telecom-database (472) - database upgrades&lt;br /&gt;
* pluto-media-database (233) - database upgrades&lt;br /&gt;
* pluto-database-settings (407) - database upgrades&lt;br /&gt;
* pluto-sqlcvs (212,213) - database upgrades&lt;br /&gt;
* pluto-std-plugins (116,135) - database upgrades&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609281853+9638f5bc ==&lt;br /&gt;
* pluto-website-admin (220) - #2705 fixed syntax error.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609271106+39103855 ==&lt;br /&gt;
* pluto-website-admin (220) - Update firewall.php GUI change some fields where reset to the default values. now the db data is honored.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** don&#039;t create initramfs for Raspbian Jessie diskless filesystems.&lt;br /&gt;
** ensure firstboot runs on diskless Jessie RPis.&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** stop/start rather than restart dhcp server, it&#039;s like nuking the site from orbit... only way to be sure.&lt;br /&gt;
** Firewall blocks udp 1900 UpNP traffic from externalinterface.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609172308+325de35d ==&lt;br /&gt;
* lmce-autotag (780, 781) linuxmceTag - fix comparison issue with media type.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609131230+5eaa4671/201609131753+5eaa4671 ==&lt;br /&gt;
* pluto-boot-scripts (234) - send dhcp vendor specific options only to wired raspberry pis.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 201609102226+fda3da63 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** rpi native pxe additions/updates&lt;br /&gt;
** extend startup timeout when booting under systemd&lt;br /&gt;
* lmce-diskless-tools (627,628) - rpi native pxe additions/updates&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DT updates for rpi native pxe&lt;br /&gt;
** add Serial Number Device Data to RPi DTs&lt;br /&gt;
** sets default PK_Distro to 22 (jessie) for RPi DTs&lt;br /&gt;
** new device data for &amp;quot;Standard Energy Meter&amp;quot;&lt;br /&gt;
* pluto-std-plugins (116,135)&lt;br /&gt;
** stores energy reading in state field for Standard Energy Meter&lt;br /&gt;
** fixes dcerouter crash when searching media&lt;br /&gt;
* pluto-updatemedia (405,406) - fix segfault when a dir is attempting to be tagged directly (without a .id3)&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - don&#039;t fail pkg install if simplephone is not running.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-i386 - 1404-i386/amd64 201607240235+899786ab ==&lt;br /&gt;
* pluto-website-admin (220) - Mysqli_real_escape_string did not work. a start with ipv6 firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/i386 201607202218+14cba09a ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) - Stream Bouncing, Additional settings for location, removed debug output, queue functionality.&lt;br /&gt;
&lt;br /&gt;
== Update 201607181902+d4cec1a0 1404-i386/amd64 - 1204-i386 ==&lt;br /&gt;
* pluto-website-admin - Update to qOrbiterGenerator.php for newer PHP version&lt;br /&gt;
&lt;br /&gt;
== Update 201607161239+6d72c3f9 1404-i386/amd64 1204-i386 ==&lt;br /&gt;
* pluto-website-admin (220) - #2678 fix Warning: Invalid argument supplied for foreach() in /var/www/lmce-admin/include/dhcpd-tools/DHCPd-parse.php on line 113&lt;br /&gt;
* pluto-boot-script&lt;br /&gt;
&lt;br /&gt;
== Update 201607151016+5b5adba3 1404/i386 &amp;amp; amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule use another escape method.&lt;br /&gt;
&lt;br /&gt;
== Update 201607122332+f0fc9c6b 1404/i386 ==&lt;br /&gt;
* pluto-boot-scripts (234) - fix #2684 clients cannot access internet when firewall is disabled. &lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule.&lt;br /&gt;
&lt;br /&gt;
== Update 201607050613+601c67da 1404-i386/amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - more fixes to the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update trusty i386/amd64 201606301955+614dfa7b ==&lt;br /&gt;
* pluto-website-admin (220) - fix for outside access port 443 not uncheckable.&lt;br /&gt;
* pluto-boot-scripts (234) - fix for not dele rules from iptables from outsideAccess.php&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201606201908+31b25c52 ==&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** unicode reading/writing working properly&lt;br /&gt;
** coverart writing to tags working properly&lt;br /&gt;
** .id3 files handled by taglib instead of id3lib.&lt;br /&gt;
** General Object Frame (GEOB) reading/writing working properly (all lmce attributes are stored in id3v2 GEOB tags for .id3/.mp3 files)&lt;br /&gt;
* pluto-website-admin (220) - more updates for mysql -&amp;gt; mysqli conversion&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201605312323+08fb8202 ==&lt;br /&gt;
* pluto-website-admin (220) - fix Text Command button to honor parameters from Screen_CommandParameter&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller to fix spamming of logs with constant updates of device data.&lt;br /&gt;
&lt;br /&gt;
== Update trusty-i386/amd64 201605310531+04df53f5 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - get the stream uri from onvif camera and save it in a device data for use by other devices&lt;br /&gt;
* pluto-website-admin (220) - adate to adodb 5.20.4 and change db driver from mysql to mysqli&lt;br /&gt;
* pluto-updatemedia (405,406) - tag writing/deletion of values update&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201605261039+410242d2 ==&lt;br /&gt;
* pluto-media-database (233) - remove FatGroupBy query as it is massive and no longer required&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** FIX UpdateMedia not detecting changes in files on disk.  Fixes: UpdateMedia not reading modification times properly.&lt;br /&gt;
** improve image reading/writing for mp3/mp4 files, add image handling for asf/wma, improve track art-&amp;gt;performer/album artist matching.&lt;br /&gt;
** don&#039;t add network shares to inotify watch list&lt;br /&gt;
* pluto-system-database (211) - new qml-* pkg definitions for qorbiter&lt;br /&gt;
* pluto-plutoutils (196,197) - add fn&#039; to determine filesystem type of a file&lt;br /&gt;
* lmce-disked-interactor (897,898) - make sure we see the core and have an IP prior to attempting contact&lt;br /&gt;
* pluto-bootscripts (234) - make sure we see the core prior to continuing to boot an MD&lt;br /&gt;
* pluto-website-admin (220) - various fixes in the media page&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 - 201605171740 c6d63dc6 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3, ogg, flac, mp4, wv, wav, oga, mpc, spx, opus, tta, m4a, m4r, m4p, 3g2, m4v, wma, asf, aif, aiff, afc, aifc, ape, s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64  201605131052+2542a526 ==&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - udev rule to ignore usbhid portion of device, permits orbiter to enter screensaver&lt;br /&gt;
* pluto-bootscripts (234) - permit devices that have died 50 times to attempt to restart after a router reload. Firewall fix for manual defined chains.&lt;br /&gt;
* pluto-sound-card-scripts (579) - don&#039;t assume cardid=1, determine phoenix cardid from aplay.&lt;br /&gt;
* pluto-media-database (233) - additional AttributeType &amp;quot;Album Artist&amp;quot;&lt;br /&gt;
* lmce-media-identifier (931,932) - updates for Album Artist tag.&lt;br /&gt;
* pluto-orbiter (119,138) - updates for Album Artist tag.&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** updates for Album Artist tag&lt;br /&gt;
** fix mainMediaFileSync.php. OutsideAccess page showing the options (again). &lt;br /&gt;
** And typo fixes for issue #2643. &lt;br /&gt;
** Firewall page reload issue 2636#. Firewall gui do not show &amp;quot;NULL&amp;quot;.&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3:ogg:flac:mp4:wv:wav::oga:mpc:spx:opus:tta:m4a:m4r:m4p:3g2:m4v:wma:asf:aif:aiff:afc:aifc:ape:s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update jessie 20160427 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for RPi&lt;br /&gt;
* lmce-disked-md-rpi2 (889) - +x firstboot_md_rpi2 to ensure it&#039;s picked up properly&lt;br /&gt;
&lt;br /&gt;
== Update jessie 201604130947+0083d387 ==&lt;br /&gt;
== Update 1204/1404-i386/amd64 201604101031-0b47a986 ==&lt;br /&gt;
* pluto-website-admin, pluto-boot-scripts (220,234) - Firewall Fixes for GUI and inner working of the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603251155+a1c0f6ea ==&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - File view implemented. Fixed not being able to leave resume menu.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603222119+336464d8 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller  to fix floorplan / status being improperly updated.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t mount optical discs as HDDs&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201603220706+c3c4b899 ==&lt;br /&gt;
* lmce-md-meta (450) - for some reason this is not in the main repo&lt;br /&gt;
* lmce-media-identifier - fixed for libcdio&lt;br /&gt;
&lt;br /&gt;
== Update jessie-rpi 60faa181 ==&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - adds video resizing so UI1 can be exposed while video is playing.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 armhf 31c5d994 ==&lt;br /&gt;
== Update 1404 i386 52e39875 ==&lt;br /&gt;
* pluto-storage-devices (533) - fix ntfs detection&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 - 49a8cbf1 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - a little better device to device template mapping&lt;br /&gt;
* pluto-website-admin (220) - fix adv.zwave page and adding secure devices&lt;br /&gt;
* lmce-disked-* - update the disked md/mid meta/base/device pkgs, specific fixes for 1404 joggler&lt;br /&gt;
* lmce-json-plugin (876,877) - first time addition to the main repo&lt;br /&gt;
* libdvdid0 (replacement) - first time addition to the repo, for use by Media Identifier&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - enable disabling internal volume control, similar to how logitechmediaserver does&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1404(armhf)/jessie(rpi)-a84db86f ==&lt;br /&gt;
* lmce-launch-manager (298,299) - only update squeeze devices when running on the core, redundant elsewhere.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404-87954508 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t fail if dvdcss2 cannot be automatically installed.&lt;br /&gt;
* pluto-hald (529,530) - reinstate tty detection, seperate from usb-serial, use direct parent for udi naming.&lt;br /&gt;
* pluto-boot-scripts (234) - disable buildall, the script doesn&#039;t run so why waste time creating it.&lt;br /&gt;
* lmce-launch-manager (298,299)&lt;br /&gt;
** update squeezebox players on router reloads from Launch_Manager&lt;br /&gt;
** call Config_Device_Changes in startCoreServices to ensure everything gets its&#039; Need Configure flag reset.&lt;br /&gt;
&lt;br /&gt;
== Update a332f49a ==&lt;br /&gt;
* lmce-install-scripts (391) - fix missing quote in MD installation.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix missing &#039;fi&#039; in BootMessage.sh&lt;br /&gt;
** fix usb.1 system serial port listing/translating&lt;br /&gt;
* lmce-media-identifier (931,932) - fix segfault, CDs are identified, cd-ripping functional again&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** prioritize new conf dir over old conf dir, fix install on systems upgraded from 1204-&amp;gt;1404&lt;br /&gt;
** redirect mythweb to html/mythweb&lt;br /&gt;
* pluto-hald (529,530) - updates to serial port naming, specifically for odroid.&lt;br /&gt;
* pluto-storage-devices (533) - fix mounted drive detection and add detection for drives mounted in /proc/cmdline like rpi.&lt;br /&gt;
&lt;br /&gt;
== Update 1204=201602080446+2028f850 &amp;lt;br&amp;gt; 1404=201602071815+c31bc44f ==&lt;br /&gt;
* lmce-install-scripts (391)&lt;br /&gt;
** enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
* lmce-core (888) - enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
* pluto-storage-devices (533) - redo StorageDevices_Radar using blkid for internal HDD identification.  /dev/disk/by-path/ is not present anymore.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
** new VerifyDistro.sh script and call the script on boot.&lt;br /&gt;
*** Preventative mostly.  Intended to ease pain for those that upgrade distros.&lt;br /&gt;
*** Ensure child devices, onscreen orbiter, have the proper PK_Distro set.&lt;br /&gt;
&lt;br /&gt;
== Update 296fdcd3 ==&lt;br /&gt;
* pluto-website-admin (220) - fix depends versioning&lt;br /&gt;
* pluto-hald (529,530) - fix depends versioning&lt;br /&gt;
* pluto-boot-scripts (234) - fix depends versioning&lt;br /&gt;
* pluto-system-database (211) - fix depends versioning&lt;br /&gt;
* pluto-orbitergen (226,227) - fix depends versioning&lt;br /&gt;
* lmce-disked-md-base (801) - fix depends versioning&lt;br /&gt;
* lmce-install-scripts (391) - fix depends versioning&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix depends versioning&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix depends versioning&lt;br /&gt;
* lmce-datalogger-plugin (686,687) - fix depends versioning &lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix depends versioning&lt;br /&gt;
&lt;br /&gt;
== Update f3a444c0 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** use newer .sh script rather than obsolete .pl script for dialplan creation&lt;br /&gt;
** fix Directory listing on cisco phones&lt;br /&gt;
** fix delete buttons on internet radio page.&lt;br /&gt;
* pluto-hald (529,530)&lt;br /&gt;
** add &#039;usb&#039; to &#039;pci&#039; and &#039;platform&#039; as valid bus addresses&lt;br /&gt;
** permit adding of usb devices with usb_serial or tty children&lt;br /&gt;
* pluto-boot-scripts (234) - update SetupAudioVideo.sh to more reliably address nvidia hdmi audio outputs&lt;br /&gt;
* lmce-asterisk (replacement) - live_dangerously for now to get all the necessary Voicemail modules to load&lt;br /&gt;
* pluto-system-database (211) - new DD Number of jobs for orbiter plug-in/orbitergen&lt;br /&gt;
* pluto-boot-scripts (234) - updates to RegenOrbiter scripts for parallel job queued orbiter generation.&lt;br /&gt;
* pluto-orbitergen (226,227) - new depends on GNU parallel&lt;br /&gt;
* lmce-disked-md-base (801) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* lmce-install-scripts (391) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - remove hardcoded ip address, get from db instead.&lt;br /&gt;
* lmce-diskless-tools (627,628) - only run UpdateDebCache.sh if it is executable&lt;br /&gt;
* lmce-datalog-plugin(686,687) - fix pear install command in postinst&lt;br /&gt;
* lmce-advanced-ip-camera(812,813) - add basic onvif support (snapshot,PTZ)&lt;br /&gt;
&lt;br /&gt;
== Update 31792 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of new External_Media_Identifier, testing CDDB ids&lt;br /&gt;
&lt;br /&gt;
== Update 31783 ==&lt;br /&gt;
* pluto-libserial (190,191) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-dcecommon (192,193) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-irbase (194,195) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-plutoutils (196,197) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-vipshared (199,200) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-serializeclass (198,238) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-libbd (239,240) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-ra (247,248) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-main-db (201,237) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-media-db (254,255) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-security-db (278,277) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-sdl-helpers (346,347) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-messagetrans (398,401) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-game-db (675,676) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-windowutils (677,678) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-datalog-db (688,689) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
&lt;br /&gt;
== Update 31782 ==&lt;br /&gt;
* pluto-std-plugins - fix FK_File search inside Attribute in Media_Plugin&lt;br /&gt;
&lt;br /&gt;
== Update 31774 ==&lt;br /&gt;
* lmce-disked-mid-base (899) - fix error in postinst&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come (this should be in but apt-get is getting 404 errors)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add &amp;quot;remove failed node&amp;quot; command&lt;br /&gt;
* pluto-website-admin - add &amp;quot;remove failed node&amp;quot; command for zwave advanced page&lt;br /&gt;
&lt;br /&gt;
== Update 31760 ==&lt;br /&gt;
* lmce-disked-md-base (801) - fix another error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31757 ==&lt;br /&gt;
* lmce-core (888) - overwrite AutostartCore conf value&lt;br /&gt;
* lmce-md-meta (450) - overwrite AutostartMedia conf value&lt;br /&gt;
* lmce-mid-meta (962) - missing deb&lt;br /&gt;
* lmce-hybrid (769) - exit 0 in postinst, just to be sure&lt;br /&gt;
* lmce-disked-md-base (801) - fix error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31754 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - reconnect before send&lt;br /&gt;
&lt;br /&gt;
== Update 31752 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - remove hard coded caller id &#039;Cherryhomes, Tho&#039;, use incoming caller id.&lt;br /&gt;
&lt;br /&gt;
== Update 31750 ==&lt;br /&gt;
* pluto-website-admin (220) - fix postinst error notice on precise.&lt;br /&gt;
* pluto-boot-scripts (234) - (re)start asterisk, otherwise configuration doesn&#039;t occur and sip phones cannot register&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - force-reload apache2 after disabling mythbuntu sites&lt;br /&gt;
* lmce-md-meta (450) - don&#039;t overwrite conf values that are already set&lt;br /&gt;
* *openzwave* (replacement) - version bump, upgrade fixes to upstream files&lt;br /&gt;
&lt;br /&gt;
== Update 31744 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come&lt;br /&gt;
&lt;br /&gt;
== Update 31742 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Gui changes to not confuse people. &lt;br /&gt;
** outsideaccess works together with the firewall. &lt;br /&gt;
** phonelines note on protocol for meaning of &amp;quot;SPA&amp;quot; and a status for this protocol setting, port can be changed if needed else it will be the default (5060).&lt;br /&gt;
&lt;br /&gt;
== Update 31739 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix absolute timed events&lt;br /&gt;
&lt;br /&gt;
== Update 31723 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix nfs-premount script in default diskless image.&lt;br /&gt;
* lmce-dlna(842,843) - compatibility fixes&lt;br /&gt;
* lmce-install-scripts (391) - generate ssh keys so openssh-server can accept connections&lt;br /&gt;
* pluto-createdevice (303,304) - hide errors, specifically during initial package postinst&lt;br /&gt;
* lmce-cec-adaptor (871,872) - fix cec remotes not getting to lmce&lt;br /&gt;
&lt;br /&gt;
== Update 31693 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - Fixes #2530 - fix errors in mythtvdb synchronization scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31686 ==&lt;br /&gt;
* lmce-install-scripts (391) - deal with firstboot stuffenz&lt;br /&gt;
* pluto-system-database (211) - add proxy orbiter DT depends for generic web device&lt;br /&gt;
* pluto-website-admin (220) - order by photo file name in screen saver/photo browser&lt;br /&gt;
* pluto-boot-scripts (234) - try ubiquity before anything else, and reboot after the normal firstboot - breaks live boot on dvd atm&lt;br /&gt;
* lmce-diskless-tools (627,628) - permit i386 diskless image building on amd64 cores, ensure processes are killed in chroot before unmounting (deals with systemd for now)&lt;br /&gt;
&lt;br /&gt;
== Update 31660 ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) &lt;br /&gt;
**PS3 control screen, fix layout issue. adds seperate button group (triangle, circle, etc) and navigation arrows. Also adds power off button to properly exit screen&lt;br /&gt;
* pluto-website-admin (220) - prevent creation of extra &#039;blank&#039; network interfaces&lt;br /&gt;
&lt;br /&gt;
== Update 31655 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - close connection after use&lt;br /&gt;
* pluto-website-admin (220) - fill ServerName var if it is unset, not if it is set.&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - unify service control&lt;br /&gt;
* pluto-boot-scripts (234) - unify service control&lt;br /&gt;
* pluto-dhcpd-plugin (302) - unify service control&lt;br /&gt;
* pluto-disk-monitor (554) - unify service control&lt;br /&gt;
* pluto-mythtv-player (133,152) - unify service control&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - unify service control&lt;br /&gt;
* pluto-raid-tools (617) - unify service control&lt;br /&gt;
* pluto-storage-devices (533) - unify service control&lt;br /&gt;
* lmce-update-system (650,651) - unify service control&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - unify service control&lt;br /&gt;
* pluto-vdr-plugin (466,467) - unify service control&lt;br /&gt;
* pluto-vdr (468,469) - unify service control&lt;br /&gt;
* pluto-database-settings (407) - unify service control&lt;br /&gt;
* lmce-asterisk (replacement) - unify service control&lt;br /&gt;
* lmce-diskless-tools (627,628) - unify service control&lt;br /&gt;
* lmce-install-scripts (391) - unify service control&lt;br /&gt;
* pluto-updatemedia (405,406) - unify service control&lt;br /&gt;
* pluto-newmdinteractor (538,539) - unify service control&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - Fix size issues, floorplan popups.&lt;br /&gt;
&lt;br /&gt;
== Update 31621 ==&lt;br /&gt;
* pluto-mythtv-player (133,152) - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 31618 ==&lt;br /&gt;
* lmce-asterisk (replacement) - update db for chan_sccp-v4.2 and fix bug requiring manual asterisk reload on boot&lt;br /&gt;
&lt;br /&gt;
== Update 31615 ==&lt;br /&gt;
* pluto-* - rebuild with new libraries&lt;br /&gt;
* lmce-* - rebuild with new libraries&lt;br /&gt;
&lt;br /&gt;
== Update 31606 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix EPG data on orbiters, myth stores everything in UTC now.&lt;br /&gt;
* pluto-pluto-main-db (201,237) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-media-db (254,255) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-security-db (277,278) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-datalog-db (688,689) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-game-db (675,676) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-updateentarea (341,342) - don&#039;t send empty play command when resetting alarm&lt;br /&gt;
&lt;br /&gt;
== Update 31580 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - use bypass-event to avoid watching media events when playing alerts&lt;br /&gt;
* pluto-updateentarea (341,342) - send bypass-event with security event commands&lt;br /&gt;
* libcec3 debs (replacement) - removes conflict data with libcec2&lt;br /&gt;
&lt;br /&gt;
== Update 31575 ==&lt;br /&gt;
* lmce-asterisk (replacement) - play back alert notification file&lt;br /&gt;
* pluto-std-plugins (116,135) - create alert notification file with correct format&lt;br /&gt;
* pluto-boot-scripts (234) - fixes for nvidia drivers on precise, upgrades to nvidia-340&lt;br /&gt;
* lmce-avwizard-sounds (replacement) - don&#039;t copy fakeroot files (it is redundant it is)&lt;br /&gt;
* video-wizard-videos (replacement) - deb is back to normal size, not 2x&lt;br /&gt;
&lt;br /&gt;
== Update 31553 ==&lt;br /&gt;
* pluto-website-admin (220) - fix error that wipes out the apache2.conf&lt;br /&gt;
* pluto-hald (529,530) - fix segfaults with firewire hardware&lt;br /&gt;
&lt;br /&gt;
== Update 31547 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some API changes in OZW 1.3, more device template mappings&lt;br /&gt;
* pluto-boot-scripts (234) - typo fix for nvidia drivers&lt;br /&gt;
* lmce-disked-md-base (801) - set hostname on disked MDs, set timezone on disked MDs&lt;br /&gt;
* lmce-install-scripts (391) - set hostname on disked MDs, set timezone on disked MDs &lt;br /&gt;
* pluto-website-admin was generated---&amp;gt; lmce-website-admin (220) - set apache2 ServerName to silence error on boot&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates, revert to ruby 1.8&lt;br /&gt;
* pluto-generic-serial-device (307,335) - admit defeat for now, revert to ruby 1.8&lt;br /&gt;
&lt;br /&gt;
== Update 31533 ==&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31520 ==&lt;br /&gt;
* chan-sccp_v4.2 (replacement) - Upgrad asterisk SCCP channel driver to newest version&lt;br /&gt;
* pluto-vdr-plugin (466,467) - implement background loading of EPG from VDR to avoid crashes due to commands not completing on time&lt;br /&gt;
* pluto-boot-scripts (234) - some logic changes and added messages for video driver install debugging&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - link new channels dir to old channels dir for backwards compatibility&lt;br /&gt;
&lt;br /&gt;
== Update 31503 ==&lt;br /&gt;
* *zwave* (replacement) - new upstream openzwave version 1.3.1224&lt;br /&gt;
* lmce-zwave-ozw(505,506) - build against new libopenzwave1.3&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates&lt;br /&gt;
* lmce-disked-interactor (897,898) - make disked interactor aware of wheezy and jessie.&lt;br /&gt;
&lt;br /&gt;
== Update 31500 ==&lt;br /&gt;
* *myth* (replacement) - fix depends on non-existent packages&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst - verified installing now&lt;br /&gt;
* pluto-std-plugins (116,135) - Use integer comparison for brightness state&lt;br /&gt;
&lt;br /&gt;
== Update 31491 ==&lt;br /&gt;
* lmce-avwizard-skin-basic (replacement) - fix packaging of avwizard skin&lt;br /&gt;
* *myth* (replacement) - mythtv 0.27.5+fixes with Schedules Direct fix included&lt;br /&gt;
* *asterisk* (replacement) - asterisk 11.7 backport from trusty&lt;br /&gt;
* libical* (replacement) - for asterisk 11.7&lt;br /&gt;
* *cec* (replacement) - libcec3&lt;br /&gt;
* libplatform* (replacement) for libcec3&lt;br /&gt;
* lmce-cec-adaptor (871,872) - build against libcec3&lt;br /&gt;
* lmce-mediatomb (702) - fix pkg installation&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - update protocol version and secret word (shhh) for 0.27.5+fixes&lt;br /&gt;
* lmce-diskless-tools (627,628) - remove call to obsolete script in Diskless_Setup.sh&lt;br /&gt;
* pluto-vdr-plugin (466,467) - return full EPG (used in qOrbiter EPG Grid), improve communication speed with SVDRP&lt;br /&gt;
* pluto-slim-server-streamer (289,290) - emit time code event, fix duration parsing&lt;br /&gt;
* pluto-boot-scripts (234) - fix headless booting, update 1404 nvidia driver&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* lmce-md-meta (450) - add depends on alsa-utils&lt;br /&gt;
* pluto-website-admin (220) - Fix cdrviewer (Call Details Records) to accept SSL conections as well, firewall gui change to set Offline rules in red as they are not executed.&lt;br /&gt;
* pluto-app-server (126,145)- new poweroff mode I for ignore, since N is already in use&lt;br /&gt;
&lt;br /&gt;
== Update 31420 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add depends on pluto-boot-scripts for deb cache script&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31411 == &lt;br /&gt;
* pluto-avwizard (555,556) - fix depends on avwizard skins basic, should no longer care about version&lt;br /&gt;
* pluto-boot-scripts (234) - more explicity logic for core only booting, fix startup script db errors&lt;br /&gt;
* lmce-update-system (650,651) - remove and disable old init.d script from /etc/init.d&lt;br /&gt;
* pluto-plutodhcp (330,491) - depends on apparmor&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-dhcpd-plugin (302) - remove hardcoded IP addresses from configure scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31387 ==&lt;br /&gt;
* lmce-weather-plugin - make change to allow for tonight&#039;s forecast data (TSCHAK)&lt;br /&gt;
* lmce-asterisk (replacement) - remove obsolete phonetic engines and replace with espeak, voices remain the same&lt;br /&gt;
* mbrola (replacement) - base mbrola pkg for mbrola voices (add armhf binary)&lt;br /&gt;
* pluto-asterisk (270,271) - generate fr and de voicemail menus with espeak now&lt;br /&gt;
* lmce-core (888) - add depends on iptables&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31378 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Start_KDE.sh ownership fix, AV config updates&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-avwizard (555,556) - update pkgs &amp;amp; depends &amp;amp; config scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - do not run update deb_cache during dvd creation&lt;br /&gt;
* pluto-x-scripts (520) - fixups to Xconfigure.sh&lt;br /&gt;
&lt;br /&gt;
== Update 31356 ==&lt;br /&gt;
* pluto-system-database (211) - update depends&lt;br /&gt;
* pluto-orbiter (119,138) - update depends&lt;br /&gt;
* lmce-diskless-tools (627,628) - speedup dpkg in diskless create, fix missing quotes&lt;br /&gt;
&lt;br /&gt;
== Update 31352 ==&lt;br /&gt;
* pluto-motion-wrapper - more config file location fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 31351 ==&lt;br /&gt;
* pluto-boot-scripts (234) - change service &#039;nis&#039; to &#039;ypserv&#039;, nis is no longer a service name&lt;br /&gt;
* pluto-website-admin (220) - remove &#039;idiot&#039; text, let&#039;s be nice to people.&lt;br /&gt;
* lmce-core (888) - do not create and config under ubiquity&lt;br /&gt;
* lmce-md-meta (450) - do not create and config under ubiquity&lt;br /&gt;
* motion (replacement) - fix bad config file setting in rules&lt;br /&gt;
&lt;br /&gt;
== Update 31337 ==&lt;br /&gt;
* motion (replacement) - new version of motion to match new configuration values generated by linuxmce&lt;br /&gt;
&lt;br /&gt;
== Update 31331 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix for brightness events&lt;br /&gt;
* pluto-boot-scripts (234) - fix kdm disabling, start ubiquity after network config&lt;br /&gt;
* lmce-diskless-tools (627,628) - add upstart overrides for kdm&lt;br /&gt;
* lmce-install-scripts (391) - start ubiquity after network config&lt;br /&gt;
&lt;br /&gt;
== Update 31314 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add missing depends&lt;br /&gt;
&lt;br /&gt;
== Update 31292 ==&lt;br /&gt;
* lmce-core-locator (replacement) - (1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-system-database (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* All .debs created by MakeRelease - removal of all Pre-Depends, everything is now a Depends entry (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
== Update 31228 ==&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-local-database&lt;br /&gt;
&lt;br /&gt;
== Update 31214 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package (not in repo, need build-replacements.sh svn up&#039;d?)&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - preinst/postinst updates&lt;br /&gt;
* pluto-boot-scripts (234) - preinst/postinst updates&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-disked-md-base (801) - firstboot updates&lt;br /&gt;
&lt;br /&gt;
== Update 31187 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package&lt;br /&gt;
* pluto-confirm-dependencies (281,272) - new depends on lmce-install-scripts (fixes unable to apt-get dist-upgrade)&lt;br /&gt;
* lmce-md-meta (450) - new depends on nfs-common, openssh-server and pastebinit&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - update depends, preinst/postinst&lt;br /&gt;
* pluto-boot-scripts (234) - depends &amp;amp; preinst/postinst updates&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - add override mythweb defaults in pkg preinst&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - update depends&lt;br /&gt;
&lt;br /&gt;
== Update 31133 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** enable WakeMDs.sh to wake any halted MDs.&lt;br /&gt;
** consolidate all boot script launching to /etc/init.d/linuxmce&lt;br /&gt;
* pluto-avwizard (555,556) - moves start script to /usr/pluto/bin, called by /etc/init.d/linuxmce now&lt;br /&gt;
* lmce-update-system (650,651) - removes init.d script, called by /etc/init.d/linuxmce now&lt;br /&gt;
* pluto-website-admin (220) - GUI changes on network settings if an bridge is configured on the db.&lt;br /&gt;
* lmce-core (888) - depend on pluto-asterisk, lmce-asterisk, lmce-install-scripts&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* pluto-generic-serial-device (307,335) - wildshot attempt at fixing segfaults&lt;br /&gt;
&lt;br /&gt;
== Update 31103 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** Network bridging now possible  for wifi AP to have the same network as the local lan. &lt;br /&gt;
** ipv6 on/off for network interfaces. Read multiple ipv6 interfaces from the db.&lt;br /&gt;
** re-enable HaltMDs.&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* libqhttpserver (912) needed for linuxmce nvr&lt;br /&gt;
* lmce-launch-manager - (298,299) - ?&lt;br /&gt;
&lt;br /&gt;
== Update 31087 ==&lt;br /&gt;
* lmce-weather (838,839) - Fix a serious bug in getconfig where incorrect configuration device data would crash program. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 31083 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes #2422, advanced zwave page broken in chrome&lt;br /&gt;
* pluto-system-database (211) - thumbnail screen fixes&lt;br /&gt;
&lt;br /&gt;
== Update 31074 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** setEa2.php - Fix settings for creating entertain area.&lt;br /&gt;
** qOrbiterGenerator.php - Fix erroneous EA creation by removing it.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Fix incorrect setting for enabling / disabling motion.&lt;br /&gt;
&lt;br /&gt;
== Update 31069 ==&lt;br /&gt;
* pluto-website-admin (220) - setEa2.php Fix settings for creating entertain area.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Initial build.&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (881) - Large update of skins and internals.&lt;br /&gt;
&lt;br /&gt;
== Update 31061 ==&lt;br /&gt;
* lmce-squeezeslave (762) - Add configuration DD to command line&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DB package updates&lt;br /&gt;
** restore previous video remote layout with Options button to select subtitles/audio tracks/video tracks from a datagrid list.&lt;br /&gt;
* pluto-website-admin (220) - firewall.php edit rules for non advanced firewall and some other small fixes.&lt;br /&gt;
* lmce-asterisk (replacement) - sip config modules to avoid autoload.&lt;br /&gt;
&lt;br /&gt;
== Update 31051 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** firewall.php not adding rules now fixet.&lt;br /&gt;
** Test buttons for Hue lights&lt;br /&gt;
** Security outsideAccess page now works nicely with the new firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 31044 ==&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
&lt;br /&gt;
== Update 31031 ==&lt;br /&gt;
* pluto-website-admin (220) - firewall.php after a strange fault and some layout fixes.&lt;br /&gt;
* lmce-mediatomb (702) - don&#039;t assume mediatomb is already running.&lt;br /&gt;
&lt;br /&gt;
== Update 31013 ==&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* pluto-boot-scripts (234) - Network Parameter count for more interfaces set and Network firewall accepting postrouting Masquerade  for other network interfaces.&lt;br /&gt;
&lt;br /&gt;
== Update 30985 ==&lt;br /&gt;
* pluto-website-admin (220) - #2268 fail2ban integration logging failed user login attempt.&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** #2268 fail2ban script not insert existing rules to our db.&lt;br /&gt;
** Support for audio output select on rpi via web admin&lt;br /&gt;
* lmce-diskless-tools (627,628) - update syslinux depends to syslinux-common&lt;br /&gt;
* lmce-omx-player (829,830) - Honour audio output selection of rpiMD&lt;br /&gt;
* lmce-squeezeslave (762) - Fix detection for squeezelite&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - further fixes&lt;br /&gt;
* lmce-usb-gamepad (795,796) - rewrite the whole main loop to suck less. hold-down repeats work, input handling more sane.&lt;br /&gt;
&lt;br /&gt;
== Update 30926 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Fix for #2368 insert firewall rules en #2064 edit and delete chains (except some system chains).&lt;br /&gt;
** Support for brightness based events.&lt;br /&gt;
* pluto-std-plugins (116,135) - Support for brightness based events&lt;br /&gt;
* lmce-omx-plugin (831,832) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** Database additions for XBOX 360 Gamepad (device templates, package)&lt;br /&gt;
** Modification of OMX Plugin to allow priority to be changed.&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - the XBOX 360 Gamepad driver, uses xboxdrv userspace driver.&lt;br /&gt;
* lmce-usb-gamepad (795,796) - additions here for above XBOX 360 Gamepad support.&lt;br /&gt;
&lt;br /&gt;
== Update 30862 ==&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress can now read latest files per linuxmce user.&lt;br /&gt;
&lt;br /&gt;
== Update 30860 ==&lt;br /&gt;
* lmce-weather (838,839) - some fixes by cfernandes&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress.&lt;br /&gt;
* pluto-boot-scripts (234) - more mail fixes&lt;br /&gt;
&lt;br /&gt;
== Update 30855 ==&lt;br /&gt;
* pluto-vdr, pluto-vdr-plugin - remove hardcoding of core IP and network address, but depend on the pluto.conf entries for DCERouter.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location (again)&lt;br /&gt;
* lmce-diskless-tools - stop copying apt configs from the core&lt;br /&gt;
* pluto-boot-scripts - fix postfix setup #2393&lt;br /&gt;
&lt;br /&gt;
== Update 30841 ==&lt;br /&gt;
* lmce-avwizard-sounds - fix replaces/conflicts data&lt;br /&gt;
* lmce-skins-basic - fix replaces/conflicts data&lt;br /&gt;
* lmce-avwizard-skin-basic - fix replaces/conflicts data&lt;br /&gt;
&lt;br /&gt;
== Update 30383 ==&lt;br /&gt;
* pluto-website-admin (220) - Add Hue lights related test button.&lt;br /&gt;
* pluto-boot-scripts - Add another option --autobackup to PlutoRestorePoint.sh to allow backup of pluto_main only&lt;br /&gt;
&lt;br /&gt;
== Update 30814 ==&lt;br /&gt;
* pluto-Boot-scripts - Firewall order by place and PK_Firewall to let rules stay on top on the middle or on the bottom.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location&lt;br /&gt;
* lmce-hue-controller (862,863) - Fix bug in adding new lights, now adds serial number.&lt;br /&gt;
* pluto-website-admin (220) - Fix oops relating the missing &#039;.&#039; which caused operations/login.php not to work.&lt;br /&gt;
&lt;br /&gt;
== Update 30783 ==&lt;br /&gt;
* lmce-nbd-client-wrapper - new pkg to hold common script&lt;br /&gt;
* pluto-xine-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* lmce-vlc-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* pluto-boot-scripts - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
* pluto-storage-devices - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30777 ==&lt;br /&gt;
* lmce-core - depend on openswan&lt;br /&gt;
* pluto-system-database - pkg updates&lt;br /&gt;
* pluto-boot-scripts - remove check for openswan from bootscript&lt;br /&gt;
* pluto-generic-serial-device - update to ruby 1.9.1&lt;br /&gt;
&lt;br /&gt;
== Update 30773==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller internals to now include polling, so as to make sure floorplan data is accurate. Changes underlying mechanisms for how lights are handled in preparation for extending additional support for Cree lights and sensors devices.&lt;br /&gt;
&lt;br /&gt;
== Update 30767 ==&lt;br /&gt;
* lmce-diskless-tools - update diskless archive name to reflect current compression method xz.&lt;br /&gt;
* pluto-website-admin (220) - updates to internet radio, moves add channels to a seperate page.  Thanks Dap-P!&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
* pluto-vdr - adds missing depends on vdr in trusty&lt;br /&gt;
* lmce-core - update depends to new pkg name lmce-avwizard-sounds&lt;br /&gt;
* pluto-avwizard - update depends to new pkg name lmce-avwizard-skins-basic&lt;br /&gt;
* lmce-clock-screen-saver - make the clock screen saver use the WMController/wmctrl methods for setting window visibility to be compatible with Orbiter. (TSCHAK) (Trusty only)&lt;br /&gt;
* pluto-storage-devices - Make sure that smbpasswd is used to create or update sambahelper&#039;s password (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30726 ==&lt;br /&gt;
* pluto-vdr - VDR player&#039;s package assumed a correctly installed vdr package which includes an entry in /etc/default for vdr. We no longer fail on a missing file.&lt;br /&gt;
&lt;br /&gt;
== Update 30724 ==&lt;br /&gt;
* lmce-weather - updates to weather sources, add OpenWM source.  Thanks SBCC and cfernandes!&lt;br /&gt;
* lmce-skins-* - adds missing telecom icons, updates/adds weather icons&lt;br /&gt;
* lmce-avwizard-sounds - remove extraneous stuff from pkg, reduce pkg size back to normal.  Proper replaces/conflicts/data...&lt;br /&gt;
* lmce-avwizard-skin-basic - Proper replaces/conflicts/data...&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
&lt;br /&gt;
== Update 30718 ==&lt;br /&gt;
* lmce-core - new depends on lmce-skins*&lt;br /&gt;
* lmce-md-meta - add depends on pnp-detection scripts&lt;br /&gt;
* lmce-hybrid - new depends on lmce-skins*&lt;br /&gt;
* pluto-avwizard (556,555) - add pciutils as a depends, still need to deal with multiarch stuff so this will break armhf, we will not update armhf for now, it doesn&#039;t use avwizard but does install it.&lt;br /&gt;
* lmce-diskless-tools - minor diskless create fixups&lt;br /&gt;
* pluto-orbiter - missing depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio script&lt;br /&gt;
* pluto-website-admin (220) - recognize MIDs as top level devices&lt;br /&gt;
* pluto-mythtv-player - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 30628 ==&lt;br /&gt;
* *-database - fix install issues&lt;br /&gt;
&lt;br /&gt;
== Update 30622 ==&lt;br /&gt;
* pluto-orbiterinstallers - fix depends issue&lt;br /&gt;
* pluto-system-database - lots of compat updates&lt;br /&gt;
* lmce-* - lots of compat updates&lt;br /&gt;
* pluto-* - lots of compat updates&lt;br /&gt;
&lt;br /&gt;
== Update 30618 ==&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio scripts&lt;br /&gt;
* pluto-website-admin (220) - updated internet radio page&lt;br /&gt;
&lt;br /&gt;
== Update 30571 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - send &amp;quot;Device is turned on or off&amp;quot; event when appropriate so the corresponding event works as expected&lt;br /&gt;
* lmce-squeezeslave (762) - set to pnp create without prompting&lt;br /&gt;
* lmce-runtime-dependencies (903) - pkg to help consolidate runtime depends.&lt;br /&gt;
* lmce-core (888) - updated depends&lt;br /&gt;
* lmce-md-meta (450)- updated depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated depends&lt;br /&gt;
* pluto-createdevice (303,304) - updated depends&lt;br /&gt;
* lmce-weather(838,839) - fix potential segfault&lt;br /&gt;
* pluto-website-admin (220) - add &amp;quot;replace node&amp;quot; button to advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 30549 ==&lt;br /&gt;
* pluto-mythtv-player - fix misaligned data values during mythtv.txt creation.&lt;br /&gt;
&lt;br /&gt;
== Update 30526 ==&lt;br /&gt;
* lmce-core - new pkg&lt;br /&gt;
* lmce-hybrid - pkg depends changes&lt;br /&gt;
* lmce-md-meta - pkg depends changes&lt;br /&gt;
* pluto-dcerouter - pkg depends changes&lt;br /&gt;
* pluto-photo-screen-saver - pkg depends changes&lt;br /&gt;
* pluto-boot-scripts - pkg depends changes&lt;br /&gt;
* pluto-orbiter - pkg depends changes&lt;br /&gt;
* pluto-simplephone - pkg depends changes&lt;br /&gt;
* pluto-website-admin - pkg depends changes&lt;br /&gt;
* lmce-mythtv-scripts - pkg depends changes&lt;br /&gt;
* pluto-system-database - pkg depends changes&lt;br /&gt;
* lmce-squeezeslave (762) - fix launch script, automatically create associated squeezebox player on the core.&lt;br /&gt;
* pluto-std-plugins - run New_PnP_MD.sh for new MID devices as well.&lt;br /&gt;
* lmce-diskless-tools - don&#039;t fail on invoke-rc.d during diskless create, exit gracefully and continue.&lt;br /&gt;
* pluto-mythtv-player - fix diskless create failures due to old hacks.  more work is needed here overall on mythtv integration.&lt;br /&gt;
&lt;br /&gt;
== Update 30419 ==&lt;br /&gt;
* pluto-slim-server - Make sure to turn off all Squeeze* devices when Slim Server Streamer starts or restarts (so that squeezelite does not hog sound cards.)&lt;br /&gt;
* pluto-hald (529,530) - add device node path to pnpqueue with v4l devices during detection&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - update for new lib version&lt;br /&gt;
&lt;br /&gt;
== Update 30384 ==&lt;br /&gt;
* pluto-confirm-dependencies - depend on pluto-install-scripts.&lt;br /&gt;
* pluto-disk-drive (122,141) - remove hal bits that dealt with old jukebox bugs.&lt;br /&gt;
* pluto-capture-card-scripts (580) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-pnp-detection (562) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-storage-devices (533) - convert autofs from hal to udev.&lt;br /&gt;
* pluto-bootscripts (234) - disable starting the hald since we&#039;re using udev now, remove false &#039;fail&#039; messages during reboot/shutdown&lt;br /&gt;
* pluto-slim-server-streamer - make one tweak (do not delete m_mapStreamsToPlayers entry in CMD_Stop). Streaming now works consistently, properly, with squeezebox devices and their clones. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30354 ==&lt;br /&gt;
* pluto-hald (529,530) - fix attempt to fire event for child device of usb-dongle.&lt;br /&gt;
* pluto-slim-server-streamer - Implement FF/REW (transport) trick-play control for Squeeze* devices. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30341 ==&lt;br /&gt;
* pluto-bootscripst - fixes for PPPoE users to not autostart the external interface.&lt;br /&gt;
* pluto-slim-server-streamer - Fix to power off squeezebox player when stream is not in use. This allows softsqueeze/squeezeslave/squeezelite players to let go of a sound device, when not in use (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30332 ==&lt;br /&gt;
* pluto-orbiter (118,139) - disable old hid device functionality.  Anyone who needs it can request a special build which will be provided at no extra charge. ;)&lt;br /&gt;
* pluto-bootscripts (234) - disable Gamepad Radar, functionality now in hal through udev&lt;br /&gt;
* pluto-avwizard (556,555) - fixes mangling of RemoteCmd when &amp;gt;1 remote is detected.&lt;br /&gt;
* pluto-hal-device-finder (535,536) - update to use udev rather than hal.&lt;br /&gt;
* pluto-hald (529,530) - update to use udev rather than hal.&lt;br /&gt;
* pluto-system-database (211) - updates for new detection method (joystick, cec-adaptor), update dependency data for hal pks to reflect dropping hald and add depends on udev now.&lt;br /&gt;
&lt;br /&gt;
== Update 30219 ==&lt;br /&gt;
* pluto-bootscripts (234) - Fail2ban firewall update script, and missing radioscript.sh.&lt;br /&gt;
* pluto-website-admin - Place set for rules on the firewall and bantime for fail2ban integration.&lt;br /&gt;
* pluto-std-plugins (116,135) - adds heirloom-mailx for &#039;mailx -r&#039; functionality, fixes e-mail in general info plugin&lt;br /&gt;
&lt;br /&gt;
== Update 30068 ==&lt;br /&gt;
* lmce-advanced-ip-camera(813,812) - Fixed high cpu usage if connection to camera can not be made&lt;br /&gt;
&lt;br /&gt;
== Update 30052 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - fix android pkg meta data, need to rebuild all together&lt;br /&gt;
&lt;br /&gt;
== Update 30051 ==&lt;br /&gt;
* pluto-updateentarea (341,342) - use DAY/NIGHT in watching/stopped watching events to make them smarter&lt;br /&gt;
* pluto-std-plugins (116,135) - Implement Get Device Status in General Info Plugin&lt;br /&gt;
* pluto-bootscripts (234) - fix VPN ip up/down&lt;br /&gt;
&lt;br /&gt;
== Update 30025 ==&lt;br /&gt;
* pluto-system-database (211) - column def updates&lt;br /&gt;
* pluto-local-database (214) - new Firewall columns and new VPN columns for Users table.&lt;br /&gt;
&lt;br /&gt;
== Update 30014 ==&lt;br /&gt;
* lmce-transmission-client (852) - fix postinst issue.  (Thanks SBCC)&lt;br /&gt;
== Update 29994 ==&lt;br /&gt;
More VLC Player changes to make it at least somewhat usable, there were some ugly bugs that came to light once i plopped it onto my production system. Right now sound device is plughw:0,3, if you need a different one, change it in the code.  (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* lmce-vlc-player - many little fixes to make it suck less.&lt;br /&gt;
&lt;br /&gt;
== Update 29990 ==&lt;br /&gt;
I am working on the VLC player, and it is breathing enough for basic testing. Please do not use in production environment. There is still a lot of code to write (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - updates for VLC player (TSCHAK)&lt;br /&gt;
* vlc-player (882,884) - Very early alpha developer test of the VLC player. (TSCHAK)&lt;br /&gt;
* vlc-plugin (874,875) - Very alpha developer test of the VLC plugin. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 29984 ==&lt;br /&gt;
* pluto-system-database (211) - fix bad repos in pkgs&lt;br /&gt;
* pluto-website-admin - just because I think it is necessary :-)&lt;br /&gt;
&lt;br /&gt;
== Update 29983 ==&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=37001</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=37001"/>
		<updated>2017-05-20T08:04:12Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: /* Upcoming fixes... */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the latest changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo much easier.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please include the pkg #s to facilitate building on 3x i386 targets in addition to 2x amd64 and 3x armhf targets where full builds are not always practical.  Keep in mind that most packages are referred to by two (2) package numbers from the database, a source package and a binary package.  &amp;quot;Thank you for your co-operation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
* pluto-storage-devices (533) - Push ZFS changes&lt;br /&gt;
* lmce-zfs-support (937) - Set mountpoint to legacy upon creation.&lt;br /&gt;
&lt;br /&gt;
== Update 1204 i386 only - 201705152225+363cfe3f ==&lt;br /&gt;
Temporarily remove ZFS from precise for debugging.&lt;br /&gt;
&lt;br /&gt;
* lmce-core (888) - remove dep for precise&lt;br /&gt;
* lmce-md-meta (450) - remove dep for precise&lt;br /&gt;
* lmce-zfs-support (937) - remove dep for precise&lt;br /&gt;
&lt;br /&gt;
== Update 1204 i386, 1404/1604 i386/amd64 201705131304+14f85ee9 ==&lt;br /&gt;
Attaching ZFS to the install...&lt;br /&gt;
* lmce-core (888) - Add dependency for ZFS&lt;br /&gt;
* lmce-md-meta (450) - Add dependency for ZFS&lt;br /&gt;
&lt;br /&gt;
== Update 1204 i386, 1404/1604 i386/amd64 201705131304+14f85ee9 ==&lt;br /&gt;
ZFS Support Extravaganza!&lt;br /&gt;
&lt;br /&gt;
* lmce-zfs-support (937) - dependencies added below for ZFS support&lt;br /&gt;
* mountall (938) - package added for ZFS support&lt;br /&gt;
* spl (939) - package added for ZFS support&lt;br /&gt;
* spl-dkms (940) - package added for ZFS support&lt;br /&gt;
* ubuntu-zfs (941) - package added for ZFS support&lt;br /&gt;
* zfs-auto-snapshot (942) - package added for ZFS support&lt;br /&gt;
* libnvpair1 (943) - package added for ZFS support&lt;br /&gt;
* libuutil1 (944) - package added for ZFS support&lt;br /&gt;
* libzfs2 (945) - package added for ZFS support&lt;br /&gt;
* libzpool2 (946) - package added for ZFS support&lt;br /&gt;
* zfs-dkms (947) - package added for ZFS support&lt;br /&gt;
* zfs-initramfs (948) - package added for ZFS support&lt;br /&gt;
* zfsutils (949) - package added for ZFS support&lt;br /&gt;
* zfs-zed (950) - package added for ZFS support&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201705110719+14f85ee9 ==&lt;br /&gt;
* Replacement packages in ubuntu/&lt;br /&gt;
** mountall - replacement package&lt;br /&gt;
** zfs-linux - ZFS support&lt;br /&gt;
** spl-linux - SPL library for ZFS support&lt;br /&gt;
** zfs-auto-snapshot - ZFS support&lt;br /&gt;
** ubuntu-zfs - ZFS support&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201705030817+f0afe768 ==&lt;br /&gt;
* lmce-zfs-support - remove the mkr_postinst.sh right now, as that was causing problems for everybody. Will bring the ZFS code into repo.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201705030817+f0afe768 ==&lt;br /&gt;
* pluto-bootscripts (234) firewall need to work together with the vpn.&lt;br /&gt;
* lmce-asterisk (920) - db_create_dialplan.sh to add blacklist better check option on asterisk dialplan. add Voicemailmain op extension *100&lt;br /&gt;
* lmce-vlc-player (884,882) - Further work on VLC_Player&#039;s transport controls. Please test and tell me if they work better. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Addition of ZFS templates.&lt;br /&gt;
* pluto-raid-tools (617) - Additions for ZFS&lt;br /&gt;
* lmce-zfs-support (937) - NEW PACKAGE for ZFS support.&lt;br /&gt;
* pluto-storage-devices (533) - Add ZFS support to automounter.&lt;br /&gt;
* pluto-website-admin (220) - Add ZFS support to RAID pages.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201704211536+941ae691 ==&lt;br /&gt;
* pluto-website-admin (220) - Blacklist.php added for administrating asterisk blacklist of phone numbers #2691&lt;br /&gt;
* lmce-asterisk (920) - db_create_dialplan.sh to add blacklist check on asterisk dialplan.&lt;br /&gt;
* pluto-database* - GRANT to localhost as well (just 127.0.0.1 doesn&#039;t help since MySQL 5.7)&lt;br /&gt;
&lt;br /&gt;
== Update armhf 201704191739+13f4f937 ==&lt;br /&gt;
* pluto-vdr - Don&#039;t check for the existence of a Xine device in the tree. There are many ways to display VDR.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201704182328+13f4f937  ==&lt;br /&gt;
* pluto-text-to-speech - Fix for initial installation which might effect usability.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704181123+a26d414e ==&lt;br /&gt;
* pluto-security-database - Localhost or 127.0.0.1 matters for MySQL - This should be the last fix needed to get MySQL Server v5.7 sorted out - at least for the install.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704180809+9af5cc66 ==&lt;br /&gt;
* pluto-boot-scripts - Set MySqlUser name in ConfigOps if it isn&#039;t already set.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201704171950+9af5cc66 ==&lt;br /&gt;
* pluto-sqlcvs, pluto*database* - Final fixes for 1404 and 1604.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704161042+f5455665 ==&lt;br /&gt;
* pluto-sqlcvs - Now has a dependency to pluto-database-settings&lt;br /&gt;
* pluto-database-settings - all user creation happens in here&lt;br /&gt;
* pluto-database-system - no more user creation.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 - 201704151808+866a5886 ==&lt;br /&gt;
* pluto-database-settings - Takes way too long to get fixed.&lt;br /&gt;
&lt;br /&gt;
== Update 201704151034+80dd9806 ==&lt;br /&gt;
* pluto-database-settings - *grml* don&#039;t just blindly copy other peoples code.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704142323+6ad66efd ==&lt;br /&gt;
* pluto-database-settings - Put user creation into mkr_postinst_mysql instead of mkr_postinst_system. Let&#039;s hope this fixes this sucker.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 2.0.0.47.201704050752+ddbbb689 ==&lt;br /&gt;
* lmce-vlc-player (884,882) - preprocess URL to ensure that file paths with # in them play correctly.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 amd64/i386 201704041743+906d69eb ==&lt;br /&gt;
* pluto-bootscripts (234) - Typo fix for insert rule to the db. /ppp/ip-up.d/lmce-vpn-up and /ppp/ip-down.d/lmce-vpn-down works now niceley togheter with the new firewall.&lt;br /&gt;
* pluto-system-database (211) - sqlCVS commit to add Imagemagick as dependency to VLC Player, finally squashing that #($#@( start bug! (TSCHAK)&lt;br /&gt;
** Also added ir-keytable depedency to pluto-lirc-wrapper&lt;br /&gt;
** Also added generic cd and dvd icons for External Media Identifier&lt;br /&gt;
* pluto-lirc-wrapper (340,421) - Ensure that ir-keytable is cleared before lircd starts to avoid unusual behavior with remotes that use kernel event subsystem (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - Fix DVD to use cifs instead of smbfs (which has been deprecated for 10 years.)&lt;br /&gt;
* lmce-vlc-player (884,882) - bug fixes for multi room sync&lt;br /&gt;
* lmce-vlc-plugin (874,875) - bug fixes for multi room sync&lt;br /&gt;
* lmce-media-identifier (931,932) - add generic dvd and cd identification if disc can&#039;t be identified by normal means.&lt;br /&gt;
* pluto-website-admin (220) - phonelines.php shows the state of a SPA protocol phonline. And firewall.php updated preg_match to find lines on pluto.conf and change them if exists. Issue2745.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201703301804+358c1c45 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fixes Bug #2726 - Media details now work, again.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 - 201703272335+efdf6de9 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Issue #2730 - Media Plugin changes to add support for FIFO capture card playback to VLC Player (route messages to VLC Player if it exists) -TSCHAK&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue #2729, #2730 - Implement FIFO device playback for local devices similar to file playback. (TBD: recompile VLC with PVR functionality), also multi-room playback. VLC Player is now in beta. -TSCHAK&lt;br /&gt;
* lmce-vlc-plugin (874,875) - Issue #2729 - Implement multi-room playback, VLC sync listener on core, etc. VLC functionality is now beta. -TSCHAK&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201702201438+325cc736 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix for multiple cameras and Get Image command&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue 2727, Issue 2728 - Trick play overhaul and fix audio glitches when trick play is used. &lt;br /&gt;
* pluto-boot-scripts (234) - SetupAudioVideo.sh - slight change to libvlc.conf so that trick play OSD works.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1204-1404-1604/amd64 c20633ff ==&lt;br /&gt;
* pluto-website-admin (220) - Added the case for section energyGraph and sipConf, fixed permissions for mysql asteriskuser, add sql credentials for myth, change MYSQL_NUM to MYSQLI_NUM&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1404/amd64 a7c10426 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add backports so 1204 diskless create works&lt;br /&gt;
* lmce-oauth2-server (668) - initial build of lmce oauth2 server for cloud interfacing&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404/1604 i386 - 1404x64 - 201611190055+fee90f43 ==&lt;br /&gt;
* pluto-boot-scripts (234) - database upgrades&lt;br /&gt;
* pluto-orbitergen (226,227) - database upgrades&lt;br /&gt;
* pluto-pluto-main-db (201,237) - database upgrades&lt;br /&gt;
* pluto-pluto-security-db (278,277) - database upgrades&lt;br /&gt;
* lmce-asterisk (replacement) - database upgrades&lt;br /&gt;
* pluto-system-database (211) - database upgrades&lt;br /&gt;
* pluto-local-database (214) - database upgrades&lt;br /&gt;
* pluto-security-database (256) - database upgrades&lt;br /&gt;
* pluto-telecom-database (472) - database upgrades&lt;br /&gt;
* pluto-media-database (233) - database upgrades&lt;br /&gt;
* pluto-database-settings (407) - database upgrades&lt;br /&gt;
* pluto-sqlcvs (212,213) - database upgrades&lt;br /&gt;
* pluto-std-plugins (116,135) - database upgrades&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609281853+9638f5bc ==&lt;br /&gt;
* pluto-website-admin (220) - #2705 fixed syntax error.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609271106+39103855 ==&lt;br /&gt;
* pluto-website-admin (220) - Update firewall.php GUI change some fields where reset to the default values. now the db data is honored.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** don&#039;t create initramfs for Raspbian Jessie diskless filesystems.&lt;br /&gt;
** ensure firstboot runs on diskless Jessie RPis.&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** stop/start rather than restart dhcp server, it&#039;s like nuking the site from orbit... only way to be sure.&lt;br /&gt;
** Firewall blocks udp 1900 UpNP traffic from externalinterface.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609172308+325de35d ==&lt;br /&gt;
* lmce-autotag (780, 781) linuxmceTag - fix comparison issue with media type.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609131230+5eaa4671/201609131753+5eaa4671 ==&lt;br /&gt;
* pluto-boot-scripts (234) - send dhcp vendor specific options only to wired raspberry pis.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 201609102226+fda3da63 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** rpi native pxe additions/updates&lt;br /&gt;
** extend startup timeout when booting under systemd&lt;br /&gt;
* lmce-diskless-tools (627,628) - rpi native pxe additions/updates&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DT updates for rpi native pxe&lt;br /&gt;
** add Serial Number Device Data to RPi DTs&lt;br /&gt;
** sets default PK_Distro to 22 (jessie) for RPi DTs&lt;br /&gt;
** new device data for &amp;quot;Standard Energy Meter&amp;quot;&lt;br /&gt;
* pluto-std-plugins (116,135)&lt;br /&gt;
** stores energy reading in state field for Standard Energy Meter&lt;br /&gt;
** fixes dcerouter crash when searching media&lt;br /&gt;
* pluto-updatemedia (405,406) - fix segfault when a dir is attempting to be tagged directly (without a .id3)&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - don&#039;t fail pkg install if simplephone is not running.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-i386 - 1404-i386/amd64 201607240235+899786ab ==&lt;br /&gt;
* pluto-website-admin (220) - Mysqli_real_escape_string did not work. a start with ipv6 firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/i386 201607202218+14cba09a ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) - Stream Bouncing, Additional settings for location, removed debug output, queue functionality.&lt;br /&gt;
&lt;br /&gt;
== Update 201607181902+d4cec1a0 1404-i386/amd64 - 1204-i386 ==&lt;br /&gt;
* pluto-website-admin - Update to qOrbiterGenerator.php for newer PHP version&lt;br /&gt;
&lt;br /&gt;
== Update 201607161239+6d72c3f9 1404-i386/amd64 1204-i386 ==&lt;br /&gt;
* pluto-website-admin (220) - #2678 fix Warning: Invalid argument supplied for foreach() in /var/www/lmce-admin/include/dhcpd-tools/DHCPd-parse.php on line 113&lt;br /&gt;
* pluto-boot-script&lt;br /&gt;
&lt;br /&gt;
== Update 201607151016+5b5adba3 1404/i386 &amp;amp; amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule use another escape method.&lt;br /&gt;
&lt;br /&gt;
== Update 201607122332+f0fc9c6b 1404/i386 ==&lt;br /&gt;
* pluto-boot-scripts (234) - fix #2684 clients cannot access internet when firewall is disabled. &lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule.&lt;br /&gt;
&lt;br /&gt;
== Update 201607050613+601c67da 1404-i386/amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - more fixes to the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update trusty i386/amd64 201606301955+614dfa7b ==&lt;br /&gt;
* pluto-website-admin (220) - fix for outside access port 443 not uncheckable.&lt;br /&gt;
* pluto-boot-scripts (234) - fix for not dele rules from iptables from outsideAccess.php&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201606201908+31b25c52 ==&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** unicode reading/writing working properly&lt;br /&gt;
** coverart writing to tags working properly&lt;br /&gt;
** .id3 files handled by taglib instead of id3lib.&lt;br /&gt;
** General Object Frame (GEOB) reading/writing working properly (all lmce attributes are stored in id3v2 GEOB tags for .id3/.mp3 files)&lt;br /&gt;
* pluto-website-admin (220) - more updates for mysql -&amp;gt; mysqli conversion&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201605312323+08fb8202 ==&lt;br /&gt;
* pluto-website-admin (220) - fix Text Command button to honor parameters from Screen_CommandParameter&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller to fix spamming of logs with constant updates of device data.&lt;br /&gt;
&lt;br /&gt;
== Update trusty-i386/amd64 201605310531+04df53f5 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - get the stream uri from onvif camera and save it in a device data for use by other devices&lt;br /&gt;
* pluto-website-admin (220) - adate to adodb 5.20.4 and change db driver from mysql to mysqli&lt;br /&gt;
* pluto-updatemedia (405,406) - tag writing/deletion of values update&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201605261039+410242d2 ==&lt;br /&gt;
* pluto-media-database (233) - remove FatGroupBy query as it is massive and no longer required&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** FIX UpdateMedia not detecting changes in files on disk.  Fixes: UpdateMedia not reading modification times properly.&lt;br /&gt;
** improve image reading/writing for mp3/mp4 files, add image handling for asf/wma, improve track art-&amp;gt;performer/album artist matching.&lt;br /&gt;
** don&#039;t add network shares to inotify watch list&lt;br /&gt;
* pluto-system-database (211) - new qml-* pkg definitions for qorbiter&lt;br /&gt;
* pluto-plutoutils (196,197) - add fn&#039; to determine filesystem type of a file&lt;br /&gt;
* lmce-disked-interactor (897,898) - make sure we see the core and have an IP prior to attempting contact&lt;br /&gt;
* pluto-bootscripts (234) - make sure we see the core prior to continuing to boot an MD&lt;br /&gt;
* pluto-website-admin (220) - various fixes in the media page&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 - 201605171740 c6d63dc6 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3, ogg, flac, mp4, wv, wav, oga, mpc, spx, opus, tta, m4a, m4r, m4p, 3g2, m4v, wma, asf, aif, aiff, afc, aifc, ape, s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64  201605131052+2542a526 ==&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - udev rule to ignore usbhid portion of device, permits orbiter to enter screensaver&lt;br /&gt;
* pluto-bootscripts (234) - permit devices that have died 50 times to attempt to restart after a router reload. Firewall fix for manual defined chains.&lt;br /&gt;
* pluto-sound-card-scripts (579) - don&#039;t assume cardid=1, determine phoenix cardid from aplay.&lt;br /&gt;
* pluto-media-database (233) - additional AttributeType &amp;quot;Album Artist&amp;quot;&lt;br /&gt;
* lmce-media-identifier (931,932) - updates for Album Artist tag.&lt;br /&gt;
* pluto-orbiter (119,138) - updates for Album Artist tag.&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** updates for Album Artist tag&lt;br /&gt;
** fix mainMediaFileSync.php. OutsideAccess page showing the options (again). &lt;br /&gt;
** And typo fixes for issue #2643. &lt;br /&gt;
** Firewall page reload issue 2636#. Firewall gui do not show &amp;quot;NULL&amp;quot;.&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3:ogg:flac:mp4:wv:wav::oga:mpc:spx:opus:tta:m4a:m4r:m4p:3g2:m4v:wma:asf:aif:aiff:afc:aifc:ape:s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update jessie 20160427 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for RPi&lt;br /&gt;
* lmce-disked-md-rpi2 (889) - +x firstboot_md_rpi2 to ensure it&#039;s picked up properly&lt;br /&gt;
&lt;br /&gt;
== Update jessie 201604130947+0083d387 ==&lt;br /&gt;
== Update 1204/1404-i386/amd64 201604101031-0b47a986 ==&lt;br /&gt;
* pluto-website-admin, pluto-boot-scripts (220,234) - Firewall Fixes for GUI and inner working of the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603251155+a1c0f6ea ==&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - File view implemented. Fixed not being able to leave resume menu.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603222119+336464d8 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller  to fix floorplan / status being improperly updated.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t mount optical discs as HDDs&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201603220706+c3c4b899 ==&lt;br /&gt;
* lmce-md-meta (450) - for some reason this is not in the main repo&lt;br /&gt;
* lmce-media-identifier - fixed for libcdio&lt;br /&gt;
&lt;br /&gt;
== Update jessie-rpi 60faa181 ==&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - adds video resizing so UI1 can be exposed while video is playing.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 armhf 31c5d994 ==&lt;br /&gt;
== Update 1404 i386 52e39875 ==&lt;br /&gt;
* pluto-storage-devices (533) - fix ntfs detection&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 - 49a8cbf1 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - a little better device to device template mapping&lt;br /&gt;
* pluto-website-admin (220) - fix adv.zwave page and adding secure devices&lt;br /&gt;
* lmce-disked-* - update the disked md/mid meta/base/device pkgs, specific fixes for 1404 joggler&lt;br /&gt;
* lmce-json-plugin (876,877) - first time addition to the main repo&lt;br /&gt;
* libdvdid0 (replacement) - first time addition to the repo, for use by Media Identifier&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - enable disabling internal volume control, similar to how logitechmediaserver does&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1404(armhf)/jessie(rpi)-a84db86f ==&lt;br /&gt;
* lmce-launch-manager (298,299) - only update squeeze devices when running on the core, redundant elsewhere.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404-87954508 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t fail if dvdcss2 cannot be automatically installed.&lt;br /&gt;
* pluto-hald (529,530) - reinstate tty detection, seperate from usb-serial, use direct parent for udi naming.&lt;br /&gt;
* pluto-boot-scripts (234) - disable buildall, the script doesn&#039;t run so why waste time creating it.&lt;br /&gt;
* lmce-launch-manager (298,299)&lt;br /&gt;
** update squeezebox players on router reloads from Launch_Manager&lt;br /&gt;
** call Config_Device_Changes in startCoreServices to ensure everything gets its&#039; Need Configure flag reset.&lt;br /&gt;
&lt;br /&gt;
== Update a332f49a ==&lt;br /&gt;
* lmce-install-scripts (391) - fix missing quote in MD installation.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix missing &#039;fi&#039; in BootMessage.sh&lt;br /&gt;
** fix usb.1 system serial port listing/translating&lt;br /&gt;
* lmce-media-identifier (931,932) - fix segfault, CDs are identified, cd-ripping functional again&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** prioritize new conf dir over old conf dir, fix install on systems upgraded from 1204-&amp;gt;1404&lt;br /&gt;
** redirect mythweb to html/mythweb&lt;br /&gt;
* pluto-hald (529,530) - updates to serial port naming, specifically for odroid.&lt;br /&gt;
* pluto-storage-devices (533) - fix mounted drive detection and add detection for drives mounted in /proc/cmdline like rpi.&lt;br /&gt;
&lt;br /&gt;
== Update 1204=201602080446+2028f850 &amp;lt;br&amp;gt; 1404=201602071815+c31bc44f ==&lt;br /&gt;
* lmce-install-scripts (391)&lt;br /&gt;
** enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
* lmce-core (888) - enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
* pluto-storage-devices (533) - redo StorageDevices_Radar using blkid for internal HDD identification.  /dev/disk/by-path/ is not present anymore.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
** new VerifyDistro.sh script and call the script on boot.&lt;br /&gt;
*** Preventative mostly.  Intended to ease pain for those that upgrade distros.&lt;br /&gt;
*** Ensure child devices, onscreen orbiter, have the proper PK_Distro set.&lt;br /&gt;
&lt;br /&gt;
== Update 296fdcd3 ==&lt;br /&gt;
* pluto-website-admin (220) - fix depends versioning&lt;br /&gt;
* pluto-hald (529,530) - fix depends versioning&lt;br /&gt;
* pluto-boot-scripts (234) - fix depends versioning&lt;br /&gt;
* pluto-system-database (211) - fix depends versioning&lt;br /&gt;
* pluto-orbitergen (226,227) - fix depends versioning&lt;br /&gt;
* lmce-disked-md-base (801) - fix depends versioning&lt;br /&gt;
* lmce-install-scripts (391) - fix depends versioning&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix depends versioning&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix depends versioning&lt;br /&gt;
* lmce-datalogger-plugin (686,687) - fix depends versioning &lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix depends versioning&lt;br /&gt;
&lt;br /&gt;
== Update f3a444c0 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** use newer .sh script rather than obsolete .pl script for dialplan creation&lt;br /&gt;
** fix Directory listing on cisco phones&lt;br /&gt;
** fix delete buttons on internet radio page.&lt;br /&gt;
* pluto-hald (529,530)&lt;br /&gt;
** add &#039;usb&#039; to &#039;pci&#039; and &#039;platform&#039; as valid bus addresses&lt;br /&gt;
** permit adding of usb devices with usb_serial or tty children&lt;br /&gt;
* pluto-boot-scripts (234) - update SetupAudioVideo.sh to more reliably address nvidia hdmi audio outputs&lt;br /&gt;
* lmce-asterisk (replacement) - live_dangerously for now to get all the necessary Voicemail modules to load&lt;br /&gt;
* pluto-system-database (211) - new DD Number of jobs for orbiter plug-in/orbitergen&lt;br /&gt;
* pluto-boot-scripts (234) - updates to RegenOrbiter scripts for parallel job queued orbiter generation.&lt;br /&gt;
* pluto-orbitergen (226,227) - new depends on GNU parallel&lt;br /&gt;
* lmce-disked-md-base (801) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* lmce-install-scripts (391) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - remove hardcoded ip address, get from db instead.&lt;br /&gt;
* lmce-diskless-tools (627,628) - only run UpdateDebCache.sh if it is executable&lt;br /&gt;
* lmce-datalog-plugin(686,687) - fix pear install command in postinst&lt;br /&gt;
* lmce-advanced-ip-camera(812,813) - add basic onvif support (snapshot,PTZ)&lt;br /&gt;
&lt;br /&gt;
== Update 31792 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of new External_Media_Identifier, testing CDDB ids&lt;br /&gt;
&lt;br /&gt;
== Update 31783 ==&lt;br /&gt;
* pluto-libserial (190,191) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-dcecommon (192,193) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-irbase (194,195) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-plutoutils (196,197) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-vipshared (199,200) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-serializeclass (198,238) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-libbd (239,240) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-ra (247,248) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-main-db (201,237) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-media-db (254,255) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-security-db (278,277) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-sdl-helpers (346,347) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-messagetrans (398,401) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-game-db (675,676) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-windowutils (677,678) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-datalog-db (688,689) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
&lt;br /&gt;
== Update 31782 ==&lt;br /&gt;
* pluto-std-plugins - fix FK_File search inside Attribute in Media_Plugin&lt;br /&gt;
&lt;br /&gt;
== Update 31774 ==&lt;br /&gt;
* lmce-disked-mid-base (899) - fix error in postinst&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come (this should be in but apt-get is getting 404 errors)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add &amp;quot;remove failed node&amp;quot; command&lt;br /&gt;
* pluto-website-admin - add &amp;quot;remove failed node&amp;quot; command for zwave advanced page&lt;br /&gt;
&lt;br /&gt;
== Update 31760 ==&lt;br /&gt;
* lmce-disked-md-base (801) - fix another error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31757 ==&lt;br /&gt;
* lmce-core (888) - overwrite AutostartCore conf value&lt;br /&gt;
* lmce-md-meta (450) - overwrite AutostartMedia conf value&lt;br /&gt;
* lmce-mid-meta (962) - missing deb&lt;br /&gt;
* lmce-hybrid (769) - exit 0 in postinst, just to be sure&lt;br /&gt;
* lmce-disked-md-base (801) - fix error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31754 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - reconnect before send&lt;br /&gt;
&lt;br /&gt;
== Update 31752 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - remove hard coded caller id &#039;Cherryhomes, Tho&#039;, use incoming caller id.&lt;br /&gt;
&lt;br /&gt;
== Update 31750 ==&lt;br /&gt;
* pluto-website-admin (220) - fix postinst error notice on precise.&lt;br /&gt;
* pluto-boot-scripts (234) - (re)start asterisk, otherwise configuration doesn&#039;t occur and sip phones cannot register&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - force-reload apache2 after disabling mythbuntu sites&lt;br /&gt;
* lmce-md-meta (450) - don&#039;t overwrite conf values that are already set&lt;br /&gt;
* *openzwave* (replacement) - version bump, upgrade fixes to upstream files&lt;br /&gt;
&lt;br /&gt;
== Update 31744 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come&lt;br /&gt;
&lt;br /&gt;
== Update 31742 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Gui changes to not confuse people. &lt;br /&gt;
** outsideaccess works together with the firewall. &lt;br /&gt;
** phonelines note on protocol for meaning of &amp;quot;SPA&amp;quot; and a status for this protocol setting, port can be changed if needed else it will be the default (5060).&lt;br /&gt;
&lt;br /&gt;
== Update 31739 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix absolute timed events&lt;br /&gt;
&lt;br /&gt;
== Update 31723 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix nfs-premount script in default diskless image.&lt;br /&gt;
* lmce-dlna(842,843) - compatibility fixes&lt;br /&gt;
* lmce-install-scripts (391) - generate ssh keys so openssh-server can accept connections&lt;br /&gt;
* pluto-createdevice (303,304) - hide errors, specifically during initial package postinst&lt;br /&gt;
* lmce-cec-adaptor (871,872) - fix cec remotes not getting to lmce&lt;br /&gt;
&lt;br /&gt;
== Update 31693 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - Fixes #2530 - fix errors in mythtvdb synchronization scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31686 ==&lt;br /&gt;
* lmce-install-scripts (391) - deal with firstboot stuffenz&lt;br /&gt;
* pluto-system-database (211) - add proxy orbiter DT depends for generic web device&lt;br /&gt;
* pluto-website-admin (220) - order by photo file name in screen saver/photo browser&lt;br /&gt;
* pluto-boot-scripts (234) - try ubiquity before anything else, and reboot after the normal firstboot - breaks live boot on dvd atm&lt;br /&gt;
* lmce-diskless-tools (627,628) - permit i386 diskless image building on amd64 cores, ensure processes are killed in chroot before unmounting (deals with systemd for now)&lt;br /&gt;
&lt;br /&gt;
== Update 31660 ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) &lt;br /&gt;
**PS3 control screen, fix layout issue. adds seperate button group (triangle, circle, etc) and navigation arrows. Also adds power off button to properly exit screen&lt;br /&gt;
* pluto-website-admin (220) - prevent creation of extra &#039;blank&#039; network interfaces&lt;br /&gt;
&lt;br /&gt;
== Update 31655 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - close connection after use&lt;br /&gt;
* pluto-website-admin (220) - fill ServerName var if it is unset, not if it is set.&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - unify service control&lt;br /&gt;
* pluto-boot-scripts (234) - unify service control&lt;br /&gt;
* pluto-dhcpd-plugin (302) - unify service control&lt;br /&gt;
* pluto-disk-monitor (554) - unify service control&lt;br /&gt;
* pluto-mythtv-player (133,152) - unify service control&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - unify service control&lt;br /&gt;
* pluto-raid-tools (617) - unify service control&lt;br /&gt;
* pluto-storage-devices (533) - unify service control&lt;br /&gt;
* lmce-update-system (650,651) - unify service control&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - unify service control&lt;br /&gt;
* pluto-vdr-plugin (466,467) - unify service control&lt;br /&gt;
* pluto-vdr (468,469) - unify service control&lt;br /&gt;
* pluto-database-settings (407) - unify service control&lt;br /&gt;
* lmce-asterisk (replacement) - unify service control&lt;br /&gt;
* lmce-diskless-tools (627,628) - unify service control&lt;br /&gt;
* lmce-install-scripts (391) - unify service control&lt;br /&gt;
* pluto-updatemedia (405,406) - unify service control&lt;br /&gt;
* pluto-newmdinteractor (538,539) - unify service control&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - Fix size issues, floorplan popups.&lt;br /&gt;
&lt;br /&gt;
== Update 31621 ==&lt;br /&gt;
* pluto-mythtv-player (133,152) - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 31618 ==&lt;br /&gt;
* lmce-asterisk (replacement) - update db for chan_sccp-v4.2 and fix bug requiring manual asterisk reload on boot&lt;br /&gt;
&lt;br /&gt;
== Update 31615 ==&lt;br /&gt;
* pluto-* - rebuild with new libraries&lt;br /&gt;
* lmce-* - rebuild with new libraries&lt;br /&gt;
&lt;br /&gt;
== Update 31606 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix EPG data on orbiters, myth stores everything in UTC now.&lt;br /&gt;
* pluto-pluto-main-db (201,237) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-media-db (254,255) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-security-db (277,278) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-datalog-db (688,689) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-game-db (675,676) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-updateentarea (341,342) - don&#039;t send empty play command when resetting alarm&lt;br /&gt;
&lt;br /&gt;
== Update 31580 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - use bypass-event to avoid watching media events when playing alerts&lt;br /&gt;
* pluto-updateentarea (341,342) - send bypass-event with security event commands&lt;br /&gt;
* libcec3 debs (replacement) - removes conflict data with libcec2&lt;br /&gt;
&lt;br /&gt;
== Update 31575 ==&lt;br /&gt;
* lmce-asterisk (replacement) - play back alert notification file&lt;br /&gt;
* pluto-std-plugins (116,135) - create alert notification file with correct format&lt;br /&gt;
* pluto-boot-scripts (234) - fixes for nvidia drivers on precise, upgrades to nvidia-340&lt;br /&gt;
* lmce-avwizard-sounds (replacement) - don&#039;t copy fakeroot files (it is redundant it is)&lt;br /&gt;
* video-wizard-videos (replacement) - deb is back to normal size, not 2x&lt;br /&gt;
&lt;br /&gt;
== Update 31553 ==&lt;br /&gt;
* pluto-website-admin (220) - fix error that wipes out the apache2.conf&lt;br /&gt;
* pluto-hald (529,530) - fix segfaults with firewire hardware&lt;br /&gt;
&lt;br /&gt;
== Update 31547 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some API changes in OZW 1.3, more device template mappings&lt;br /&gt;
* pluto-boot-scripts (234) - typo fix for nvidia drivers&lt;br /&gt;
* lmce-disked-md-base (801) - set hostname on disked MDs, set timezone on disked MDs&lt;br /&gt;
* lmce-install-scripts (391) - set hostname on disked MDs, set timezone on disked MDs &lt;br /&gt;
* pluto-website-admin was generated---&amp;gt; lmce-website-admin (220) - set apache2 ServerName to silence error on boot&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates, revert to ruby 1.8&lt;br /&gt;
* pluto-generic-serial-device (307,335) - admit defeat for now, revert to ruby 1.8&lt;br /&gt;
&lt;br /&gt;
== Update 31533 ==&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31520 ==&lt;br /&gt;
* chan-sccp_v4.2 (replacement) - Upgrad asterisk SCCP channel driver to newest version&lt;br /&gt;
* pluto-vdr-plugin (466,467) - implement background loading of EPG from VDR to avoid crashes due to commands not completing on time&lt;br /&gt;
* pluto-boot-scripts (234) - some logic changes and added messages for video driver install debugging&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - link new channels dir to old channels dir for backwards compatibility&lt;br /&gt;
&lt;br /&gt;
== Update 31503 ==&lt;br /&gt;
* *zwave* (replacement) - new upstream openzwave version 1.3.1224&lt;br /&gt;
* lmce-zwave-ozw(505,506) - build against new libopenzwave1.3&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates&lt;br /&gt;
* lmce-disked-interactor (897,898) - make disked interactor aware of wheezy and jessie.&lt;br /&gt;
&lt;br /&gt;
== Update 31500 ==&lt;br /&gt;
* *myth* (replacement) - fix depends on non-existent packages&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst - verified installing now&lt;br /&gt;
* pluto-std-plugins (116,135) - Use integer comparison for brightness state&lt;br /&gt;
&lt;br /&gt;
== Update 31491 ==&lt;br /&gt;
* lmce-avwizard-skin-basic (replacement) - fix packaging of avwizard skin&lt;br /&gt;
* *myth* (replacement) - mythtv 0.27.5+fixes with Schedules Direct fix included&lt;br /&gt;
* *asterisk* (replacement) - asterisk 11.7 backport from trusty&lt;br /&gt;
* libical* (replacement) - for asterisk 11.7&lt;br /&gt;
* *cec* (replacement) - libcec3&lt;br /&gt;
* libplatform* (replacement) for libcec3&lt;br /&gt;
* lmce-cec-adaptor (871,872) - build against libcec3&lt;br /&gt;
* lmce-mediatomb (702) - fix pkg installation&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - update protocol version and secret word (shhh) for 0.27.5+fixes&lt;br /&gt;
* lmce-diskless-tools (627,628) - remove call to obsolete script in Diskless_Setup.sh&lt;br /&gt;
* pluto-vdr-plugin (466,467) - return full EPG (used in qOrbiter EPG Grid), improve communication speed with SVDRP&lt;br /&gt;
* pluto-slim-server-streamer (289,290) - emit time code event, fix duration parsing&lt;br /&gt;
* pluto-boot-scripts (234) - fix headless booting, update 1404 nvidia driver&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* lmce-md-meta (450) - add depends on alsa-utils&lt;br /&gt;
* pluto-website-admin (220) - Fix cdrviewer (Call Details Records) to accept SSL conections as well, firewall gui change to set Offline rules in red as they are not executed.&lt;br /&gt;
* pluto-app-server (126,145)- new poweroff mode I for ignore, since N is already in use&lt;br /&gt;
&lt;br /&gt;
== Update 31420 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add depends on pluto-boot-scripts for deb cache script&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31411 == &lt;br /&gt;
* pluto-avwizard (555,556) - fix depends on avwizard skins basic, should no longer care about version&lt;br /&gt;
* pluto-boot-scripts (234) - more explicity logic for core only booting, fix startup script db errors&lt;br /&gt;
* lmce-update-system (650,651) - remove and disable old init.d script from /etc/init.d&lt;br /&gt;
* pluto-plutodhcp (330,491) - depends on apparmor&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-dhcpd-plugin (302) - remove hardcoded IP addresses from configure scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31387 ==&lt;br /&gt;
* lmce-weather-plugin - make change to allow for tonight&#039;s forecast data (TSCHAK)&lt;br /&gt;
* lmce-asterisk (replacement) - remove obsolete phonetic engines and replace with espeak, voices remain the same&lt;br /&gt;
* mbrola (replacement) - base mbrola pkg for mbrola voices (add armhf binary)&lt;br /&gt;
* pluto-asterisk (270,271) - generate fr and de voicemail menus with espeak now&lt;br /&gt;
* lmce-core (888) - add depends on iptables&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31378 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Start_KDE.sh ownership fix, AV config updates&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-avwizard (555,556) - update pkgs &amp;amp; depends &amp;amp; config scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - do not run update deb_cache during dvd creation&lt;br /&gt;
* pluto-x-scripts (520) - fixups to Xconfigure.sh&lt;br /&gt;
&lt;br /&gt;
== Update 31356 ==&lt;br /&gt;
* pluto-system-database (211) - update depends&lt;br /&gt;
* pluto-orbiter (119,138) - update depends&lt;br /&gt;
* lmce-diskless-tools (627,628) - speedup dpkg in diskless create, fix missing quotes&lt;br /&gt;
&lt;br /&gt;
== Update 31352 ==&lt;br /&gt;
* pluto-motion-wrapper - more config file location fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 31351 ==&lt;br /&gt;
* pluto-boot-scripts (234) - change service &#039;nis&#039; to &#039;ypserv&#039;, nis is no longer a service name&lt;br /&gt;
* pluto-website-admin (220) - remove &#039;idiot&#039; text, let&#039;s be nice to people.&lt;br /&gt;
* lmce-core (888) - do not create and config under ubiquity&lt;br /&gt;
* lmce-md-meta (450) - do not create and config under ubiquity&lt;br /&gt;
* motion (replacement) - fix bad config file setting in rules&lt;br /&gt;
&lt;br /&gt;
== Update 31337 ==&lt;br /&gt;
* motion (replacement) - new version of motion to match new configuration values generated by linuxmce&lt;br /&gt;
&lt;br /&gt;
== Update 31331 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix for brightness events&lt;br /&gt;
* pluto-boot-scripts (234) - fix kdm disabling, start ubiquity after network config&lt;br /&gt;
* lmce-diskless-tools (627,628) - add upstart overrides for kdm&lt;br /&gt;
* lmce-install-scripts (391) - start ubiquity after network config&lt;br /&gt;
&lt;br /&gt;
== Update 31314 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add missing depends&lt;br /&gt;
&lt;br /&gt;
== Update 31292 ==&lt;br /&gt;
* lmce-core-locator (replacement) - (1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-system-database (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* All .debs created by MakeRelease - removal of all Pre-Depends, everything is now a Depends entry (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
== Update 31228 ==&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-local-database&lt;br /&gt;
&lt;br /&gt;
== Update 31214 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package (not in repo, need build-replacements.sh svn up&#039;d?)&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - preinst/postinst updates&lt;br /&gt;
* pluto-boot-scripts (234) - preinst/postinst updates&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-disked-md-base (801) - firstboot updates&lt;br /&gt;
&lt;br /&gt;
== Update 31187 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package&lt;br /&gt;
* pluto-confirm-dependencies (281,272) - new depends on lmce-install-scripts (fixes unable to apt-get dist-upgrade)&lt;br /&gt;
* lmce-md-meta (450) - new depends on nfs-common, openssh-server and pastebinit&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - update depends, preinst/postinst&lt;br /&gt;
* pluto-boot-scripts (234) - depends &amp;amp; preinst/postinst updates&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - add override mythweb defaults in pkg preinst&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - update depends&lt;br /&gt;
&lt;br /&gt;
== Update 31133 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** enable WakeMDs.sh to wake any halted MDs.&lt;br /&gt;
** consolidate all boot script launching to /etc/init.d/linuxmce&lt;br /&gt;
* pluto-avwizard (555,556) - moves start script to /usr/pluto/bin, called by /etc/init.d/linuxmce now&lt;br /&gt;
* lmce-update-system (650,651) - removes init.d script, called by /etc/init.d/linuxmce now&lt;br /&gt;
* pluto-website-admin (220) - GUI changes on network settings if an bridge is configured on the db.&lt;br /&gt;
* lmce-core (888) - depend on pluto-asterisk, lmce-asterisk, lmce-install-scripts&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* pluto-generic-serial-device (307,335) - wildshot attempt at fixing segfaults&lt;br /&gt;
&lt;br /&gt;
== Update 31103 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** Network bridging now possible  for wifi AP to have the same network as the local lan. &lt;br /&gt;
** ipv6 on/off for network interfaces. Read multiple ipv6 interfaces from the db.&lt;br /&gt;
** re-enable HaltMDs.&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* libqhttpserver (912) needed for linuxmce nvr&lt;br /&gt;
* lmce-launch-manager - (298,299) - ?&lt;br /&gt;
&lt;br /&gt;
== Update 31087 ==&lt;br /&gt;
* lmce-weather (838,839) - Fix a serious bug in getconfig where incorrect configuration device data would crash program. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 31083 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes #2422, advanced zwave page broken in chrome&lt;br /&gt;
* pluto-system-database (211) - thumbnail screen fixes&lt;br /&gt;
&lt;br /&gt;
== Update 31074 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** setEa2.php - Fix settings for creating entertain area.&lt;br /&gt;
** qOrbiterGenerator.php - Fix erroneous EA creation by removing it.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Fix incorrect setting for enabling / disabling motion.&lt;br /&gt;
&lt;br /&gt;
== Update 31069 ==&lt;br /&gt;
* pluto-website-admin (220) - setEa2.php Fix settings for creating entertain area.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Initial build.&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (881) - Large update of skins and internals.&lt;br /&gt;
&lt;br /&gt;
== Update 31061 ==&lt;br /&gt;
* lmce-squeezeslave (762) - Add configuration DD to command line&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DB package updates&lt;br /&gt;
** restore previous video remote layout with Options button to select subtitles/audio tracks/video tracks from a datagrid list.&lt;br /&gt;
* pluto-website-admin (220) - firewall.php edit rules for non advanced firewall and some other small fixes.&lt;br /&gt;
* lmce-asterisk (replacement) - sip config modules to avoid autoload.&lt;br /&gt;
&lt;br /&gt;
== Update 31051 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** firewall.php not adding rules now fixet.&lt;br /&gt;
** Test buttons for Hue lights&lt;br /&gt;
** Security outsideAccess page now works nicely with the new firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 31044 ==&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
&lt;br /&gt;
== Update 31031 ==&lt;br /&gt;
* pluto-website-admin (220) - firewall.php after a strange fault and some layout fixes.&lt;br /&gt;
* lmce-mediatomb (702) - don&#039;t assume mediatomb is already running.&lt;br /&gt;
&lt;br /&gt;
== Update 31013 ==&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* pluto-boot-scripts (234) - Network Parameter count for more interfaces set and Network firewall accepting postrouting Masquerade  for other network interfaces.&lt;br /&gt;
&lt;br /&gt;
== Update 30985 ==&lt;br /&gt;
* pluto-website-admin (220) - #2268 fail2ban integration logging failed user login attempt.&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** #2268 fail2ban script not insert existing rules to our db.&lt;br /&gt;
** Support for audio output select on rpi via web admin&lt;br /&gt;
* lmce-diskless-tools (627,628) - update syslinux depends to syslinux-common&lt;br /&gt;
* lmce-omx-player (829,830) - Honour audio output selection of rpiMD&lt;br /&gt;
* lmce-squeezeslave (762) - Fix detection for squeezelite&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - further fixes&lt;br /&gt;
* lmce-usb-gamepad (795,796) - rewrite the whole main loop to suck less. hold-down repeats work, input handling more sane.&lt;br /&gt;
&lt;br /&gt;
== Update 30926 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Fix for #2368 insert firewall rules en #2064 edit and delete chains (except some system chains).&lt;br /&gt;
** Support for brightness based events.&lt;br /&gt;
* pluto-std-plugins (116,135) - Support for brightness based events&lt;br /&gt;
* lmce-omx-plugin (831,832) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** Database additions for XBOX 360 Gamepad (device templates, package)&lt;br /&gt;
** Modification of OMX Plugin to allow priority to be changed.&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - the XBOX 360 Gamepad driver, uses xboxdrv userspace driver.&lt;br /&gt;
* lmce-usb-gamepad (795,796) - additions here for above XBOX 360 Gamepad support.&lt;br /&gt;
&lt;br /&gt;
== Update 30862 ==&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress can now read latest files per linuxmce user.&lt;br /&gt;
&lt;br /&gt;
== Update 30860 ==&lt;br /&gt;
* lmce-weather (838,839) - some fixes by cfernandes&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress.&lt;br /&gt;
* pluto-boot-scripts (234) - more mail fixes&lt;br /&gt;
&lt;br /&gt;
== Update 30855 ==&lt;br /&gt;
* pluto-vdr, pluto-vdr-plugin - remove hardcoding of core IP and network address, but depend on the pluto.conf entries for DCERouter.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location (again)&lt;br /&gt;
* lmce-diskless-tools - stop copying apt configs from the core&lt;br /&gt;
* pluto-boot-scripts - fix postfix setup #2393&lt;br /&gt;
&lt;br /&gt;
== Update 30841 ==&lt;br /&gt;
* lmce-avwizard-sounds - fix replaces/conflicts data&lt;br /&gt;
* lmce-skins-basic - fix replaces/conflicts data&lt;br /&gt;
* lmce-avwizard-skin-basic - fix replaces/conflicts data&lt;br /&gt;
&lt;br /&gt;
== Update 30383 ==&lt;br /&gt;
* pluto-website-admin (220) - Add Hue lights related test button.&lt;br /&gt;
* pluto-boot-scripts - Add another option --autobackup to PlutoRestorePoint.sh to allow backup of pluto_main only&lt;br /&gt;
&lt;br /&gt;
== Update 30814 ==&lt;br /&gt;
* pluto-Boot-scripts - Firewall order by place and PK_Firewall to let rules stay on top on the middle or on the bottom.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location&lt;br /&gt;
* lmce-hue-controller (862,863) - Fix bug in adding new lights, now adds serial number.&lt;br /&gt;
* pluto-website-admin (220) - Fix oops relating the missing &#039;.&#039; which caused operations/login.php not to work.&lt;br /&gt;
&lt;br /&gt;
== Update 30783 ==&lt;br /&gt;
* lmce-nbd-client-wrapper - new pkg to hold common script&lt;br /&gt;
* pluto-xine-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* lmce-vlc-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* pluto-boot-scripts - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
* pluto-storage-devices - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30777 ==&lt;br /&gt;
* lmce-core - depend on openswan&lt;br /&gt;
* pluto-system-database - pkg updates&lt;br /&gt;
* pluto-boot-scripts - remove check for openswan from bootscript&lt;br /&gt;
* pluto-generic-serial-device - update to ruby 1.9.1&lt;br /&gt;
&lt;br /&gt;
== Update 30773==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller internals to now include polling, so as to make sure floorplan data is accurate. Changes underlying mechanisms for how lights are handled in preparation for extending additional support for Cree lights and sensors devices.&lt;br /&gt;
&lt;br /&gt;
== Update 30767 ==&lt;br /&gt;
* lmce-diskless-tools - update diskless archive name to reflect current compression method xz.&lt;br /&gt;
* pluto-website-admin (220) - updates to internet radio, moves add channels to a seperate page.  Thanks Dap-P!&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
* pluto-vdr - adds missing depends on vdr in trusty&lt;br /&gt;
* lmce-core - update depends to new pkg name lmce-avwizard-sounds&lt;br /&gt;
* pluto-avwizard - update depends to new pkg name lmce-avwizard-skins-basic&lt;br /&gt;
* lmce-clock-screen-saver - make the clock screen saver use the WMController/wmctrl methods for setting window visibility to be compatible with Orbiter. (TSCHAK) (Trusty only)&lt;br /&gt;
* pluto-storage-devices - Make sure that smbpasswd is used to create or update sambahelper&#039;s password (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30726 ==&lt;br /&gt;
* pluto-vdr - VDR player&#039;s package assumed a correctly installed vdr package which includes an entry in /etc/default for vdr. We no longer fail on a missing file.&lt;br /&gt;
&lt;br /&gt;
== Update 30724 ==&lt;br /&gt;
* lmce-weather - updates to weather sources, add OpenWM source.  Thanks SBCC and cfernandes!&lt;br /&gt;
* lmce-skins-* - adds missing telecom icons, updates/adds weather icons&lt;br /&gt;
* lmce-avwizard-sounds - remove extraneous stuff from pkg, reduce pkg size back to normal.  Proper replaces/conflicts/data...&lt;br /&gt;
* lmce-avwizard-skin-basic - Proper replaces/conflicts/data...&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
&lt;br /&gt;
== Update 30718 ==&lt;br /&gt;
* lmce-core - new depends on lmce-skins*&lt;br /&gt;
* lmce-md-meta - add depends on pnp-detection scripts&lt;br /&gt;
* lmce-hybrid - new depends on lmce-skins*&lt;br /&gt;
* pluto-avwizard (556,555) - add pciutils as a depends, still need to deal with multiarch stuff so this will break armhf, we will not update armhf for now, it doesn&#039;t use avwizard but does install it.&lt;br /&gt;
* lmce-diskless-tools - minor diskless create fixups&lt;br /&gt;
* pluto-orbiter - missing depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio script&lt;br /&gt;
* pluto-website-admin (220) - recognize MIDs as top level devices&lt;br /&gt;
* pluto-mythtv-player - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 30628 ==&lt;br /&gt;
* *-database - fix install issues&lt;br /&gt;
&lt;br /&gt;
== Update 30622 ==&lt;br /&gt;
* pluto-orbiterinstallers - fix depends issue&lt;br /&gt;
* pluto-system-database - lots of compat updates&lt;br /&gt;
* lmce-* - lots of compat updates&lt;br /&gt;
* pluto-* - lots of compat updates&lt;br /&gt;
&lt;br /&gt;
== Update 30618 ==&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio scripts&lt;br /&gt;
* pluto-website-admin (220) - updated internet radio page&lt;br /&gt;
&lt;br /&gt;
== Update 30571 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - send &amp;quot;Device is turned on or off&amp;quot; event when appropriate so the corresponding event works as expected&lt;br /&gt;
* lmce-squeezeslave (762) - set to pnp create without prompting&lt;br /&gt;
* lmce-runtime-dependencies (903) - pkg to help consolidate runtime depends.&lt;br /&gt;
* lmce-core (888) - updated depends&lt;br /&gt;
* lmce-md-meta (450)- updated depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated depends&lt;br /&gt;
* pluto-createdevice (303,304) - updated depends&lt;br /&gt;
* lmce-weather(838,839) - fix potential segfault&lt;br /&gt;
* pluto-website-admin (220) - add &amp;quot;replace node&amp;quot; button to advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 30549 ==&lt;br /&gt;
* pluto-mythtv-player - fix misaligned data values during mythtv.txt creation.&lt;br /&gt;
&lt;br /&gt;
== Update 30526 ==&lt;br /&gt;
* lmce-core - new pkg&lt;br /&gt;
* lmce-hybrid - pkg depends changes&lt;br /&gt;
* lmce-md-meta - pkg depends changes&lt;br /&gt;
* pluto-dcerouter - pkg depends changes&lt;br /&gt;
* pluto-photo-screen-saver - pkg depends changes&lt;br /&gt;
* pluto-boot-scripts - pkg depends changes&lt;br /&gt;
* pluto-orbiter - pkg depends changes&lt;br /&gt;
* pluto-simplephone - pkg depends changes&lt;br /&gt;
* pluto-website-admin - pkg depends changes&lt;br /&gt;
* lmce-mythtv-scripts - pkg depends changes&lt;br /&gt;
* pluto-system-database - pkg depends changes&lt;br /&gt;
* lmce-squeezeslave (762) - fix launch script, automatically create associated squeezebox player on the core.&lt;br /&gt;
* pluto-std-plugins - run New_PnP_MD.sh for new MID devices as well.&lt;br /&gt;
* lmce-diskless-tools - don&#039;t fail on invoke-rc.d during diskless create, exit gracefully and continue.&lt;br /&gt;
* pluto-mythtv-player - fix diskless create failures due to old hacks.  more work is needed here overall on mythtv integration.&lt;br /&gt;
&lt;br /&gt;
== Update 30419 ==&lt;br /&gt;
* pluto-slim-server - Make sure to turn off all Squeeze* devices when Slim Server Streamer starts or restarts (so that squeezelite does not hog sound cards.)&lt;br /&gt;
* pluto-hald (529,530) - add device node path to pnpqueue with v4l devices during detection&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - update for new lib version&lt;br /&gt;
&lt;br /&gt;
== Update 30384 ==&lt;br /&gt;
* pluto-confirm-dependencies - depend on pluto-install-scripts.&lt;br /&gt;
* pluto-disk-drive (122,141) - remove hal bits that dealt with old jukebox bugs.&lt;br /&gt;
* pluto-capture-card-scripts (580) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-pnp-detection (562) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-storage-devices (533) - convert autofs from hal to udev.&lt;br /&gt;
* pluto-bootscripts (234) - disable starting the hald since we&#039;re using udev now, remove false &#039;fail&#039; messages during reboot/shutdown&lt;br /&gt;
* pluto-slim-server-streamer - make one tweak (do not delete m_mapStreamsToPlayers entry in CMD_Stop). Streaming now works consistently, properly, with squeezebox devices and their clones. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30354 ==&lt;br /&gt;
* pluto-hald (529,530) - fix attempt to fire event for child device of usb-dongle.&lt;br /&gt;
* pluto-slim-server-streamer - Implement FF/REW (transport) trick-play control for Squeeze* devices. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30341 ==&lt;br /&gt;
* pluto-bootscripst - fixes for PPPoE users to not autostart the external interface.&lt;br /&gt;
* pluto-slim-server-streamer - Fix to power off squeezebox player when stream is not in use. This allows softsqueeze/squeezeslave/squeezelite players to let go of a sound device, when not in use (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30332 ==&lt;br /&gt;
* pluto-orbiter (118,139) - disable old hid device functionality.  Anyone who needs it can request a special build which will be provided at no extra charge. ;)&lt;br /&gt;
* pluto-bootscripts (234) - disable Gamepad Radar, functionality now in hal through udev&lt;br /&gt;
* pluto-avwizard (556,555) - fixes mangling of RemoteCmd when &amp;gt;1 remote is detected.&lt;br /&gt;
* pluto-hal-device-finder (535,536) - update to use udev rather than hal.&lt;br /&gt;
* pluto-hald (529,530) - update to use udev rather than hal.&lt;br /&gt;
* pluto-system-database (211) - updates for new detection method (joystick, cec-adaptor), update dependency data for hal pks to reflect dropping hald and add depends on udev now.&lt;br /&gt;
&lt;br /&gt;
== Update 30219 ==&lt;br /&gt;
* pluto-bootscripts (234) - Fail2ban firewall update script, and missing radioscript.sh.&lt;br /&gt;
* pluto-website-admin - Place set for rules on the firewall and bantime for fail2ban integration.&lt;br /&gt;
* pluto-std-plugins (116,135) - adds heirloom-mailx for &#039;mailx -r&#039; functionality, fixes e-mail in general info plugin&lt;br /&gt;
&lt;br /&gt;
== Update 30068 ==&lt;br /&gt;
* lmce-advanced-ip-camera(813,812) - Fixed high cpu usage if connection to camera can not be made&lt;br /&gt;
&lt;br /&gt;
== Update 30052 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - fix android pkg meta data, need to rebuild all together&lt;br /&gt;
&lt;br /&gt;
== Update 30051 ==&lt;br /&gt;
* pluto-updateentarea (341,342) - use DAY/NIGHT in watching/stopped watching events to make them smarter&lt;br /&gt;
* pluto-std-plugins (116,135) - Implement Get Device Status in General Info Plugin&lt;br /&gt;
* pluto-bootscripts (234) - fix VPN ip up/down&lt;br /&gt;
&lt;br /&gt;
== Update 30025 ==&lt;br /&gt;
* pluto-system-database (211) - column def updates&lt;br /&gt;
* pluto-local-database (214) - new Firewall columns and new VPN columns for Users table.&lt;br /&gt;
&lt;br /&gt;
== Update 30014 ==&lt;br /&gt;
* lmce-transmission-client (852) - fix postinst issue.  (Thanks SBCC)&lt;br /&gt;
== Update 29994 ==&lt;br /&gt;
More VLC Player changes to make it at least somewhat usable, there were some ugly bugs that came to light once i plopped it onto my production system. Right now sound device is plughw:0,3, if you need a different one, change it in the code.  (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* lmce-vlc-player - many little fixes to make it suck less.&lt;br /&gt;
&lt;br /&gt;
== Update 29990 ==&lt;br /&gt;
I am working on the VLC player, and it is breathing enough for basic testing. Please do not use in production environment. There is still a lot of code to write (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - updates for VLC player (TSCHAK)&lt;br /&gt;
* vlc-player (882,884) - Very early alpha developer test of the VLC player. (TSCHAK)&lt;br /&gt;
* vlc-plugin (874,875) - Very alpha developer test of the VLC plugin. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 29984 ==&lt;br /&gt;
* pluto-system-database (211) - fix bad repos in pkgs&lt;br /&gt;
* pluto-website-admin - just because I think it is necessary :-)&lt;br /&gt;
&lt;br /&gt;
== Update 29983 ==&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Install_Test_in_VM_-_Xenial_amd64_-_2017-05-17&amp;diff=37000</id>
		<title>Install Test in VM - Xenial amd64 - 2017-05-17</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Install_Test_in_VM_-_Xenial_amd64_-_2017-05-17&amp;diff=37000"/>
		<updated>2017-05-17T23:17:27Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: /* Diskless Creation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== System setup ==&lt;br /&gt;
* VMWare 12&lt;br /&gt;
* Amd64&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* 40GB system disk&lt;br /&gt;
* NIC 0: Public (VMNet0) bridged to main network Detected as ens33&lt;br /&gt;
* NIC 1: Private (VMNet1) (192.168.80.0/24) set up as private network, detected as ens34 &lt;br /&gt;
* USB 3.0 hub&lt;br /&gt;
* OS: Xenial 16.04 Server&lt;br /&gt;
* Installed as: Core&lt;br /&gt;
&lt;br /&gt;
== Installation Status ==&lt;br /&gt;
&lt;br /&gt;
Install was OK, no errors during package install. EDIT: (None of the database tables were created)&lt;br /&gt;
&lt;br /&gt;
== Web admin user creation ==&lt;br /&gt;
&lt;br /&gt;
Failed with HTTP Error 500, due to: &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[Wed May 17 15:34:47.833416 2017] [:error] [pid 1948] [client 192.168.1.16:60517] PHP Warning:  mysqli_real_connect(): (HY000/1698): Access denied for user &#039;root&#039;@&#039;localhost&#039; in /var/www/lmce-admin/include/adodb/drivers/adodb-mysqli.inc.php on line 124&lt;br /&gt;
[Wed May 17 15:34:47.833466 2017] [:error] [pid 1948] [client 192.168.1.16:60517] PHP Fatal error:  mysqli error: [1698: Access denied for user &#039;root&#039;@&#039;localhost&#039;] in CONNECT(localhost, &#039;****&#039;, &#039;****&#039;, pluto_main)\n in /var/www/lmce-admin/include/adodb/adodb-errorhandler.inc.php on line 79&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I previously was able to get around this by issuing a CREATE USER root@localhost; but this no longer works.&lt;br /&gt;
&lt;br /&gt;
== Diskless Creation ==&lt;br /&gt;
&lt;br /&gt;
Diskless_CreateTBZ still hard-creates i386 images. At the very least, amd64 images should be created on amd64 hosts, and ideally, both i386 and amd64 images should be built when Diskless_CreateTBZ.sh is called.&lt;br /&gt;
Diskless_CreateTBZ seems to create without incident, however since I can&#039;t get into the web admin, can&#039;t do much more beyond this. EDIT: Damn it, spoke too soon: Log pasted here: http://paste.ubuntu.com/24595723/&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
&lt;br /&gt;
Build seems to be blocked due to database permission issues. (using -uroot as non-root user causes an access denied).&lt;br /&gt;
&lt;br /&gt;
== Installation Log ==&lt;br /&gt;
&lt;br /&gt;
Installation Log can be found here: http://paste.ubuntu.com/24595671/&lt;br /&gt;
&lt;br /&gt;
--[[User:Tschak909|Tschak909]] ([[User talk:Tschak909|talk]]) 22:52, 17 May 2017 (UTC)&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Install_Test_in_VM_-_Xenial_amd64_-_2017-05-17&amp;diff=36999</id>
		<title>Install Test in VM - Xenial amd64 - 2017-05-17</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Install_Test_in_VM_-_Xenial_amd64_-_2017-05-17&amp;diff=36999"/>
		<updated>2017-05-17T23:01:56Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: amended to note database error, amended to add log.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== System setup ==&lt;br /&gt;
* VMWare 12&lt;br /&gt;
* Amd64&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* 40GB system disk&lt;br /&gt;
* NIC 0: Public (VMNet0) bridged to main network Detected as ens33&lt;br /&gt;
* NIC 1: Private (VMNet1) (192.168.80.0/24) set up as private network, detected as ens34 &lt;br /&gt;
* USB 3.0 hub&lt;br /&gt;
* OS: Xenial 16.04 Server&lt;br /&gt;
* Installed as: Core&lt;br /&gt;
&lt;br /&gt;
== Installation Status ==&lt;br /&gt;
&lt;br /&gt;
Install was OK, no errors during package install. EDIT: (None of the database tables were created)&lt;br /&gt;
&lt;br /&gt;
== Web admin user creation ==&lt;br /&gt;
&lt;br /&gt;
Failed with HTTP Error 500, due to: &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[Wed May 17 15:34:47.833416 2017] [:error] [pid 1948] [client 192.168.1.16:60517] PHP Warning:  mysqli_real_connect(): (HY000/1698): Access denied for user &#039;root&#039;@&#039;localhost&#039; in /var/www/lmce-admin/include/adodb/drivers/adodb-mysqli.inc.php on line 124&lt;br /&gt;
[Wed May 17 15:34:47.833466 2017] [:error] [pid 1948] [client 192.168.1.16:60517] PHP Fatal error:  mysqli error: [1698: Access denied for user &#039;root&#039;@&#039;localhost&#039;] in CONNECT(localhost, &#039;****&#039;, &#039;****&#039;, pluto_main)\n in /var/www/lmce-admin/include/adodb/adodb-errorhandler.inc.php on line 79&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I previously was able to get around this by issuing a CREATE USER root@localhost; but this no longer works.&lt;br /&gt;
&lt;br /&gt;
== Diskless Creation ==&lt;br /&gt;
&lt;br /&gt;
Diskless_CreateTBZ still hard-creates i386 images. At the very least, amd64 images should be created on amd64 hosts, and ideally, both i386 and amd64 images should be built when Diskless_CreateTBZ.sh is called.&lt;br /&gt;
Diskless_CreateTBZ seems to create without incident, however since I can&#039;t get into the web admin, can&#039;t do much more beyond this.&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
&lt;br /&gt;
Build seems to be blocked due to database permission issues. (using -uroot as non-root user causes an access denied).&lt;br /&gt;
&lt;br /&gt;
== Installation Log ==&lt;br /&gt;
&lt;br /&gt;
Installation Log can be found here: http://paste.ubuntu.com/24595671/&lt;br /&gt;
&lt;br /&gt;
--[[User:Tschak909|Tschak909]] ([[User talk:Tschak909|talk]]) 22:52, 17 May 2017 (UTC)&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Install_Test_in_VM_-_Xenial_amd64_-_2017-05-17&amp;diff=36998</id>
		<title>Install Test in VM - Xenial amd64 - 2017-05-17</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Install_Test_in_VM_-_Xenial_amd64_-_2017-05-17&amp;diff=36998"/>
		<updated>2017-05-17T23:00:43Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: /* Installation Status */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== System setup ==&lt;br /&gt;
* VMWare 12&lt;br /&gt;
* Amd64&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* 40GB system disk&lt;br /&gt;
* NIC 0: Public (VMNet0) bridged to main network Detected as ens33&lt;br /&gt;
* NIC 1: Private (VMNet1) (192.168.80.0/24) set up as private network, detected as ens34 &lt;br /&gt;
* USB 3.0 hub&lt;br /&gt;
* OS: Xenial 16.04 Server&lt;br /&gt;
* Installed as: Core&lt;br /&gt;
&lt;br /&gt;
== Installation Status ==&lt;br /&gt;
&lt;br /&gt;
Install was OK, no errors during package install. EDIT: (None of the database tables were created)&lt;br /&gt;
&lt;br /&gt;
== Web admin user creation ==&lt;br /&gt;
&lt;br /&gt;
Failed with HTTP Error 500, due to: &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[Wed May 17 15:34:47.833416 2017] [:error] [pid 1948] [client 192.168.1.16:60517] PHP Warning:  mysqli_real_connect(): (HY000/1698): Access denied for user &#039;root&#039;@&#039;localhost&#039; in /var/www/lmce-admin/include/adodb/drivers/adodb-mysqli.inc.php on line 124&lt;br /&gt;
[Wed May 17 15:34:47.833466 2017] [:error] [pid 1948] [client 192.168.1.16:60517] PHP Fatal error:  mysqli error: [1698: Access denied for user &#039;root&#039;@&#039;localhost&#039;] in CONNECT(localhost, &#039;****&#039;, &#039;****&#039;, pluto_main)\n in /var/www/lmce-admin/include/adodb/adodb-errorhandler.inc.php on line 79&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I previously was able to get around this by issuing a CREATE USER root@localhost; but this no longer works.&lt;br /&gt;
&lt;br /&gt;
== Diskless Creation ==&lt;br /&gt;
&lt;br /&gt;
Diskless_CreateTBZ still hard-creates i386 images. At the very least, amd64 images should be created on amd64 hosts, and ideally, both i386 and amd64 images should be built when Diskless_CreateTBZ.sh is called.&lt;br /&gt;
Diskless_CreateTBZ seems to create without incident, however since I can&#039;t get into the web admin, can&#039;t do much more beyond this.&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
&lt;br /&gt;
Build seems to be blocked due to database permission issues. (using -uroot as non-root user causes an access denied).&lt;br /&gt;
&lt;br /&gt;
--[[User:Tschak909|Tschak909]] ([[User talk:Tschak909|talk]]) 22:52, 17 May 2017 (UTC)&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Install_Test_in_VM_-_Xenial_amd64_-_2017-05-17&amp;diff=36997</id>
		<title>Install Test in VM - Xenial amd64 - 2017-05-17</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Install_Test_in_VM_-_Xenial_amd64_-_2017-05-17&amp;diff=36997"/>
		<updated>2017-05-17T22:52:45Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: Wrote content.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== System setup ==&lt;br /&gt;
* VMWare 12&lt;br /&gt;
* Amd64&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* 40GB system disk&lt;br /&gt;
* NIC 0: Public (VMNet0) bridged to main network Detected as ens33&lt;br /&gt;
* NIC 1: Private (VMNet1) (192.168.80.0/24) set up as private network, detected as ens34 &lt;br /&gt;
* USB 3.0 hub&lt;br /&gt;
* OS: Xenial 16.04 Server&lt;br /&gt;
* Installed as: Core&lt;br /&gt;
&lt;br /&gt;
== Installation Status ==&lt;br /&gt;
&lt;br /&gt;
Install was OK, no errors during package install.&lt;br /&gt;
&lt;br /&gt;
== Web admin user creation ==&lt;br /&gt;
&lt;br /&gt;
Failed with HTTP Error 500, due to: &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[Wed May 17 15:34:47.833416 2017] [:error] [pid 1948] [client 192.168.1.16:60517] PHP Warning:  mysqli_real_connect(): (HY000/1698): Access denied for user &#039;root&#039;@&#039;localhost&#039; in /var/www/lmce-admin/include/adodb/drivers/adodb-mysqli.inc.php on line 124&lt;br /&gt;
[Wed May 17 15:34:47.833466 2017] [:error] [pid 1948] [client 192.168.1.16:60517] PHP Fatal error:  mysqli error: [1698: Access denied for user &#039;root&#039;@&#039;localhost&#039;] in CONNECT(localhost, &#039;****&#039;, &#039;****&#039;, pluto_main)\n in /var/www/lmce-admin/include/adodb/adodb-errorhandler.inc.php on line 79&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I previously was able to get around this by issuing a CREATE USER root@localhost; but this no longer works.&lt;br /&gt;
&lt;br /&gt;
== Diskless Creation ==&lt;br /&gt;
&lt;br /&gt;
Diskless_CreateTBZ still hard-creates i386 images. At the very least, amd64 images should be created on amd64 hosts, and ideally, both i386 and amd64 images should be built when Diskless_CreateTBZ.sh is called.&lt;br /&gt;
Diskless_CreateTBZ seems to create without incident, however since I can&#039;t get into the web admin, can&#039;t do much more beyond this.&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
&lt;br /&gt;
Build seems to be blocked due to database permission issues. (using -uroot as non-root user causes an access denied).&lt;br /&gt;
&lt;br /&gt;
--[[User:Tschak909|Tschak909]] ([[User talk:Tschak909|talk]]) 22:52, 17 May 2017 (UTC)&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36995</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36995"/>
		<updated>2017-05-16T04:26:19Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: /* Upcoming fixes... */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the latest changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo much easier.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please include the pkg #s to facilitate building on 3x i386 targets in addition to 2x amd64 and 3x armhf targets where full builds are not always practical.  Keep in mind that most packages are referred to by two (2) package numbers from the database, a source package and a binary package.  &amp;quot;Thank you for your co-operation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
&lt;br /&gt;
Temporarily remove ZFS from precise for debugging.&lt;br /&gt;
&lt;br /&gt;
* lmce-core (888) - remove dep for precise&lt;br /&gt;
* lmce-md-meta (450) - remove dep for precise&lt;br /&gt;
* lmce-zfs-support (937) - remove dep for precise&lt;br /&gt;
&lt;br /&gt;
== Update 1204 i386, 1404/1604 i386/amd64 201705131304+14f85ee9 ==&lt;br /&gt;
Attaching ZFS to the install...&lt;br /&gt;
* lmce-core (888) - Add dependency for ZFS&lt;br /&gt;
* lmce-md-meta (450) - Add dependency for ZFS&lt;br /&gt;
&lt;br /&gt;
== Update 1204 i386, 1404/1604 i386/amd64 201705131304+14f85ee9 ==&lt;br /&gt;
ZFS Support Extravaganza!&lt;br /&gt;
&lt;br /&gt;
* lmce-zfs-support (937) - dependencies added below for ZFS support&lt;br /&gt;
* mountall (938) - package added for ZFS support&lt;br /&gt;
* spl (939) - package added for ZFS support&lt;br /&gt;
* spl-dkms (940) - package added for ZFS support&lt;br /&gt;
* ubuntu-zfs (941) - package added for ZFS support&lt;br /&gt;
* zfs-auto-snapshot (942) - package added for ZFS support&lt;br /&gt;
* libnvpair1 (943) - package added for ZFS support&lt;br /&gt;
* libuutil1 (944) - package added for ZFS support&lt;br /&gt;
* libzfs2 (945) - package added for ZFS support&lt;br /&gt;
* libzpool2 (946) - package added for ZFS support&lt;br /&gt;
* zfs-dkms (947) - package added for ZFS support&lt;br /&gt;
* zfs-initramfs (948) - package added for ZFS support&lt;br /&gt;
* zfsutils (949) - package added for ZFS support&lt;br /&gt;
* zfs-zed (950) - package added for ZFS support&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201705110719+14f85ee9 ==&lt;br /&gt;
* Replacement packages in ubuntu/&lt;br /&gt;
** mountall - replacement package&lt;br /&gt;
** zfs-linux - ZFS support&lt;br /&gt;
** spl-linux - SPL library for ZFS support&lt;br /&gt;
** zfs-auto-snapshot - ZFS support&lt;br /&gt;
** ubuntu-zfs - ZFS support&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201705030817+f0afe768 ==&lt;br /&gt;
* lmce-zfs-support - remove the mkr_postinst.sh right now, as that was causing problems for everybody. Will bring the ZFS code into repo.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201705030817+f0afe768 ==&lt;br /&gt;
* pluto-bootscripts (234) firewall need to work together with the vpn.&lt;br /&gt;
* lmce-asterisk (920) - db_create_dialplan.sh to add blacklist better check option on asterisk dialplan. add Voicemailmain op extension *100&lt;br /&gt;
* lmce-vlc-player (884,882) - Further work on VLC_Player&#039;s transport controls. Please test and tell me if they work better. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Addition of ZFS templates.&lt;br /&gt;
* pluto-raid-tools (617) - Additions for ZFS&lt;br /&gt;
* lmce-zfs-support (937) - NEW PACKAGE for ZFS support.&lt;br /&gt;
* pluto-storage-devices (533) - Add ZFS support to automounter.&lt;br /&gt;
* pluto-website-admin (220) - Add ZFS support to RAID pages.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201704211536+941ae691 ==&lt;br /&gt;
* pluto-website-admin (220) - Blacklist.php added for administrating asterisk blacklist of phone numbers #2691&lt;br /&gt;
* lmce-asterisk (920) - db_create_dialplan.sh to add blacklist check on asterisk dialplan.&lt;br /&gt;
* pluto-database* - GRANT to localhost as well (just 127.0.0.1 doesn&#039;t help since MySQL 5.7)&lt;br /&gt;
&lt;br /&gt;
== Update armhf 201704191739+13f4f937 ==&lt;br /&gt;
* pluto-vdr - Don&#039;t check for the existence of a Xine device in the tree. There are many ways to display VDR.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201704182328+13f4f937  ==&lt;br /&gt;
* pluto-text-to-speech - Fix for initial installation which might effect usability.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704181123+a26d414e ==&lt;br /&gt;
* pluto-security-database - Localhost or 127.0.0.1 matters for MySQL - This should be the last fix needed to get MySQL Server v5.7 sorted out - at least for the install.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704180809+9af5cc66 ==&lt;br /&gt;
* pluto-boot-scripts - Set MySqlUser name in ConfigOps if it isn&#039;t already set.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201704171950+9af5cc66 ==&lt;br /&gt;
* pluto-sqlcvs, pluto*database* - Final fixes for 1404 and 1604.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704161042+f5455665 ==&lt;br /&gt;
* pluto-sqlcvs - Now has a dependency to pluto-database-settings&lt;br /&gt;
* pluto-database-settings - all user creation happens in here&lt;br /&gt;
* pluto-database-system - no more user creation.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 - 201704151808+866a5886 ==&lt;br /&gt;
* pluto-database-settings - Takes way too long to get fixed.&lt;br /&gt;
&lt;br /&gt;
== Update 201704151034+80dd9806 ==&lt;br /&gt;
* pluto-database-settings - *grml* don&#039;t just blindly copy other peoples code.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704142323+6ad66efd ==&lt;br /&gt;
* pluto-database-settings - Put user creation into mkr_postinst_mysql instead of mkr_postinst_system. Let&#039;s hope this fixes this sucker.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 2.0.0.47.201704050752+ddbbb689 ==&lt;br /&gt;
* lmce-vlc-player (884,882) - preprocess URL to ensure that file paths with # in them play correctly.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 amd64/i386 201704041743+906d69eb ==&lt;br /&gt;
* pluto-bootscripts (234) - Typo fix for insert rule to the db. /ppp/ip-up.d/lmce-vpn-up and /ppp/ip-down.d/lmce-vpn-down works now niceley togheter with the new firewall.&lt;br /&gt;
* pluto-system-database (211) - sqlCVS commit to add Imagemagick as dependency to VLC Player, finally squashing that #($#@( start bug! (TSCHAK)&lt;br /&gt;
** Also added ir-keytable depedency to pluto-lirc-wrapper&lt;br /&gt;
** Also added generic cd and dvd icons for External Media Identifier&lt;br /&gt;
* pluto-lirc-wrapper (340,421) - Ensure that ir-keytable is cleared before lircd starts to avoid unusual behavior with remotes that use kernel event subsystem (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - Fix DVD to use cifs instead of smbfs (which has been deprecated for 10 years.)&lt;br /&gt;
* lmce-vlc-player (884,882) - bug fixes for multi room sync&lt;br /&gt;
* lmce-vlc-plugin (874,875) - bug fixes for multi room sync&lt;br /&gt;
* lmce-media-identifier (931,932) - add generic dvd and cd identification if disc can&#039;t be identified by normal means.&lt;br /&gt;
* pluto-website-admin (220) - phonelines.php shows the state of a SPA protocol phonline. And firewall.php updated preg_match to find lines on pluto.conf and change them if exists. Issue2745.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201703301804+358c1c45 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fixes Bug #2726 - Media details now work, again.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 - 201703272335+efdf6de9 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Issue #2730 - Media Plugin changes to add support for FIFO capture card playback to VLC Player (route messages to VLC Player if it exists) -TSCHAK&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue #2729, #2730 - Implement FIFO device playback for local devices similar to file playback. (TBD: recompile VLC with PVR functionality), also multi-room playback. VLC Player is now in beta. -TSCHAK&lt;br /&gt;
* lmce-vlc-plugin (874,875) - Issue #2729 - Implement multi-room playback, VLC sync listener on core, etc. VLC functionality is now beta. -TSCHAK&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201702201438+325cc736 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix for multiple cameras and Get Image command&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue 2727, Issue 2728 - Trick play overhaul and fix audio glitches when trick play is used. &lt;br /&gt;
* pluto-boot-scripts (234) - SetupAudioVideo.sh - slight change to libvlc.conf so that trick play OSD works.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1204-1404-1604/amd64 c20633ff ==&lt;br /&gt;
* pluto-website-admin (220) - Added the case for section energyGraph and sipConf, fixed permissions for mysql asteriskuser, add sql credentials for myth, change MYSQL_NUM to MYSQLI_NUM&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1404/amd64 a7c10426 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add backports so 1204 diskless create works&lt;br /&gt;
* lmce-oauth2-server (668) - initial build of lmce oauth2 server for cloud interfacing&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404/1604 i386 - 1404x64 - 201611190055+fee90f43 ==&lt;br /&gt;
* pluto-boot-scripts (234) - database upgrades&lt;br /&gt;
* pluto-orbitergen (226,227) - database upgrades&lt;br /&gt;
* pluto-pluto-main-db (201,237) - database upgrades&lt;br /&gt;
* pluto-pluto-security-db (278,277) - database upgrades&lt;br /&gt;
* lmce-asterisk (replacement) - database upgrades&lt;br /&gt;
* pluto-system-database (211) - database upgrades&lt;br /&gt;
* pluto-local-database (214) - database upgrades&lt;br /&gt;
* pluto-security-database (256) - database upgrades&lt;br /&gt;
* pluto-telecom-database (472) - database upgrades&lt;br /&gt;
* pluto-media-database (233) - database upgrades&lt;br /&gt;
* pluto-database-settings (407) - database upgrades&lt;br /&gt;
* pluto-sqlcvs (212,213) - database upgrades&lt;br /&gt;
* pluto-std-plugins (116,135) - database upgrades&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609281853+9638f5bc ==&lt;br /&gt;
* pluto-website-admin (220) - #2705 fixed syntax error.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609271106+39103855 ==&lt;br /&gt;
* pluto-website-admin (220) - Update firewall.php GUI change some fields where reset to the default values. now the db data is honored.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** don&#039;t create initramfs for Raspbian Jessie diskless filesystems.&lt;br /&gt;
** ensure firstboot runs on diskless Jessie RPis.&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** stop/start rather than restart dhcp server, it&#039;s like nuking the site from orbit... only way to be sure.&lt;br /&gt;
** Firewall blocks udp 1900 UpNP traffic from externalinterface.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609172308+325de35d ==&lt;br /&gt;
* lmce-autotag (780, 781) linuxmceTag - fix comparison issue with media type.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609131230+5eaa4671/201609131753+5eaa4671 ==&lt;br /&gt;
* pluto-boot-scripts (234) - send dhcp vendor specific options only to wired raspberry pis.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 201609102226+fda3da63 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** rpi native pxe additions/updates&lt;br /&gt;
** extend startup timeout when booting under systemd&lt;br /&gt;
* lmce-diskless-tools (627,628) - rpi native pxe additions/updates&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DT updates for rpi native pxe&lt;br /&gt;
** add Serial Number Device Data to RPi DTs&lt;br /&gt;
** sets default PK_Distro to 22 (jessie) for RPi DTs&lt;br /&gt;
** new device data for &amp;quot;Standard Energy Meter&amp;quot;&lt;br /&gt;
* pluto-std-plugins (116,135)&lt;br /&gt;
** stores energy reading in state field for Standard Energy Meter&lt;br /&gt;
** fixes dcerouter crash when searching media&lt;br /&gt;
* pluto-updatemedia (405,406) - fix segfault when a dir is attempting to be tagged directly (without a .id3)&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - don&#039;t fail pkg install if simplephone is not running.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-i386 - 1404-i386/amd64 201607240235+899786ab ==&lt;br /&gt;
* pluto-website-admin (220) - Mysqli_real_escape_string did not work. a start with ipv6 firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/i386 201607202218+14cba09a ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) - Stream Bouncing, Additional settings for location, removed debug output, queue functionality.&lt;br /&gt;
&lt;br /&gt;
== Update 201607181902+d4cec1a0 1404-i386/amd64 - 1204-i386 ==&lt;br /&gt;
* pluto-website-admin - Update to qOrbiterGenerator.php for newer PHP version&lt;br /&gt;
&lt;br /&gt;
== Update 201607161239+6d72c3f9 1404-i386/amd64 1204-i386 ==&lt;br /&gt;
* pluto-website-admin (220) - #2678 fix Warning: Invalid argument supplied for foreach() in /var/www/lmce-admin/include/dhcpd-tools/DHCPd-parse.php on line 113&lt;br /&gt;
* pluto-boot-script&lt;br /&gt;
&lt;br /&gt;
== Update 201607151016+5b5adba3 1404/i386 &amp;amp; amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule use another escape method.&lt;br /&gt;
&lt;br /&gt;
== Update 201607122332+f0fc9c6b 1404/i386 ==&lt;br /&gt;
* pluto-boot-scripts (234) - fix #2684 clients cannot access internet when firewall is disabled. &lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule.&lt;br /&gt;
&lt;br /&gt;
== Update 201607050613+601c67da 1404-i386/amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - more fixes to the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update trusty i386/amd64 201606301955+614dfa7b ==&lt;br /&gt;
* pluto-website-admin (220) - fix for outside access port 443 not uncheckable.&lt;br /&gt;
* pluto-boot-scripts (234) - fix for not dele rules from iptables from outsideAccess.php&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201606201908+31b25c52 ==&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** unicode reading/writing working properly&lt;br /&gt;
** coverart writing to tags working properly&lt;br /&gt;
** .id3 files handled by taglib instead of id3lib.&lt;br /&gt;
** General Object Frame (GEOB) reading/writing working properly (all lmce attributes are stored in id3v2 GEOB tags for .id3/.mp3 files)&lt;br /&gt;
* pluto-website-admin (220) - more updates for mysql -&amp;gt; mysqli conversion&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201605312323+08fb8202 ==&lt;br /&gt;
* pluto-website-admin (220) - fix Text Command button to honor parameters from Screen_CommandParameter&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller to fix spamming of logs with constant updates of device data.&lt;br /&gt;
&lt;br /&gt;
== Update trusty-i386/amd64 201605310531+04df53f5 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - get the stream uri from onvif camera and save it in a device data for use by other devices&lt;br /&gt;
* pluto-website-admin (220) - adate to adodb 5.20.4 and change db driver from mysql to mysqli&lt;br /&gt;
* pluto-updatemedia (405,406) - tag writing/deletion of values update&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201605261039+410242d2 ==&lt;br /&gt;
* pluto-media-database (233) - remove FatGroupBy query as it is massive and no longer required&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** FIX UpdateMedia not detecting changes in files on disk.  Fixes: UpdateMedia not reading modification times properly.&lt;br /&gt;
** improve image reading/writing for mp3/mp4 files, add image handling for asf/wma, improve track art-&amp;gt;performer/album artist matching.&lt;br /&gt;
** don&#039;t add network shares to inotify watch list&lt;br /&gt;
* pluto-system-database (211) - new qml-* pkg definitions for qorbiter&lt;br /&gt;
* pluto-plutoutils (196,197) - add fn&#039; to determine filesystem type of a file&lt;br /&gt;
* lmce-disked-interactor (897,898) - make sure we see the core and have an IP prior to attempting contact&lt;br /&gt;
* pluto-bootscripts (234) - make sure we see the core prior to continuing to boot an MD&lt;br /&gt;
* pluto-website-admin (220) - various fixes in the media page&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 - 201605171740 c6d63dc6 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3, ogg, flac, mp4, wv, wav, oga, mpc, spx, opus, tta, m4a, m4r, m4p, 3g2, m4v, wma, asf, aif, aiff, afc, aifc, ape, s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64  201605131052+2542a526 ==&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - udev rule to ignore usbhid portion of device, permits orbiter to enter screensaver&lt;br /&gt;
* pluto-bootscripts (234) - permit devices that have died 50 times to attempt to restart after a router reload. Firewall fix for manual defined chains.&lt;br /&gt;
* pluto-sound-card-scripts (579) - don&#039;t assume cardid=1, determine phoenix cardid from aplay.&lt;br /&gt;
* pluto-media-database (233) - additional AttributeType &amp;quot;Album Artist&amp;quot;&lt;br /&gt;
* lmce-media-identifier (931,932) - updates for Album Artist tag.&lt;br /&gt;
* pluto-orbiter (119,138) - updates for Album Artist tag.&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** updates for Album Artist tag&lt;br /&gt;
** fix mainMediaFileSync.php. OutsideAccess page showing the options (again). &lt;br /&gt;
** And typo fixes for issue #2643. &lt;br /&gt;
** Firewall page reload issue 2636#. Firewall gui do not show &amp;quot;NULL&amp;quot;.&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3:ogg:flac:mp4:wv:wav::oga:mpc:spx:opus:tta:m4a:m4r:m4p:3g2:m4v:wma:asf:aif:aiff:afc:aifc:ape:s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update jessie 20160427 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for RPi&lt;br /&gt;
* lmce-disked-md-rpi2 (889) - +x firstboot_md_rpi2 to ensure it&#039;s picked up properly&lt;br /&gt;
&lt;br /&gt;
== Update jessie 201604130947+0083d387 ==&lt;br /&gt;
== Update 1204/1404-i386/amd64 201604101031-0b47a986 ==&lt;br /&gt;
* pluto-website-admin, pluto-boot-scripts (220,234) - Firewall Fixes for GUI and inner working of the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603251155+a1c0f6ea ==&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - File view implemented. Fixed not being able to leave resume menu.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603222119+336464d8 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller  to fix floorplan / status being improperly updated.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t mount optical discs as HDDs&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201603220706+c3c4b899 ==&lt;br /&gt;
* lmce-md-meta (450) - for some reason this is not in the main repo&lt;br /&gt;
* lmce-media-identifier - fixed for libcdio&lt;br /&gt;
&lt;br /&gt;
== Update jessie-rpi 60faa181 ==&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - adds video resizing so UI1 can be exposed while video is playing.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 armhf 31c5d994 ==&lt;br /&gt;
== Update 1404 i386 52e39875 ==&lt;br /&gt;
* pluto-storage-devices (533) - fix ntfs detection&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 - 49a8cbf1 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - a little better device to device template mapping&lt;br /&gt;
* pluto-website-admin (220) - fix adv.zwave page and adding secure devices&lt;br /&gt;
* lmce-disked-* - update the disked md/mid meta/base/device pkgs, specific fixes for 1404 joggler&lt;br /&gt;
* lmce-json-plugin (876,877) - first time addition to the main repo&lt;br /&gt;
* libdvdid0 (replacement) - first time addition to the repo, for use by Media Identifier&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - enable disabling internal volume control, similar to how logitechmediaserver does&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1404(armhf)/jessie(rpi)-a84db86f ==&lt;br /&gt;
* lmce-launch-manager (298,299) - only update squeeze devices when running on the core, redundant elsewhere.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404-87954508 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t fail if dvdcss2 cannot be automatically installed.&lt;br /&gt;
* pluto-hald (529,530) - reinstate tty detection, seperate from usb-serial, use direct parent for udi naming.&lt;br /&gt;
* pluto-boot-scripts (234) - disable buildall, the script doesn&#039;t run so why waste time creating it.&lt;br /&gt;
* lmce-launch-manager (298,299)&lt;br /&gt;
** update squeezebox players on router reloads from Launch_Manager&lt;br /&gt;
** call Config_Device_Changes in startCoreServices to ensure everything gets its&#039; Need Configure flag reset.&lt;br /&gt;
&lt;br /&gt;
== Update a332f49a ==&lt;br /&gt;
* lmce-install-scripts (391) - fix missing quote in MD installation.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix missing &#039;fi&#039; in BootMessage.sh&lt;br /&gt;
** fix usb.1 system serial port listing/translating&lt;br /&gt;
* lmce-media-identifier (931,932) - fix segfault, CDs are identified, cd-ripping functional again&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** prioritize new conf dir over old conf dir, fix install on systems upgraded from 1204-&amp;gt;1404&lt;br /&gt;
** redirect mythweb to html/mythweb&lt;br /&gt;
* pluto-hald (529,530) - updates to serial port naming, specifically for odroid.&lt;br /&gt;
* pluto-storage-devices (533) - fix mounted drive detection and add detection for drives mounted in /proc/cmdline like rpi.&lt;br /&gt;
&lt;br /&gt;
== Update 1204=201602080446+2028f850 &amp;lt;br&amp;gt; 1404=201602071815+c31bc44f ==&lt;br /&gt;
* lmce-install-scripts (391)&lt;br /&gt;
** enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
* lmce-core (888) - enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
* pluto-storage-devices (533) - redo StorageDevices_Radar using blkid for internal HDD identification.  /dev/disk/by-path/ is not present anymore.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
** new VerifyDistro.sh script and call the script on boot.&lt;br /&gt;
*** Preventative mostly.  Intended to ease pain for those that upgrade distros.&lt;br /&gt;
*** Ensure child devices, onscreen orbiter, have the proper PK_Distro set.&lt;br /&gt;
&lt;br /&gt;
== Update 296fdcd3 ==&lt;br /&gt;
* pluto-website-admin (220) - fix depends versioning&lt;br /&gt;
* pluto-hald (529,530) - fix depends versioning&lt;br /&gt;
* pluto-boot-scripts (234) - fix depends versioning&lt;br /&gt;
* pluto-system-database (211) - fix depends versioning&lt;br /&gt;
* pluto-orbitergen (226,227) - fix depends versioning&lt;br /&gt;
* lmce-disked-md-base (801) - fix depends versioning&lt;br /&gt;
* lmce-install-scripts (391) - fix depends versioning&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix depends versioning&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix depends versioning&lt;br /&gt;
* lmce-datalogger-plugin (686,687) - fix depends versioning &lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix depends versioning&lt;br /&gt;
&lt;br /&gt;
== Update f3a444c0 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** use newer .sh script rather than obsolete .pl script for dialplan creation&lt;br /&gt;
** fix Directory listing on cisco phones&lt;br /&gt;
** fix delete buttons on internet radio page.&lt;br /&gt;
* pluto-hald (529,530)&lt;br /&gt;
** add &#039;usb&#039; to &#039;pci&#039; and &#039;platform&#039; as valid bus addresses&lt;br /&gt;
** permit adding of usb devices with usb_serial or tty children&lt;br /&gt;
* pluto-boot-scripts (234) - update SetupAudioVideo.sh to more reliably address nvidia hdmi audio outputs&lt;br /&gt;
* lmce-asterisk (replacement) - live_dangerously for now to get all the necessary Voicemail modules to load&lt;br /&gt;
* pluto-system-database (211) - new DD Number of jobs for orbiter plug-in/orbitergen&lt;br /&gt;
* pluto-boot-scripts (234) - updates to RegenOrbiter scripts for parallel job queued orbiter generation.&lt;br /&gt;
* pluto-orbitergen (226,227) - new depends on GNU parallel&lt;br /&gt;
* lmce-disked-md-base (801) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* lmce-install-scripts (391) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - remove hardcoded ip address, get from db instead.&lt;br /&gt;
* lmce-diskless-tools (627,628) - only run UpdateDebCache.sh if it is executable&lt;br /&gt;
* lmce-datalog-plugin(686,687) - fix pear install command in postinst&lt;br /&gt;
* lmce-advanced-ip-camera(812,813) - add basic onvif support (snapshot,PTZ)&lt;br /&gt;
&lt;br /&gt;
== Update 31792 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of new External_Media_Identifier, testing CDDB ids&lt;br /&gt;
&lt;br /&gt;
== Update 31783 ==&lt;br /&gt;
* pluto-libserial (190,191) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-dcecommon (192,193) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-irbase (194,195) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-plutoutils (196,197) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-vipshared (199,200) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-serializeclass (198,238) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-libbd (239,240) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-ra (247,248) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-main-db (201,237) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-media-db (254,255) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-security-db (278,277) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-sdl-helpers (346,347) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-messagetrans (398,401) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-game-db (675,676) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-windowutils (677,678) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-datalog-db (688,689) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
&lt;br /&gt;
== Update 31782 ==&lt;br /&gt;
* pluto-std-plugins - fix FK_File search inside Attribute in Media_Plugin&lt;br /&gt;
&lt;br /&gt;
== Update 31774 ==&lt;br /&gt;
* lmce-disked-mid-base (899) - fix error in postinst&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come (this should be in but apt-get is getting 404 errors)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add &amp;quot;remove failed node&amp;quot; command&lt;br /&gt;
* pluto-website-admin - add &amp;quot;remove failed node&amp;quot; command for zwave advanced page&lt;br /&gt;
&lt;br /&gt;
== Update 31760 ==&lt;br /&gt;
* lmce-disked-md-base (801) - fix another error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31757 ==&lt;br /&gt;
* lmce-core (888) - overwrite AutostartCore conf value&lt;br /&gt;
* lmce-md-meta (450) - overwrite AutostartMedia conf value&lt;br /&gt;
* lmce-mid-meta (962) - missing deb&lt;br /&gt;
* lmce-hybrid (769) - exit 0 in postinst, just to be sure&lt;br /&gt;
* lmce-disked-md-base (801) - fix error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31754 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - reconnect before send&lt;br /&gt;
&lt;br /&gt;
== Update 31752 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - remove hard coded caller id &#039;Cherryhomes, Tho&#039;, use incoming caller id.&lt;br /&gt;
&lt;br /&gt;
== Update 31750 ==&lt;br /&gt;
* pluto-website-admin (220) - fix postinst error notice on precise.&lt;br /&gt;
* pluto-boot-scripts (234) - (re)start asterisk, otherwise configuration doesn&#039;t occur and sip phones cannot register&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - force-reload apache2 after disabling mythbuntu sites&lt;br /&gt;
* lmce-md-meta (450) - don&#039;t overwrite conf values that are already set&lt;br /&gt;
* *openzwave* (replacement) - version bump, upgrade fixes to upstream files&lt;br /&gt;
&lt;br /&gt;
== Update 31744 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come&lt;br /&gt;
&lt;br /&gt;
== Update 31742 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Gui changes to not confuse people. &lt;br /&gt;
** outsideaccess works together with the firewall. &lt;br /&gt;
** phonelines note on protocol for meaning of &amp;quot;SPA&amp;quot; and a status for this protocol setting, port can be changed if needed else it will be the default (5060).&lt;br /&gt;
&lt;br /&gt;
== Update 31739 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix absolute timed events&lt;br /&gt;
&lt;br /&gt;
== Update 31723 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix nfs-premount script in default diskless image.&lt;br /&gt;
* lmce-dlna(842,843) - compatibility fixes&lt;br /&gt;
* lmce-install-scripts (391) - generate ssh keys so openssh-server can accept connections&lt;br /&gt;
* pluto-createdevice (303,304) - hide errors, specifically during initial package postinst&lt;br /&gt;
* lmce-cec-adaptor (871,872) - fix cec remotes not getting to lmce&lt;br /&gt;
&lt;br /&gt;
== Update 31693 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - Fixes #2530 - fix errors in mythtvdb synchronization scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31686 ==&lt;br /&gt;
* lmce-install-scripts (391) - deal with firstboot stuffenz&lt;br /&gt;
* pluto-system-database (211) - add proxy orbiter DT depends for generic web device&lt;br /&gt;
* pluto-website-admin (220) - order by photo file name in screen saver/photo browser&lt;br /&gt;
* pluto-boot-scripts (234) - try ubiquity before anything else, and reboot after the normal firstboot - breaks live boot on dvd atm&lt;br /&gt;
* lmce-diskless-tools (627,628) - permit i386 diskless image building on amd64 cores, ensure processes are killed in chroot before unmounting (deals with systemd for now)&lt;br /&gt;
&lt;br /&gt;
== Update 31660 ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) &lt;br /&gt;
**PS3 control screen, fix layout issue. adds seperate button group (triangle, circle, etc) and navigation arrows. Also adds power off button to properly exit screen&lt;br /&gt;
* pluto-website-admin (220) - prevent creation of extra &#039;blank&#039; network interfaces&lt;br /&gt;
&lt;br /&gt;
== Update 31655 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - close connection after use&lt;br /&gt;
* pluto-website-admin (220) - fill ServerName var if it is unset, not if it is set.&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - unify service control&lt;br /&gt;
* pluto-boot-scripts (234) - unify service control&lt;br /&gt;
* pluto-dhcpd-plugin (302) - unify service control&lt;br /&gt;
* pluto-disk-monitor (554) - unify service control&lt;br /&gt;
* pluto-mythtv-player (133,152) - unify service control&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - unify service control&lt;br /&gt;
* pluto-raid-tools (617) - unify service control&lt;br /&gt;
* pluto-storage-devices (533) - unify service control&lt;br /&gt;
* lmce-update-system (650,651) - unify service control&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - unify service control&lt;br /&gt;
* pluto-vdr-plugin (466,467) - unify service control&lt;br /&gt;
* pluto-vdr (468,469) - unify service control&lt;br /&gt;
* pluto-database-settings (407) - unify service control&lt;br /&gt;
* lmce-asterisk (replacement) - unify service control&lt;br /&gt;
* lmce-diskless-tools (627,628) - unify service control&lt;br /&gt;
* lmce-install-scripts (391) - unify service control&lt;br /&gt;
* pluto-updatemedia (405,406) - unify service control&lt;br /&gt;
* pluto-newmdinteractor (538,539) - unify service control&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - Fix size issues, floorplan popups.&lt;br /&gt;
&lt;br /&gt;
== Update 31621 ==&lt;br /&gt;
* pluto-mythtv-player (133,152) - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 31618 ==&lt;br /&gt;
* lmce-asterisk (replacement) - update db for chan_sccp-v4.2 and fix bug requiring manual asterisk reload on boot&lt;br /&gt;
&lt;br /&gt;
== Update 31615 ==&lt;br /&gt;
* pluto-* - rebuild with new libraries&lt;br /&gt;
* lmce-* - rebuild with new libraries&lt;br /&gt;
&lt;br /&gt;
== Update 31606 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix EPG data on orbiters, myth stores everything in UTC now.&lt;br /&gt;
* pluto-pluto-main-db (201,237) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-media-db (254,255) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-security-db (277,278) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-datalog-db (688,689) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-game-db (675,676) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-updateentarea (341,342) - don&#039;t send empty play command when resetting alarm&lt;br /&gt;
&lt;br /&gt;
== Update 31580 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - use bypass-event to avoid watching media events when playing alerts&lt;br /&gt;
* pluto-updateentarea (341,342) - send bypass-event with security event commands&lt;br /&gt;
* libcec3 debs (replacement) - removes conflict data with libcec2&lt;br /&gt;
&lt;br /&gt;
== Update 31575 ==&lt;br /&gt;
* lmce-asterisk (replacement) - play back alert notification file&lt;br /&gt;
* pluto-std-plugins (116,135) - create alert notification file with correct format&lt;br /&gt;
* pluto-boot-scripts (234) - fixes for nvidia drivers on precise, upgrades to nvidia-340&lt;br /&gt;
* lmce-avwizard-sounds (replacement) - don&#039;t copy fakeroot files (it is redundant it is)&lt;br /&gt;
* video-wizard-videos (replacement) - deb is back to normal size, not 2x&lt;br /&gt;
&lt;br /&gt;
== Update 31553 ==&lt;br /&gt;
* pluto-website-admin (220) - fix error that wipes out the apache2.conf&lt;br /&gt;
* pluto-hald (529,530) - fix segfaults with firewire hardware&lt;br /&gt;
&lt;br /&gt;
== Update 31547 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some API changes in OZW 1.3, more device template mappings&lt;br /&gt;
* pluto-boot-scripts (234) - typo fix for nvidia drivers&lt;br /&gt;
* lmce-disked-md-base (801) - set hostname on disked MDs, set timezone on disked MDs&lt;br /&gt;
* lmce-install-scripts (391) - set hostname on disked MDs, set timezone on disked MDs &lt;br /&gt;
* pluto-website-admin was generated---&amp;gt; lmce-website-admin (220) - set apache2 ServerName to silence error on boot&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates, revert to ruby 1.8&lt;br /&gt;
* pluto-generic-serial-device (307,335) - admit defeat for now, revert to ruby 1.8&lt;br /&gt;
&lt;br /&gt;
== Update 31533 ==&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31520 ==&lt;br /&gt;
* chan-sccp_v4.2 (replacement) - Upgrad asterisk SCCP channel driver to newest version&lt;br /&gt;
* pluto-vdr-plugin (466,467) - implement background loading of EPG from VDR to avoid crashes due to commands not completing on time&lt;br /&gt;
* pluto-boot-scripts (234) - some logic changes and added messages for video driver install debugging&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - link new channels dir to old channels dir for backwards compatibility&lt;br /&gt;
&lt;br /&gt;
== Update 31503 ==&lt;br /&gt;
* *zwave* (replacement) - new upstream openzwave version 1.3.1224&lt;br /&gt;
* lmce-zwave-ozw(505,506) - build against new libopenzwave1.3&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates&lt;br /&gt;
* lmce-disked-interactor (897,898) - make disked interactor aware of wheezy and jessie.&lt;br /&gt;
&lt;br /&gt;
== Update 31500 ==&lt;br /&gt;
* *myth* (replacement) - fix depends on non-existent packages&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst - verified installing now&lt;br /&gt;
* pluto-std-plugins (116,135) - Use integer comparison for brightness state&lt;br /&gt;
&lt;br /&gt;
== Update 31491 ==&lt;br /&gt;
* lmce-avwizard-skin-basic (replacement) - fix packaging of avwizard skin&lt;br /&gt;
* *myth* (replacement) - mythtv 0.27.5+fixes with Schedules Direct fix included&lt;br /&gt;
* *asterisk* (replacement) - asterisk 11.7 backport from trusty&lt;br /&gt;
* libical* (replacement) - for asterisk 11.7&lt;br /&gt;
* *cec* (replacement) - libcec3&lt;br /&gt;
* libplatform* (replacement) for libcec3&lt;br /&gt;
* lmce-cec-adaptor (871,872) - build against libcec3&lt;br /&gt;
* lmce-mediatomb (702) - fix pkg installation&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - update protocol version and secret word (shhh) for 0.27.5+fixes&lt;br /&gt;
* lmce-diskless-tools (627,628) - remove call to obsolete script in Diskless_Setup.sh&lt;br /&gt;
* pluto-vdr-plugin (466,467) - return full EPG (used in qOrbiter EPG Grid), improve communication speed with SVDRP&lt;br /&gt;
* pluto-slim-server-streamer (289,290) - emit time code event, fix duration parsing&lt;br /&gt;
* pluto-boot-scripts (234) - fix headless booting, update 1404 nvidia driver&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* lmce-md-meta (450) - add depends on alsa-utils&lt;br /&gt;
* pluto-website-admin (220) - Fix cdrviewer (Call Details Records) to accept SSL conections as well, firewall gui change to set Offline rules in red as they are not executed.&lt;br /&gt;
* pluto-app-server (126,145)- new poweroff mode I for ignore, since N is already in use&lt;br /&gt;
&lt;br /&gt;
== Update 31420 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add depends on pluto-boot-scripts for deb cache script&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31411 == &lt;br /&gt;
* pluto-avwizard (555,556) - fix depends on avwizard skins basic, should no longer care about version&lt;br /&gt;
* pluto-boot-scripts (234) - more explicity logic for core only booting, fix startup script db errors&lt;br /&gt;
* lmce-update-system (650,651) - remove and disable old init.d script from /etc/init.d&lt;br /&gt;
* pluto-plutodhcp (330,491) - depends on apparmor&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-dhcpd-plugin (302) - remove hardcoded IP addresses from configure scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31387 ==&lt;br /&gt;
* lmce-weather-plugin - make change to allow for tonight&#039;s forecast data (TSCHAK)&lt;br /&gt;
* lmce-asterisk (replacement) - remove obsolete phonetic engines and replace with espeak, voices remain the same&lt;br /&gt;
* mbrola (replacement) - base mbrola pkg for mbrola voices (add armhf binary)&lt;br /&gt;
* pluto-asterisk (270,271) - generate fr and de voicemail menus with espeak now&lt;br /&gt;
* lmce-core (888) - add depends on iptables&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31378 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Start_KDE.sh ownership fix, AV config updates&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-avwizard (555,556) - update pkgs &amp;amp; depends &amp;amp; config scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - do not run update deb_cache during dvd creation&lt;br /&gt;
* pluto-x-scripts (520) - fixups to Xconfigure.sh&lt;br /&gt;
&lt;br /&gt;
== Update 31356 ==&lt;br /&gt;
* pluto-system-database (211) - update depends&lt;br /&gt;
* pluto-orbiter (119,138) - update depends&lt;br /&gt;
* lmce-diskless-tools (627,628) - speedup dpkg in diskless create, fix missing quotes&lt;br /&gt;
&lt;br /&gt;
== Update 31352 ==&lt;br /&gt;
* pluto-motion-wrapper - more config file location fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 31351 ==&lt;br /&gt;
* pluto-boot-scripts (234) - change service &#039;nis&#039; to &#039;ypserv&#039;, nis is no longer a service name&lt;br /&gt;
* pluto-website-admin (220) - remove &#039;idiot&#039; text, let&#039;s be nice to people.&lt;br /&gt;
* lmce-core (888) - do not create and config under ubiquity&lt;br /&gt;
* lmce-md-meta (450) - do not create and config under ubiquity&lt;br /&gt;
* motion (replacement) - fix bad config file setting in rules&lt;br /&gt;
&lt;br /&gt;
== Update 31337 ==&lt;br /&gt;
* motion (replacement) - new version of motion to match new configuration values generated by linuxmce&lt;br /&gt;
&lt;br /&gt;
== Update 31331 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix for brightness events&lt;br /&gt;
* pluto-boot-scripts (234) - fix kdm disabling, start ubiquity after network config&lt;br /&gt;
* lmce-diskless-tools (627,628) - add upstart overrides for kdm&lt;br /&gt;
* lmce-install-scripts (391) - start ubiquity after network config&lt;br /&gt;
&lt;br /&gt;
== Update 31314 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add missing depends&lt;br /&gt;
&lt;br /&gt;
== Update 31292 ==&lt;br /&gt;
* lmce-core-locator (replacement) - (1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-system-database (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* All .debs created by MakeRelease - removal of all Pre-Depends, everything is now a Depends entry (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
== Update 31228 ==&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-local-database&lt;br /&gt;
&lt;br /&gt;
== Update 31214 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package (not in repo, need build-replacements.sh svn up&#039;d?)&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - preinst/postinst updates&lt;br /&gt;
* pluto-boot-scripts (234) - preinst/postinst updates&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-disked-md-base (801) - firstboot updates&lt;br /&gt;
&lt;br /&gt;
== Update 31187 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package&lt;br /&gt;
* pluto-confirm-dependencies (281,272) - new depends on lmce-install-scripts (fixes unable to apt-get dist-upgrade)&lt;br /&gt;
* lmce-md-meta (450) - new depends on nfs-common, openssh-server and pastebinit&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - update depends, preinst/postinst&lt;br /&gt;
* pluto-boot-scripts (234) - depends &amp;amp; preinst/postinst updates&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - add override mythweb defaults in pkg preinst&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - update depends&lt;br /&gt;
&lt;br /&gt;
== Update 31133 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** enable WakeMDs.sh to wake any halted MDs.&lt;br /&gt;
** consolidate all boot script launching to /etc/init.d/linuxmce&lt;br /&gt;
* pluto-avwizard (555,556) - moves start script to /usr/pluto/bin, called by /etc/init.d/linuxmce now&lt;br /&gt;
* lmce-update-system (650,651) - removes init.d script, called by /etc/init.d/linuxmce now&lt;br /&gt;
* pluto-website-admin (220) - GUI changes on network settings if an bridge is configured on the db.&lt;br /&gt;
* lmce-core (888) - depend on pluto-asterisk, lmce-asterisk, lmce-install-scripts&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* pluto-generic-serial-device (307,335) - wildshot attempt at fixing segfaults&lt;br /&gt;
&lt;br /&gt;
== Update 31103 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** Network bridging now possible  for wifi AP to have the same network as the local lan. &lt;br /&gt;
** ipv6 on/off for network interfaces. Read multiple ipv6 interfaces from the db.&lt;br /&gt;
** re-enable HaltMDs.&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* libqhttpserver (912) needed for linuxmce nvr&lt;br /&gt;
* lmce-launch-manager - (298,299) - ?&lt;br /&gt;
&lt;br /&gt;
== Update 31087 ==&lt;br /&gt;
* lmce-weather (838,839) - Fix a serious bug in getconfig where incorrect configuration device data would crash program. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 31083 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes #2422, advanced zwave page broken in chrome&lt;br /&gt;
* pluto-system-database (211) - thumbnail screen fixes&lt;br /&gt;
&lt;br /&gt;
== Update 31074 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** setEa2.php - Fix settings for creating entertain area.&lt;br /&gt;
** qOrbiterGenerator.php - Fix erroneous EA creation by removing it.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Fix incorrect setting for enabling / disabling motion.&lt;br /&gt;
&lt;br /&gt;
== Update 31069 ==&lt;br /&gt;
* pluto-website-admin (220) - setEa2.php Fix settings for creating entertain area.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Initial build.&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (881) - Large update of skins and internals.&lt;br /&gt;
&lt;br /&gt;
== Update 31061 ==&lt;br /&gt;
* lmce-squeezeslave (762) - Add configuration DD to command line&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DB package updates&lt;br /&gt;
** restore previous video remote layout with Options button to select subtitles/audio tracks/video tracks from a datagrid list.&lt;br /&gt;
* pluto-website-admin (220) - firewall.php edit rules for non advanced firewall and some other small fixes.&lt;br /&gt;
* lmce-asterisk (replacement) - sip config modules to avoid autoload.&lt;br /&gt;
&lt;br /&gt;
== Update 31051 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** firewall.php not adding rules now fixet.&lt;br /&gt;
** Test buttons for Hue lights&lt;br /&gt;
** Security outsideAccess page now works nicely with the new firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 31044 ==&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
&lt;br /&gt;
== Update 31031 ==&lt;br /&gt;
* pluto-website-admin (220) - firewall.php after a strange fault and some layout fixes.&lt;br /&gt;
* lmce-mediatomb (702) - don&#039;t assume mediatomb is already running.&lt;br /&gt;
&lt;br /&gt;
== Update 31013 ==&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* pluto-boot-scripts (234) - Network Parameter count for more interfaces set and Network firewall accepting postrouting Masquerade  for other network interfaces.&lt;br /&gt;
&lt;br /&gt;
== Update 30985 ==&lt;br /&gt;
* pluto-website-admin (220) - #2268 fail2ban integration logging failed user login attempt.&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** #2268 fail2ban script not insert existing rules to our db.&lt;br /&gt;
** Support for audio output select on rpi via web admin&lt;br /&gt;
* lmce-diskless-tools (627,628) - update syslinux depends to syslinux-common&lt;br /&gt;
* lmce-omx-player (829,830) - Honour audio output selection of rpiMD&lt;br /&gt;
* lmce-squeezeslave (762) - Fix detection for squeezelite&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - further fixes&lt;br /&gt;
* lmce-usb-gamepad (795,796) - rewrite the whole main loop to suck less. hold-down repeats work, input handling more sane.&lt;br /&gt;
&lt;br /&gt;
== Update 30926 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Fix for #2368 insert firewall rules en #2064 edit and delete chains (except some system chains).&lt;br /&gt;
** Support for brightness based events.&lt;br /&gt;
* pluto-std-plugins (116,135) - Support for brightness based events&lt;br /&gt;
* lmce-omx-plugin (831,832) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** Database additions for XBOX 360 Gamepad (device templates, package)&lt;br /&gt;
** Modification of OMX Plugin to allow priority to be changed.&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - the XBOX 360 Gamepad driver, uses xboxdrv userspace driver.&lt;br /&gt;
* lmce-usb-gamepad (795,796) - additions here for above XBOX 360 Gamepad support.&lt;br /&gt;
&lt;br /&gt;
== Update 30862 ==&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress can now read latest files per linuxmce user.&lt;br /&gt;
&lt;br /&gt;
== Update 30860 ==&lt;br /&gt;
* lmce-weather (838,839) - some fixes by cfernandes&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress.&lt;br /&gt;
* pluto-boot-scripts (234) - more mail fixes&lt;br /&gt;
&lt;br /&gt;
== Update 30855 ==&lt;br /&gt;
* pluto-vdr, pluto-vdr-plugin - remove hardcoding of core IP and network address, but depend on the pluto.conf entries for DCERouter.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location (again)&lt;br /&gt;
* lmce-diskless-tools - stop copying apt configs from the core&lt;br /&gt;
* pluto-boot-scripts - fix postfix setup #2393&lt;br /&gt;
&lt;br /&gt;
== Update 30841 ==&lt;br /&gt;
* lmce-avwizard-sounds - fix replaces/conflicts data&lt;br /&gt;
* lmce-skins-basic - fix replaces/conflicts data&lt;br /&gt;
* lmce-avwizard-skin-basic - fix replaces/conflicts data&lt;br /&gt;
&lt;br /&gt;
== Update 30383 ==&lt;br /&gt;
* pluto-website-admin (220) - Add Hue lights related test button.&lt;br /&gt;
* pluto-boot-scripts - Add another option --autobackup to PlutoRestorePoint.sh to allow backup of pluto_main only&lt;br /&gt;
&lt;br /&gt;
== Update 30814 ==&lt;br /&gt;
* pluto-Boot-scripts - Firewall order by place and PK_Firewall to let rules stay on top on the middle or on the bottom.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location&lt;br /&gt;
* lmce-hue-controller (862,863) - Fix bug in adding new lights, now adds serial number.&lt;br /&gt;
* pluto-website-admin (220) - Fix oops relating the missing &#039;.&#039; which caused operations/login.php not to work.&lt;br /&gt;
&lt;br /&gt;
== Update 30783 ==&lt;br /&gt;
* lmce-nbd-client-wrapper - new pkg to hold common script&lt;br /&gt;
* pluto-xine-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* lmce-vlc-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* pluto-boot-scripts - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
* pluto-storage-devices - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30777 ==&lt;br /&gt;
* lmce-core - depend on openswan&lt;br /&gt;
* pluto-system-database - pkg updates&lt;br /&gt;
* pluto-boot-scripts - remove check for openswan from bootscript&lt;br /&gt;
* pluto-generic-serial-device - update to ruby 1.9.1&lt;br /&gt;
&lt;br /&gt;
== Update 30773==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller internals to now include polling, so as to make sure floorplan data is accurate. Changes underlying mechanisms for how lights are handled in preparation for extending additional support for Cree lights and sensors devices.&lt;br /&gt;
&lt;br /&gt;
== Update 30767 ==&lt;br /&gt;
* lmce-diskless-tools - update diskless archive name to reflect current compression method xz.&lt;br /&gt;
* pluto-website-admin (220) - updates to internet radio, moves add channels to a seperate page.  Thanks Dap-P!&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
* pluto-vdr - adds missing depends on vdr in trusty&lt;br /&gt;
* lmce-core - update depends to new pkg name lmce-avwizard-sounds&lt;br /&gt;
* pluto-avwizard - update depends to new pkg name lmce-avwizard-skins-basic&lt;br /&gt;
* lmce-clock-screen-saver - make the clock screen saver use the WMController/wmctrl methods for setting window visibility to be compatible with Orbiter. (TSCHAK) (Trusty only)&lt;br /&gt;
* pluto-storage-devices - Make sure that smbpasswd is used to create or update sambahelper&#039;s password (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30726 ==&lt;br /&gt;
* pluto-vdr - VDR player&#039;s package assumed a correctly installed vdr package which includes an entry in /etc/default for vdr. We no longer fail on a missing file.&lt;br /&gt;
&lt;br /&gt;
== Update 30724 ==&lt;br /&gt;
* lmce-weather - updates to weather sources, add OpenWM source.  Thanks SBCC and cfernandes!&lt;br /&gt;
* lmce-skins-* - adds missing telecom icons, updates/adds weather icons&lt;br /&gt;
* lmce-avwizard-sounds - remove extraneous stuff from pkg, reduce pkg size back to normal.  Proper replaces/conflicts/data...&lt;br /&gt;
* lmce-avwizard-skin-basic - Proper replaces/conflicts/data...&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
&lt;br /&gt;
== Update 30718 ==&lt;br /&gt;
* lmce-core - new depends on lmce-skins*&lt;br /&gt;
* lmce-md-meta - add depends on pnp-detection scripts&lt;br /&gt;
* lmce-hybrid - new depends on lmce-skins*&lt;br /&gt;
* pluto-avwizard (556,555) - add pciutils as a depends, still need to deal with multiarch stuff so this will break armhf, we will not update armhf for now, it doesn&#039;t use avwizard but does install it.&lt;br /&gt;
* lmce-diskless-tools - minor diskless create fixups&lt;br /&gt;
* pluto-orbiter - missing depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio script&lt;br /&gt;
* pluto-website-admin (220) - recognize MIDs as top level devices&lt;br /&gt;
* pluto-mythtv-player - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 30628 ==&lt;br /&gt;
* *-database - fix install issues&lt;br /&gt;
&lt;br /&gt;
== Update 30622 ==&lt;br /&gt;
* pluto-orbiterinstallers - fix depends issue&lt;br /&gt;
* pluto-system-database - lots of compat updates&lt;br /&gt;
* lmce-* - lots of compat updates&lt;br /&gt;
* pluto-* - lots of compat updates&lt;br /&gt;
&lt;br /&gt;
== Update 30618 ==&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio scripts&lt;br /&gt;
* pluto-website-admin (220) - updated internet radio page&lt;br /&gt;
&lt;br /&gt;
== Update 30571 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - send &amp;quot;Device is turned on or off&amp;quot; event when appropriate so the corresponding event works as expected&lt;br /&gt;
* lmce-squeezeslave (762) - set to pnp create without prompting&lt;br /&gt;
* lmce-runtime-dependencies (903) - pkg to help consolidate runtime depends.&lt;br /&gt;
* lmce-core (888) - updated depends&lt;br /&gt;
* lmce-md-meta (450)- updated depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated depends&lt;br /&gt;
* pluto-createdevice (303,304) - updated depends&lt;br /&gt;
* lmce-weather(838,839) - fix potential segfault&lt;br /&gt;
* pluto-website-admin (220) - add &amp;quot;replace node&amp;quot; button to advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 30549 ==&lt;br /&gt;
* pluto-mythtv-player - fix misaligned data values during mythtv.txt creation.&lt;br /&gt;
&lt;br /&gt;
== Update 30526 ==&lt;br /&gt;
* lmce-core - new pkg&lt;br /&gt;
* lmce-hybrid - pkg depends changes&lt;br /&gt;
* lmce-md-meta - pkg depends changes&lt;br /&gt;
* pluto-dcerouter - pkg depends changes&lt;br /&gt;
* pluto-photo-screen-saver - pkg depends changes&lt;br /&gt;
* pluto-boot-scripts - pkg depends changes&lt;br /&gt;
* pluto-orbiter - pkg depends changes&lt;br /&gt;
* pluto-simplephone - pkg depends changes&lt;br /&gt;
* pluto-website-admin - pkg depends changes&lt;br /&gt;
* lmce-mythtv-scripts - pkg depends changes&lt;br /&gt;
* pluto-system-database - pkg depends changes&lt;br /&gt;
* lmce-squeezeslave (762) - fix launch script, automatically create associated squeezebox player on the core.&lt;br /&gt;
* pluto-std-plugins - run New_PnP_MD.sh for new MID devices as well.&lt;br /&gt;
* lmce-diskless-tools - don&#039;t fail on invoke-rc.d during diskless create, exit gracefully and continue.&lt;br /&gt;
* pluto-mythtv-player - fix diskless create failures due to old hacks.  more work is needed here overall on mythtv integration.&lt;br /&gt;
&lt;br /&gt;
== Update 30419 ==&lt;br /&gt;
* pluto-slim-server - Make sure to turn off all Squeeze* devices when Slim Server Streamer starts or restarts (so that squeezelite does not hog sound cards.)&lt;br /&gt;
* pluto-hald (529,530) - add device node path to pnpqueue with v4l devices during detection&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - update for new lib version&lt;br /&gt;
&lt;br /&gt;
== Update 30384 ==&lt;br /&gt;
* pluto-confirm-dependencies - depend on pluto-install-scripts.&lt;br /&gt;
* pluto-disk-drive (122,141) - remove hal bits that dealt with old jukebox bugs.&lt;br /&gt;
* pluto-capture-card-scripts (580) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-pnp-detection (562) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-storage-devices (533) - convert autofs from hal to udev.&lt;br /&gt;
* pluto-bootscripts (234) - disable starting the hald since we&#039;re using udev now, remove false &#039;fail&#039; messages during reboot/shutdown&lt;br /&gt;
* pluto-slim-server-streamer - make one tweak (do not delete m_mapStreamsToPlayers entry in CMD_Stop). Streaming now works consistently, properly, with squeezebox devices and their clones. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30354 ==&lt;br /&gt;
* pluto-hald (529,530) - fix attempt to fire event for child device of usb-dongle.&lt;br /&gt;
* pluto-slim-server-streamer - Implement FF/REW (transport) trick-play control for Squeeze* devices. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30341 ==&lt;br /&gt;
* pluto-bootscripst - fixes for PPPoE users to not autostart the external interface.&lt;br /&gt;
* pluto-slim-server-streamer - Fix to power off squeezebox player when stream is not in use. This allows softsqueeze/squeezeslave/squeezelite players to let go of a sound device, when not in use (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30332 ==&lt;br /&gt;
* pluto-orbiter (118,139) - disable old hid device functionality.  Anyone who needs it can request a special build which will be provided at no extra charge. ;)&lt;br /&gt;
* pluto-bootscripts (234) - disable Gamepad Radar, functionality now in hal through udev&lt;br /&gt;
* pluto-avwizard (556,555) - fixes mangling of RemoteCmd when &amp;gt;1 remote is detected.&lt;br /&gt;
* pluto-hal-device-finder (535,536) - update to use udev rather than hal.&lt;br /&gt;
* pluto-hald (529,530) - update to use udev rather than hal.&lt;br /&gt;
* pluto-system-database (211) - updates for new detection method (joystick, cec-adaptor), update dependency data for hal pks to reflect dropping hald and add depends on udev now.&lt;br /&gt;
&lt;br /&gt;
== Update 30219 ==&lt;br /&gt;
* pluto-bootscripts (234) - Fail2ban firewall update script, and missing radioscript.sh.&lt;br /&gt;
* pluto-website-admin - Place set for rules on the firewall and bantime for fail2ban integration.&lt;br /&gt;
* pluto-std-plugins (116,135) - adds heirloom-mailx for &#039;mailx -r&#039; functionality, fixes e-mail in general info plugin&lt;br /&gt;
&lt;br /&gt;
== Update 30068 ==&lt;br /&gt;
* lmce-advanced-ip-camera(813,812) - Fixed high cpu usage if connection to camera can not be made&lt;br /&gt;
&lt;br /&gt;
== Update 30052 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - fix android pkg meta data, need to rebuild all together&lt;br /&gt;
&lt;br /&gt;
== Update 30051 ==&lt;br /&gt;
* pluto-updateentarea (341,342) - use DAY/NIGHT in watching/stopped watching events to make them smarter&lt;br /&gt;
* pluto-std-plugins (116,135) - Implement Get Device Status in General Info Plugin&lt;br /&gt;
* pluto-bootscripts (234) - fix VPN ip up/down&lt;br /&gt;
&lt;br /&gt;
== Update 30025 ==&lt;br /&gt;
* pluto-system-database (211) - column def updates&lt;br /&gt;
* pluto-local-database (214) - new Firewall columns and new VPN columns for Users table.&lt;br /&gt;
&lt;br /&gt;
== Update 30014 ==&lt;br /&gt;
* lmce-transmission-client (852) - fix postinst issue.  (Thanks SBCC)&lt;br /&gt;
== Update 29994 ==&lt;br /&gt;
More VLC Player changes to make it at least somewhat usable, there were some ugly bugs that came to light once i plopped it onto my production system. Right now sound device is plughw:0,3, if you need a different one, change it in the code.  (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* lmce-vlc-player - many little fixes to make it suck less.&lt;br /&gt;
&lt;br /&gt;
== Update 29990 ==&lt;br /&gt;
I am working on the VLC player, and it is breathing enough for basic testing. Please do not use in production environment. There is still a lot of code to write (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - updates for VLC player (TSCHAK)&lt;br /&gt;
* vlc-player (882,884) - Very early alpha developer test of the VLC player. (TSCHAK)&lt;br /&gt;
* vlc-plugin (874,875) - Very alpha developer test of the VLC plugin. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 29984 ==&lt;br /&gt;
* pluto-system-database (211) - fix bad repos in pkgs&lt;br /&gt;
* pluto-website-admin - just because I think it is necessary :-)&lt;br /&gt;
&lt;br /&gt;
== Update 29983 ==&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36993</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36993"/>
		<updated>2017-05-14T16:54:43Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: /* Upcoming fixes... */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the latest changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo much easier.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please include the pkg #s to facilitate building on 3x i386 targets in addition to 2x amd64 and 3x armhf targets where full builds are not always practical.  Keep in mind that most packages are referred to by two (2) package numbers from the database, a source package and a binary package.  &amp;quot;Thank you for your co-operation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
Attaching ZFS to the install...&lt;br /&gt;
* lmce-core (888) - Add dependency for ZFS&lt;br /&gt;
* lmce-md-meta (450) - Add dependency for ZFS&lt;br /&gt;
&lt;br /&gt;
== Update 1204 i386, 1404/1604 i386/amd64 201705131304+14f85ee9 ==&lt;br /&gt;
ZFS Support Extravaganza!&lt;br /&gt;
&lt;br /&gt;
* lmce-zfs-support (937) - dependencies added below for ZFS support&lt;br /&gt;
* mountall (938) - package added for ZFS support&lt;br /&gt;
* spl (939) - package added for ZFS support&lt;br /&gt;
* spl-dkms (940) - package added for ZFS support&lt;br /&gt;
* ubuntu-zfs (941) - package added for ZFS support&lt;br /&gt;
* zfs-auto-snapshot (942) - package added for ZFS support&lt;br /&gt;
* libnvpair1 (943) - package added for ZFS support&lt;br /&gt;
* libuutil1 (944) - package added for ZFS support&lt;br /&gt;
* libzfs2 (945) - package added for ZFS support&lt;br /&gt;
* libzpool2 (946) - package added for ZFS support&lt;br /&gt;
* zfs-dkms (947) - package added for ZFS support&lt;br /&gt;
* zfs-initramfs (948) - package added for ZFS support&lt;br /&gt;
* zfsutils (949) - package added for ZFS support&lt;br /&gt;
* zfs-zed (950) - package added for ZFS support&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201705110719+14f85ee9 ==&lt;br /&gt;
* Replacement packages in ubuntu/&lt;br /&gt;
** mountall - replacement package&lt;br /&gt;
** zfs-linux - ZFS support&lt;br /&gt;
** spl-linux - SPL library for ZFS support&lt;br /&gt;
** zfs-auto-snapshot - ZFS support&lt;br /&gt;
** ubuntu-zfs - ZFS support&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201705030817+f0afe768 ==&lt;br /&gt;
* lmce-zfs-support - remove the mkr_postinst.sh right now, as that was causing problems for everybody. Will bring the ZFS code into repo.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201705030817+f0afe768 ==&lt;br /&gt;
* pluto-bootscripts (234) firewall need to work together with the vpn.&lt;br /&gt;
* lmce-asterisk (920) - db_create_dialplan.sh to add blacklist better check option on asterisk dialplan. add Voicemailmain op extension *100&lt;br /&gt;
* lmce-vlc-player (884,882) - Further work on VLC_Player&#039;s transport controls. Please test and tell me if they work better. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Addition of ZFS templates.&lt;br /&gt;
* pluto-raid-tools (617) - Additions for ZFS&lt;br /&gt;
* lmce-zfs-support (937) - NEW PACKAGE for ZFS support.&lt;br /&gt;
* pluto-storage-devices (533) - Add ZFS support to automounter.&lt;br /&gt;
* pluto-website-admin (220) - Add ZFS support to RAID pages.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201704211536+941ae691 ==&lt;br /&gt;
* pluto-website-admin (220) - Blacklist.php added for administrating asterisk blacklist of phone numbers #2691&lt;br /&gt;
* lmce-asterisk (920) - db_create_dialplan.sh to add blacklist check on asterisk dialplan.&lt;br /&gt;
* pluto-database* - GRANT to localhost as well (just 127.0.0.1 doesn&#039;t help since MySQL 5.7)&lt;br /&gt;
&lt;br /&gt;
== Update armhf 201704191739+13f4f937 ==&lt;br /&gt;
* pluto-vdr - Don&#039;t check for the existence of a Xine device in the tree. There are many ways to display VDR.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201704182328+13f4f937  ==&lt;br /&gt;
* pluto-text-to-speech - Fix for initial installation which might effect usability.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704181123+a26d414e ==&lt;br /&gt;
* pluto-security-database - Localhost or 127.0.0.1 matters for MySQL - This should be the last fix needed to get MySQL Server v5.7 sorted out - at least for the install.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704180809+9af5cc66 ==&lt;br /&gt;
* pluto-boot-scripts - Set MySqlUser name in ConfigOps if it isn&#039;t already set.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201704171950+9af5cc66 ==&lt;br /&gt;
* pluto-sqlcvs, pluto*database* - Final fixes for 1404 and 1604.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704161042+f5455665 ==&lt;br /&gt;
* pluto-sqlcvs - Now has a dependency to pluto-database-settings&lt;br /&gt;
* pluto-database-settings - all user creation happens in here&lt;br /&gt;
* pluto-database-system - no more user creation.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 - 201704151808+866a5886 ==&lt;br /&gt;
* pluto-database-settings - Takes way too long to get fixed.&lt;br /&gt;
&lt;br /&gt;
== Update 201704151034+80dd9806 ==&lt;br /&gt;
* pluto-database-settings - *grml* don&#039;t just blindly copy other peoples code.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704142323+6ad66efd ==&lt;br /&gt;
* pluto-database-settings - Put user creation into mkr_postinst_mysql instead of mkr_postinst_system. Let&#039;s hope this fixes this sucker.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 2.0.0.47.201704050752+ddbbb689 ==&lt;br /&gt;
* lmce-vlc-player (884,882) - preprocess URL to ensure that file paths with # in them play correctly.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 amd64/i386 201704041743+906d69eb ==&lt;br /&gt;
* pluto-bootscripts (234) - Typo fix for insert rule to the db. /ppp/ip-up.d/lmce-vpn-up and /ppp/ip-down.d/lmce-vpn-down works now niceley togheter with the new firewall.&lt;br /&gt;
* pluto-system-database (211) - sqlCVS commit to add Imagemagick as dependency to VLC Player, finally squashing that #($#@( start bug! (TSCHAK)&lt;br /&gt;
** Also added ir-keytable depedency to pluto-lirc-wrapper&lt;br /&gt;
** Also added generic cd and dvd icons for External Media Identifier&lt;br /&gt;
* pluto-lirc-wrapper (340,421) - Ensure that ir-keytable is cleared before lircd starts to avoid unusual behavior with remotes that use kernel event subsystem (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - Fix DVD to use cifs instead of smbfs (which has been deprecated for 10 years.)&lt;br /&gt;
* lmce-vlc-player (884,882) - bug fixes for multi room sync&lt;br /&gt;
* lmce-vlc-plugin (874,875) - bug fixes for multi room sync&lt;br /&gt;
* lmce-media-identifier (931,932) - add generic dvd and cd identification if disc can&#039;t be identified by normal means.&lt;br /&gt;
* pluto-website-admin (220) - phonelines.php shows the state of a SPA protocol phonline. And firewall.php updated preg_match to find lines on pluto.conf and change them if exists. Issue2745.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201703301804+358c1c45 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fixes Bug #2726 - Media details now work, again.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 - 201703272335+efdf6de9 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Issue #2730 - Media Plugin changes to add support for FIFO capture card playback to VLC Player (route messages to VLC Player if it exists) -TSCHAK&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue #2729, #2730 - Implement FIFO device playback for local devices similar to file playback. (TBD: recompile VLC with PVR functionality), also multi-room playback. VLC Player is now in beta. -TSCHAK&lt;br /&gt;
* lmce-vlc-plugin (874,875) - Issue #2729 - Implement multi-room playback, VLC sync listener on core, etc. VLC functionality is now beta. -TSCHAK&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201702201438+325cc736 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix for multiple cameras and Get Image command&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue 2727, Issue 2728 - Trick play overhaul and fix audio glitches when trick play is used. &lt;br /&gt;
* pluto-boot-scripts (234) - SetupAudioVideo.sh - slight change to libvlc.conf so that trick play OSD works.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1204-1404-1604/amd64 c20633ff ==&lt;br /&gt;
* pluto-website-admin (220) - Added the case for section energyGraph and sipConf, fixed permissions for mysql asteriskuser, add sql credentials for myth, change MYSQL_NUM to MYSQLI_NUM&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1404/amd64 a7c10426 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add backports so 1204 diskless create works&lt;br /&gt;
* lmce-oauth2-server (668) - initial build of lmce oauth2 server for cloud interfacing&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404/1604 i386 - 1404x64 - 201611190055+fee90f43 ==&lt;br /&gt;
* pluto-boot-scripts (234) - database upgrades&lt;br /&gt;
* pluto-orbitergen (226,227) - database upgrades&lt;br /&gt;
* pluto-pluto-main-db (201,237) - database upgrades&lt;br /&gt;
* pluto-pluto-security-db (278,277) - database upgrades&lt;br /&gt;
* lmce-asterisk (replacement) - database upgrades&lt;br /&gt;
* pluto-system-database (211) - database upgrades&lt;br /&gt;
* pluto-local-database (214) - database upgrades&lt;br /&gt;
* pluto-security-database (256) - database upgrades&lt;br /&gt;
* pluto-telecom-database (472) - database upgrades&lt;br /&gt;
* pluto-media-database (233) - database upgrades&lt;br /&gt;
* pluto-database-settings (407) - database upgrades&lt;br /&gt;
* pluto-sqlcvs (212,213) - database upgrades&lt;br /&gt;
* pluto-std-plugins (116,135) - database upgrades&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609281853+9638f5bc ==&lt;br /&gt;
* pluto-website-admin (220) - #2705 fixed syntax error.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609271106+39103855 ==&lt;br /&gt;
* pluto-website-admin (220) - Update firewall.php GUI change some fields where reset to the default values. now the db data is honored.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** don&#039;t create initramfs for Raspbian Jessie diskless filesystems.&lt;br /&gt;
** ensure firstboot runs on diskless Jessie RPis.&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** stop/start rather than restart dhcp server, it&#039;s like nuking the site from orbit... only way to be sure.&lt;br /&gt;
** Firewall blocks udp 1900 UpNP traffic from externalinterface.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609172308+325de35d ==&lt;br /&gt;
* lmce-autotag (780, 781) linuxmceTag - fix comparison issue with media type.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609131230+5eaa4671/201609131753+5eaa4671 ==&lt;br /&gt;
* pluto-boot-scripts (234) - send dhcp vendor specific options only to wired raspberry pis.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 201609102226+fda3da63 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** rpi native pxe additions/updates&lt;br /&gt;
** extend startup timeout when booting under systemd&lt;br /&gt;
* lmce-diskless-tools (627,628) - rpi native pxe additions/updates&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DT updates for rpi native pxe&lt;br /&gt;
** add Serial Number Device Data to RPi DTs&lt;br /&gt;
** sets default PK_Distro to 22 (jessie) for RPi DTs&lt;br /&gt;
** new device data for &amp;quot;Standard Energy Meter&amp;quot;&lt;br /&gt;
* pluto-std-plugins (116,135)&lt;br /&gt;
** stores energy reading in state field for Standard Energy Meter&lt;br /&gt;
** fixes dcerouter crash when searching media&lt;br /&gt;
* pluto-updatemedia (405,406) - fix segfault when a dir is attempting to be tagged directly (without a .id3)&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - don&#039;t fail pkg install if simplephone is not running.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-i386 - 1404-i386/amd64 201607240235+899786ab ==&lt;br /&gt;
* pluto-website-admin (220) - Mysqli_real_escape_string did not work. a start with ipv6 firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/i386 201607202218+14cba09a ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) - Stream Bouncing, Additional settings for location, removed debug output, queue functionality.&lt;br /&gt;
&lt;br /&gt;
== Update 201607181902+d4cec1a0 1404-i386/amd64 - 1204-i386 ==&lt;br /&gt;
* pluto-website-admin - Update to qOrbiterGenerator.php for newer PHP version&lt;br /&gt;
&lt;br /&gt;
== Update 201607161239+6d72c3f9 1404-i386/amd64 1204-i386 ==&lt;br /&gt;
* pluto-website-admin (220) - #2678 fix Warning: Invalid argument supplied for foreach() in /var/www/lmce-admin/include/dhcpd-tools/DHCPd-parse.php on line 113&lt;br /&gt;
* pluto-boot-script&lt;br /&gt;
&lt;br /&gt;
== Update 201607151016+5b5adba3 1404/i386 &amp;amp; amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule use another escape method.&lt;br /&gt;
&lt;br /&gt;
== Update 201607122332+f0fc9c6b 1404/i386 ==&lt;br /&gt;
* pluto-boot-scripts (234) - fix #2684 clients cannot access internet when firewall is disabled. &lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule.&lt;br /&gt;
&lt;br /&gt;
== Update 201607050613+601c67da 1404-i386/amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - more fixes to the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update trusty i386/amd64 201606301955+614dfa7b ==&lt;br /&gt;
* pluto-website-admin (220) - fix for outside access port 443 not uncheckable.&lt;br /&gt;
* pluto-boot-scripts (234) - fix for not dele rules from iptables from outsideAccess.php&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201606201908+31b25c52 ==&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** unicode reading/writing working properly&lt;br /&gt;
** coverart writing to tags working properly&lt;br /&gt;
** .id3 files handled by taglib instead of id3lib.&lt;br /&gt;
** General Object Frame (GEOB) reading/writing working properly (all lmce attributes are stored in id3v2 GEOB tags for .id3/.mp3 files)&lt;br /&gt;
* pluto-website-admin (220) - more updates for mysql -&amp;gt; mysqli conversion&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201605312323+08fb8202 ==&lt;br /&gt;
* pluto-website-admin (220) - fix Text Command button to honor parameters from Screen_CommandParameter&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller to fix spamming of logs with constant updates of device data.&lt;br /&gt;
&lt;br /&gt;
== Update trusty-i386/amd64 201605310531+04df53f5 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - get the stream uri from onvif camera and save it in a device data for use by other devices&lt;br /&gt;
* pluto-website-admin (220) - adate to adodb 5.20.4 and change db driver from mysql to mysqli&lt;br /&gt;
* pluto-updatemedia (405,406) - tag writing/deletion of values update&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201605261039+410242d2 ==&lt;br /&gt;
* pluto-media-database (233) - remove FatGroupBy query as it is massive and no longer required&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** FIX UpdateMedia not detecting changes in files on disk.  Fixes: UpdateMedia not reading modification times properly.&lt;br /&gt;
** improve image reading/writing for mp3/mp4 files, add image handling for asf/wma, improve track art-&amp;gt;performer/album artist matching.&lt;br /&gt;
** don&#039;t add network shares to inotify watch list&lt;br /&gt;
* pluto-system-database (211) - new qml-* pkg definitions for qorbiter&lt;br /&gt;
* pluto-plutoutils (196,197) - add fn&#039; to determine filesystem type of a file&lt;br /&gt;
* lmce-disked-interactor (897,898) - make sure we see the core and have an IP prior to attempting contact&lt;br /&gt;
* pluto-bootscripts (234) - make sure we see the core prior to continuing to boot an MD&lt;br /&gt;
* pluto-website-admin (220) - various fixes in the media page&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 - 201605171740 c6d63dc6 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3, ogg, flac, mp4, wv, wav, oga, mpc, spx, opus, tta, m4a, m4r, m4p, 3g2, m4v, wma, asf, aif, aiff, afc, aifc, ape, s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64  201605131052+2542a526 ==&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - udev rule to ignore usbhid portion of device, permits orbiter to enter screensaver&lt;br /&gt;
* pluto-bootscripts (234) - permit devices that have died 50 times to attempt to restart after a router reload. Firewall fix for manual defined chains.&lt;br /&gt;
* pluto-sound-card-scripts (579) - don&#039;t assume cardid=1, determine phoenix cardid from aplay.&lt;br /&gt;
* pluto-media-database (233) - additional AttributeType &amp;quot;Album Artist&amp;quot;&lt;br /&gt;
* lmce-media-identifier (931,932) - updates for Album Artist tag.&lt;br /&gt;
* pluto-orbiter (119,138) - updates for Album Artist tag.&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** updates for Album Artist tag&lt;br /&gt;
** fix mainMediaFileSync.php. OutsideAccess page showing the options (again). &lt;br /&gt;
** And typo fixes for issue #2643. &lt;br /&gt;
** Firewall page reload issue 2636#. Firewall gui do not show &amp;quot;NULL&amp;quot;.&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3:ogg:flac:mp4:wv:wav::oga:mpc:spx:opus:tta:m4a:m4r:m4p:3g2:m4v:wma:asf:aif:aiff:afc:aifc:ape:s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update jessie 20160427 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for RPi&lt;br /&gt;
* lmce-disked-md-rpi2 (889) - +x firstboot_md_rpi2 to ensure it&#039;s picked up properly&lt;br /&gt;
&lt;br /&gt;
== Update jessie 201604130947+0083d387 ==&lt;br /&gt;
== Update 1204/1404-i386/amd64 201604101031-0b47a986 ==&lt;br /&gt;
* pluto-website-admin, pluto-boot-scripts (220,234) - Firewall Fixes for GUI and inner working of the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603251155+a1c0f6ea ==&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - File view implemented. Fixed not being able to leave resume menu.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603222119+336464d8 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller  to fix floorplan / status being improperly updated.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t mount optical discs as HDDs&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201603220706+c3c4b899 ==&lt;br /&gt;
* lmce-md-meta (450) - for some reason this is not in the main repo&lt;br /&gt;
* lmce-media-identifier - fixed for libcdio&lt;br /&gt;
&lt;br /&gt;
== Update jessie-rpi 60faa181 ==&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - adds video resizing so UI1 can be exposed while video is playing.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 armhf 31c5d994 ==&lt;br /&gt;
== Update 1404 i386 52e39875 ==&lt;br /&gt;
* pluto-storage-devices (533) - fix ntfs detection&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 - 49a8cbf1 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - a little better device to device template mapping&lt;br /&gt;
* pluto-website-admin (220) - fix adv.zwave page and adding secure devices&lt;br /&gt;
* lmce-disked-* - update the disked md/mid meta/base/device pkgs, specific fixes for 1404 joggler&lt;br /&gt;
* lmce-json-plugin (876,877) - first time addition to the main repo&lt;br /&gt;
* libdvdid0 (replacement) - first time addition to the repo, for use by Media Identifier&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - enable disabling internal volume control, similar to how logitechmediaserver does&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1404(armhf)/jessie(rpi)-a84db86f ==&lt;br /&gt;
* lmce-launch-manager (298,299) - only update squeeze devices when running on the core, redundant elsewhere.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404-87954508 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t fail if dvdcss2 cannot be automatically installed.&lt;br /&gt;
* pluto-hald (529,530) - reinstate tty detection, seperate from usb-serial, use direct parent for udi naming.&lt;br /&gt;
* pluto-boot-scripts (234) - disable buildall, the script doesn&#039;t run so why waste time creating it.&lt;br /&gt;
* lmce-launch-manager (298,299)&lt;br /&gt;
** update squeezebox players on router reloads from Launch_Manager&lt;br /&gt;
** call Config_Device_Changes in startCoreServices to ensure everything gets its&#039; Need Configure flag reset.&lt;br /&gt;
&lt;br /&gt;
== Update a332f49a ==&lt;br /&gt;
* lmce-install-scripts (391) - fix missing quote in MD installation.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix missing &#039;fi&#039; in BootMessage.sh&lt;br /&gt;
** fix usb.1 system serial port listing/translating&lt;br /&gt;
* lmce-media-identifier (931,932) - fix segfault, CDs are identified, cd-ripping functional again&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** prioritize new conf dir over old conf dir, fix install on systems upgraded from 1204-&amp;gt;1404&lt;br /&gt;
** redirect mythweb to html/mythweb&lt;br /&gt;
* pluto-hald (529,530) - updates to serial port naming, specifically for odroid.&lt;br /&gt;
* pluto-storage-devices (533) - fix mounted drive detection and add detection for drives mounted in /proc/cmdline like rpi.&lt;br /&gt;
&lt;br /&gt;
== Update 1204=201602080446+2028f850 &amp;lt;br&amp;gt; 1404=201602071815+c31bc44f ==&lt;br /&gt;
* lmce-install-scripts (391)&lt;br /&gt;
** enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
* lmce-core (888) - enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
* pluto-storage-devices (533) - redo StorageDevices_Radar using blkid for internal HDD identification.  /dev/disk/by-path/ is not present anymore.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
** new VerifyDistro.sh script and call the script on boot.&lt;br /&gt;
*** Preventative mostly.  Intended to ease pain for those that upgrade distros.&lt;br /&gt;
*** Ensure child devices, onscreen orbiter, have the proper PK_Distro set.&lt;br /&gt;
&lt;br /&gt;
== Update 296fdcd3 ==&lt;br /&gt;
* pluto-website-admin (220) - fix depends versioning&lt;br /&gt;
* pluto-hald (529,530) - fix depends versioning&lt;br /&gt;
* pluto-boot-scripts (234) - fix depends versioning&lt;br /&gt;
* pluto-system-database (211) - fix depends versioning&lt;br /&gt;
* pluto-orbitergen (226,227) - fix depends versioning&lt;br /&gt;
* lmce-disked-md-base (801) - fix depends versioning&lt;br /&gt;
* lmce-install-scripts (391) - fix depends versioning&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix depends versioning&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix depends versioning&lt;br /&gt;
* lmce-datalogger-plugin (686,687) - fix depends versioning &lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix depends versioning&lt;br /&gt;
&lt;br /&gt;
== Update f3a444c0 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** use newer .sh script rather than obsolete .pl script for dialplan creation&lt;br /&gt;
** fix Directory listing on cisco phones&lt;br /&gt;
** fix delete buttons on internet radio page.&lt;br /&gt;
* pluto-hald (529,530)&lt;br /&gt;
** add &#039;usb&#039; to &#039;pci&#039; and &#039;platform&#039; as valid bus addresses&lt;br /&gt;
** permit adding of usb devices with usb_serial or tty children&lt;br /&gt;
* pluto-boot-scripts (234) - update SetupAudioVideo.sh to more reliably address nvidia hdmi audio outputs&lt;br /&gt;
* lmce-asterisk (replacement) - live_dangerously for now to get all the necessary Voicemail modules to load&lt;br /&gt;
* pluto-system-database (211) - new DD Number of jobs for orbiter plug-in/orbitergen&lt;br /&gt;
* pluto-boot-scripts (234) - updates to RegenOrbiter scripts for parallel job queued orbiter generation.&lt;br /&gt;
* pluto-orbitergen (226,227) - new depends on GNU parallel&lt;br /&gt;
* lmce-disked-md-base (801) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* lmce-install-scripts (391) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - remove hardcoded ip address, get from db instead.&lt;br /&gt;
* lmce-diskless-tools (627,628) - only run UpdateDebCache.sh if it is executable&lt;br /&gt;
* lmce-datalog-plugin(686,687) - fix pear install command in postinst&lt;br /&gt;
* lmce-advanced-ip-camera(812,813) - add basic onvif support (snapshot,PTZ)&lt;br /&gt;
&lt;br /&gt;
== Update 31792 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of new External_Media_Identifier, testing CDDB ids&lt;br /&gt;
&lt;br /&gt;
== Update 31783 ==&lt;br /&gt;
* pluto-libserial (190,191) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-dcecommon (192,193) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-irbase (194,195) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-plutoutils (196,197) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-vipshared (199,200) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-serializeclass (198,238) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-libbd (239,240) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-ra (247,248) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-main-db (201,237) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-media-db (254,255) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-security-db (278,277) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-sdl-helpers (346,347) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-messagetrans (398,401) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-game-db (675,676) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-windowutils (677,678) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-datalog-db (688,689) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
&lt;br /&gt;
== Update 31782 ==&lt;br /&gt;
* pluto-std-plugins - fix FK_File search inside Attribute in Media_Plugin&lt;br /&gt;
&lt;br /&gt;
== Update 31774 ==&lt;br /&gt;
* lmce-disked-mid-base (899) - fix error in postinst&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come (this should be in but apt-get is getting 404 errors)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add &amp;quot;remove failed node&amp;quot; command&lt;br /&gt;
* pluto-website-admin - add &amp;quot;remove failed node&amp;quot; command for zwave advanced page&lt;br /&gt;
&lt;br /&gt;
== Update 31760 ==&lt;br /&gt;
* lmce-disked-md-base (801) - fix another error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31757 ==&lt;br /&gt;
* lmce-core (888) - overwrite AutostartCore conf value&lt;br /&gt;
* lmce-md-meta (450) - overwrite AutostartMedia conf value&lt;br /&gt;
* lmce-mid-meta (962) - missing deb&lt;br /&gt;
* lmce-hybrid (769) - exit 0 in postinst, just to be sure&lt;br /&gt;
* lmce-disked-md-base (801) - fix error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31754 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - reconnect before send&lt;br /&gt;
&lt;br /&gt;
== Update 31752 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - remove hard coded caller id &#039;Cherryhomes, Tho&#039;, use incoming caller id.&lt;br /&gt;
&lt;br /&gt;
== Update 31750 ==&lt;br /&gt;
* pluto-website-admin (220) - fix postinst error notice on precise.&lt;br /&gt;
* pluto-boot-scripts (234) - (re)start asterisk, otherwise configuration doesn&#039;t occur and sip phones cannot register&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - force-reload apache2 after disabling mythbuntu sites&lt;br /&gt;
* lmce-md-meta (450) - don&#039;t overwrite conf values that are already set&lt;br /&gt;
* *openzwave* (replacement) - version bump, upgrade fixes to upstream files&lt;br /&gt;
&lt;br /&gt;
== Update 31744 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come&lt;br /&gt;
&lt;br /&gt;
== Update 31742 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Gui changes to not confuse people. &lt;br /&gt;
** outsideaccess works together with the firewall. &lt;br /&gt;
** phonelines note on protocol for meaning of &amp;quot;SPA&amp;quot; and a status for this protocol setting, port can be changed if needed else it will be the default (5060).&lt;br /&gt;
&lt;br /&gt;
== Update 31739 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix absolute timed events&lt;br /&gt;
&lt;br /&gt;
== Update 31723 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix nfs-premount script in default diskless image.&lt;br /&gt;
* lmce-dlna(842,843) - compatibility fixes&lt;br /&gt;
* lmce-install-scripts (391) - generate ssh keys so openssh-server can accept connections&lt;br /&gt;
* pluto-createdevice (303,304) - hide errors, specifically during initial package postinst&lt;br /&gt;
* lmce-cec-adaptor (871,872) - fix cec remotes not getting to lmce&lt;br /&gt;
&lt;br /&gt;
== Update 31693 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - Fixes #2530 - fix errors in mythtvdb synchronization scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31686 ==&lt;br /&gt;
* lmce-install-scripts (391) - deal with firstboot stuffenz&lt;br /&gt;
* pluto-system-database (211) - add proxy orbiter DT depends for generic web device&lt;br /&gt;
* pluto-website-admin (220) - order by photo file name in screen saver/photo browser&lt;br /&gt;
* pluto-boot-scripts (234) - try ubiquity before anything else, and reboot after the normal firstboot - breaks live boot on dvd atm&lt;br /&gt;
* lmce-diskless-tools (627,628) - permit i386 diskless image building on amd64 cores, ensure processes are killed in chroot before unmounting (deals with systemd for now)&lt;br /&gt;
&lt;br /&gt;
== Update 31660 ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) &lt;br /&gt;
**PS3 control screen, fix layout issue. adds seperate button group (triangle, circle, etc) and navigation arrows. Also adds power off button to properly exit screen&lt;br /&gt;
* pluto-website-admin (220) - prevent creation of extra &#039;blank&#039; network interfaces&lt;br /&gt;
&lt;br /&gt;
== Update 31655 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - close connection after use&lt;br /&gt;
* pluto-website-admin (220) - fill ServerName var if it is unset, not if it is set.&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - unify service control&lt;br /&gt;
* pluto-boot-scripts (234) - unify service control&lt;br /&gt;
* pluto-dhcpd-plugin (302) - unify service control&lt;br /&gt;
* pluto-disk-monitor (554) - unify service control&lt;br /&gt;
* pluto-mythtv-player (133,152) - unify service control&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - unify service control&lt;br /&gt;
* pluto-raid-tools (617) - unify service control&lt;br /&gt;
* pluto-storage-devices (533) - unify service control&lt;br /&gt;
* lmce-update-system (650,651) - unify service control&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - unify service control&lt;br /&gt;
* pluto-vdr-plugin (466,467) - unify service control&lt;br /&gt;
* pluto-vdr (468,469) - unify service control&lt;br /&gt;
* pluto-database-settings (407) - unify service control&lt;br /&gt;
* lmce-asterisk (replacement) - unify service control&lt;br /&gt;
* lmce-diskless-tools (627,628) - unify service control&lt;br /&gt;
* lmce-install-scripts (391) - unify service control&lt;br /&gt;
* pluto-updatemedia (405,406) - unify service control&lt;br /&gt;
* pluto-newmdinteractor (538,539) - unify service control&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - Fix size issues, floorplan popups.&lt;br /&gt;
&lt;br /&gt;
== Update 31621 ==&lt;br /&gt;
* pluto-mythtv-player (133,152) - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 31618 ==&lt;br /&gt;
* lmce-asterisk (replacement) - update db for chan_sccp-v4.2 and fix bug requiring manual asterisk reload on boot&lt;br /&gt;
&lt;br /&gt;
== Update 31615 ==&lt;br /&gt;
* pluto-* - rebuild with new libraries&lt;br /&gt;
* lmce-* - rebuild with new libraries&lt;br /&gt;
&lt;br /&gt;
== Update 31606 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix EPG data on orbiters, myth stores everything in UTC now.&lt;br /&gt;
* pluto-pluto-main-db (201,237) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-media-db (254,255) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-security-db (277,278) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-datalog-db (688,689) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-game-db (675,676) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-updateentarea (341,342) - don&#039;t send empty play command when resetting alarm&lt;br /&gt;
&lt;br /&gt;
== Update 31580 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - use bypass-event to avoid watching media events when playing alerts&lt;br /&gt;
* pluto-updateentarea (341,342) - send bypass-event with security event commands&lt;br /&gt;
* libcec3 debs (replacement) - removes conflict data with libcec2&lt;br /&gt;
&lt;br /&gt;
== Update 31575 ==&lt;br /&gt;
* lmce-asterisk (replacement) - play back alert notification file&lt;br /&gt;
* pluto-std-plugins (116,135) - create alert notification file with correct format&lt;br /&gt;
* pluto-boot-scripts (234) - fixes for nvidia drivers on precise, upgrades to nvidia-340&lt;br /&gt;
* lmce-avwizard-sounds (replacement) - don&#039;t copy fakeroot files (it is redundant it is)&lt;br /&gt;
* video-wizard-videos (replacement) - deb is back to normal size, not 2x&lt;br /&gt;
&lt;br /&gt;
== Update 31553 ==&lt;br /&gt;
* pluto-website-admin (220) - fix error that wipes out the apache2.conf&lt;br /&gt;
* pluto-hald (529,530) - fix segfaults with firewire hardware&lt;br /&gt;
&lt;br /&gt;
== Update 31547 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some API changes in OZW 1.3, more device template mappings&lt;br /&gt;
* pluto-boot-scripts (234) - typo fix for nvidia drivers&lt;br /&gt;
* lmce-disked-md-base (801) - set hostname on disked MDs, set timezone on disked MDs&lt;br /&gt;
* lmce-install-scripts (391) - set hostname on disked MDs, set timezone on disked MDs &lt;br /&gt;
* pluto-website-admin was generated---&amp;gt; lmce-website-admin (220) - set apache2 ServerName to silence error on boot&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates, revert to ruby 1.8&lt;br /&gt;
* pluto-generic-serial-device (307,335) - admit defeat for now, revert to ruby 1.8&lt;br /&gt;
&lt;br /&gt;
== Update 31533 ==&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31520 ==&lt;br /&gt;
* chan-sccp_v4.2 (replacement) - Upgrad asterisk SCCP channel driver to newest version&lt;br /&gt;
* pluto-vdr-plugin (466,467) - implement background loading of EPG from VDR to avoid crashes due to commands not completing on time&lt;br /&gt;
* pluto-boot-scripts (234) - some logic changes and added messages for video driver install debugging&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - link new channels dir to old channels dir for backwards compatibility&lt;br /&gt;
&lt;br /&gt;
== Update 31503 ==&lt;br /&gt;
* *zwave* (replacement) - new upstream openzwave version 1.3.1224&lt;br /&gt;
* lmce-zwave-ozw(505,506) - build against new libopenzwave1.3&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates&lt;br /&gt;
* lmce-disked-interactor (897,898) - make disked interactor aware of wheezy and jessie.&lt;br /&gt;
&lt;br /&gt;
== Update 31500 ==&lt;br /&gt;
* *myth* (replacement) - fix depends on non-existent packages&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst - verified installing now&lt;br /&gt;
* pluto-std-plugins (116,135) - Use integer comparison for brightness state&lt;br /&gt;
&lt;br /&gt;
== Update 31491 ==&lt;br /&gt;
* lmce-avwizard-skin-basic (replacement) - fix packaging of avwizard skin&lt;br /&gt;
* *myth* (replacement) - mythtv 0.27.5+fixes with Schedules Direct fix included&lt;br /&gt;
* *asterisk* (replacement) - asterisk 11.7 backport from trusty&lt;br /&gt;
* libical* (replacement) - for asterisk 11.7&lt;br /&gt;
* *cec* (replacement) - libcec3&lt;br /&gt;
* libplatform* (replacement) for libcec3&lt;br /&gt;
* lmce-cec-adaptor (871,872) - build against libcec3&lt;br /&gt;
* lmce-mediatomb (702) - fix pkg installation&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - update protocol version and secret word (shhh) for 0.27.5+fixes&lt;br /&gt;
* lmce-diskless-tools (627,628) - remove call to obsolete script in Diskless_Setup.sh&lt;br /&gt;
* pluto-vdr-plugin (466,467) - return full EPG (used in qOrbiter EPG Grid), improve communication speed with SVDRP&lt;br /&gt;
* pluto-slim-server-streamer (289,290) - emit time code event, fix duration parsing&lt;br /&gt;
* pluto-boot-scripts (234) - fix headless booting, update 1404 nvidia driver&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* lmce-md-meta (450) - add depends on alsa-utils&lt;br /&gt;
* pluto-website-admin (220) - Fix cdrviewer (Call Details Records) to accept SSL conections as well, firewall gui change to set Offline rules in red as they are not executed.&lt;br /&gt;
* pluto-app-server (126,145)- new poweroff mode I for ignore, since N is already in use&lt;br /&gt;
&lt;br /&gt;
== Update 31420 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add depends on pluto-boot-scripts for deb cache script&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31411 == &lt;br /&gt;
* pluto-avwizard (555,556) - fix depends on avwizard skins basic, should no longer care about version&lt;br /&gt;
* pluto-boot-scripts (234) - more explicity logic for core only booting, fix startup script db errors&lt;br /&gt;
* lmce-update-system (650,651) - remove and disable old init.d script from /etc/init.d&lt;br /&gt;
* pluto-plutodhcp (330,491) - depends on apparmor&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-dhcpd-plugin (302) - remove hardcoded IP addresses from configure scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31387 ==&lt;br /&gt;
* lmce-weather-plugin - make change to allow for tonight&#039;s forecast data (TSCHAK)&lt;br /&gt;
* lmce-asterisk (replacement) - remove obsolete phonetic engines and replace with espeak, voices remain the same&lt;br /&gt;
* mbrola (replacement) - base mbrola pkg for mbrola voices (add armhf binary)&lt;br /&gt;
* pluto-asterisk (270,271) - generate fr and de voicemail menus with espeak now&lt;br /&gt;
* lmce-core (888) - add depends on iptables&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31378 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Start_KDE.sh ownership fix, AV config updates&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-avwizard (555,556) - update pkgs &amp;amp; depends &amp;amp; config scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - do not run update deb_cache during dvd creation&lt;br /&gt;
* pluto-x-scripts (520) - fixups to Xconfigure.sh&lt;br /&gt;
&lt;br /&gt;
== Update 31356 ==&lt;br /&gt;
* pluto-system-database (211) - update depends&lt;br /&gt;
* pluto-orbiter (119,138) - update depends&lt;br /&gt;
* lmce-diskless-tools (627,628) - speedup dpkg in diskless create, fix missing quotes&lt;br /&gt;
&lt;br /&gt;
== Update 31352 ==&lt;br /&gt;
* pluto-motion-wrapper - more config file location fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 31351 ==&lt;br /&gt;
* pluto-boot-scripts (234) - change service &#039;nis&#039; to &#039;ypserv&#039;, nis is no longer a service name&lt;br /&gt;
* pluto-website-admin (220) - remove &#039;idiot&#039; text, let&#039;s be nice to people.&lt;br /&gt;
* lmce-core (888) - do not create and config under ubiquity&lt;br /&gt;
* lmce-md-meta (450) - do not create and config under ubiquity&lt;br /&gt;
* motion (replacement) - fix bad config file setting in rules&lt;br /&gt;
&lt;br /&gt;
== Update 31337 ==&lt;br /&gt;
* motion (replacement) - new version of motion to match new configuration values generated by linuxmce&lt;br /&gt;
&lt;br /&gt;
== Update 31331 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix for brightness events&lt;br /&gt;
* pluto-boot-scripts (234) - fix kdm disabling, start ubiquity after network config&lt;br /&gt;
* lmce-diskless-tools (627,628) - add upstart overrides for kdm&lt;br /&gt;
* lmce-install-scripts (391) - start ubiquity after network config&lt;br /&gt;
&lt;br /&gt;
== Update 31314 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add missing depends&lt;br /&gt;
&lt;br /&gt;
== Update 31292 ==&lt;br /&gt;
* lmce-core-locator (replacement) - (1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-system-database (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* All .debs created by MakeRelease - removal of all Pre-Depends, everything is now a Depends entry (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
== Update 31228 ==&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-local-database&lt;br /&gt;
&lt;br /&gt;
== Update 31214 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package (not in repo, need build-replacements.sh svn up&#039;d?)&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - preinst/postinst updates&lt;br /&gt;
* pluto-boot-scripts (234) - preinst/postinst updates&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-disked-md-base (801) - firstboot updates&lt;br /&gt;
&lt;br /&gt;
== Update 31187 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package&lt;br /&gt;
* pluto-confirm-dependencies (281,272) - new depends on lmce-install-scripts (fixes unable to apt-get dist-upgrade)&lt;br /&gt;
* lmce-md-meta (450) - new depends on nfs-common, openssh-server and pastebinit&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - update depends, preinst/postinst&lt;br /&gt;
* pluto-boot-scripts (234) - depends &amp;amp; preinst/postinst updates&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - add override mythweb defaults in pkg preinst&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - update depends&lt;br /&gt;
&lt;br /&gt;
== Update 31133 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** enable WakeMDs.sh to wake any halted MDs.&lt;br /&gt;
** consolidate all boot script launching to /etc/init.d/linuxmce&lt;br /&gt;
* pluto-avwizard (555,556) - moves start script to /usr/pluto/bin, called by /etc/init.d/linuxmce now&lt;br /&gt;
* lmce-update-system (650,651) - removes init.d script, called by /etc/init.d/linuxmce now&lt;br /&gt;
* pluto-website-admin (220) - GUI changes on network settings if an bridge is configured on the db.&lt;br /&gt;
* lmce-core (888) - depend on pluto-asterisk, lmce-asterisk, lmce-install-scripts&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* pluto-generic-serial-device (307,335) - wildshot attempt at fixing segfaults&lt;br /&gt;
&lt;br /&gt;
== Update 31103 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** Network bridging now possible  for wifi AP to have the same network as the local lan. &lt;br /&gt;
** ipv6 on/off for network interfaces. Read multiple ipv6 interfaces from the db.&lt;br /&gt;
** re-enable HaltMDs.&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* libqhttpserver (912) needed for linuxmce nvr&lt;br /&gt;
* lmce-launch-manager - (298,299) - ?&lt;br /&gt;
&lt;br /&gt;
== Update 31087 ==&lt;br /&gt;
* lmce-weather (838,839) - Fix a serious bug in getconfig where incorrect configuration device data would crash program. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 31083 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes #2422, advanced zwave page broken in chrome&lt;br /&gt;
* pluto-system-database (211) - thumbnail screen fixes&lt;br /&gt;
&lt;br /&gt;
== Update 31074 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** setEa2.php - Fix settings for creating entertain area.&lt;br /&gt;
** qOrbiterGenerator.php - Fix erroneous EA creation by removing it.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Fix incorrect setting for enabling / disabling motion.&lt;br /&gt;
&lt;br /&gt;
== Update 31069 ==&lt;br /&gt;
* pluto-website-admin (220) - setEa2.php Fix settings for creating entertain area.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Initial build.&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (881) - Large update of skins and internals.&lt;br /&gt;
&lt;br /&gt;
== Update 31061 ==&lt;br /&gt;
* lmce-squeezeslave (762) - Add configuration DD to command line&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DB package updates&lt;br /&gt;
** restore previous video remote layout with Options button to select subtitles/audio tracks/video tracks from a datagrid list.&lt;br /&gt;
* pluto-website-admin (220) - firewall.php edit rules for non advanced firewall and some other small fixes.&lt;br /&gt;
* lmce-asterisk (replacement) - sip config modules to avoid autoload.&lt;br /&gt;
&lt;br /&gt;
== Update 31051 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** firewall.php not adding rules now fixet.&lt;br /&gt;
** Test buttons for Hue lights&lt;br /&gt;
** Security outsideAccess page now works nicely with the new firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 31044 ==&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
&lt;br /&gt;
== Update 31031 ==&lt;br /&gt;
* pluto-website-admin (220) - firewall.php after a strange fault and some layout fixes.&lt;br /&gt;
* lmce-mediatomb (702) - don&#039;t assume mediatomb is already running.&lt;br /&gt;
&lt;br /&gt;
== Update 31013 ==&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* pluto-boot-scripts (234) - Network Parameter count for more interfaces set and Network firewall accepting postrouting Masquerade  for other network interfaces.&lt;br /&gt;
&lt;br /&gt;
== Update 30985 ==&lt;br /&gt;
* pluto-website-admin (220) - #2268 fail2ban integration logging failed user login attempt.&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** #2268 fail2ban script not insert existing rules to our db.&lt;br /&gt;
** Support for audio output select on rpi via web admin&lt;br /&gt;
* lmce-diskless-tools (627,628) - update syslinux depends to syslinux-common&lt;br /&gt;
* lmce-omx-player (829,830) - Honour audio output selection of rpiMD&lt;br /&gt;
* lmce-squeezeslave (762) - Fix detection for squeezelite&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - further fixes&lt;br /&gt;
* lmce-usb-gamepad (795,796) - rewrite the whole main loop to suck less. hold-down repeats work, input handling more sane.&lt;br /&gt;
&lt;br /&gt;
== Update 30926 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Fix for #2368 insert firewall rules en #2064 edit and delete chains (except some system chains).&lt;br /&gt;
** Support for brightness based events.&lt;br /&gt;
* pluto-std-plugins (116,135) - Support for brightness based events&lt;br /&gt;
* lmce-omx-plugin (831,832) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** Database additions for XBOX 360 Gamepad (device templates, package)&lt;br /&gt;
** Modification of OMX Plugin to allow priority to be changed.&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - the XBOX 360 Gamepad driver, uses xboxdrv userspace driver.&lt;br /&gt;
* lmce-usb-gamepad (795,796) - additions here for above XBOX 360 Gamepad support.&lt;br /&gt;
&lt;br /&gt;
== Update 30862 ==&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress can now read latest files per linuxmce user.&lt;br /&gt;
&lt;br /&gt;
== Update 30860 ==&lt;br /&gt;
* lmce-weather (838,839) - some fixes by cfernandes&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress.&lt;br /&gt;
* pluto-boot-scripts (234) - more mail fixes&lt;br /&gt;
&lt;br /&gt;
== Update 30855 ==&lt;br /&gt;
* pluto-vdr, pluto-vdr-plugin - remove hardcoding of core IP and network address, but depend on the pluto.conf entries for DCERouter.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location (again)&lt;br /&gt;
* lmce-diskless-tools - stop copying apt configs from the core&lt;br /&gt;
* pluto-boot-scripts - fix postfix setup #2393&lt;br /&gt;
&lt;br /&gt;
== Update 30841 ==&lt;br /&gt;
* lmce-avwizard-sounds - fix replaces/conflicts data&lt;br /&gt;
* lmce-skins-basic - fix replaces/conflicts data&lt;br /&gt;
* lmce-avwizard-skin-basic - fix replaces/conflicts data&lt;br /&gt;
&lt;br /&gt;
== Update 30383 ==&lt;br /&gt;
* pluto-website-admin (220) - Add Hue lights related test button.&lt;br /&gt;
* pluto-boot-scripts - Add another option --autobackup to PlutoRestorePoint.sh to allow backup of pluto_main only&lt;br /&gt;
&lt;br /&gt;
== Update 30814 ==&lt;br /&gt;
* pluto-Boot-scripts - Firewall order by place and PK_Firewall to let rules stay on top on the middle or on the bottom.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location&lt;br /&gt;
* lmce-hue-controller (862,863) - Fix bug in adding new lights, now adds serial number.&lt;br /&gt;
* pluto-website-admin (220) - Fix oops relating the missing &#039;.&#039; which caused operations/login.php not to work.&lt;br /&gt;
&lt;br /&gt;
== Update 30783 ==&lt;br /&gt;
* lmce-nbd-client-wrapper - new pkg to hold common script&lt;br /&gt;
* pluto-xine-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* lmce-vlc-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* pluto-boot-scripts - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
* pluto-storage-devices - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30777 ==&lt;br /&gt;
* lmce-core - depend on openswan&lt;br /&gt;
* pluto-system-database - pkg updates&lt;br /&gt;
* pluto-boot-scripts - remove check for openswan from bootscript&lt;br /&gt;
* pluto-generic-serial-device - update to ruby 1.9.1&lt;br /&gt;
&lt;br /&gt;
== Update 30773==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller internals to now include polling, so as to make sure floorplan data is accurate. Changes underlying mechanisms for how lights are handled in preparation for extending additional support for Cree lights and sensors devices.&lt;br /&gt;
&lt;br /&gt;
== Update 30767 ==&lt;br /&gt;
* lmce-diskless-tools - update diskless archive name to reflect current compression method xz.&lt;br /&gt;
* pluto-website-admin (220) - updates to internet radio, moves add channels to a seperate page.  Thanks Dap-P!&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
* pluto-vdr - adds missing depends on vdr in trusty&lt;br /&gt;
* lmce-core - update depends to new pkg name lmce-avwizard-sounds&lt;br /&gt;
* pluto-avwizard - update depends to new pkg name lmce-avwizard-skins-basic&lt;br /&gt;
* lmce-clock-screen-saver - make the clock screen saver use the WMController/wmctrl methods for setting window visibility to be compatible with Orbiter. (TSCHAK) (Trusty only)&lt;br /&gt;
* pluto-storage-devices - Make sure that smbpasswd is used to create or update sambahelper&#039;s password (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30726 ==&lt;br /&gt;
* pluto-vdr - VDR player&#039;s package assumed a correctly installed vdr package which includes an entry in /etc/default for vdr. We no longer fail on a missing file.&lt;br /&gt;
&lt;br /&gt;
== Update 30724 ==&lt;br /&gt;
* lmce-weather - updates to weather sources, add OpenWM source.  Thanks SBCC and cfernandes!&lt;br /&gt;
* lmce-skins-* - adds missing telecom icons, updates/adds weather icons&lt;br /&gt;
* lmce-avwizard-sounds - remove extraneous stuff from pkg, reduce pkg size back to normal.  Proper replaces/conflicts/data...&lt;br /&gt;
* lmce-avwizard-skin-basic - Proper replaces/conflicts/data...&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
&lt;br /&gt;
== Update 30718 ==&lt;br /&gt;
* lmce-core - new depends on lmce-skins*&lt;br /&gt;
* lmce-md-meta - add depends on pnp-detection scripts&lt;br /&gt;
* lmce-hybrid - new depends on lmce-skins*&lt;br /&gt;
* pluto-avwizard (556,555) - add pciutils as a depends, still need to deal with multiarch stuff so this will break armhf, we will not update armhf for now, it doesn&#039;t use avwizard but does install it.&lt;br /&gt;
* lmce-diskless-tools - minor diskless create fixups&lt;br /&gt;
* pluto-orbiter - missing depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio script&lt;br /&gt;
* pluto-website-admin (220) - recognize MIDs as top level devices&lt;br /&gt;
* pluto-mythtv-player - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 30628 ==&lt;br /&gt;
* *-database - fix install issues&lt;br /&gt;
&lt;br /&gt;
== Update 30622 ==&lt;br /&gt;
* pluto-orbiterinstallers - fix depends issue&lt;br /&gt;
* pluto-system-database - lots of compat updates&lt;br /&gt;
* lmce-* - lots of compat updates&lt;br /&gt;
* pluto-* - lots of compat updates&lt;br /&gt;
&lt;br /&gt;
== Update 30618 ==&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio scripts&lt;br /&gt;
* pluto-website-admin (220) - updated internet radio page&lt;br /&gt;
&lt;br /&gt;
== Update 30571 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - send &amp;quot;Device is turned on or off&amp;quot; event when appropriate so the corresponding event works as expected&lt;br /&gt;
* lmce-squeezeslave (762) - set to pnp create without prompting&lt;br /&gt;
* lmce-runtime-dependencies (903) - pkg to help consolidate runtime depends.&lt;br /&gt;
* lmce-core (888) - updated depends&lt;br /&gt;
* lmce-md-meta (450)- updated depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated depends&lt;br /&gt;
* pluto-createdevice (303,304) - updated depends&lt;br /&gt;
* lmce-weather(838,839) - fix potential segfault&lt;br /&gt;
* pluto-website-admin (220) - add &amp;quot;replace node&amp;quot; button to advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 30549 ==&lt;br /&gt;
* pluto-mythtv-player - fix misaligned data values during mythtv.txt creation.&lt;br /&gt;
&lt;br /&gt;
== Update 30526 ==&lt;br /&gt;
* lmce-core - new pkg&lt;br /&gt;
* lmce-hybrid - pkg depends changes&lt;br /&gt;
* lmce-md-meta - pkg depends changes&lt;br /&gt;
* pluto-dcerouter - pkg depends changes&lt;br /&gt;
* pluto-photo-screen-saver - pkg depends changes&lt;br /&gt;
* pluto-boot-scripts - pkg depends changes&lt;br /&gt;
* pluto-orbiter - pkg depends changes&lt;br /&gt;
* pluto-simplephone - pkg depends changes&lt;br /&gt;
* pluto-website-admin - pkg depends changes&lt;br /&gt;
* lmce-mythtv-scripts - pkg depends changes&lt;br /&gt;
* pluto-system-database - pkg depends changes&lt;br /&gt;
* lmce-squeezeslave (762) - fix launch script, automatically create associated squeezebox player on the core.&lt;br /&gt;
* pluto-std-plugins - run New_PnP_MD.sh for new MID devices as well.&lt;br /&gt;
* lmce-diskless-tools - don&#039;t fail on invoke-rc.d during diskless create, exit gracefully and continue.&lt;br /&gt;
* pluto-mythtv-player - fix diskless create failures due to old hacks.  more work is needed here overall on mythtv integration.&lt;br /&gt;
&lt;br /&gt;
== Update 30419 ==&lt;br /&gt;
* pluto-slim-server - Make sure to turn off all Squeeze* devices when Slim Server Streamer starts or restarts (so that squeezelite does not hog sound cards.)&lt;br /&gt;
* pluto-hald (529,530) - add device node path to pnpqueue with v4l devices during detection&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - update for new lib version&lt;br /&gt;
&lt;br /&gt;
== Update 30384 ==&lt;br /&gt;
* pluto-confirm-dependencies - depend on pluto-install-scripts.&lt;br /&gt;
* pluto-disk-drive (122,141) - remove hal bits that dealt with old jukebox bugs.&lt;br /&gt;
* pluto-capture-card-scripts (580) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-pnp-detection (562) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-storage-devices (533) - convert autofs from hal to udev.&lt;br /&gt;
* pluto-bootscripts (234) - disable starting the hald since we&#039;re using udev now, remove false &#039;fail&#039; messages during reboot/shutdown&lt;br /&gt;
* pluto-slim-server-streamer - make one tweak (do not delete m_mapStreamsToPlayers entry in CMD_Stop). Streaming now works consistently, properly, with squeezebox devices and their clones. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30354 ==&lt;br /&gt;
* pluto-hald (529,530) - fix attempt to fire event for child device of usb-dongle.&lt;br /&gt;
* pluto-slim-server-streamer - Implement FF/REW (transport) trick-play control for Squeeze* devices. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30341 ==&lt;br /&gt;
* pluto-bootscripst - fixes for PPPoE users to not autostart the external interface.&lt;br /&gt;
* pluto-slim-server-streamer - Fix to power off squeezebox player when stream is not in use. This allows softsqueeze/squeezeslave/squeezelite players to let go of a sound device, when not in use (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30332 ==&lt;br /&gt;
* pluto-orbiter (118,139) - disable old hid device functionality.  Anyone who needs it can request a special build which will be provided at no extra charge. ;)&lt;br /&gt;
* pluto-bootscripts (234) - disable Gamepad Radar, functionality now in hal through udev&lt;br /&gt;
* pluto-avwizard (556,555) - fixes mangling of RemoteCmd when &amp;gt;1 remote is detected.&lt;br /&gt;
* pluto-hal-device-finder (535,536) - update to use udev rather than hal.&lt;br /&gt;
* pluto-hald (529,530) - update to use udev rather than hal.&lt;br /&gt;
* pluto-system-database (211) - updates for new detection method (joystick, cec-adaptor), update dependency data for hal pks to reflect dropping hald and add depends on udev now.&lt;br /&gt;
&lt;br /&gt;
== Update 30219 ==&lt;br /&gt;
* pluto-bootscripts (234) - Fail2ban firewall update script, and missing radioscript.sh.&lt;br /&gt;
* pluto-website-admin - Place set for rules on the firewall and bantime for fail2ban integration.&lt;br /&gt;
* pluto-std-plugins (116,135) - adds heirloom-mailx for &#039;mailx -r&#039; functionality, fixes e-mail in general info plugin&lt;br /&gt;
&lt;br /&gt;
== Update 30068 ==&lt;br /&gt;
* lmce-advanced-ip-camera(813,812) - Fixed high cpu usage if connection to camera can not be made&lt;br /&gt;
&lt;br /&gt;
== Update 30052 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - fix android pkg meta data, need to rebuild all together&lt;br /&gt;
&lt;br /&gt;
== Update 30051 ==&lt;br /&gt;
* pluto-updateentarea (341,342) - use DAY/NIGHT in watching/stopped watching events to make them smarter&lt;br /&gt;
* pluto-std-plugins (116,135) - Implement Get Device Status in General Info Plugin&lt;br /&gt;
* pluto-bootscripts (234) - fix VPN ip up/down&lt;br /&gt;
&lt;br /&gt;
== Update 30025 ==&lt;br /&gt;
* pluto-system-database (211) - column def updates&lt;br /&gt;
* pluto-local-database (214) - new Firewall columns and new VPN columns for Users table.&lt;br /&gt;
&lt;br /&gt;
== Update 30014 ==&lt;br /&gt;
* lmce-transmission-client (852) - fix postinst issue.  (Thanks SBCC)&lt;br /&gt;
== Update 29994 ==&lt;br /&gt;
More VLC Player changes to make it at least somewhat usable, there were some ugly bugs that came to light once i plopped it onto my production system. Right now sound device is plughw:0,3, if you need a different one, change it in the code.  (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* lmce-vlc-player - many little fixes to make it suck less.&lt;br /&gt;
&lt;br /&gt;
== Update 29990 ==&lt;br /&gt;
I am working on the VLC player, and it is breathing enough for basic testing. Please do not use in production environment. There is still a lot of code to write (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - updates for VLC player (TSCHAK)&lt;br /&gt;
* vlc-player (882,884) - Very early alpha developer test of the VLC player. (TSCHAK)&lt;br /&gt;
* vlc-plugin (874,875) - Very alpha developer test of the VLC plugin. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 29984 ==&lt;br /&gt;
* pluto-system-database (211) - fix bad repos in pkgs&lt;br /&gt;
* pluto-website-admin - just because I think it is necessary :-)&lt;br /&gt;
&lt;br /&gt;
== Update 29983 ==&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36990</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36990"/>
		<updated>2017-05-12T22:47:05Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: /* Upcoming fixes... */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the latest changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo much easier.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please include the pkg #s to facilitate building on 3x i386 targets in addition to 2x amd64 and 3x armhf targets where full builds are not always practical.  Keep in mind that most packages are referred to by two (2) package numbers from the database, a source package and a binary package.  &amp;quot;Thank you for your co-operation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
ZFS Support Extravaganza!&lt;br /&gt;
&lt;br /&gt;
* lmce-zfs-support (937) - dependencies added below for ZFS support&lt;br /&gt;
* mountall (938) - package added for ZFS support&lt;br /&gt;
* spl (939) - package added for ZFS support&lt;br /&gt;
* spl-dkms (940) - package added for ZFS support&lt;br /&gt;
* ubuntu-zfs (941) - package added for ZFS support&lt;br /&gt;
* zfs-auto-snapshot (942) - package added for ZFS support&lt;br /&gt;
* libnvpair1 (943) - package added for ZFS support&lt;br /&gt;
* libuutil1 (944) - package added for ZFS support&lt;br /&gt;
* libzfs2 (945) - package added for ZFS support&lt;br /&gt;
* libzpool2 (946) - package added for ZFS support&lt;br /&gt;
* zfs-dkms (947) - package added for ZFS support&lt;br /&gt;
* zfs-initramfs (948) - package added for ZFS support&lt;br /&gt;
* zfsutils (949) - package added for ZFS support&lt;br /&gt;
* zfs-zed (950) - package added for ZFS support&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201705110719+14f85ee9 ==&lt;br /&gt;
* Replacement packages in ubuntu/&lt;br /&gt;
** mountall - replacement package&lt;br /&gt;
** zfs-linux - ZFS support&lt;br /&gt;
** spl-linux - SPL library for ZFS support&lt;br /&gt;
** zfs-auto-snapshot - ZFS support&lt;br /&gt;
** ubuntu-zfs - ZFS support&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201705030817+f0afe768 ==&lt;br /&gt;
* lmce-zfs-support - remove the mkr_postinst.sh right now, as that was causing problems for everybody. Will bring the ZFS code into repo.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201705030817+f0afe768 ==&lt;br /&gt;
* pluto-bootscripts (234) firewall need to work together with the vpn.&lt;br /&gt;
* lmce-asterisk (920) - db_create_dialplan.sh to add blacklist better check option on asterisk dialplan. add Voicemailmain op extension *100&lt;br /&gt;
* lmce-vlc-player (884,882) - Further work on VLC_Player&#039;s transport controls. Please test and tell me if they work better. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Addition of ZFS templates.&lt;br /&gt;
* pluto-raid-tools (617) - Additions for ZFS&lt;br /&gt;
* lmce-zfs-support (937) - NEW PACKAGE for ZFS support.&lt;br /&gt;
* pluto-storage-devices (533) - Add ZFS support to automounter.&lt;br /&gt;
* pluto-website-admin (220) - Add ZFS support to RAID pages.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201704211536+941ae691 ==&lt;br /&gt;
* pluto-website-admin (220) - Blacklist.php added for administrating asterisk blacklist of phone numbers #2691&lt;br /&gt;
* lmce-asterisk (920) - db_create_dialplan.sh to add blacklist check on asterisk dialplan.&lt;br /&gt;
* pluto-database* - GRANT to localhost as well (just 127.0.0.1 doesn&#039;t help since MySQL 5.7)&lt;br /&gt;
&lt;br /&gt;
== Update armhf 201704191739+13f4f937 ==&lt;br /&gt;
* pluto-vdr - Don&#039;t check for the existence of a Xine device in the tree. There are many ways to display VDR.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201704182328+13f4f937  ==&lt;br /&gt;
* pluto-text-to-speech - Fix for initial installation which might effect usability.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704181123+a26d414e ==&lt;br /&gt;
* pluto-security-database - Localhost or 127.0.0.1 matters for MySQL - This should be the last fix needed to get MySQL Server v5.7 sorted out - at least for the install.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704180809+9af5cc66 ==&lt;br /&gt;
* pluto-boot-scripts - Set MySqlUser name in ConfigOps if it isn&#039;t already set.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201704171950+9af5cc66 ==&lt;br /&gt;
* pluto-sqlcvs, pluto*database* - Final fixes for 1404 and 1604.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704161042+f5455665 ==&lt;br /&gt;
* pluto-sqlcvs - Now has a dependency to pluto-database-settings&lt;br /&gt;
* pluto-database-settings - all user creation happens in here&lt;br /&gt;
* pluto-database-system - no more user creation.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 - 201704151808+866a5886 ==&lt;br /&gt;
* pluto-database-settings - Takes way too long to get fixed.&lt;br /&gt;
&lt;br /&gt;
== Update 201704151034+80dd9806 ==&lt;br /&gt;
* pluto-database-settings - *grml* don&#039;t just blindly copy other peoples code.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704142323+6ad66efd ==&lt;br /&gt;
* pluto-database-settings - Put user creation into mkr_postinst_mysql instead of mkr_postinst_system. Let&#039;s hope this fixes this sucker.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 2.0.0.47.201704050752+ddbbb689 ==&lt;br /&gt;
* lmce-vlc-player (884,882) - preprocess URL to ensure that file paths with # in them play correctly.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 amd64/i386 201704041743+906d69eb ==&lt;br /&gt;
* pluto-bootscripts (234) - Typo fix for insert rule to the db. /ppp/ip-up.d/lmce-vpn-up and /ppp/ip-down.d/lmce-vpn-down works now niceley togheter with the new firewall.&lt;br /&gt;
* pluto-system-database (211) - sqlCVS commit to add Imagemagick as dependency to VLC Player, finally squashing that #($#@( start bug! (TSCHAK)&lt;br /&gt;
** Also added ir-keytable depedency to pluto-lirc-wrapper&lt;br /&gt;
** Also added generic cd and dvd icons for External Media Identifier&lt;br /&gt;
* pluto-lirc-wrapper (340,421) - Ensure that ir-keytable is cleared before lircd starts to avoid unusual behavior with remotes that use kernel event subsystem (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - Fix DVD to use cifs instead of smbfs (which has been deprecated for 10 years.)&lt;br /&gt;
* lmce-vlc-player (884,882) - bug fixes for multi room sync&lt;br /&gt;
* lmce-vlc-plugin (874,875) - bug fixes for multi room sync&lt;br /&gt;
* lmce-media-identifier (931,932) - add generic dvd and cd identification if disc can&#039;t be identified by normal means.&lt;br /&gt;
* pluto-website-admin (220) - phonelines.php shows the state of a SPA protocol phonline. And firewall.php updated preg_match to find lines on pluto.conf and change them if exists. Issue2745.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201703301804+358c1c45 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fixes Bug #2726 - Media details now work, again.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 - 201703272335+efdf6de9 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Issue #2730 - Media Plugin changes to add support for FIFO capture card playback to VLC Player (route messages to VLC Player if it exists) -TSCHAK&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue #2729, #2730 - Implement FIFO device playback for local devices similar to file playback. (TBD: recompile VLC with PVR functionality), also multi-room playback. VLC Player is now in beta. -TSCHAK&lt;br /&gt;
* lmce-vlc-plugin (874,875) - Issue #2729 - Implement multi-room playback, VLC sync listener on core, etc. VLC functionality is now beta. -TSCHAK&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201702201438+325cc736 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix for multiple cameras and Get Image command&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue 2727, Issue 2728 - Trick play overhaul and fix audio glitches when trick play is used. &lt;br /&gt;
* pluto-boot-scripts (234) - SetupAudioVideo.sh - slight change to libvlc.conf so that trick play OSD works.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1204-1404-1604/amd64 c20633ff ==&lt;br /&gt;
* pluto-website-admin (220) - Added the case for section energyGraph and sipConf, fixed permissions for mysql asteriskuser, add sql credentials for myth, change MYSQL_NUM to MYSQLI_NUM&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1404/amd64 a7c10426 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add backports so 1204 diskless create works&lt;br /&gt;
* lmce-oauth2-server (668) - initial build of lmce oauth2 server for cloud interfacing&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404/1604 i386 - 1404x64 - 201611190055+fee90f43 ==&lt;br /&gt;
* pluto-boot-scripts (234) - database upgrades&lt;br /&gt;
* pluto-orbitergen (226,227) - database upgrades&lt;br /&gt;
* pluto-pluto-main-db (201,237) - database upgrades&lt;br /&gt;
* pluto-pluto-security-db (278,277) - database upgrades&lt;br /&gt;
* lmce-asterisk (replacement) - database upgrades&lt;br /&gt;
* pluto-system-database (211) - database upgrades&lt;br /&gt;
* pluto-local-database (214) - database upgrades&lt;br /&gt;
* pluto-security-database (256) - database upgrades&lt;br /&gt;
* pluto-telecom-database (472) - database upgrades&lt;br /&gt;
* pluto-media-database (233) - database upgrades&lt;br /&gt;
* pluto-database-settings (407) - database upgrades&lt;br /&gt;
* pluto-sqlcvs (212,213) - database upgrades&lt;br /&gt;
* pluto-std-plugins (116,135) - database upgrades&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609281853+9638f5bc ==&lt;br /&gt;
* pluto-website-admin (220) - #2705 fixed syntax error.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609271106+39103855 ==&lt;br /&gt;
* pluto-website-admin (220) - Update firewall.php GUI change some fields where reset to the default values. now the db data is honored.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** don&#039;t create initramfs for Raspbian Jessie diskless filesystems.&lt;br /&gt;
** ensure firstboot runs on diskless Jessie RPis.&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** stop/start rather than restart dhcp server, it&#039;s like nuking the site from orbit... only way to be sure.&lt;br /&gt;
** Firewall blocks udp 1900 UpNP traffic from externalinterface.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609172308+325de35d ==&lt;br /&gt;
* lmce-autotag (780, 781) linuxmceTag - fix comparison issue with media type.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609131230+5eaa4671/201609131753+5eaa4671 ==&lt;br /&gt;
* pluto-boot-scripts (234) - send dhcp vendor specific options only to wired raspberry pis.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 201609102226+fda3da63 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** rpi native pxe additions/updates&lt;br /&gt;
** extend startup timeout when booting under systemd&lt;br /&gt;
* lmce-diskless-tools (627,628) - rpi native pxe additions/updates&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DT updates for rpi native pxe&lt;br /&gt;
** add Serial Number Device Data to RPi DTs&lt;br /&gt;
** sets default PK_Distro to 22 (jessie) for RPi DTs&lt;br /&gt;
** new device data for &amp;quot;Standard Energy Meter&amp;quot;&lt;br /&gt;
* pluto-std-plugins (116,135)&lt;br /&gt;
** stores energy reading in state field for Standard Energy Meter&lt;br /&gt;
** fixes dcerouter crash when searching media&lt;br /&gt;
* pluto-updatemedia (405,406) - fix segfault when a dir is attempting to be tagged directly (without a .id3)&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - don&#039;t fail pkg install if simplephone is not running.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-i386 - 1404-i386/amd64 201607240235+899786ab ==&lt;br /&gt;
* pluto-website-admin (220) - Mysqli_real_escape_string did not work. a start with ipv6 firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/i386 201607202218+14cba09a ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) - Stream Bouncing, Additional settings for location, removed debug output, queue functionality.&lt;br /&gt;
&lt;br /&gt;
== Update 201607181902+d4cec1a0 1404-i386/amd64 - 1204-i386 ==&lt;br /&gt;
* pluto-website-admin - Update to qOrbiterGenerator.php for newer PHP version&lt;br /&gt;
&lt;br /&gt;
== Update 201607161239+6d72c3f9 1404-i386/amd64 1204-i386 ==&lt;br /&gt;
* pluto-website-admin (220) - #2678 fix Warning: Invalid argument supplied for foreach() in /var/www/lmce-admin/include/dhcpd-tools/DHCPd-parse.php on line 113&lt;br /&gt;
* pluto-boot-script&lt;br /&gt;
&lt;br /&gt;
== Update 201607151016+5b5adba3 1404/i386 &amp;amp; amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule use another escape method.&lt;br /&gt;
&lt;br /&gt;
== Update 201607122332+f0fc9c6b 1404/i386 ==&lt;br /&gt;
* pluto-boot-scripts (234) - fix #2684 clients cannot access internet when firewall is disabled. &lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule.&lt;br /&gt;
&lt;br /&gt;
== Update 201607050613+601c67da 1404-i386/amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - more fixes to the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update trusty i386/amd64 201606301955+614dfa7b ==&lt;br /&gt;
* pluto-website-admin (220) - fix for outside access port 443 not uncheckable.&lt;br /&gt;
* pluto-boot-scripts (234) - fix for not dele rules from iptables from outsideAccess.php&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201606201908+31b25c52 ==&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** unicode reading/writing working properly&lt;br /&gt;
** coverart writing to tags working properly&lt;br /&gt;
** .id3 files handled by taglib instead of id3lib.&lt;br /&gt;
** General Object Frame (GEOB) reading/writing working properly (all lmce attributes are stored in id3v2 GEOB tags for .id3/.mp3 files)&lt;br /&gt;
* pluto-website-admin (220) - more updates for mysql -&amp;gt; mysqli conversion&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201605312323+08fb8202 ==&lt;br /&gt;
* pluto-website-admin (220) - fix Text Command button to honor parameters from Screen_CommandParameter&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller to fix spamming of logs with constant updates of device data.&lt;br /&gt;
&lt;br /&gt;
== Update trusty-i386/amd64 201605310531+04df53f5 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - get the stream uri from onvif camera and save it in a device data for use by other devices&lt;br /&gt;
* pluto-website-admin (220) - adate to adodb 5.20.4 and change db driver from mysql to mysqli&lt;br /&gt;
* pluto-updatemedia (405,406) - tag writing/deletion of values update&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201605261039+410242d2 ==&lt;br /&gt;
* pluto-media-database (233) - remove FatGroupBy query as it is massive and no longer required&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** FIX UpdateMedia not detecting changes in files on disk.  Fixes: UpdateMedia not reading modification times properly.&lt;br /&gt;
** improve image reading/writing for mp3/mp4 files, add image handling for asf/wma, improve track art-&amp;gt;performer/album artist matching.&lt;br /&gt;
** don&#039;t add network shares to inotify watch list&lt;br /&gt;
* pluto-system-database (211) - new qml-* pkg definitions for qorbiter&lt;br /&gt;
* pluto-plutoutils (196,197) - add fn&#039; to determine filesystem type of a file&lt;br /&gt;
* lmce-disked-interactor (897,898) - make sure we see the core and have an IP prior to attempting contact&lt;br /&gt;
* pluto-bootscripts (234) - make sure we see the core prior to continuing to boot an MD&lt;br /&gt;
* pluto-website-admin (220) - various fixes in the media page&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 - 201605171740 c6d63dc6 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3, ogg, flac, mp4, wv, wav, oga, mpc, spx, opus, tta, m4a, m4r, m4p, 3g2, m4v, wma, asf, aif, aiff, afc, aifc, ape, s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64  201605131052+2542a526 ==&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - udev rule to ignore usbhid portion of device, permits orbiter to enter screensaver&lt;br /&gt;
* pluto-bootscripts (234) - permit devices that have died 50 times to attempt to restart after a router reload. Firewall fix for manual defined chains.&lt;br /&gt;
* pluto-sound-card-scripts (579) - don&#039;t assume cardid=1, determine phoenix cardid from aplay.&lt;br /&gt;
* pluto-media-database (233) - additional AttributeType &amp;quot;Album Artist&amp;quot;&lt;br /&gt;
* lmce-media-identifier (931,932) - updates for Album Artist tag.&lt;br /&gt;
* pluto-orbiter (119,138) - updates for Album Artist tag.&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** updates for Album Artist tag&lt;br /&gt;
** fix mainMediaFileSync.php. OutsideAccess page showing the options (again). &lt;br /&gt;
** And typo fixes for issue #2643. &lt;br /&gt;
** Firewall page reload issue 2636#. Firewall gui do not show &amp;quot;NULL&amp;quot;.&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3:ogg:flac:mp4:wv:wav::oga:mpc:spx:opus:tta:m4a:m4r:m4p:3g2:m4v:wma:asf:aif:aiff:afc:aifc:ape:s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update jessie 20160427 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for RPi&lt;br /&gt;
* lmce-disked-md-rpi2 (889) - +x firstboot_md_rpi2 to ensure it&#039;s picked up properly&lt;br /&gt;
&lt;br /&gt;
== Update jessie 201604130947+0083d387 ==&lt;br /&gt;
== Update 1204/1404-i386/amd64 201604101031-0b47a986 ==&lt;br /&gt;
* pluto-website-admin, pluto-boot-scripts (220,234) - Firewall Fixes for GUI and inner working of the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603251155+a1c0f6ea ==&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - File view implemented. Fixed not being able to leave resume menu.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603222119+336464d8 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller  to fix floorplan / status being improperly updated.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t mount optical discs as HDDs&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201603220706+c3c4b899 ==&lt;br /&gt;
* lmce-md-meta (450) - for some reason this is not in the main repo&lt;br /&gt;
* lmce-media-identifier - fixed for libcdio&lt;br /&gt;
&lt;br /&gt;
== Update jessie-rpi 60faa181 ==&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - adds video resizing so UI1 can be exposed while video is playing.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 armhf 31c5d994 ==&lt;br /&gt;
== Update 1404 i386 52e39875 ==&lt;br /&gt;
* pluto-storage-devices (533) - fix ntfs detection&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 - 49a8cbf1 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - a little better device to device template mapping&lt;br /&gt;
* pluto-website-admin (220) - fix adv.zwave page and adding secure devices&lt;br /&gt;
* lmce-disked-* - update the disked md/mid meta/base/device pkgs, specific fixes for 1404 joggler&lt;br /&gt;
* lmce-json-plugin (876,877) - first time addition to the main repo&lt;br /&gt;
* libdvdid0 (replacement) - first time addition to the repo, for use by Media Identifier&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - enable disabling internal volume control, similar to how logitechmediaserver does&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1404(armhf)/jessie(rpi)-a84db86f ==&lt;br /&gt;
* lmce-launch-manager (298,299) - only update squeeze devices when running on the core, redundant elsewhere.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404-87954508 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t fail if dvdcss2 cannot be automatically installed.&lt;br /&gt;
* pluto-hald (529,530) - reinstate tty detection, seperate from usb-serial, use direct parent for udi naming.&lt;br /&gt;
* pluto-boot-scripts (234) - disable buildall, the script doesn&#039;t run so why waste time creating it.&lt;br /&gt;
* lmce-launch-manager (298,299)&lt;br /&gt;
** update squeezebox players on router reloads from Launch_Manager&lt;br /&gt;
** call Config_Device_Changes in startCoreServices to ensure everything gets its&#039; Need Configure flag reset.&lt;br /&gt;
&lt;br /&gt;
== Update a332f49a ==&lt;br /&gt;
* lmce-install-scripts (391) - fix missing quote in MD installation.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix missing &#039;fi&#039; in BootMessage.sh&lt;br /&gt;
** fix usb.1 system serial port listing/translating&lt;br /&gt;
* lmce-media-identifier (931,932) - fix segfault, CDs are identified, cd-ripping functional again&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** prioritize new conf dir over old conf dir, fix install on systems upgraded from 1204-&amp;gt;1404&lt;br /&gt;
** redirect mythweb to html/mythweb&lt;br /&gt;
* pluto-hald (529,530) - updates to serial port naming, specifically for odroid.&lt;br /&gt;
* pluto-storage-devices (533) - fix mounted drive detection and add detection for drives mounted in /proc/cmdline like rpi.&lt;br /&gt;
&lt;br /&gt;
== Update 1204=201602080446+2028f850 &amp;lt;br&amp;gt; 1404=201602071815+c31bc44f ==&lt;br /&gt;
* lmce-install-scripts (391)&lt;br /&gt;
** enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
* lmce-core (888) - enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
* pluto-storage-devices (533) - redo StorageDevices_Radar using blkid for internal HDD identification.  /dev/disk/by-path/ is not present anymore.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
** new VerifyDistro.sh script and call the script on boot.&lt;br /&gt;
*** Preventative mostly.  Intended to ease pain for those that upgrade distros.&lt;br /&gt;
*** Ensure child devices, onscreen orbiter, have the proper PK_Distro set.&lt;br /&gt;
&lt;br /&gt;
== Update 296fdcd3 ==&lt;br /&gt;
* pluto-website-admin (220) - fix depends versioning&lt;br /&gt;
* pluto-hald (529,530) - fix depends versioning&lt;br /&gt;
* pluto-boot-scripts (234) - fix depends versioning&lt;br /&gt;
* pluto-system-database (211) - fix depends versioning&lt;br /&gt;
* pluto-orbitergen (226,227) - fix depends versioning&lt;br /&gt;
* lmce-disked-md-base (801) - fix depends versioning&lt;br /&gt;
* lmce-install-scripts (391) - fix depends versioning&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix depends versioning&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix depends versioning&lt;br /&gt;
* lmce-datalogger-plugin (686,687) - fix depends versioning &lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix depends versioning&lt;br /&gt;
&lt;br /&gt;
== Update f3a444c0 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** use newer .sh script rather than obsolete .pl script for dialplan creation&lt;br /&gt;
** fix Directory listing on cisco phones&lt;br /&gt;
** fix delete buttons on internet radio page.&lt;br /&gt;
* pluto-hald (529,530)&lt;br /&gt;
** add &#039;usb&#039; to &#039;pci&#039; and &#039;platform&#039; as valid bus addresses&lt;br /&gt;
** permit adding of usb devices with usb_serial or tty children&lt;br /&gt;
* pluto-boot-scripts (234) - update SetupAudioVideo.sh to more reliably address nvidia hdmi audio outputs&lt;br /&gt;
* lmce-asterisk (replacement) - live_dangerously for now to get all the necessary Voicemail modules to load&lt;br /&gt;
* pluto-system-database (211) - new DD Number of jobs for orbiter plug-in/orbitergen&lt;br /&gt;
* pluto-boot-scripts (234) - updates to RegenOrbiter scripts for parallel job queued orbiter generation.&lt;br /&gt;
* pluto-orbitergen (226,227) - new depends on GNU parallel&lt;br /&gt;
* lmce-disked-md-base (801) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* lmce-install-scripts (391) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - remove hardcoded ip address, get from db instead.&lt;br /&gt;
* lmce-diskless-tools (627,628) - only run UpdateDebCache.sh if it is executable&lt;br /&gt;
* lmce-datalog-plugin(686,687) - fix pear install command in postinst&lt;br /&gt;
* lmce-advanced-ip-camera(812,813) - add basic onvif support (snapshot,PTZ)&lt;br /&gt;
&lt;br /&gt;
== Update 31792 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of new External_Media_Identifier, testing CDDB ids&lt;br /&gt;
&lt;br /&gt;
== Update 31783 ==&lt;br /&gt;
* pluto-libserial (190,191) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-dcecommon (192,193) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-irbase (194,195) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-plutoutils (196,197) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-vipshared (199,200) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-serializeclass (198,238) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-libbd (239,240) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-ra (247,248) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-main-db (201,237) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-media-db (254,255) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-security-db (278,277) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-sdl-helpers (346,347) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-messagetrans (398,401) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-game-db (675,676) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-windowutils (677,678) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-datalog-db (688,689) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
&lt;br /&gt;
== Update 31782 ==&lt;br /&gt;
* pluto-std-plugins - fix FK_File search inside Attribute in Media_Plugin&lt;br /&gt;
&lt;br /&gt;
== Update 31774 ==&lt;br /&gt;
* lmce-disked-mid-base (899) - fix error in postinst&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come (this should be in but apt-get is getting 404 errors)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add &amp;quot;remove failed node&amp;quot; command&lt;br /&gt;
* pluto-website-admin - add &amp;quot;remove failed node&amp;quot; command for zwave advanced page&lt;br /&gt;
&lt;br /&gt;
== Update 31760 ==&lt;br /&gt;
* lmce-disked-md-base (801) - fix another error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31757 ==&lt;br /&gt;
* lmce-core (888) - overwrite AutostartCore conf value&lt;br /&gt;
* lmce-md-meta (450) - overwrite AutostartMedia conf value&lt;br /&gt;
* lmce-mid-meta (962) - missing deb&lt;br /&gt;
* lmce-hybrid (769) - exit 0 in postinst, just to be sure&lt;br /&gt;
* lmce-disked-md-base (801) - fix error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31754 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - reconnect before send&lt;br /&gt;
&lt;br /&gt;
== Update 31752 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - remove hard coded caller id &#039;Cherryhomes, Tho&#039;, use incoming caller id.&lt;br /&gt;
&lt;br /&gt;
== Update 31750 ==&lt;br /&gt;
* pluto-website-admin (220) - fix postinst error notice on precise.&lt;br /&gt;
* pluto-boot-scripts (234) - (re)start asterisk, otherwise configuration doesn&#039;t occur and sip phones cannot register&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - force-reload apache2 after disabling mythbuntu sites&lt;br /&gt;
* lmce-md-meta (450) - don&#039;t overwrite conf values that are already set&lt;br /&gt;
* *openzwave* (replacement) - version bump, upgrade fixes to upstream files&lt;br /&gt;
&lt;br /&gt;
== Update 31744 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come&lt;br /&gt;
&lt;br /&gt;
== Update 31742 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Gui changes to not confuse people. &lt;br /&gt;
** outsideaccess works together with the firewall. &lt;br /&gt;
** phonelines note on protocol for meaning of &amp;quot;SPA&amp;quot; and a status for this protocol setting, port can be changed if needed else it will be the default (5060).&lt;br /&gt;
&lt;br /&gt;
== Update 31739 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix absolute timed events&lt;br /&gt;
&lt;br /&gt;
== Update 31723 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix nfs-premount script in default diskless image.&lt;br /&gt;
* lmce-dlna(842,843) - compatibility fixes&lt;br /&gt;
* lmce-install-scripts (391) - generate ssh keys so openssh-server can accept connections&lt;br /&gt;
* pluto-createdevice (303,304) - hide errors, specifically during initial package postinst&lt;br /&gt;
* lmce-cec-adaptor (871,872) - fix cec remotes not getting to lmce&lt;br /&gt;
&lt;br /&gt;
== Update 31693 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - Fixes #2530 - fix errors in mythtvdb synchronization scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31686 ==&lt;br /&gt;
* lmce-install-scripts (391) - deal with firstboot stuffenz&lt;br /&gt;
* pluto-system-database (211) - add proxy orbiter DT depends for generic web device&lt;br /&gt;
* pluto-website-admin (220) - order by photo file name in screen saver/photo browser&lt;br /&gt;
* pluto-boot-scripts (234) - try ubiquity before anything else, and reboot after the normal firstboot - breaks live boot on dvd atm&lt;br /&gt;
* lmce-diskless-tools (627,628) - permit i386 diskless image building on amd64 cores, ensure processes are killed in chroot before unmounting (deals with systemd for now)&lt;br /&gt;
&lt;br /&gt;
== Update 31660 ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) &lt;br /&gt;
**PS3 control screen, fix layout issue. adds seperate button group (triangle, circle, etc) and navigation arrows. Also adds power off button to properly exit screen&lt;br /&gt;
* pluto-website-admin (220) - prevent creation of extra &#039;blank&#039; network interfaces&lt;br /&gt;
&lt;br /&gt;
== Update 31655 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - close connection after use&lt;br /&gt;
* pluto-website-admin (220) - fill ServerName var if it is unset, not if it is set.&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - unify service control&lt;br /&gt;
* pluto-boot-scripts (234) - unify service control&lt;br /&gt;
* pluto-dhcpd-plugin (302) - unify service control&lt;br /&gt;
* pluto-disk-monitor (554) - unify service control&lt;br /&gt;
* pluto-mythtv-player (133,152) - unify service control&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - unify service control&lt;br /&gt;
* pluto-raid-tools (617) - unify service control&lt;br /&gt;
* pluto-storage-devices (533) - unify service control&lt;br /&gt;
* lmce-update-system (650,651) - unify service control&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - unify service control&lt;br /&gt;
* pluto-vdr-plugin (466,467) - unify service control&lt;br /&gt;
* pluto-vdr (468,469) - unify service control&lt;br /&gt;
* pluto-database-settings (407) - unify service control&lt;br /&gt;
* lmce-asterisk (replacement) - unify service control&lt;br /&gt;
* lmce-diskless-tools (627,628) - unify service control&lt;br /&gt;
* lmce-install-scripts (391) - unify service control&lt;br /&gt;
* pluto-updatemedia (405,406) - unify service control&lt;br /&gt;
* pluto-newmdinteractor (538,539) - unify service control&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - Fix size issues, floorplan popups.&lt;br /&gt;
&lt;br /&gt;
== Update 31621 ==&lt;br /&gt;
* pluto-mythtv-player (133,152) - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 31618 ==&lt;br /&gt;
* lmce-asterisk (replacement) - update db for chan_sccp-v4.2 and fix bug requiring manual asterisk reload on boot&lt;br /&gt;
&lt;br /&gt;
== Update 31615 ==&lt;br /&gt;
* pluto-* - rebuild with new libraries&lt;br /&gt;
* lmce-* - rebuild with new libraries&lt;br /&gt;
&lt;br /&gt;
== Update 31606 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix EPG data on orbiters, myth stores everything in UTC now.&lt;br /&gt;
* pluto-pluto-main-db (201,237) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-media-db (254,255) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-security-db (277,278) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-datalog-db (688,689) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-game-db (675,676) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-updateentarea (341,342) - don&#039;t send empty play command when resetting alarm&lt;br /&gt;
&lt;br /&gt;
== Update 31580 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - use bypass-event to avoid watching media events when playing alerts&lt;br /&gt;
* pluto-updateentarea (341,342) - send bypass-event with security event commands&lt;br /&gt;
* libcec3 debs (replacement) - removes conflict data with libcec2&lt;br /&gt;
&lt;br /&gt;
== Update 31575 ==&lt;br /&gt;
* lmce-asterisk (replacement) - play back alert notification file&lt;br /&gt;
* pluto-std-plugins (116,135) - create alert notification file with correct format&lt;br /&gt;
* pluto-boot-scripts (234) - fixes for nvidia drivers on precise, upgrades to nvidia-340&lt;br /&gt;
* lmce-avwizard-sounds (replacement) - don&#039;t copy fakeroot files (it is redundant it is)&lt;br /&gt;
* video-wizard-videos (replacement) - deb is back to normal size, not 2x&lt;br /&gt;
&lt;br /&gt;
== Update 31553 ==&lt;br /&gt;
* pluto-website-admin (220) - fix error that wipes out the apache2.conf&lt;br /&gt;
* pluto-hald (529,530) - fix segfaults with firewire hardware&lt;br /&gt;
&lt;br /&gt;
== Update 31547 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some API changes in OZW 1.3, more device template mappings&lt;br /&gt;
* pluto-boot-scripts (234) - typo fix for nvidia drivers&lt;br /&gt;
* lmce-disked-md-base (801) - set hostname on disked MDs, set timezone on disked MDs&lt;br /&gt;
* lmce-install-scripts (391) - set hostname on disked MDs, set timezone on disked MDs &lt;br /&gt;
* pluto-website-admin was generated---&amp;gt; lmce-website-admin (220) - set apache2 ServerName to silence error on boot&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates, revert to ruby 1.8&lt;br /&gt;
* pluto-generic-serial-device (307,335) - admit defeat for now, revert to ruby 1.8&lt;br /&gt;
&lt;br /&gt;
== Update 31533 ==&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31520 ==&lt;br /&gt;
* chan-sccp_v4.2 (replacement) - Upgrad asterisk SCCP channel driver to newest version&lt;br /&gt;
* pluto-vdr-plugin (466,467) - implement background loading of EPG from VDR to avoid crashes due to commands not completing on time&lt;br /&gt;
* pluto-boot-scripts (234) - some logic changes and added messages for video driver install debugging&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - link new channels dir to old channels dir for backwards compatibility&lt;br /&gt;
&lt;br /&gt;
== Update 31503 ==&lt;br /&gt;
* *zwave* (replacement) - new upstream openzwave version 1.3.1224&lt;br /&gt;
* lmce-zwave-ozw(505,506) - build against new libopenzwave1.3&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates&lt;br /&gt;
* lmce-disked-interactor (897,898) - make disked interactor aware of wheezy and jessie.&lt;br /&gt;
&lt;br /&gt;
== Update 31500 ==&lt;br /&gt;
* *myth* (replacement) - fix depends on non-existent packages&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst - verified installing now&lt;br /&gt;
* pluto-std-plugins (116,135) - Use integer comparison for brightness state&lt;br /&gt;
&lt;br /&gt;
== Update 31491 ==&lt;br /&gt;
* lmce-avwizard-skin-basic (replacement) - fix packaging of avwizard skin&lt;br /&gt;
* *myth* (replacement) - mythtv 0.27.5+fixes with Schedules Direct fix included&lt;br /&gt;
* *asterisk* (replacement) - asterisk 11.7 backport from trusty&lt;br /&gt;
* libical* (replacement) - for asterisk 11.7&lt;br /&gt;
* *cec* (replacement) - libcec3&lt;br /&gt;
* libplatform* (replacement) for libcec3&lt;br /&gt;
* lmce-cec-adaptor (871,872) - build against libcec3&lt;br /&gt;
* lmce-mediatomb (702) - fix pkg installation&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - update protocol version and secret word (shhh) for 0.27.5+fixes&lt;br /&gt;
* lmce-diskless-tools (627,628) - remove call to obsolete script in Diskless_Setup.sh&lt;br /&gt;
* pluto-vdr-plugin (466,467) - return full EPG (used in qOrbiter EPG Grid), improve communication speed with SVDRP&lt;br /&gt;
* pluto-slim-server-streamer (289,290) - emit time code event, fix duration parsing&lt;br /&gt;
* pluto-boot-scripts (234) - fix headless booting, update 1404 nvidia driver&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* lmce-md-meta (450) - add depends on alsa-utils&lt;br /&gt;
* pluto-website-admin (220) - Fix cdrviewer (Call Details Records) to accept SSL conections as well, firewall gui change to set Offline rules in red as they are not executed.&lt;br /&gt;
* pluto-app-server (126,145)- new poweroff mode I for ignore, since N is already in use&lt;br /&gt;
&lt;br /&gt;
== Update 31420 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add depends on pluto-boot-scripts for deb cache script&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31411 == &lt;br /&gt;
* pluto-avwizard (555,556) - fix depends on avwizard skins basic, should no longer care about version&lt;br /&gt;
* pluto-boot-scripts (234) - more explicity logic for core only booting, fix startup script db errors&lt;br /&gt;
* lmce-update-system (650,651) - remove and disable old init.d script from /etc/init.d&lt;br /&gt;
* pluto-plutodhcp (330,491) - depends on apparmor&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-dhcpd-plugin (302) - remove hardcoded IP addresses from configure scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31387 ==&lt;br /&gt;
* lmce-weather-plugin - make change to allow for tonight&#039;s forecast data (TSCHAK)&lt;br /&gt;
* lmce-asterisk (replacement) - remove obsolete phonetic engines and replace with espeak, voices remain the same&lt;br /&gt;
* mbrola (replacement) - base mbrola pkg for mbrola voices (add armhf binary)&lt;br /&gt;
* pluto-asterisk (270,271) - generate fr and de voicemail menus with espeak now&lt;br /&gt;
* lmce-core (888) - add depends on iptables&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31378 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Start_KDE.sh ownership fix, AV config updates&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-avwizard (555,556) - update pkgs &amp;amp; depends &amp;amp; config scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - do not run update deb_cache during dvd creation&lt;br /&gt;
* pluto-x-scripts (520) - fixups to Xconfigure.sh&lt;br /&gt;
&lt;br /&gt;
== Update 31356 ==&lt;br /&gt;
* pluto-system-database (211) - update depends&lt;br /&gt;
* pluto-orbiter (119,138) - update depends&lt;br /&gt;
* lmce-diskless-tools (627,628) - speedup dpkg in diskless create, fix missing quotes&lt;br /&gt;
&lt;br /&gt;
== Update 31352 ==&lt;br /&gt;
* pluto-motion-wrapper - more config file location fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 31351 ==&lt;br /&gt;
* pluto-boot-scripts (234) - change service &#039;nis&#039; to &#039;ypserv&#039;, nis is no longer a service name&lt;br /&gt;
* pluto-website-admin (220) - remove &#039;idiot&#039; text, let&#039;s be nice to people.&lt;br /&gt;
* lmce-core (888) - do not create and config under ubiquity&lt;br /&gt;
* lmce-md-meta (450) - do not create and config under ubiquity&lt;br /&gt;
* motion (replacement) - fix bad config file setting in rules&lt;br /&gt;
&lt;br /&gt;
== Update 31337 ==&lt;br /&gt;
* motion (replacement) - new version of motion to match new configuration values generated by linuxmce&lt;br /&gt;
&lt;br /&gt;
== Update 31331 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix for brightness events&lt;br /&gt;
* pluto-boot-scripts (234) - fix kdm disabling, start ubiquity after network config&lt;br /&gt;
* lmce-diskless-tools (627,628) - add upstart overrides for kdm&lt;br /&gt;
* lmce-install-scripts (391) - start ubiquity after network config&lt;br /&gt;
&lt;br /&gt;
== Update 31314 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add missing depends&lt;br /&gt;
&lt;br /&gt;
== Update 31292 ==&lt;br /&gt;
* lmce-core-locator (replacement) - (1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-system-database (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* All .debs created by MakeRelease - removal of all Pre-Depends, everything is now a Depends entry (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
== Update 31228 ==&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-local-database&lt;br /&gt;
&lt;br /&gt;
== Update 31214 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package (not in repo, need build-replacements.sh svn up&#039;d?)&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - preinst/postinst updates&lt;br /&gt;
* pluto-boot-scripts (234) - preinst/postinst updates&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-disked-md-base (801) - firstboot updates&lt;br /&gt;
&lt;br /&gt;
== Update 31187 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package&lt;br /&gt;
* pluto-confirm-dependencies (281,272) - new depends on lmce-install-scripts (fixes unable to apt-get dist-upgrade)&lt;br /&gt;
* lmce-md-meta (450) - new depends on nfs-common, openssh-server and pastebinit&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - update depends, preinst/postinst&lt;br /&gt;
* pluto-boot-scripts (234) - depends &amp;amp; preinst/postinst updates&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - add override mythweb defaults in pkg preinst&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - update depends&lt;br /&gt;
&lt;br /&gt;
== Update 31133 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** enable WakeMDs.sh to wake any halted MDs.&lt;br /&gt;
** consolidate all boot script launching to /etc/init.d/linuxmce&lt;br /&gt;
* pluto-avwizard (555,556) - moves start script to /usr/pluto/bin, called by /etc/init.d/linuxmce now&lt;br /&gt;
* lmce-update-system (650,651) - removes init.d script, called by /etc/init.d/linuxmce now&lt;br /&gt;
* pluto-website-admin (220) - GUI changes on network settings if an bridge is configured on the db.&lt;br /&gt;
* lmce-core (888) - depend on pluto-asterisk, lmce-asterisk, lmce-install-scripts&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* pluto-generic-serial-device (307,335) - wildshot attempt at fixing segfaults&lt;br /&gt;
&lt;br /&gt;
== Update 31103 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** Network bridging now possible  for wifi AP to have the same network as the local lan. &lt;br /&gt;
** ipv6 on/off for network interfaces. Read multiple ipv6 interfaces from the db.&lt;br /&gt;
** re-enable HaltMDs.&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* libqhttpserver (912) needed for linuxmce nvr&lt;br /&gt;
* lmce-launch-manager - (298,299) - ?&lt;br /&gt;
&lt;br /&gt;
== Update 31087 ==&lt;br /&gt;
* lmce-weather (838,839) - Fix a serious bug in getconfig where incorrect configuration device data would crash program. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 31083 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes #2422, advanced zwave page broken in chrome&lt;br /&gt;
* pluto-system-database (211) - thumbnail screen fixes&lt;br /&gt;
&lt;br /&gt;
== Update 31074 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** setEa2.php - Fix settings for creating entertain area.&lt;br /&gt;
** qOrbiterGenerator.php - Fix erroneous EA creation by removing it.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Fix incorrect setting for enabling / disabling motion.&lt;br /&gt;
&lt;br /&gt;
== Update 31069 ==&lt;br /&gt;
* pluto-website-admin (220) - setEa2.php Fix settings for creating entertain area.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Initial build.&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (881) - Large update of skins and internals.&lt;br /&gt;
&lt;br /&gt;
== Update 31061 ==&lt;br /&gt;
* lmce-squeezeslave (762) - Add configuration DD to command line&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DB package updates&lt;br /&gt;
** restore previous video remote layout with Options button to select subtitles/audio tracks/video tracks from a datagrid list.&lt;br /&gt;
* pluto-website-admin (220) - firewall.php edit rules for non advanced firewall and some other small fixes.&lt;br /&gt;
* lmce-asterisk (replacement) - sip config modules to avoid autoload.&lt;br /&gt;
&lt;br /&gt;
== Update 31051 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** firewall.php not adding rules now fixet.&lt;br /&gt;
** Test buttons for Hue lights&lt;br /&gt;
** Security outsideAccess page now works nicely with the new firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 31044 ==&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
&lt;br /&gt;
== Update 31031 ==&lt;br /&gt;
* pluto-website-admin (220) - firewall.php after a strange fault and some layout fixes.&lt;br /&gt;
* lmce-mediatomb (702) - don&#039;t assume mediatomb is already running.&lt;br /&gt;
&lt;br /&gt;
== Update 31013 ==&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* pluto-boot-scripts (234) - Network Parameter count for more interfaces set and Network firewall accepting postrouting Masquerade  for other network interfaces.&lt;br /&gt;
&lt;br /&gt;
== Update 30985 ==&lt;br /&gt;
* pluto-website-admin (220) - #2268 fail2ban integration logging failed user login attempt.&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** #2268 fail2ban script not insert existing rules to our db.&lt;br /&gt;
** Support for audio output select on rpi via web admin&lt;br /&gt;
* lmce-diskless-tools (627,628) - update syslinux depends to syslinux-common&lt;br /&gt;
* lmce-omx-player (829,830) - Honour audio output selection of rpiMD&lt;br /&gt;
* lmce-squeezeslave (762) - Fix detection for squeezelite&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - further fixes&lt;br /&gt;
* lmce-usb-gamepad (795,796) - rewrite the whole main loop to suck less. hold-down repeats work, input handling more sane.&lt;br /&gt;
&lt;br /&gt;
== Update 30926 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Fix for #2368 insert firewall rules en #2064 edit and delete chains (except some system chains).&lt;br /&gt;
** Support for brightness based events.&lt;br /&gt;
* pluto-std-plugins (116,135) - Support for brightness based events&lt;br /&gt;
* lmce-omx-plugin (831,832) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** Database additions for XBOX 360 Gamepad (device templates, package)&lt;br /&gt;
** Modification of OMX Plugin to allow priority to be changed.&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - the XBOX 360 Gamepad driver, uses xboxdrv userspace driver.&lt;br /&gt;
* lmce-usb-gamepad (795,796) - additions here for above XBOX 360 Gamepad support.&lt;br /&gt;
&lt;br /&gt;
== Update 30862 ==&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress can now read latest files per linuxmce user.&lt;br /&gt;
&lt;br /&gt;
== Update 30860 ==&lt;br /&gt;
* lmce-weather (838,839) - some fixes by cfernandes&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress.&lt;br /&gt;
* pluto-boot-scripts (234) - more mail fixes&lt;br /&gt;
&lt;br /&gt;
== Update 30855 ==&lt;br /&gt;
* pluto-vdr, pluto-vdr-plugin - remove hardcoding of core IP and network address, but depend on the pluto.conf entries for DCERouter.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location (again)&lt;br /&gt;
* lmce-diskless-tools - stop copying apt configs from the core&lt;br /&gt;
* pluto-boot-scripts - fix postfix setup #2393&lt;br /&gt;
&lt;br /&gt;
== Update 30841 ==&lt;br /&gt;
* lmce-avwizard-sounds - fix replaces/conflicts data&lt;br /&gt;
* lmce-skins-basic - fix replaces/conflicts data&lt;br /&gt;
* lmce-avwizard-skin-basic - fix replaces/conflicts data&lt;br /&gt;
&lt;br /&gt;
== Update 30383 ==&lt;br /&gt;
* pluto-website-admin (220) - Add Hue lights related test button.&lt;br /&gt;
* pluto-boot-scripts - Add another option --autobackup to PlutoRestorePoint.sh to allow backup of pluto_main only&lt;br /&gt;
&lt;br /&gt;
== Update 30814 ==&lt;br /&gt;
* pluto-Boot-scripts - Firewall order by place and PK_Firewall to let rules stay on top on the middle or on the bottom.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location&lt;br /&gt;
* lmce-hue-controller (862,863) - Fix bug in adding new lights, now adds serial number.&lt;br /&gt;
* pluto-website-admin (220) - Fix oops relating the missing &#039;.&#039; which caused operations/login.php not to work.&lt;br /&gt;
&lt;br /&gt;
== Update 30783 ==&lt;br /&gt;
* lmce-nbd-client-wrapper - new pkg to hold common script&lt;br /&gt;
* pluto-xine-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* lmce-vlc-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* pluto-boot-scripts - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
* pluto-storage-devices - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30777 ==&lt;br /&gt;
* lmce-core - depend on openswan&lt;br /&gt;
* pluto-system-database - pkg updates&lt;br /&gt;
* pluto-boot-scripts - remove check for openswan from bootscript&lt;br /&gt;
* pluto-generic-serial-device - update to ruby 1.9.1&lt;br /&gt;
&lt;br /&gt;
== Update 30773==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller internals to now include polling, so as to make sure floorplan data is accurate. Changes underlying mechanisms for how lights are handled in preparation for extending additional support for Cree lights and sensors devices.&lt;br /&gt;
&lt;br /&gt;
== Update 30767 ==&lt;br /&gt;
* lmce-diskless-tools - update diskless archive name to reflect current compression method xz.&lt;br /&gt;
* pluto-website-admin (220) - updates to internet radio, moves add channels to a seperate page.  Thanks Dap-P!&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
* pluto-vdr - adds missing depends on vdr in trusty&lt;br /&gt;
* lmce-core - update depends to new pkg name lmce-avwizard-sounds&lt;br /&gt;
* pluto-avwizard - update depends to new pkg name lmce-avwizard-skins-basic&lt;br /&gt;
* lmce-clock-screen-saver - make the clock screen saver use the WMController/wmctrl methods for setting window visibility to be compatible with Orbiter. (TSCHAK) (Trusty only)&lt;br /&gt;
* pluto-storage-devices - Make sure that smbpasswd is used to create or update sambahelper&#039;s password (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30726 ==&lt;br /&gt;
* pluto-vdr - VDR player&#039;s package assumed a correctly installed vdr package which includes an entry in /etc/default for vdr. We no longer fail on a missing file.&lt;br /&gt;
&lt;br /&gt;
== Update 30724 ==&lt;br /&gt;
* lmce-weather - updates to weather sources, add OpenWM source.  Thanks SBCC and cfernandes!&lt;br /&gt;
* lmce-skins-* - adds missing telecom icons, updates/adds weather icons&lt;br /&gt;
* lmce-avwizard-sounds - remove extraneous stuff from pkg, reduce pkg size back to normal.  Proper replaces/conflicts/data...&lt;br /&gt;
* lmce-avwizard-skin-basic - Proper replaces/conflicts/data...&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
&lt;br /&gt;
== Update 30718 ==&lt;br /&gt;
* lmce-core - new depends on lmce-skins*&lt;br /&gt;
* lmce-md-meta - add depends on pnp-detection scripts&lt;br /&gt;
* lmce-hybrid - new depends on lmce-skins*&lt;br /&gt;
* pluto-avwizard (556,555) - add pciutils as a depends, still need to deal with multiarch stuff so this will break armhf, we will not update armhf for now, it doesn&#039;t use avwizard but does install it.&lt;br /&gt;
* lmce-diskless-tools - minor diskless create fixups&lt;br /&gt;
* pluto-orbiter - missing depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio script&lt;br /&gt;
* pluto-website-admin (220) - recognize MIDs as top level devices&lt;br /&gt;
* pluto-mythtv-player - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 30628 ==&lt;br /&gt;
* *-database - fix install issues&lt;br /&gt;
&lt;br /&gt;
== Update 30622 ==&lt;br /&gt;
* pluto-orbiterinstallers - fix depends issue&lt;br /&gt;
* pluto-system-database - lots of compat updates&lt;br /&gt;
* lmce-* - lots of compat updates&lt;br /&gt;
* pluto-* - lots of compat updates&lt;br /&gt;
&lt;br /&gt;
== Update 30618 ==&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio scripts&lt;br /&gt;
* pluto-website-admin (220) - updated internet radio page&lt;br /&gt;
&lt;br /&gt;
== Update 30571 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - send &amp;quot;Device is turned on or off&amp;quot; event when appropriate so the corresponding event works as expected&lt;br /&gt;
* lmce-squeezeslave (762) - set to pnp create without prompting&lt;br /&gt;
* lmce-runtime-dependencies (903) - pkg to help consolidate runtime depends.&lt;br /&gt;
* lmce-core (888) - updated depends&lt;br /&gt;
* lmce-md-meta (450)- updated depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated depends&lt;br /&gt;
* pluto-createdevice (303,304) - updated depends&lt;br /&gt;
* lmce-weather(838,839) - fix potential segfault&lt;br /&gt;
* pluto-website-admin (220) - add &amp;quot;replace node&amp;quot; button to advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 30549 ==&lt;br /&gt;
* pluto-mythtv-player - fix misaligned data values during mythtv.txt creation.&lt;br /&gt;
&lt;br /&gt;
== Update 30526 ==&lt;br /&gt;
* lmce-core - new pkg&lt;br /&gt;
* lmce-hybrid - pkg depends changes&lt;br /&gt;
* lmce-md-meta - pkg depends changes&lt;br /&gt;
* pluto-dcerouter - pkg depends changes&lt;br /&gt;
* pluto-photo-screen-saver - pkg depends changes&lt;br /&gt;
* pluto-boot-scripts - pkg depends changes&lt;br /&gt;
* pluto-orbiter - pkg depends changes&lt;br /&gt;
* pluto-simplephone - pkg depends changes&lt;br /&gt;
* pluto-website-admin - pkg depends changes&lt;br /&gt;
* lmce-mythtv-scripts - pkg depends changes&lt;br /&gt;
* pluto-system-database - pkg depends changes&lt;br /&gt;
* lmce-squeezeslave (762) - fix launch script, automatically create associated squeezebox player on the core.&lt;br /&gt;
* pluto-std-plugins - run New_PnP_MD.sh for new MID devices as well.&lt;br /&gt;
* lmce-diskless-tools - don&#039;t fail on invoke-rc.d during diskless create, exit gracefully and continue.&lt;br /&gt;
* pluto-mythtv-player - fix diskless create failures due to old hacks.  more work is needed here overall on mythtv integration.&lt;br /&gt;
&lt;br /&gt;
== Update 30419 ==&lt;br /&gt;
* pluto-slim-server - Make sure to turn off all Squeeze* devices when Slim Server Streamer starts or restarts (so that squeezelite does not hog sound cards.)&lt;br /&gt;
* pluto-hald (529,530) - add device node path to pnpqueue with v4l devices during detection&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - update for new lib version&lt;br /&gt;
&lt;br /&gt;
== Update 30384 ==&lt;br /&gt;
* pluto-confirm-dependencies - depend on pluto-install-scripts.&lt;br /&gt;
* pluto-disk-drive (122,141) - remove hal bits that dealt with old jukebox bugs.&lt;br /&gt;
* pluto-capture-card-scripts (580) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-pnp-detection (562) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-storage-devices (533) - convert autofs from hal to udev.&lt;br /&gt;
* pluto-bootscripts (234) - disable starting the hald since we&#039;re using udev now, remove false &#039;fail&#039; messages during reboot/shutdown&lt;br /&gt;
* pluto-slim-server-streamer - make one tweak (do not delete m_mapStreamsToPlayers entry in CMD_Stop). Streaming now works consistently, properly, with squeezebox devices and their clones. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30354 ==&lt;br /&gt;
* pluto-hald (529,530) - fix attempt to fire event for child device of usb-dongle.&lt;br /&gt;
* pluto-slim-server-streamer - Implement FF/REW (transport) trick-play control for Squeeze* devices. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30341 ==&lt;br /&gt;
* pluto-bootscripst - fixes for PPPoE users to not autostart the external interface.&lt;br /&gt;
* pluto-slim-server-streamer - Fix to power off squeezebox player when stream is not in use. This allows softsqueeze/squeezeslave/squeezelite players to let go of a sound device, when not in use (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30332 ==&lt;br /&gt;
* pluto-orbiter (118,139) - disable old hid device functionality.  Anyone who needs it can request a special build which will be provided at no extra charge. ;)&lt;br /&gt;
* pluto-bootscripts (234) - disable Gamepad Radar, functionality now in hal through udev&lt;br /&gt;
* pluto-avwizard (556,555) - fixes mangling of RemoteCmd when &amp;gt;1 remote is detected.&lt;br /&gt;
* pluto-hal-device-finder (535,536) - update to use udev rather than hal.&lt;br /&gt;
* pluto-hald (529,530) - update to use udev rather than hal.&lt;br /&gt;
* pluto-system-database (211) - updates for new detection method (joystick, cec-adaptor), update dependency data for hal pks to reflect dropping hald and add depends on udev now.&lt;br /&gt;
&lt;br /&gt;
== Update 30219 ==&lt;br /&gt;
* pluto-bootscripts (234) - Fail2ban firewall update script, and missing radioscript.sh.&lt;br /&gt;
* pluto-website-admin - Place set for rules on the firewall and bantime for fail2ban integration.&lt;br /&gt;
* pluto-std-plugins (116,135) - adds heirloom-mailx for &#039;mailx -r&#039; functionality, fixes e-mail in general info plugin&lt;br /&gt;
&lt;br /&gt;
== Update 30068 ==&lt;br /&gt;
* lmce-advanced-ip-camera(813,812) - Fixed high cpu usage if connection to camera can not be made&lt;br /&gt;
&lt;br /&gt;
== Update 30052 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - fix android pkg meta data, need to rebuild all together&lt;br /&gt;
&lt;br /&gt;
== Update 30051 ==&lt;br /&gt;
* pluto-updateentarea (341,342) - use DAY/NIGHT in watching/stopped watching events to make them smarter&lt;br /&gt;
* pluto-std-plugins (116,135) - Implement Get Device Status in General Info Plugin&lt;br /&gt;
* pluto-bootscripts (234) - fix VPN ip up/down&lt;br /&gt;
&lt;br /&gt;
== Update 30025 ==&lt;br /&gt;
* pluto-system-database (211) - column def updates&lt;br /&gt;
* pluto-local-database (214) - new Firewall columns and new VPN columns for Users table.&lt;br /&gt;
&lt;br /&gt;
== Update 30014 ==&lt;br /&gt;
* lmce-transmission-client (852) - fix postinst issue.  (Thanks SBCC)&lt;br /&gt;
== Update 29994 ==&lt;br /&gt;
More VLC Player changes to make it at least somewhat usable, there were some ugly bugs that came to light once i plopped it onto my production system. Right now sound device is plughw:0,3, if you need a different one, change it in the code.  (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* lmce-vlc-player - many little fixes to make it suck less.&lt;br /&gt;
&lt;br /&gt;
== Update 29990 ==&lt;br /&gt;
I am working on the VLC player, and it is breathing enough for basic testing. Please do not use in production environment. There is still a lot of code to write (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - updates for VLC player (TSCHAK)&lt;br /&gt;
* vlc-player (882,884) - Very early alpha developer test of the VLC player. (TSCHAK)&lt;br /&gt;
* vlc-plugin (874,875) - Very alpha developer test of the VLC plugin. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 29984 ==&lt;br /&gt;
* pluto-system-database (211) - fix bad repos in pkgs&lt;br /&gt;
* pluto-website-admin - just because I think it is necessary :-)&lt;br /&gt;
&lt;br /&gt;
== Update 29983 ==&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36988</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36988"/>
		<updated>2017-05-09T18:27:26Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: /* Upcoming fixes... */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the latest changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo much easier.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please include the pkg #s to facilitate building on 3x i386 targets in addition to 2x amd64 and 3x armhf targets where full builds are not always practical.  Keep in mind that most packages are referred to by two (2) package numbers from the database, a source package and a binary package.  &amp;quot;Thank you for your co-operation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
* Replacement packages in ubuntu/&lt;br /&gt;
** mountall - replacement package&lt;br /&gt;
** zfs-linux - ZFS support&lt;br /&gt;
** spl-linux - SPL library for ZFS support&lt;br /&gt;
** zfs-auto-snapshot - ZFS support&lt;br /&gt;
** ubuntu-zfs - ZFS support&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201705030817+f0afe768 ==&lt;br /&gt;
* lmce-zfs-support - remove the mkr_postinst.sh right now, as that was causing problems for everybody. Will bring the ZFS code into repo.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201705030817+f0afe768 ==&lt;br /&gt;
* pluto-bootscripts (234) firewall need to work together with the vpn.&lt;br /&gt;
* lmce-asterisk (920) - db_create_dialplan.sh to add blacklist better check option on asterisk dialplan. add Voicemailmain op extension *100&lt;br /&gt;
* lmce-vlc-player (884,882) - Further work on VLC_Player&#039;s transport controls. Please test and tell me if they work better. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Addition of ZFS templates.&lt;br /&gt;
* pluto-raid-tools (617) - Additions for ZFS&lt;br /&gt;
* lmce-zfs-support (937) - NEW PACKAGE for ZFS support.&lt;br /&gt;
* pluto-storage-devices (533) - Add ZFS support to automounter.&lt;br /&gt;
* pluto-website-admin (220) - Add ZFS support to RAID pages.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201704211536+941ae691 ==&lt;br /&gt;
* pluto-website-admin (220) - Blacklist.php added for administrating asterisk blacklist of phone numbers #2691&lt;br /&gt;
* lmce-asterisk (920) - db_create_dialplan.sh to add blacklist check on asterisk dialplan.&lt;br /&gt;
* pluto-database* - GRANT to localhost as well (just 127.0.0.1 doesn&#039;t help since MySQL 5.7)&lt;br /&gt;
&lt;br /&gt;
== Update armhf 201704191739+13f4f937 ==&lt;br /&gt;
* pluto-vdr - Don&#039;t check for the existence of a Xine device in the tree. There are many ways to display VDR.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201704182328+13f4f937  ==&lt;br /&gt;
* pluto-text-to-speech - Fix for initial installation which might effect usability.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704181123+a26d414e ==&lt;br /&gt;
* pluto-security-database - Localhost or 127.0.0.1 matters for MySQL - This should be the last fix needed to get MySQL Server v5.7 sorted out - at least for the install.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704180809+9af5cc66 ==&lt;br /&gt;
* pluto-boot-scripts - Set MySqlUser name in ConfigOps if it isn&#039;t already set.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201704171950+9af5cc66 ==&lt;br /&gt;
* pluto-sqlcvs, pluto*database* - Final fixes for 1404 and 1604.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704161042+f5455665 ==&lt;br /&gt;
* pluto-sqlcvs - Now has a dependency to pluto-database-settings&lt;br /&gt;
* pluto-database-settings - all user creation happens in here&lt;br /&gt;
* pluto-database-system - no more user creation.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 - 201704151808+866a5886 ==&lt;br /&gt;
* pluto-database-settings - Takes way too long to get fixed.&lt;br /&gt;
&lt;br /&gt;
== Update 201704151034+80dd9806 ==&lt;br /&gt;
* pluto-database-settings - *grml* don&#039;t just blindly copy other peoples code.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704142323+6ad66efd ==&lt;br /&gt;
* pluto-database-settings - Put user creation into mkr_postinst_mysql instead of mkr_postinst_system. Let&#039;s hope this fixes this sucker.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 2.0.0.47.201704050752+ddbbb689 ==&lt;br /&gt;
* lmce-vlc-player (884,882) - preprocess URL to ensure that file paths with # in them play correctly.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 amd64/i386 201704041743+906d69eb ==&lt;br /&gt;
* pluto-bootscripts (234) - Typo fix for insert rule to the db. /ppp/ip-up.d/lmce-vpn-up and /ppp/ip-down.d/lmce-vpn-down works now niceley togheter with the new firewall.&lt;br /&gt;
* pluto-system-database (211) - sqlCVS commit to add Imagemagick as dependency to VLC Player, finally squashing that #($#@( start bug! (TSCHAK)&lt;br /&gt;
** Also added ir-keytable depedency to pluto-lirc-wrapper&lt;br /&gt;
** Also added generic cd and dvd icons for External Media Identifier&lt;br /&gt;
* pluto-lirc-wrapper (340,421) - Ensure that ir-keytable is cleared before lircd starts to avoid unusual behavior with remotes that use kernel event subsystem (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - Fix DVD to use cifs instead of smbfs (which has been deprecated for 10 years.)&lt;br /&gt;
* lmce-vlc-player (884,882) - bug fixes for multi room sync&lt;br /&gt;
* lmce-vlc-plugin (874,875) - bug fixes for multi room sync&lt;br /&gt;
* lmce-media-identifier (931,932) - add generic dvd and cd identification if disc can&#039;t be identified by normal means.&lt;br /&gt;
* pluto-website-admin (220) - phonelines.php shows the state of a SPA protocol phonline. And firewall.php updated preg_match to find lines on pluto.conf and change them if exists. Issue2745.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201703301804+358c1c45 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fixes Bug #2726 - Media details now work, again.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 - 201703272335+efdf6de9 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Issue #2730 - Media Plugin changes to add support for FIFO capture card playback to VLC Player (route messages to VLC Player if it exists) -TSCHAK&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue #2729, #2730 - Implement FIFO device playback for local devices similar to file playback. (TBD: recompile VLC with PVR functionality), also multi-room playback. VLC Player is now in beta. -TSCHAK&lt;br /&gt;
* lmce-vlc-plugin (874,875) - Issue #2729 - Implement multi-room playback, VLC sync listener on core, etc. VLC functionality is now beta. -TSCHAK&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201702201438+325cc736 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix for multiple cameras and Get Image command&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue 2727, Issue 2728 - Trick play overhaul and fix audio glitches when trick play is used. &lt;br /&gt;
* pluto-boot-scripts (234) - SetupAudioVideo.sh - slight change to libvlc.conf so that trick play OSD works.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1204-1404-1604/amd64 c20633ff ==&lt;br /&gt;
* pluto-website-admin (220) - Added the case for section energyGraph and sipConf, fixed permissions for mysql asteriskuser, add sql credentials for myth, change MYSQL_NUM to MYSQLI_NUM&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1404/amd64 a7c10426 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add backports so 1204 diskless create works&lt;br /&gt;
* lmce-oauth2-server (668) - initial build of lmce oauth2 server for cloud interfacing&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404/1604 i386 - 1404x64 - 201611190055+fee90f43 ==&lt;br /&gt;
* pluto-boot-scripts (234) - database upgrades&lt;br /&gt;
* pluto-orbitergen (226,227) - database upgrades&lt;br /&gt;
* pluto-pluto-main-db (201,237) - database upgrades&lt;br /&gt;
* pluto-pluto-security-db (278,277) - database upgrades&lt;br /&gt;
* lmce-asterisk (replacement) - database upgrades&lt;br /&gt;
* pluto-system-database (211) - database upgrades&lt;br /&gt;
* pluto-local-database (214) - database upgrades&lt;br /&gt;
* pluto-security-database (256) - database upgrades&lt;br /&gt;
* pluto-telecom-database (472) - database upgrades&lt;br /&gt;
* pluto-media-database (233) - database upgrades&lt;br /&gt;
* pluto-database-settings (407) - database upgrades&lt;br /&gt;
* pluto-sqlcvs (212,213) - database upgrades&lt;br /&gt;
* pluto-std-plugins (116,135) - database upgrades&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609281853+9638f5bc ==&lt;br /&gt;
* pluto-website-admin (220) - #2705 fixed syntax error.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609271106+39103855 ==&lt;br /&gt;
* pluto-website-admin (220) - Update firewall.php GUI change some fields where reset to the default values. now the db data is honored.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** don&#039;t create initramfs for Raspbian Jessie diskless filesystems.&lt;br /&gt;
** ensure firstboot runs on diskless Jessie RPis.&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** stop/start rather than restart dhcp server, it&#039;s like nuking the site from orbit... only way to be sure.&lt;br /&gt;
** Firewall blocks udp 1900 UpNP traffic from externalinterface.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609172308+325de35d ==&lt;br /&gt;
* lmce-autotag (780, 781) linuxmceTag - fix comparison issue with media type.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609131230+5eaa4671/201609131753+5eaa4671 ==&lt;br /&gt;
* pluto-boot-scripts (234) - send dhcp vendor specific options only to wired raspberry pis.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 201609102226+fda3da63 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** rpi native pxe additions/updates&lt;br /&gt;
** extend startup timeout when booting under systemd&lt;br /&gt;
* lmce-diskless-tools (627,628) - rpi native pxe additions/updates&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DT updates for rpi native pxe&lt;br /&gt;
** add Serial Number Device Data to RPi DTs&lt;br /&gt;
** sets default PK_Distro to 22 (jessie) for RPi DTs&lt;br /&gt;
** new device data for &amp;quot;Standard Energy Meter&amp;quot;&lt;br /&gt;
* pluto-std-plugins (116,135)&lt;br /&gt;
** stores energy reading in state field for Standard Energy Meter&lt;br /&gt;
** fixes dcerouter crash when searching media&lt;br /&gt;
* pluto-updatemedia (405,406) - fix segfault when a dir is attempting to be tagged directly (without a .id3)&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - don&#039;t fail pkg install if simplephone is not running.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-i386 - 1404-i386/amd64 201607240235+899786ab ==&lt;br /&gt;
* pluto-website-admin (220) - Mysqli_real_escape_string did not work. a start with ipv6 firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/i386 201607202218+14cba09a ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) - Stream Bouncing, Additional settings for location, removed debug output, queue functionality.&lt;br /&gt;
&lt;br /&gt;
== Update 201607181902+d4cec1a0 1404-i386/amd64 - 1204-i386 ==&lt;br /&gt;
* pluto-website-admin - Update to qOrbiterGenerator.php for newer PHP version&lt;br /&gt;
&lt;br /&gt;
== Update 201607161239+6d72c3f9 1404-i386/amd64 1204-i386 ==&lt;br /&gt;
* pluto-website-admin (220) - #2678 fix Warning: Invalid argument supplied for foreach() in /var/www/lmce-admin/include/dhcpd-tools/DHCPd-parse.php on line 113&lt;br /&gt;
* pluto-boot-script&lt;br /&gt;
&lt;br /&gt;
== Update 201607151016+5b5adba3 1404/i386 &amp;amp; amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule use another escape method.&lt;br /&gt;
&lt;br /&gt;
== Update 201607122332+f0fc9c6b 1404/i386 ==&lt;br /&gt;
* pluto-boot-scripts (234) - fix #2684 clients cannot access internet when firewall is disabled. &lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule.&lt;br /&gt;
&lt;br /&gt;
== Update 201607050613+601c67da 1404-i386/amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - more fixes to the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update trusty i386/amd64 201606301955+614dfa7b ==&lt;br /&gt;
* pluto-website-admin (220) - fix for outside access port 443 not uncheckable.&lt;br /&gt;
* pluto-boot-scripts (234) - fix for not dele rules from iptables from outsideAccess.php&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201606201908+31b25c52 ==&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** unicode reading/writing working properly&lt;br /&gt;
** coverart writing to tags working properly&lt;br /&gt;
** .id3 files handled by taglib instead of id3lib.&lt;br /&gt;
** General Object Frame (GEOB) reading/writing working properly (all lmce attributes are stored in id3v2 GEOB tags for .id3/.mp3 files)&lt;br /&gt;
* pluto-website-admin (220) - more updates for mysql -&amp;gt; mysqli conversion&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201605312323+08fb8202 ==&lt;br /&gt;
* pluto-website-admin (220) - fix Text Command button to honor parameters from Screen_CommandParameter&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller to fix spamming of logs with constant updates of device data.&lt;br /&gt;
&lt;br /&gt;
== Update trusty-i386/amd64 201605310531+04df53f5 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - get the stream uri from onvif camera and save it in a device data for use by other devices&lt;br /&gt;
* pluto-website-admin (220) - adate to adodb 5.20.4 and change db driver from mysql to mysqli&lt;br /&gt;
* pluto-updatemedia (405,406) - tag writing/deletion of values update&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201605261039+410242d2 ==&lt;br /&gt;
* pluto-media-database (233) - remove FatGroupBy query as it is massive and no longer required&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** FIX UpdateMedia not detecting changes in files on disk.  Fixes: UpdateMedia not reading modification times properly.&lt;br /&gt;
** improve image reading/writing for mp3/mp4 files, add image handling for asf/wma, improve track art-&amp;gt;performer/album artist matching.&lt;br /&gt;
** don&#039;t add network shares to inotify watch list&lt;br /&gt;
* pluto-system-database (211) - new qml-* pkg definitions for qorbiter&lt;br /&gt;
* pluto-plutoutils (196,197) - add fn&#039; to determine filesystem type of a file&lt;br /&gt;
* lmce-disked-interactor (897,898) - make sure we see the core and have an IP prior to attempting contact&lt;br /&gt;
* pluto-bootscripts (234) - make sure we see the core prior to continuing to boot an MD&lt;br /&gt;
* pluto-website-admin (220) - various fixes in the media page&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 - 201605171740 c6d63dc6 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3, ogg, flac, mp4, wv, wav, oga, mpc, spx, opus, tta, m4a, m4r, m4p, 3g2, m4v, wma, asf, aif, aiff, afc, aifc, ape, s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64  201605131052+2542a526 ==&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - udev rule to ignore usbhid portion of device, permits orbiter to enter screensaver&lt;br /&gt;
* pluto-bootscripts (234) - permit devices that have died 50 times to attempt to restart after a router reload. Firewall fix for manual defined chains.&lt;br /&gt;
* pluto-sound-card-scripts (579) - don&#039;t assume cardid=1, determine phoenix cardid from aplay.&lt;br /&gt;
* pluto-media-database (233) - additional AttributeType &amp;quot;Album Artist&amp;quot;&lt;br /&gt;
* lmce-media-identifier (931,932) - updates for Album Artist tag.&lt;br /&gt;
* pluto-orbiter (119,138) - updates for Album Artist tag.&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** updates for Album Artist tag&lt;br /&gt;
** fix mainMediaFileSync.php. OutsideAccess page showing the options (again). &lt;br /&gt;
** And typo fixes for issue #2643. &lt;br /&gt;
** Firewall page reload issue 2636#. Firewall gui do not show &amp;quot;NULL&amp;quot;.&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3:ogg:flac:mp4:wv:wav::oga:mpc:spx:opus:tta:m4a:m4r:m4p:3g2:m4v:wma:asf:aif:aiff:afc:aifc:ape:s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update jessie 20160427 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for RPi&lt;br /&gt;
* lmce-disked-md-rpi2 (889) - +x firstboot_md_rpi2 to ensure it&#039;s picked up properly&lt;br /&gt;
&lt;br /&gt;
== Update jessie 201604130947+0083d387 ==&lt;br /&gt;
== Update 1204/1404-i386/amd64 201604101031-0b47a986 ==&lt;br /&gt;
* pluto-website-admin, pluto-boot-scripts (220,234) - Firewall Fixes for GUI and inner working of the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603251155+a1c0f6ea ==&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - File view implemented. Fixed not being able to leave resume menu.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603222119+336464d8 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller  to fix floorplan / status being improperly updated.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t mount optical discs as HDDs&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201603220706+c3c4b899 ==&lt;br /&gt;
* lmce-md-meta (450) - for some reason this is not in the main repo&lt;br /&gt;
* lmce-media-identifier - fixed for libcdio&lt;br /&gt;
&lt;br /&gt;
== Update jessie-rpi 60faa181 ==&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - adds video resizing so UI1 can be exposed while video is playing.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 armhf 31c5d994 ==&lt;br /&gt;
== Update 1404 i386 52e39875 ==&lt;br /&gt;
* pluto-storage-devices (533) - fix ntfs detection&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 - 49a8cbf1 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - a little better device to device template mapping&lt;br /&gt;
* pluto-website-admin (220) - fix adv.zwave page and adding secure devices&lt;br /&gt;
* lmce-disked-* - update the disked md/mid meta/base/device pkgs, specific fixes for 1404 joggler&lt;br /&gt;
* lmce-json-plugin (876,877) - first time addition to the main repo&lt;br /&gt;
* libdvdid0 (replacement) - first time addition to the repo, for use by Media Identifier&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - enable disabling internal volume control, similar to how logitechmediaserver does&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1404(armhf)/jessie(rpi)-a84db86f ==&lt;br /&gt;
* lmce-launch-manager (298,299) - only update squeeze devices when running on the core, redundant elsewhere.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404-87954508 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t fail if dvdcss2 cannot be automatically installed.&lt;br /&gt;
* pluto-hald (529,530) - reinstate tty detection, seperate from usb-serial, use direct parent for udi naming.&lt;br /&gt;
* pluto-boot-scripts (234) - disable buildall, the script doesn&#039;t run so why waste time creating it.&lt;br /&gt;
* lmce-launch-manager (298,299)&lt;br /&gt;
** update squeezebox players on router reloads from Launch_Manager&lt;br /&gt;
** call Config_Device_Changes in startCoreServices to ensure everything gets its&#039; Need Configure flag reset.&lt;br /&gt;
&lt;br /&gt;
== Update a332f49a ==&lt;br /&gt;
* lmce-install-scripts (391) - fix missing quote in MD installation.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix missing &#039;fi&#039; in BootMessage.sh&lt;br /&gt;
** fix usb.1 system serial port listing/translating&lt;br /&gt;
* lmce-media-identifier (931,932) - fix segfault, CDs are identified, cd-ripping functional again&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** prioritize new conf dir over old conf dir, fix install on systems upgraded from 1204-&amp;gt;1404&lt;br /&gt;
** redirect mythweb to html/mythweb&lt;br /&gt;
* pluto-hald (529,530) - updates to serial port naming, specifically for odroid.&lt;br /&gt;
* pluto-storage-devices (533) - fix mounted drive detection and add detection for drives mounted in /proc/cmdline like rpi.&lt;br /&gt;
&lt;br /&gt;
== Update 1204=201602080446+2028f850 &amp;lt;br&amp;gt; 1404=201602071815+c31bc44f ==&lt;br /&gt;
* lmce-install-scripts (391)&lt;br /&gt;
** enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
* lmce-core (888) - enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
* pluto-storage-devices (533) - redo StorageDevices_Radar using blkid for internal HDD identification.  /dev/disk/by-path/ is not present anymore.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
** new VerifyDistro.sh script and call the script on boot.&lt;br /&gt;
*** Preventative mostly.  Intended to ease pain for those that upgrade distros.&lt;br /&gt;
*** Ensure child devices, onscreen orbiter, have the proper PK_Distro set.&lt;br /&gt;
&lt;br /&gt;
== Update 296fdcd3 ==&lt;br /&gt;
* pluto-website-admin (220) - fix depends versioning&lt;br /&gt;
* pluto-hald (529,530) - fix depends versioning&lt;br /&gt;
* pluto-boot-scripts (234) - fix depends versioning&lt;br /&gt;
* pluto-system-database (211) - fix depends versioning&lt;br /&gt;
* pluto-orbitergen (226,227) - fix depends versioning&lt;br /&gt;
* lmce-disked-md-base (801) - fix depends versioning&lt;br /&gt;
* lmce-install-scripts (391) - fix depends versioning&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix depends versioning&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix depends versioning&lt;br /&gt;
* lmce-datalogger-plugin (686,687) - fix depends versioning &lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix depends versioning&lt;br /&gt;
&lt;br /&gt;
== Update f3a444c0 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** use newer .sh script rather than obsolete .pl script for dialplan creation&lt;br /&gt;
** fix Directory listing on cisco phones&lt;br /&gt;
** fix delete buttons on internet radio page.&lt;br /&gt;
* pluto-hald (529,530)&lt;br /&gt;
** add &#039;usb&#039; to &#039;pci&#039; and &#039;platform&#039; as valid bus addresses&lt;br /&gt;
** permit adding of usb devices with usb_serial or tty children&lt;br /&gt;
* pluto-boot-scripts (234) - update SetupAudioVideo.sh to more reliably address nvidia hdmi audio outputs&lt;br /&gt;
* lmce-asterisk (replacement) - live_dangerously for now to get all the necessary Voicemail modules to load&lt;br /&gt;
* pluto-system-database (211) - new DD Number of jobs for orbiter plug-in/orbitergen&lt;br /&gt;
* pluto-boot-scripts (234) - updates to RegenOrbiter scripts for parallel job queued orbiter generation.&lt;br /&gt;
* pluto-orbitergen (226,227) - new depends on GNU parallel&lt;br /&gt;
* lmce-disked-md-base (801) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* lmce-install-scripts (391) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - remove hardcoded ip address, get from db instead.&lt;br /&gt;
* lmce-diskless-tools (627,628) - only run UpdateDebCache.sh if it is executable&lt;br /&gt;
* lmce-datalog-plugin(686,687) - fix pear install command in postinst&lt;br /&gt;
* lmce-advanced-ip-camera(812,813) - add basic onvif support (snapshot,PTZ)&lt;br /&gt;
&lt;br /&gt;
== Update 31792 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of new External_Media_Identifier, testing CDDB ids&lt;br /&gt;
&lt;br /&gt;
== Update 31783 ==&lt;br /&gt;
* pluto-libserial (190,191) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-dcecommon (192,193) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-irbase (194,195) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-plutoutils (196,197) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-vipshared (199,200) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-serializeclass (198,238) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-libbd (239,240) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-ra (247,248) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-main-db (201,237) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-media-db (254,255) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-security-db (278,277) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-sdl-helpers (346,347) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-messagetrans (398,401) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-game-db (675,676) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-windowutils (677,678) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-datalog-db (688,689) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
&lt;br /&gt;
== Update 31782 ==&lt;br /&gt;
* pluto-std-plugins - fix FK_File search inside Attribute in Media_Plugin&lt;br /&gt;
&lt;br /&gt;
== Update 31774 ==&lt;br /&gt;
* lmce-disked-mid-base (899) - fix error in postinst&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come (this should be in but apt-get is getting 404 errors)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add &amp;quot;remove failed node&amp;quot; command&lt;br /&gt;
* pluto-website-admin - add &amp;quot;remove failed node&amp;quot; command for zwave advanced page&lt;br /&gt;
&lt;br /&gt;
== Update 31760 ==&lt;br /&gt;
* lmce-disked-md-base (801) - fix another error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31757 ==&lt;br /&gt;
* lmce-core (888) - overwrite AutostartCore conf value&lt;br /&gt;
* lmce-md-meta (450) - overwrite AutostartMedia conf value&lt;br /&gt;
* lmce-mid-meta (962) - missing deb&lt;br /&gt;
* lmce-hybrid (769) - exit 0 in postinst, just to be sure&lt;br /&gt;
* lmce-disked-md-base (801) - fix error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31754 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - reconnect before send&lt;br /&gt;
&lt;br /&gt;
== Update 31752 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - remove hard coded caller id &#039;Cherryhomes, Tho&#039;, use incoming caller id.&lt;br /&gt;
&lt;br /&gt;
== Update 31750 ==&lt;br /&gt;
* pluto-website-admin (220) - fix postinst error notice on precise.&lt;br /&gt;
* pluto-boot-scripts (234) - (re)start asterisk, otherwise configuration doesn&#039;t occur and sip phones cannot register&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - force-reload apache2 after disabling mythbuntu sites&lt;br /&gt;
* lmce-md-meta (450) - don&#039;t overwrite conf values that are already set&lt;br /&gt;
* *openzwave* (replacement) - version bump, upgrade fixes to upstream files&lt;br /&gt;
&lt;br /&gt;
== Update 31744 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come&lt;br /&gt;
&lt;br /&gt;
== Update 31742 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Gui changes to not confuse people. &lt;br /&gt;
** outsideaccess works together with the firewall. &lt;br /&gt;
** phonelines note on protocol for meaning of &amp;quot;SPA&amp;quot; and a status for this protocol setting, port can be changed if needed else it will be the default (5060).&lt;br /&gt;
&lt;br /&gt;
== Update 31739 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix absolute timed events&lt;br /&gt;
&lt;br /&gt;
== Update 31723 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix nfs-premount script in default diskless image.&lt;br /&gt;
* lmce-dlna(842,843) - compatibility fixes&lt;br /&gt;
* lmce-install-scripts (391) - generate ssh keys so openssh-server can accept connections&lt;br /&gt;
* pluto-createdevice (303,304) - hide errors, specifically during initial package postinst&lt;br /&gt;
* lmce-cec-adaptor (871,872) - fix cec remotes not getting to lmce&lt;br /&gt;
&lt;br /&gt;
== Update 31693 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - Fixes #2530 - fix errors in mythtvdb synchronization scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31686 ==&lt;br /&gt;
* lmce-install-scripts (391) - deal with firstboot stuffenz&lt;br /&gt;
* pluto-system-database (211) - add proxy orbiter DT depends for generic web device&lt;br /&gt;
* pluto-website-admin (220) - order by photo file name in screen saver/photo browser&lt;br /&gt;
* pluto-boot-scripts (234) - try ubiquity before anything else, and reboot after the normal firstboot - breaks live boot on dvd atm&lt;br /&gt;
* lmce-diskless-tools (627,628) - permit i386 diskless image building on amd64 cores, ensure processes are killed in chroot before unmounting (deals with systemd for now)&lt;br /&gt;
&lt;br /&gt;
== Update 31660 ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) &lt;br /&gt;
**PS3 control screen, fix layout issue. adds seperate button group (triangle, circle, etc) and navigation arrows. Also adds power off button to properly exit screen&lt;br /&gt;
* pluto-website-admin (220) - prevent creation of extra &#039;blank&#039; network interfaces&lt;br /&gt;
&lt;br /&gt;
== Update 31655 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - close connection after use&lt;br /&gt;
* pluto-website-admin (220) - fill ServerName var if it is unset, not if it is set.&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - unify service control&lt;br /&gt;
* pluto-boot-scripts (234) - unify service control&lt;br /&gt;
* pluto-dhcpd-plugin (302) - unify service control&lt;br /&gt;
* pluto-disk-monitor (554) - unify service control&lt;br /&gt;
* pluto-mythtv-player (133,152) - unify service control&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - unify service control&lt;br /&gt;
* pluto-raid-tools (617) - unify service control&lt;br /&gt;
* pluto-storage-devices (533) - unify service control&lt;br /&gt;
* lmce-update-system (650,651) - unify service control&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - unify service control&lt;br /&gt;
* pluto-vdr-plugin (466,467) - unify service control&lt;br /&gt;
* pluto-vdr (468,469) - unify service control&lt;br /&gt;
* pluto-database-settings (407) - unify service control&lt;br /&gt;
* lmce-asterisk (replacement) - unify service control&lt;br /&gt;
* lmce-diskless-tools (627,628) - unify service control&lt;br /&gt;
* lmce-install-scripts (391) - unify service control&lt;br /&gt;
* pluto-updatemedia (405,406) - unify service control&lt;br /&gt;
* pluto-newmdinteractor (538,539) - unify service control&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - Fix size issues, floorplan popups.&lt;br /&gt;
&lt;br /&gt;
== Update 31621 ==&lt;br /&gt;
* pluto-mythtv-player (133,152) - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 31618 ==&lt;br /&gt;
* lmce-asterisk (replacement) - update db for chan_sccp-v4.2 and fix bug requiring manual asterisk reload on boot&lt;br /&gt;
&lt;br /&gt;
== Update 31615 ==&lt;br /&gt;
* pluto-* - rebuild with new libraries&lt;br /&gt;
* lmce-* - rebuild with new libraries&lt;br /&gt;
&lt;br /&gt;
== Update 31606 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix EPG data on orbiters, myth stores everything in UTC now.&lt;br /&gt;
* pluto-pluto-main-db (201,237) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-media-db (254,255) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-security-db (277,278) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-datalog-db (688,689) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-game-db (675,676) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-updateentarea (341,342) - don&#039;t send empty play command when resetting alarm&lt;br /&gt;
&lt;br /&gt;
== Update 31580 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - use bypass-event to avoid watching media events when playing alerts&lt;br /&gt;
* pluto-updateentarea (341,342) - send bypass-event with security event commands&lt;br /&gt;
* libcec3 debs (replacement) - removes conflict data with libcec2&lt;br /&gt;
&lt;br /&gt;
== Update 31575 ==&lt;br /&gt;
* lmce-asterisk (replacement) - play back alert notification file&lt;br /&gt;
* pluto-std-plugins (116,135) - create alert notification file with correct format&lt;br /&gt;
* pluto-boot-scripts (234) - fixes for nvidia drivers on precise, upgrades to nvidia-340&lt;br /&gt;
* lmce-avwizard-sounds (replacement) - don&#039;t copy fakeroot files (it is redundant it is)&lt;br /&gt;
* video-wizard-videos (replacement) - deb is back to normal size, not 2x&lt;br /&gt;
&lt;br /&gt;
== Update 31553 ==&lt;br /&gt;
* pluto-website-admin (220) - fix error that wipes out the apache2.conf&lt;br /&gt;
* pluto-hald (529,530) - fix segfaults with firewire hardware&lt;br /&gt;
&lt;br /&gt;
== Update 31547 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some API changes in OZW 1.3, more device template mappings&lt;br /&gt;
* pluto-boot-scripts (234) - typo fix for nvidia drivers&lt;br /&gt;
* lmce-disked-md-base (801) - set hostname on disked MDs, set timezone on disked MDs&lt;br /&gt;
* lmce-install-scripts (391) - set hostname on disked MDs, set timezone on disked MDs &lt;br /&gt;
* pluto-website-admin was generated---&amp;gt; lmce-website-admin (220) - set apache2 ServerName to silence error on boot&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates, revert to ruby 1.8&lt;br /&gt;
* pluto-generic-serial-device (307,335) - admit defeat for now, revert to ruby 1.8&lt;br /&gt;
&lt;br /&gt;
== Update 31533 ==&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31520 ==&lt;br /&gt;
* chan-sccp_v4.2 (replacement) - Upgrad asterisk SCCP channel driver to newest version&lt;br /&gt;
* pluto-vdr-plugin (466,467) - implement background loading of EPG from VDR to avoid crashes due to commands not completing on time&lt;br /&gt;
* pluto-boot-scripts (234) - some logic changes and added messages for video driver install debugging&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - link new channels dir to old channels dir for backwards compatibility&lt;br /&gt;
&lt;br /&gt;
== Update 31503 ==&lt;br /&gt;
* *zwave* (replacement) - new upstream openzwave version 1.3.1224&lt;br /&gt;
* lmce-zwave-ozw(505,506) - build against new libopenzwave1.3&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates&lt;br /&gt;
* lmce-disked-interactor (897,898) - make disked interactor aware of wheezy and jessie.&lt;br /&gt;
&lt;br /&gt;
== Update 31500 ==&lt;br /&gt;
* *myth* (replacement) - fix depends on non-existent packages&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst - verified installing now&lt;br /&gt;
* pluto-std-plugins (116,135) - Use integer comparison for brightness state&lt;br /&gt;
&lt;br /&gt;
== Update 31491 ==&lt;br /&gt;
* lmce-avwizard-skin-basic (replacement) - fix packaging of avwizard skin&lt;br /&gt;
* *myth* (replacement) - mythtv 0.27.5+fixes with Schedules Direct fix included&lt;br /&gt;
* *asterisk* (replacement) - asterisk 11.7 backport from trusty&lt;br /&gt;
* libical* (replacement) - for asterisk 11.7&lt;br /&gt;
* *cec* (replacement) - libcec3&lt;br /&gt;
* libplatform* (replacement) for libcec3&lt;br /&gt;
* lmce-cec-adaptor (871,872) - build against libcec3&lt;br /&gt;
* lmce-mediatomb (702) - fix pkg installation&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - update protocol version and secret word (shhh) for 0.27.5+fixes&lt;br /&gt;
* lmce-diskless-tools (627,628) - remove call to obsolete script in Diskless_Setup.sh&lt;br /&gt;
* pluto-vdr-plugin (466,467) - return full EPG (used in qOrbiter EPG Grid), improve communication speed with SVDRP&lt;br /&gt;
* pluto-slim-server-streamer (289,290) - emit time code event, fix duration parsing&lt;br /&gt;
* pluto-boot-scripts (234) - fix headless booting, update 1404 nvidia driver&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* lmce-md-meta (450) - add depends on alsa-utils&lt;br /&gt;
* pluto-website-admin (220) - Fix cdrviewer (Call Details Records) to accept SSL conections as well, firewall gui change to set Offline rules in red as they are not executed.&lt;br /&gt;
* pluto-app-server (126,145)- new poweroff mode I for ignore, since N is already in use&lt;br /&gt;
&lt;br /&gt;
== Update 31420 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add depends on pluto-boot-scripts for deb cache script&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31411 == &lt;br /&gt;
* pluto-avwizard (555,556) - fix depends on avwizard skins basic, should no longer care about version&lt;br /&gt;
* pluto-boot-scripts (234) - more explicity logic for core only booting, fix startup script db errors&lt;br /&gt;
* lmce-update-system (650,651) - remove and disable old init.d script from /etc/init.d&lt;br /&gt;
* pluto-plutodhcp (330,491) - depends on apparmor&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-dhcpd-plugin (302) - remove hardcoded IP addresses from configure scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31387 ==&lt;br /&gt;
* lmce-weather-plugin - make change to allow for tonight&#039;s forecast data (TSCHAK)&lt;br /&gt;
* lmce-asterisk (replacement) - remove obsolete phonetic engines and replace with espeak, voices remain the same&lt;br /&gt;
* mbrola (replacement) - base mbrola pkg for mbrola voices (add armhf binary)&lt;br /&gt;
* pluto-asterisk (270,271) - generate fr and de voicemail menus with espeak now&lt;br /&gt;
* lmce-core (888) - add depends on iptables&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31378 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Start_KDE.sh ownership fix, AV config updates&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-avwizard (555,556) - update pkgs &amp;amp; depends &amp;amp; config scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - do not run update deb_cache during dvd creation&lt;br /&gt;
* pluto-x-scripts (520) - fixups to Xconfigure.sh&lt;br /&gt;
&lt;br /&gt;
== Update 31356 ==&lt;br /&gt;
* pluto-system-database (211) - update depends&lt;br /&gt;
* pluto-orbiter (119,138) - update depends&lt;br /&gt;
* lmce-diskless-tools (627,628) - speedup dpkg in diskless create, fix missing quotes&lt;br /&gt;
&lt;br /&gt;
== Update 31352 ==&lt;br /&gt;
* pluto-motion-wrapper - more config file location fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 31351 ==&lt;br /&gt;
* pluto-boot-scripts (234) - change service &#039;nis&#039; to &#039;ypserv&#039;, nis is no longer a service name&lt;br /&gt;
* pluto-website-admin (220) - remove &#039;idiot&#039; text, let&#039;s be nice to people.&lt;br /&gt;
* lmce-core (888) - do not create and config under ubiquity&lt;br /&gt;
* lmce-md-meta (450) - do not create and config under ubiquity&lt;br /&gt;
* motion (replacement) - fix bad config file setting in rules&lt;br /&gt;
&lt;br /&gt;
== Update 31337 ==&lt;br /&gt;
* motion (replacement) - new version of motion to match new configuration values generated by linuxmce&lt;br /&gt;
&lt;br /&gt;
== Update 31331 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix for brightness events&lt;br /&gt;
* pluto-boot-scripts (234) - fix kdm disabling, start ubiquity after network config&lt;br /&gt;
* lmce-diskless-tools (627,628) - add upstart overrides for kdm&lt;br /&gt;
* lmce-install-scripts (391) - start ubiquity after network config&lt;br /&gt;
&lt;br /&gt;
== Update 31314 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add missing depends&lt;br /&gt;
&lt;br /&gt;
== Update 31292 ==&lt;br /&gt;
* lmce-core-locator (replacement) - (1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-system-database (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* All .debs created by MakeRelease - removal of all Pre-Depends, everything is now a Depends entry (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
== Update 31228 ==&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-local-database&lt;br /&gt;
&lt;br /&gt;
== Update 31214 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package (not in repo, need build-replacements.sh svn up&#039;d?)&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - preinst/postinst updates&lt;br /&gt;
* pluto-boot-scripts (234) - preinst/postinst updates&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-disked-md-base (801) - firstboot updates&lt;br /&gt;
&lt;br /&gt;
== Update 31187 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package&lt;br /&gt;
* pluto-confirm-dependencies (281,272) - new depends on lmce-install-scripts (fixes unable to apt-get dist-upgrade)&lt;br /&gt;
* lmce-md-meta (450) - new depends on nfs-common, openssh-server and pastebinit&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - update depends, preinst/postinst&lt;br /&gt;
* pluto-boot-scripts (234) - depends &amp;amp; preinst/postinst updates&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - add override mythweb defaults in pkg preinst&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - update depends&lt;br /&gt;
&lt;br /&gt;
== Update 31133 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** enable WakeMDs.sh to wake any halted MDs.&lt;br /&gt;
** consolidate all boot script launching to /etc/init.d/linuxmce&lt;br /&gt;
* pluto-avwizard (555,556) - moves start script to /usr/pluto/bin, called by /etc/init.d/linuxmce now&lt;br /&gt;
* lmce-update-system (650,651) - removes init.d script, called by /etc/init.d/linuxmce now&lt;br /&gt;
* pluto-website-admin (220) - GUI changes on network settings if an bridge is configured on the db.&lt;br /&gt;
* lmce-core (888) - depend on pluto-asterisk, lmce-asterisk, lmce-install-scripts&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* pluto-generic-serial-device (307,335) - wildshot attempt at fixing segfaults&lt;br /&gt;
&lt;br /&gt;
== Update 31103 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** Network bridging now possible  for wifi AP to have the same network as the local lan. &lt;br /&gt;
** ipv6 on/off for network interfaces. Read multiple ipv6 interfaces from the db.&lt;br /&gt;
** re-enable HaltMDs.&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* libqhttpserver (912) needed for linuxmce nvr&lt;br /&gt;
* lmce-launch-manager - (298,299) - ?&lt;br /&gt;
&lt;br /&gt;
== Update 31087 ==&lt;br /&gt;
* lmce-weather (838,839) - Fix a serious bug in getconfig where incorrect configuration device data would crash program. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 31083 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes #2422, advanced zwave page broken in chrome&lt;br /&gt;
* pluto-system-database (211) - thumbnail screen fixes&lt;br /&gt;
&lt;br /&gt;
== Update 31074 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** setEa2.php - Fix settings for creating entertain area.&lt;br /&gt;
** qOrbiterGenerator.php - Fix erroneous EA creation by removing it.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Fix incorrect setting for enabling / disabling motion.&lt;br /&gt;
&lt;br /&gt;
== Update 31069 ==&lt;br /&gt;
* pluto-website-admin (220) - setEa2.php Fix settings for creating entertain area.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Initial build.&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (881) - Large update of skins and internals.&lt;br /&gt;
&lt;br /&gt;
== Update 31061 ==&lt;br /&gt;
* lmce-squeezeslave (762) - Add configuration DD to command line&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DB package updates&lt;br /&gt;
** restore previous video remote layout with Options button to select subtitles/audio tracks/video tracks from a datagrid list.&lt;br /&gt;
* pluto-website-admin (220) - firewall.php edit rules for non advanced firewall and some other small fixes.&lt;br /&gt;
* lmce-asterisk (replacement) - sip config modules to avoid autoload.&lt;br /&gt;
&lt;br /&gt;
== Update 31051 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** firewall.php not adding rules now fixet.&lt;br /&gt;
** Test buttons for Hue lights&lt;br /&gt;
** Security outsideAccess page now works nicely with the new firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 31044 ==&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
&lt;br /&gt;
== Update 31031 ==&lt;br /&gt;
* pluto-website-admin (220) - firewall.php after a strange fault and some layout fixes.&lt;br /&gt;
* lmce-mediatomb (702) - don&#039;t assume mediatomb is already running.&lt;br /&gt;
&lt;br /&gt;
== Update 31013 ==&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* pluto-boot-scripts (234) - Network Parameter count for more interfaces set and Network firewall accepting postrouting Masquerade  for other network interfaces.&lt;br /&gt;
&lt;br /&gt;
== Update 30985 ==&lt;br /&gt;
* pluto-website-admin (220) - #2268 fail2ban integration logging failed user login attempt.&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** #2268 fail2ban script not insert existing rules to our db.&lt;br /&gt;
** Support for audio output select on rpi via web admin&lt;br /&gt;
* lmce-diskless-tools (627,628) - update syslinux depends to syslinux-common&lt;br /&gt;
* lmce-omx-player (829,830) - Honour audio output selection of rpiMD&lt;br /&gt;
* lmce-squeezeslave (762) - Fix detection for squeezelite&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - further fixes&lt;br /&gt;
* lmce-usb-gamepad (795,796) - rewrite the whole main loop to suck less. hold-down repeats work, input handling more sane.&lt;br /&gt;
&lt;br /&gt;
== Update 30926 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Fix for #2368 insert firewall rules en #2064 edit and delete chains (except some system chains).&lt;br /&gt;
** Support for brightness based events.&lt;br /&gt;
* pluto-std-plugins (116,135) - Support for brightness based events&lt;br /&gt;
* lmce-omx-plugin (831,832) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** Database additions for XBOX 360 Gamepad (device templates, package)&lt;br /&gt;
** Modification of OMX Plugin to allow priority to be changed.&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - the XBOX 360 Gamepad driver, uses xboxdrv userspace driver.&lt;br /&gt;
* lmce-usb-gamepad (795,796) - additions here for above XBOX 360 Gamepad support.&lt;br /&gt;
&lt;br /&gt;
== Update 30862 ==&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress can now read latest files per linuxmce user.&lt;br /&gt;
&lt;br /&gt;
== Update 30860 ==&lt;br /&gt;
* lmce-weather (838,839) - some fixes by cfernandes&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress.&lt;br /&gt;
* pluto-boot-scripts (234) - more mail fixes&lt;br /&gt;
&lt;br /&gt;
== Update 30855 ==&lt;br /&gt;
* pluto-vdr, pluto-vdr-plugin - remove hardcoding of core IP and network address, but depend on the pluto.conf entries for DCERouter.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location (again)&lt;br /&gt;
* lmce-diskless-tools - stop copying apt configs from the core&lt;br /&gt;
* pluto-boot-scripts - fix postfix setup #2393&lt;br /&gt;
&lt;br /&gt;
== Update 30841 ==&lt;br /&gt;
* lmce-avwizard-sounds - fix replaces/conflicts data&lt;br /&gt;
* lmce-skins-basic - fix replaces/conflicts data&lt;br /&gt;
* lmce-avwizard-skin-basic - fix replaces/conflicts data&lt;br /&gt;
&lt;br /&gt;
== Update 30383 ==&lt;br /&gt;
* pluto-website-admin (220) - Add Hue lights related test button.&lt;br /&gt;
* pluto-boot-scripts - Add another option --autobackup to PlutoRestorePoint.sh to allow backup of pluto_main only&lt;br /&gt;
&lt;br /&gt;
== Update 30814 ==&lt;br /&gt;
* pluto-Boot-scripts - Firewall order by place and PK_Firewall to let rules stay on top on the middle or on the bottom.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location&lt;br /&gt;
* lmce-hue-controller (862,863) - Fix bug in adding new lights, now adds serial number.&lt;br /&gt;
* pluto-website-admin (220) - Fix oops relating the missing &#039;.&#039; which caused operations/login.php not to work.&lt;br /&gt;
&lt;br /&gt;
== Update 30783 ==&lt;br /&gt;
* lmce-nbd-client-wrapper - new pkg to hold common script&lt;br /&gt;
* pluto-xine-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* lmce-vlc-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* pluto-boot-scripts - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
* pluto-storage-devices - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30777 ==&lt;br /&gt;
* lmce-core - depend on openswan&lt;br /&gt;
* pluto-system-database - pkg updates&lt;br /&gt;
* pluto-boot-scripts - remove check for openswan from bootscript&lt;br /&gt;
* pluto-generic-serial-device - update to ruby 1.9.1&lt;br /&gt;
&lt;br /&gt;
== Update 30773==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller internals to now include polling, so as to make sure floorplan data is accurate. Changes underlying mechanisms for how lights are handled in preparation for extending additional support for Cree lights and sensors devices.&lt;br /&gt;
&lt;br /&gt;
== Update 30767 ==&lt;br /&gt;
* lmce-diskless-tools - update diskless archive name to reflect current compression method xz.&lt;br /&gt;
* pluto-website-admin (220) - updates to internet radio, moves add channels to a seperate page.  Thanks Dap-P!&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
* pluto-vdr - adds missing depends on vdr in trusty&lt;br /&gt;
* lmce-core - update depends to new pkg name lmce-avwizard-sounds&lt;br /&gt;
* pluto-avwizard - update depends to new pkg name lmce-avwizard-skins-basic&lt;br /&gt;
* lmce-clock-screen-saver - make the clock screen saver use the WMController/wmctrl methods for setting window visibility to be compatible with Orbiter. (TSCHAK) (Trusty only)&lt;br /&gt;
* pluto-storage-devices - Make sure that smbpasswd is used to create or update sambahelper&#039;s password (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30726 ==&lt;br /&gt;
* pluto-vdr - VDR player&#039;s package assumed a correctly installed vdr package which includes an entry in /etc/default for vdr. We no longer fail on a missing file.&lt;br /&gt;
&lt;br /&gt;
== Update 30724 ==&lt;br /&gt;
* lmce-weather - updates to weather sources, add OpenWM source.  Thanks SBCC and cfernandes!&lt;br /&gt;
* lmce-skins-* - adds missing telecom icons, updates/adds weather icons&lt;br /&gt;
* lmce-avwizard-sounds - remove extraneous stuff from pkg, reduce pkg size back to normal.  Proper replaces/conflicts/data...&lt;br /&gt;
* lmce-avwizard-skin-basic - Proper replaces/conflicts/data...&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
&lt;br /&gt;
== Update 30718 ==&lt;br /&gt;
* lmce-core - new depends on lmce-skins*&lt;br /&gt;
* lmce-md-meta - add depends on pnp-detection scripts&lt;br /&gt;
* lmce-hybrid - new depends on lmce-skins*&lt;br /&gt;
* pluto-avwizard (556,555) - add pciutils as a depends, still need to deal with multiarch stuff so this will break armhf, we will not update armhf for now, it doesn&#039;t use avwizard but does install it.&lt;br /&gt;
* lmce-diskless-tools - minor diskless create fixups&lt;br /&gt;
* pluto-orbiter - missing depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio script&lt;br /&gt;
* pluto-website-admin (220) - recognize MIDs as top level devices&lt;br /&gt;
* pluto-mythtv-player - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 30628 ==&lt;br /&gt;
* *-database - fix install issues&lt;br /&gt;
&lt;br /&gt;
== Update 30622 ==&lt;br /&gt;
* pluto-orbiterinstallers - fix depends issue&lt;br /&gt;
* pluto-system-database - lots of compat updates&lt;br /&gt;
* lmce-* - lots of compat updates&lt;br /&gt;
* pluto-* - lots of compat updates&lt;br /&gt;
&lt;br /&gt;
== Update 30618 ==&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio scripts&lt;br /&gt;
* pluto-website-admin (220) - updated internet radio page&lt;br /&gt;
&lt;br /&gt;
== Update 30571 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - send &amp;quot;Device is turned on or off&amp;quot; event when appropriate so the corresponding event works as expected&lt;br /&gt;
* lmce-squeezeslave (762) - set to pnp create without prompting&lt;br /&gt;
* lmce-runtime-dependencies (903) - pkg to help consolidate runtime depends.&lt;br /&gt;
* lmce-core (888) - updated depends&lt;br /&gt;
* lmce-md-meta (450)- updated depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated depends&lt;br /&gt;
* pluto-createdevice (303,304) - updated depends&lt;br /&gt;
* lmce-weather(838,839) - fix potential segfault&lt;br /&gt;
* pluto-website-admin (220) - add &amp;quot;replace node&amp;quot; button to advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 30549 ==&lt;br /&gt;
* pluto-mythtv-player - fix misaligned data values during mythtv.txt creation.&lt;br /&gt;
&lt;br /&gt;
== Update 30526 ==&lt;br /&gt;
* lmce-core - new pkg&lt;br /&gt;
* lmce-hybrid - pkg depends changes&lt;br /&gt;
* lmce-md-meta - pkg depends changes&lt;br /&gt;
* pluto-dcerouter - pkg depends changes&lt;br /&gt;
* pluto-photo-screen-saver - pkg depends changes&lt;br /&gt;
* pluto-boot-scripts - pkg depends changes&lt;br /&gt;
* pluto-orbiter - pkg depends changes&lt;br /&gt;
* pluto-simplephone - pkg depends changes&lt;br /&gt;
* pluto-website-admin - pkg depends changes&lt;br /&gt;
* lmce-mythtv-scripts - pkg depends changes&lt;br /&gt;
* pluto-system-database - pkg depends changes&lt;br /&gt;
* lmce-squeezeslave (762) - fix launch script, automatically create associated squeezebox player on the core.&lt;br /&gt;
* pluto-std-plugins - run New_PnP_MD.sh for new MID devices as well.&lt;br /&gt;
* lmce-diskless-tools - don&#039;t fail on invoke-rc.d during diskless create, exit gracefully and continue.&lt;br /&gt;
* pluto-mythtv-player - fix diskless create failures due to old hacks.  more work is needed here overall on mythtv integration.&lt;br /&gt;
&lt;br /&gt;
== Update 30419 ==&lt;br /&gt;
* pluto-slim-server - Make sure to turn off all Squeeze* devices when Slim Server Streamer starts or restarts (so that squeezelite does not hog sound cards.)&lt;br /&gt;
* pluto-hald (529,530) - add device node path to pnpqueue with v4l devices during detection&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - update for new lib version&lt;br /&gt;
&lt;br /&gt;
== Update 30384 ==&lt;br /&gt;
* pluto-confirm-dependencies - depend on pluto-install-scripts.&lt;br /&gt;
* pluto-disk-drive (122,141) - remove hal bits that dealt with old jukebox bugs.&lt;br /&gt;
* pluto-capture-card-scripts (580) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-pnp-detection (562) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-storage-devices (533) - convert autofs from hal to udev.&lt;br /&gt;
* pluto-bootscripts (234) - disable starting the hald since we&#039;re using udev now, remove false &#039;fail&#039; messages during reboot/shutdown&lt;br /&gt;
* pluto-slim-server-streamer - make one tweak (do not delete m_mapStreamsToPlayers entry in CMD_Stop). Streaming now works consistently, properly, with squeezebox devices and their clones. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30354 ==&lt;br /&gt;
* pluto-hald (529,530) - fix attempt to fire event for child device of usb-dongle.&lt;br /&gt;
* pluto-slim-server-streamer - Implement FF/REW (transport) trick-play control for Squeeze* devices. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30341 ==&lt;br /&gt;
* pluto-bootscripst - fixes for PPPoE users to not autostart the external interface.&lt;br /&gt;
* pluto-slim-server-streamer - Fix to power off squeezebox player when stream is not in use. This allows softsqueeze/squeezeslave/squeezelite players to let go of a sound device, when not in use (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30332 ==&lt;br /&gt;
* pluto-orbiter (118,139) - disable old hid device functionality.  Anyone who needs it can request a special build which will be provided at no extra charge. ;)&lt;br /&gt;
* pluto-bootscripts (234) - disable Gamepad Radar, functionality now in hal through udev&lt;br /&gt;
* pluto-avwizard (556,555) - fixes mangling of RemoteCmd when &amp;gt;1 remote is detected.&lt;br /&gt;
* pluto-hal-device-finder (535,536) - update to use udev rather than hal.&lt;br /&gt;
* pluto-hald (529,530) - update to use udev rather than hal.&lt;br /&gt;
* pluto-system-database (211) - updates for new detection method (joystick, cec-adaptor), update dependency data for hal pks to reflect dropping hald and add depends on udev now.&lt;br /&gt;
&lt;br /&gt;
== Update 30219 ==&lt;br /&gt;
* pluto-bootscripts (234) - Fail2ban firewall update script, and missing radioscript.sh.&lt;br /&gt;
* pluto-website-admin - Place set for rules on the firewall and bantime for fail2ban integration.&lt;br /&gt;
* pluto-std-plugins (116,135) - adds heirloom-mailx for &#039;mailx -r&#039; functionality, fixes e-mail in general info plugin&lt;br /&gt;
&lt;br /&gt;
== Update 30068 ==&lt;br /&gt;
* lmce-advanced-ip-camera(813,812) - Fixed high cpu usage if connection to camera can not be made&lt;br /&gt;
&lt;br /&gt;
== Update 30052 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - fix android pkg meta data, need to rebuild all together&lt;br /&gt;
&lt;br /&gt;
== Update 30051 ==&lt;br /&gt;
* pluto-updateentarea (341,342) - use DAY/NIGHT in watching/stopped watching events to make them smarter&lt;br /&gt;
* pluto-std-plugins (116,135) - Implement Get Device Status in General Info Plugin&lt;br /&gt;
* pluto-bootscripts (234) - fix VPN ip up/down&lt;br /&gt;
&lt;br /&gt;
== Update 30025 ==&lt;br /&gt;
* pluto-system-database (211) - column def updates&lt;br /&gt;
* pluto-local-database (214) - new Firewall columns and new VPN columns for Users table.&lt;br /&gt;
&lt;br /&gt;
== Update 30014 ==&lt;br /&gt;
* lmce-transmission-client (852) - fix postinst issue.  (Thanks SBCC)&lt;br /&gt;
== Update 29994 ==&lt;br /&gt;
More VLC Player changes to make it at least somewhat usable, there were some ugly bugs that came to light once i plopped it onto my production system. Right now sound device is plughw:0,3, if you need a different one, change it in the code.  (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* lmce-vlc-player - many little fixes to make it suck less.&lt;br /&gt;
&lt;br /&gt;
== Update 29990 ==&lt;br /&gt;
I am working on the VLC player, and it is breathing enough for basic testing. Please do not use in production environment. There is still a lot of code to write (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - updates for VLC player (TSCHAK)&lt;br /&gt;
* vlc-player (882,884) - Very early alpha developer test of the VLC player. (TSCHAK)&lt;br /&gt;
* vlc-plugin (874,875) - Very alpha developer test of the VLC plugin. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 29984 ==&lt;br /&gt;
* pluto-system-database (211) - fix bad repos in pkgs&lt;br /&gt;
* pluto-website-admin - just because I think it is necessary :-)&lt;br /&gt;
&lt;br /&gt;
== Update 29983 ==&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Game_Player_Notes&amp;diff=36987</id>
		<title>Game Player Notes</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Game_Player_Notes&amp;diff=36987"/>
		<updated>2017-05-05T06:18:45Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: Initial content.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Attached here are notes, while I am working on the Game Player&lt;br /&gt;
&lt;br /&gt;
== Game Player V3 ==&lt;br /&gt;
&lt;br /&gt;
A new approach is being taken for Game Player V3, which will get rid of the hard coded messes that plagued previous implementations, while trying to provide enough compatibility for emulator engines, while presenting the user with the possibility of adding or changing emulators for a given type.&lt;br /&gt;
&lt;br /&gt;
=== The previous approaches ===&lt;br /&gt;
&lt;br /&gt;
Previous implementations of the Game player utilized either synthesizing X events to the target emulator, as was the case in all the emulations present under Game Player V1, and in some emulations present under V2.&lt;br /&gt;
&lt;br /&gt;
==== Synthesis of X11 Events in response to Orbiter Events ====&lt;br /&gt;
&lt;br /&gt;
Synthesizing X11 events had a number of disadvantages:&lt;br /&gt;
&lt;br /&gt;
* Some emulators utilized UI toolkits that explicitly ignored events synthesized by XSendEvent(), for security reasons&lt;br /&gt;
* Utilizing XTEST to synthesize fake keyboard events was subject to changing window focus, which would cause the synthesized event to go to the wrong window.&lt;br /&gt;
* Capturing the correct window ID could be problematic due to race conditions with the window ID capture thread, and MAME either starting or stopping too slow, or too fast.&lt;br /&gt;
** Dealing with this created a great deal of complexity in latching events, trapping X event errors, and resynthesizing and resending events when these errors occurred, which would potentially mask more serious X errors, leading in the worst possible case to an X server crash.&lt;br /&gt;
&lt;br /&gt;
In short, it was a mess.&lt;br /&gt;
&lt;br /&gt;
==== Synthesis of commands over FIFO to Emulator in response to Orbiter Events ====&lt;br /&gt;
&lt;br /&gt;
I tried to deal with this by creating a FIFO socket between the Game Player, and the target emulator, through which I would send a simple protocol of one or more byte commands. This had the advantage of being more reliable, as well as opening up the possibility of sending advanced commands, such as swapping in/out disks on computer emulations. But this presented the problem that it required patched versions of the emulators in question, leading to long term maintenance of these emulators. Again, not a very palatable proposition just to implement Orbiter control.&lt;br /&gt;
&lt;br /&gt;
But it was my work on the [[Wii Remote Controller]] device, that gave me insight on how to solve this problem elegantly, namely to use the Userland Input subsystem available in the kernel, also known as uinput.&lt;br /&gt;
&lt;br /&gt;
=== The uinput approach ===&lt;br /&gt;
&lt;br /&gt;
uinput is a kernel module that once loaded, exposes a device node, that exposes a number of standard file semantics and some ioctls, which when used, can create what appear to the system as input devices, but that are injected with events from code running in the user space. This has a number of amazing uses. It was used, for example, in my [[Wii Remote Controller]] device, to convert the XWiiMote events into kernel input events so that the Wii Remote could appear to be an absolute, or relative input device with a number of buttons. In the case of Game Player, it will create a virtual device for the target emulator, which will look like a virtual keyboard or joystick, so that Orbiter presses can be translated into appropriate events for the emulator. This completely mitigates the various issues of the previous approaches, by providing a simple, straightforward input device, that fools the emulators, without needing any special patching for basic function.&lt;br /&gt;
&lt;br /&gt;
=== UInput Class ===&lt;br /&gt;
&lt;br /&gt;
The Game Player has the UInput class, which is called to encapsulate all UInput functionality, to the following functions:&lt;br /&gt;
&lt;br /&gt;
  public:&lt;br /&gt;
    UInput();&lt;br /&gt;
    virtual ~UInput();&lt;br /&gt;
&lt;br /&gt;
    // Initialization and done routines&lt;br /&gt;
    virtual bool Init();&lt;br /&gt;
    virtual bool Done();&lt;br /&gt;
    &lt;br /&gt;
    virtual void Initialized_set(bool bInitialized);&lt;br /&gt;
    virtual bool IsInitialized();&lt;br /&gt;
    &lt;br /&gt;
    virtual bool KeyUp(int iEvent);                    // send a key up event to the UInput device&lt;br /&gt;
    virtual bool KeyDown(int iEvent);                  // send a key down event to the UInput device&lt;br /&gt;
    virtual bool KeyPress(int iEvent);                 // Press a key down, then release up, to UInput device, after keypress delay.&lt;br /&gt;
    virtual void KeyPress_Delay_set(int iDelay);       // Set the wanted keypress delay&lt;br /&gt;
    virtual int  KeyPress_Delay_get();                 // Get the current keypress delay.&lt;br /&gt;
&lt;br /&gt;
The individual iEvents are standard Linux input events as specified in &amp;lt;linux/input.h&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Game Player Child Devices ===&lt;br /&gt;
&lt;br /&gt;
This ability to cleanly control the game players with a singular control device, without the need of special patching, opens up the possibility to specify emulator configuration entirely in the database, and to have each emulator specified as a child device that can be added, removed, or changed under user control&lt;br /&gt;
&lt;br /&gt;
TODO: Flesh out this particular API.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36985</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36985"/>
		<updated>2017-05-03T17:51:40Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: /* Upcoming fixes... */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the latest changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo much easier.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please include the pkg #s to facilitate building on 3x i386 targets in addition to 2x amd64 and 3x armhf targets where full builds are not always practical.  Keep in mind that most packages are referred to by two (2) package numbers from the database, a source package and a binary package.  &amp;quot;Thank you for your co-operation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
* lmce-zfs-support - remove the mkr_postinst.sh right now, as that was causing problems for everybody. Will bring the ZFS code into repo.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201705030817+f0afe768 ==&lt;br /&gt;
* pluto-bootscripts (234) firewall need to work together with the vpn.&lt;br /&gt;
* lmce-asterisk (920) - db_create_dialplan.sh to add blacklist better check option on asterisk dialplan. add Voicemailmain op extension *100&lt;br /&gt;
* lmce-vlc-player (884,882) - Further work on VLC_Player&#039;s transport controls. Please test and tell me if they work better. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Addition of ZFS templates.&lt;br /&gt;
* pluto-raid-tools (617) - Additions for ZFS&lt;br /&gt;
* lmce-zfs-support (937) - NEW PACKAGE for ZFS support.&lt;br /&gt;
* pluto-storage-devices (533) - Add ZFS support to automounter.&lt;br /&gt;
* pluto-website-admin (220) - Add ZFS support to RAID pages.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201704211536+941ae691 ==&lt;br /&gt;
* pluto-website-admin (220) - Blacklist.php added for administrating asterisk blacklist of phone numbers #2691&lt;br /&gt;
* lmce-asterisk (920) - db_create_dialplan.sh to add blacklist check on asterisk dialplan.&lt;br /&gt;
* pluto-database* - GRANT to localhost as well (just 127.0.0.1 doesn&#039;t help since MySQL 5.7)&lt;br /&gt;
&lt;br /&gt;
== Update armhf 201704191739+13f4f937 ==&lt;br /&gt;
* pluto-vdr - Don&#039;t check for the existence of a Xine device in the tree. There are many ways to display VDR.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201704182328+13f4f937  ==&lt;br /&gt;
* pluto-text-to-speech - Fix for initial installation which might effect usability.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704181123+a26d414e ==&lt;br /&gt;
* pluto-security-database - Localhost or 127.0.0.1 matters for MySQL - This should be the last fix needed to get MySQL Server v5.7 sorted out - at least for the install.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704180809+9af5cc66 ==&lt;br /&gt;
* pluto-boot-scripts - Set MySqlUser name in ConfigOps if it isn&#039;t already set.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201704171950+9af5cc66 ==&lt;br /&gt;
* pluto-sqlcvs, pluto*database* - Final fixes for 1404 and 1604.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704161042+f5455665 ==&lt;br /&gt;
* pluto-sqlcvs - Now has a dependency to pluto-database-settings&lt;br /&gt;
* pluto-database-settings - all user creation happens in here&lt;br /&gt;
* pluto-database-system - no more user creation.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 - 201704151808+866a5886 ==&lt;br /&gt;
* pluto-database-settings - Takes way too long to get fixed.&lt;br /&gt;
&lt;br /&gt;
== Update 201704151034+80dd9806 ==&lt;br /&gt;
* pluto-database-settings - *grml* don&#039;t just blindly copy other peoples code.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704142323+6ad66efd ==&lt;br /&gt;
* pluto-database-settings - Put user creation into mkr_postinst_mysql instead of mkr_postinst_system. Let&#039;s hope this fixes this sucker.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 2.0.0.47.201704050752+ddbbb689 ==&lt;br /&gt;
* lmce-vlc-player (884,882) - preprocess URL to ensure that file paths with # in them play correctly.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 amd64/i386 201704041743+906d69eb ==&lt;br /&gt;
* pluto-bootscripts (234) - Typo fix for insert rule to the db. /ppp/ip-up.d/lmce-vpn-up and /ppp/ip-down.d/lmce-vpn-down works now niceley togheter with the new firewall.&lt;br /&gt;
* pluto-system-database (211) - sqlCVS commit to add Imagemagick as dependency to VLC Player, finally squashing that #($#@( start bug! (TSCHAK)&lt;br /&gt;
** Also added ir-keytable depedency to pluto-lirc-wrapper&lt;br /&gt;
** Also added generic cd and dvd icons for External Media Identifier&lt;br /&gt;
* pluto-lirc-wrapper (340,421) - Ensure that ir-keytable is cleared before lircd starts to avoid unusual behavior with remotes that use kernel event subsystem (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - Fix DVD to use cifs instead of smbfs (which has been deprecated for 10 years.)&lt;br /&gt;
* lmce-vlc-player (884,882) - bug fixes for multi room sync&lt;br /&gt;
* lmce-vlc-plugin (874,875) - bug fixes for multi room sync&lt;br /&gt;
* lmce-media-identifier (931,932) - add generic dvd and cd identification if disc can&#039;t be identified by normal means.&lt;br /&gt;
* pluto-website-admin (220) - phonelines.php shows the state of a SPA protocol phonline. And firewall.php updated preg_match to find lines on pluto.conf and change them if exists. Issue2745.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201703301804+358c1c45 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fixes Bug #2726 - Media details now work, again.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 - 201703272335+efdf6de9 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Issue #2730 - Media Plugin changes to add support for FIFO capture card playback to VLC Player (route messages to VLC Player if it exists) -TSCHAK&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue #2729, #2730 - Implement FIFO device playback for local devices similar to file playback. (TBD: recompile VLC with PVR functionality), also multi-room playback. VLC Player is now in beta. -TSCHAK&lt;br /&gt;
* lmce-vlc-plugin (874,875) - Issue #2729 - Implement multi-room playback, VLC sync listener on core, etc. VLC functionality is now beta. -TSCHAK&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201702201438+325cc736 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix for multiple cameras and Get Image command&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue 2727, Issue 2728 - Trick play overhaul and fix audio glitches when trick play is used. &lt;br /&gt;
* pluto-boot-scripts (234) - SetupAudioVideo.sh - slight change to libvlc.conf so that trick play OSD works.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1204-1404-1604/amd64 c20633ff ==&lt;br /&gt;
* pluto-website-admin (220) - Added the case for section energyGraph and sipConf, fixed permissions for mysql asteriskuser, add sql credentials for myth, change MYSQL_NUM to MYSQLI_NUM&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1404/amd64 a7c10426 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add backports so 1204 diskless create works&lt;br /&gt;
* lmce-oauth2-server (668) - initial build of lmce oauth2 server for cloud interfacing&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404/1604 i386 - 1404x64 - 201611190055+fee90f43 ==&lt;br /&gt;
* pluto-boot-scripts (234) - database upgrades&lt;br /&gt;
* pluto-orbitergen (226,227) - database upgrades&lt;br /&gt;
* pluto-pluto-main-db (201,237) - database upgrades&lt;br /&gt;
* pluto-pluto-security-db (278,277) - database upgrades&lt;br /&gt;
* lmce-asterisk (replacement) - database upgrades&lt;br /&gt;
* pluto-system-database (211) - database upgrades&lt;br /&gt;
* pluto-local-database (214) - database upgrades&lt;br /&gt;
* pluto-security-database (256) - database upgrades&lt;br /&gt;
* pluto-telecom-database (472) - database upgrades&lt;br /&gt;
* pluto-media-database (233) - database upgrades&lt;br /&gt;
* pluto-database-settings (407) - database upgrades&lt;br /&gt;
* pluto-sqlcvs (212,213) - database upgrades&lt;br /&gt;
* pluto-std-plugins (116,135) - database upgrades&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609281853+9638f5bc ==&lt;br /&gt;
* pluto-website-admin (220) - #2705 fixed syntax error.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609271106+39103855 ==&lt;br /&gt;
* pluto-website-admin (220) - Update firewall.php GUI change some fields where reset to the default values. now the db data is honored.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** don&#039;t create initramfs for Raspbian Jessie diskless filesystems.&lt;br /&gt;
** ensure firstboot runs on diskless Jessie RPis.&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** stop/start rather than restart dhcp server, it&#039;s like nuking the site from orbit... only way to be sure.&lt;br /&gt;
** Firewall blocks udp 1900 UpNP traffic from externalinterface.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609172308+325de35d ==&lt;br /&gt;
* lmce-autotag (780, 781) linuxmceTag - fix comparison issue with media type.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609131230+5eaa4671/201609131753+5eaa4671 ==&lt;br /&gt;
* pluto-boot-scripts (234) - send dhcp vendor specific options only to wired raspberry pis.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 201609102226+fda3da63 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** rpi native pxe additions/updates&lt;br /&gt;
** extend startup timeout when booting under systemd&lt;br /&gt;
* lmce-diskless-tools (627,628) - rpi native pxe additions/updates&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DT updates for rpi native pxe&lt;br /&gt;
** add Serial Number Device Data to RPi DTs&lt;br /&gt;
** sets default PK_Distro to 22 (jessie) for RPi DTs&lt;br /&gt;
** new device data for &amp;quot;Standard Energy Meter&amp;quot;&lt;br /&gt;
* pluto-std-plugins (116,135)&lt;br /&gt;
** stores energy reading in state field for Standard Energy Meter&lt;br /&gt;
** fixes dcerouter crash when searching media&lt;br /&gt;
* pluto-updatemedia (405,406) - fix segfault when a dir is attempting to be tagged directly (without a .id3)&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - don&#039;t fail pkg install if simplephone is not running.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-i386 - 1404-i386/amd64 201607240235+899786ab ==&lt;br /&gt;
* pluto-website-admin (220) - Mysqli_real_escape_string did not work. a start with ipv6 firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/i386 201607202218+14cba09a ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) - Stream Bouncing, Additional settings for location, removed debug output, queue functionality.&lt;br /&gt;
&lt;br /&gt;
== Update 201607181902+d4cec1a0 1404-i386/amd64 - 1204-i386 ==&lt;br /&gt;
* pluto-website-admin - Update to qOrbiterGenerator.php for newer PHP version&lt;br /&gt;
&lt;br /&gt;
== Update 201607161239+6d72c3f9 1404-i386/amd64 1204-i386 ==&lt;br /&gt;
* pluto-website-admin (220) - #2678 fix Warning: Invalid argument supplied for foreach() in /var/www/lmce-admin/include/dhcpd-tools/DHCPd-parse.php on line 113&lt;br /&gt;
* pluto-boot-script&lt;br /&gt;
&lt;br /&gt;
== Update 201607151016+5b5adba3 1404/i386 &amp;amp; amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule use another escape method.&lt;br /&gt;
&lt;br /&gt;
== Update 201607122332+f0fc9c6b 1404/i386 ==&lt;br /&gt;
* pluto-boot-scripts (234) - fix #2684 clients cannot access internet when firewall is disabled. &lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule.&lt;br /&gt;
&lt;br /&gt;
== Update 201607050613+601c67da 1404-i386/amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - more fixes to the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update trusty i386/amd64 201606301955+614dfa7b ==&lt;br /&gt;
* pluto-website-admin (220) - fix for outside access port 443 not uncheckable.&lt;br /&gt;
* pluto-boot-scripts (234) - fix for not dele rules from iptables from outsideAccess.php&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201606201908+31b25c52 ==&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** unicode reading/writing working properly&lt;br /&gt;
** coverart writing to tags working properly&lt;br /&gt;
** .id3 files handled by taglib instead of id3lib.&lt;br /&gt;
** General Object Frame (GEOB) reading/writing working properly (all lmce attributes are stored in id3v2 GEOB tags for .id3/.mp3 files)&lt;br /&gt;
* pluto-website-admin (220) - more updates for mysql -&amp;gt; mysqli conversion&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201605312323+08fb8202 ==&lt;br /&gt;
* pluto-website-admin (220) - fix Text Command button to honor parameters from Screen_CommandParameter&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller to fix spamming of logs with constant updates of device data.&lt;br /&gt;
&lt;br /&gt;
== Update trusty-i386/amd64 201605310531+04df53f5 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - get the stream uri from onvif camera and save it in a device data for use by other devices&lt;br /&gt;
* pluto-website-admin (220) - adate to adodb 5.20.4 and change db driver from mysql to mysqli&lt;br /&gt;
* pluto-updatemedia (405,406) - tag writing/deletion of values update&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201605261039+410242d2 ==&lt;br /&gt;
* pluto-media-database (233) - remove FatGroupBy query as it is massive and no longer required&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** FIX UpdateMedia not detecting changes in files on disk.  Fixes: UpdateMedia not reading modification times properly.&lt;br /&gt;
** improve image reading/writing for mp3/mp4 files, add image handling for asf/wma, improve track art-&amp;gt;performer/album artist matching.&lt;br /&gt;
** don&#039;t add network shares to inotify watch list&lt;br /&gt;
* pluto-system-database (211) - new qml-* pkg definitions for qorbiter&lt;br /&gt;
* pluto-plutoutils (196,197) - add fn&#039; to determine filesystem type of a file&lt;br /&gt;
* lmce-disked-interactor (897,898) - make sure we see the core and have an IP prior to attempting contact&lt;br /&gt;
* pluto-bootscripts (234) - make sure we see the core prior to continuing to boot an MD&lt;br /&gt;
* pluto-website-admin (220) - various fixes in the media page&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 - 201605171740 c6d63dc6 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3, ogg, flac, mp4, wv, wav, oga, mpc, spx, opus, tta, m4a, m4r, m4p, 3g2, m4v, wma, asf, aif, aiff, afc, aifc, ape, s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64  201605131052+2542a526 ==&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - udev rule to ignore usbhid portion of device, permits orbiter to enter screensaver&lt;br /&gt;
* pluto-bootscripts (234) - permit devices that have died 50 times to attempt to restart after a router reload. Firewall fix for manual defined chains.&lt;br /&gt;
* pluto-sound-card-scripts (579) - don&#039;t assume cardid=1, determine phoenix cardid from aplay.&lt;br /&gt;
* pluto-media-database (233) - additional AttributeType &amp;quot;Album Artist&amp;quot;&lt;br /&gt;
* lmce-media-identifier (931,932) - updates for Album Artist tag.&lt;br /&gt;
* pluto-orbiter (119,138) - updates for Album Artist tag.&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** updates for Album Artist tag&lt;br /&gt;
** fix mainMediaFileSync.php. OutsideAccess page showing the options (again). &lt;br /&gt;
** And typo fixes for issue #2643. &lt;br /&gt;
** Firewall page reload issue 2636#. Firewall gui do not show &amp;quot;NULL&amp;quot;.&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3:ogg:flac:mp4:wv:wav::oga:mpc:spx:opus:tta:m4a:m4r:m4p:3g2:m4v:wma:asf:aif:aiff:afc:aifc:ape:s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update jessie 20160427 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for RPi&lt;br /&gt;
* lmce-disked-md-rpi2 (889) - +x firstboot_md_rpi2 to ensure it&#039;s picked up properly&lt;br /&gt;
&lt;br /&gt;
== Update jessie 201604130947+0083d387 ==&lt;br /&gt;
== Update 1204/1404-i386/amd64 201604101031-0b47a986 ==&lt;br /&gt;
* pluto-website-admin, pluto-boot-scripts (220,234) - Firewall Fixes for GUI and inner working of the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603251155+a1c0f6ea ==&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - File view implemented. Fixed not being able to leave resume menu.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603222119+336464d8 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller  to fix floorplan / status being improperly updated.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t mount optical discs as HDDs&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201603220706+c3c4b899 ==&lt;br /&gt;
* lmce-md-meta (450) - for some reason this is not in the main repo&lt;br /&gt;
* lmce-media-identifier - fixed for libcdio&lt;br /&gt;
&lt;br /&gt;
== Update jessie-rpi 60faa181 ==&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - adds video resizing so UI1 can be exposed while video is playing.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 armhf 31c5d994 ==&lt;br /&gt;
== Update 1404 i386 52e39875 ==&lt;br /&gt;
* pluto-storage-devices (533) - fix ntfs detection&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 - 49a8cbf1 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - a little better device to device template mapping&lt;br /&gt;
* pluto-website-admin (220) - fix adv.zwave page and adding secure devices&lt;br /&gt;
* lmce-disked-* - update the disked md/mid meta/base/device pkgs, specific fixes for 1404 joggler&lt;br /&gt;
* lmce-json-plugin (876,877) - first time addition to the main repo&lt;br /&gt;
* libdvdid0 (replacement) - first time addition to the repo, for use by Media Identifier&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - enable disabling internal volume control, similar to how logitechmediaserver does&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1404(armhf)/jessie(rpi)-a84db86f ==&lt;br /&gt;
* lmce-launch-manager (298,299) - only update squeeze devices when running on the core, redundant elsewhere.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404-87954508 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t fail if dvdcss2 cannot be automatically installed.&lt;br /&gt;
* pluto-hald (529,530) - reinstate tty detection, seperate from usb-serial, use direct parent for udi naming.&lt;br /&gt;
* pluto-boot-scripts (234) - disable buildall, the script doesn&#039;t run so why waste time creating it.&lt;br /&gt;
* lmce-launch-manager (298,299)&lt;br /&gt;
** update squeezebox players on router reloads from Launch_Manager&lt;br /&gt;
** call Config_Device_Changes in startCoreServices to ensure everything gets its&#039; Need Configure flag reset.&lt;br /&gt;
&lt;br /&gt;
== Update a332f49a ==&lt;br /&gt;
* lmce-install-scripts (391) - fix missing quote in MD installation.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix missing &#039;fi&#039; in BootMessage.sh&lt;br /&gt;
** fix usb.1 system serial port listing/translating&lt;br /&gt;
* lmce-media-identifier (931,932) - fix segfault, CDs are identified, cd-ripping functional again&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** prioritize new conf dir over old conf dir, fix install on systems upgraded from 1204-&amp;gt;1404&lt;br /&gt;
** redirect mythweb to html/mythweb&lt;br /&gt;
* pluto-hald (529,530) - updates to serial port naming, specifically for odroid.&lt;br /&gt;
* pluto-storage-devices (533) - fix mounted drive detection and add detection for drives mounted in /proc/cmdline like rpi.&lt;br /&gt;
&lt;br /&gt;
== Update 1204=201602080446+2028f850 &amp;lt;br&amp;gt; 1404=201602071815+c31bc44f ==&lt;br /&gt;
* lmce-install-scripts (391)&lt;br /&gt;
** enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
* lmce-core (888) - enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
* pluto-storage-devices (533) - redo StorageDevices_Radar using blkid for internal HDD identification.  /dev/disk/by-path/ is not present anymore.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
** new VerifyDistro.sh script and call the script on boot.&lt;br /&gt;
*** Preventative mostly.  Intended to ease pain for those that upgrade distros.&lt;br /&gt;
*** Ensure child devices, onscreen orbiter, have the proper PK_Distro set.&lt;br /&gt;
&lt;br /&gt;
== Update 296fdcd3 ==&lt;br /&gt;
* pluto-website-admin (220) - fix depends versioning&lt;br /&gt;
* pluto-hald (529,530) - fix depends versioning&lt;br /&gt;
* pluto-boot-scripts (234) - fix depends versioning&lt;br /&gt;
* pluto-system-database (211) - fix depends versioning&lt;br /&gt;
* pluto-orbitergen (226,227) - fix depends versioning&lt;br /&gt;
* lmce-disked-md-base (801) - fix depends versioning&lt;br /&gt;
* lmce-install-scripts (391) - fix depends versioning&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix depends versioning&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix depends versioning&lt;br /&gt;
* lmce-datalogger-plugin (686,687) - fix depends versioning &lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix depends versioning&lt;br /&gt;
&lt;br /&gt;
== Update f3a444c0 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** use newer .sh script rather than obsolete .pl script for dialplan creation&lt;br /&gt;
** fix Directory listing on cisco phones&lt;br /&gt;
** fix delete buttons on internet radio page.&lt;br /&gt;
* pluto-hald (529,530)&lt;br /&gt;
** add &#039;usb&#039; to &#039;pci&#039; and &#039;platform&#039; as valid bus addresses&lt;br /&gt;
** permit adding of usb devices with usb_serial or tty children&lt;br /&gt;
* pluto-boot-scripts (234) - update SetupAudioVideo.sh to more reliably address nvidia hdmi audio outputs&lt;br /&gt;
* lmce-asterisk (replacement) - live_dangerously for now to get all the necessary Voicemail modules to load&lt;br /&gt;
* pluto-system-database (211) - new DD Number of jobs for orbiter plug-in/orbitergen&lt;br /&gt;
* pluto-boot-scripts (234) - updates to RegenOrbiter scripts for parallel job queued orbiter generation.&lt;br /&gt;
* pluto-orbitergen (226,227) - new depends on GNU parallel&lt;br /&gt;
* lmce-disked-md-base (801) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* lmce-install-scripts (391) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - remove hardcoded ip address, get from db instead.&lt;br /&gt;
* lmce-diskless-tools (627,628) - only run UpdateDebCache.sh if it is executable&lt;br /&gt;
* lmce-datalog-plugin(686,687) - fix pear install command in postinst&lt;br /&gt;
* lmce-advanced-ip-camera(812,813) - add basic onvif support (snapshot,PTZ)&lt;br /&gt;
&lt;br /&gt;
== Update 31792 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of new External_Media_Identifier, testing CDDB ids&lt;br /&gt;
&lt;br /&gt;
== Update 31783 ==&lt;br /&gt;
* pluto-libserial (190,191) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-dcecommon (192,193) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-irbase (194,195) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-plutoutils (196,197) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-vipshared (199,200) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-serializeclass (198,238) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-libbd (239,240) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-ra (247,248) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-main-db (201,237) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-media-db (254,255) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-security-db (278,277) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-sdl-helpers (346,347) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-messagetrans (398,401) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-game-db (675,676) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-windowutils (677,678) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-datalog-db (688,689) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
&lt;br /&gt;
== Update 31782 ==&lt;br /&gt;
* pluto-std-plugins - fix FK_File search inside Attribute in Media_Plugin&lt;br /&gt;
&lt;br /&gt;
== Update 31774 ==&lt;br /&gt;
* lmce-disked-mid-base (899) - fix error in postinst&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come (this should be in but apt-get is getting 404 errors)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add &amp;quot;remove failed node&amp;quot; command&lt;br /&gt;
* pluto-website-admin - add &amp;quot;remove failed node&amp;quot; command for zwave advanced page&lt;br /&gt;
&lt;br /&gt;
== Update 31760 ==&lt;br /&gt;
* lmce-disked-md-base (801) - fix another error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31757 ==&lt;br /&gt;
* lmce-core (888) - overwrite AutostartCore conf value&lt;br /&gt;
* lmce-md-meta (450) - overwrite AutostartMedia conf value&lt;br /&gt;
* lmce-mid-meta (962) - missing deb&lt;br /&gt;
* lmce-hybrid (769) - exit 0 in postinst, just to be sure&lt;br /&gt;
* lmce-disked-md-base (801) - fix error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31754 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - reconnect before send&lt;br /&gt;
&lt;br /&gt;
== Update 31752 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - remove hard coded caller id &#039;Cherryhomes, Tho&#039;, use incoming caller id.&lt;br /&gt;
&lt;br /&gt;
== Update 31750 ==&lt;br /&gt;
* pluto-website-admin (220) - fix postinst error notice on precise.&lt;br /&gt;
* pluto-boot-scripts (234) - (re)start asterisk, otherwise configuration doesn&#039;t occur and sip phones cannot register&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - force-reload apache2 after disabling mythbuntu sites&lt;br /&gt;
* lmce-md-meta (450) - don&#039;t overwrite conf values that are already set&lt;br /&gt;
* *openzwave* (replacement) - version bump, upgrade fixes to upstream files&lt;br /&gt;
&lt;br /&gt;
== Update 31744 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come&lt;br /&gt;
&lt;br /&gt;
== Update 31742 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Gui changes to not confuse people. &lt;br /&gt;
** outsideaccess works together with the firewall. &lt;br /&gt;
** phonelines note on protocol for meaning of &amp;quot;SPA&amp;quot; and a status for this protocol setting, port can be changed if needed else it will be the default (5060).&lt;br /&gt;
&lt;br /&gt;
== Update 31739 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix absolute timed events&lt;br /&gt;
&lt;br /&gt;
== Update 31723 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix nfs-premount script in default diskless image.&lt;br /&gt;
* lmce-dlna(842,843) - compatibility fixes&lt;br /&gt;
* lmce-install-scripts (391) - generate ssh keys so openssh-server can accept connections&lt;br /&gt;
* pluto-createdevice (303,304) - hide errors, specifically during initial package postinst&lt;br /&gt;
* lmce-cec-adaptor (871,872) - fix cec remotes not getting to lmce&lt;br /&gt;
&lt;br /&gt;
== Update 31693 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - Fixes #2530 - fix errors in mythtvdb synchronization scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31686 ==&lt;br /&gt;
* lmce-install-scripts (391) - deal with firstboot stuffenz&lt;br /&gt;
* pluto-system-database (211) - add proxy orbiter DT depends for generic web device&lt;br /&gt;
* pluto-website-admin (220) - order by photo file name in screen saver/photo browser&lt;br /&gt;
* pluto-boot-scripts (234) - try ubiquity before anything else, and reboot after the normal firstboot - breaks live boot on dvd atm&lt;br /&gt;
* lmce-diskless-tools (627,628) - permit i386 diskless image building on amd64 cores, ensure processes are killed in chroot before unmounting (deals with systemd for now)&lt;br /&gt;
&lt;br /&gt;
== Update 31660 ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) &lt;br /&gt;
**PS3 control screen, fix layout issue. adds seperate button group (triangle, circle, etc) and navigation arrows. Also adds power off button to properly exit screen&lt;br /&gt;
* pluto-website-admin (220) - prevent creation of extra &#039;blank&#039; network interfaces&lt;br /&gt;
&lt;br /&gt;
== Update 31655 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - close connection after use&lt;br /&gt;
* pluto-website-admin (220) - fill ServerName var if it is unset, not if it is set.&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - unify service control&lt;br /&gt;
* pluto-boot-scripts (234) - unify service control&lt;br /&gt;
* pluto-dhcpd-plugin (302) - unify service control&lt;br /&gt;
* pluto-disk-monitor (554) - unify service control&lt;br /&gt;
* pluto-mythtv-player (133,152) - unify service control&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - unify service control&lt;br /&gt;
* pluto-raid-tools (617) - unify service control&lt;br /&gt;
* pluto-storage-devices (533) - unify service control&lt;br /&gt;
* lmce-update-system (650,651) - unify service control&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - unify service control&lt;br /&gt;
* pluto-vdr-plugin (466,467) - unify service control&lt;br /&gt;
* pluto-vdr (468,469) - unify service control&lt;br /&gt;
* pluto-database-settings (407) - unify service control&lt;br /&gt;
* lmce-asterisk (replacement) - unify service control&lt;br /&gt;
* lmce-diskless-tools (627,628) - unify service control&lt;br /&gt;
* lmce-install-scripts (391) - unify service control&lt;br /&gt;
* pluto-updatemedia (405,406) - unify service control&lt;br /&gt;
* pluto-newmdinteractor (538,539) - unify service control&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - Fix size issues, floorplan popups.&lt;br /&gt;
&lt;br /&gt;
== Update 31621 ==&lt;br /&gt;
* pluto-mythtv-player (133,152) - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 31618 ==&lt;br /&gt;
* lmce-asterisk (replacement) - update db for chan_sccp-v4.2 and fix bug requiring manual asterisk reload on boot&lt;br /&gt;
&lt;br /&gt;
== Update 31615 ==&lt;br /&gt;
* pluto-* - rebuild with new libraries&lt;br /&gt;
* lmce-* - rebuild with new libraries&lt;br /&gt;
&lt;br /&gt;
== Update 31606 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix EPG data on orbiters, myth stores everything in UTC now.&lt;br /&gt;
* pluto-pluto-main-db (201,237) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-media-db (254,255) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-security-db (277,278) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-datalog-db (688,689) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-game-db (675,676) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-updateentarea (341,342) - don&#039;t send empty play command when resetting alarm&lt;br /&gt;
&lt;br /&gt;
== Update 31580 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - use bypass-event to avoid watching media events when playing alerts&lt;br /&gt;
* pluto-updateentarea (341,342) - send bypass-event with security event commands&lt;br /&gt;
* libcec3 debs (replacement) - removes conflict data with libcec2&lt;br /&gt;
&lt;br /&gt;
== Update 31575 ==&lt;br /&gt;
* lmce-asterisk (replacement) - play back alert notification file&lt;br /&gt;
* pluto-std-plugins (116,135) - create alert notification file with correct format&lt;br /&gt;
* pluto-boot-scripts (234) - fixes for nvidia drivers on precise, upgrades to nvidia-340&lt;br /&gt;
* lmce-avwizard-sounds (replacement) - don&#039;t copy fakeroot files (it is redundant it is)&lt;br /&gt;
* video-wizard-videos (replacement) - deb is back to normal size, not 2x&lt;br /&gt;
&lt;br /&gt;
== Update 31553 ==&lt;br /&gt;
* pluto-website-admin (220) - fix error that wipes out the apache2.conf&lt;br /&gt;
* pluto-hald (529,530) - fix segfaults with firewire hardware&lt;br /&gt;
&lt;br /&gt;
== Update 31547 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some API changes in OZW 1.3, more device template mappings&lt;br /&gt;
* pluto-boot-scripts (234) - typo fix for nvidia drivers&lt;br /&gt;
* lmce-disked-md-base (801) - set hostname on disked MDs, set timezone on disked MDs&lt;br /&gt;
* lmce-install-scripts (391) - set hostname on disked MDs, set timezone on disked MDs &lt;br /&gt;
* pluto-website-admin was generated---&amp;gt; lmce-website-admin (220) - set apache2 ServerName to silence error on boot&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates, revert to ruby 1.8&lt;br /&gt;
* pluto-generic-serial-device (307,335) - admit defeat for now, revert to ruby 1.8&lt;br /&gt;
&lt;br /&gt;
== Update 31533 ==&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31520 ==&lt;br /&gt;
* chan-sccp_v4.2 (replacement) - Upgrad asterisk SCCP channel driver to newest version&lt;br /&gt;
* pluto-vdr-plugin (466,467) - implement background loading of EPG from VDR to avoid crashes due to commands not completing on time&lt;br /&gt;
* pluto-boot-scripts (234) - some logic changes and added messages for video driver install debugging&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - link new channels dir to old channels dir for backwards compatibility&lt;br /&gt;
&lt;br /&gt;
== Update 31503 ==&lt;br /&gt;
* *zwave* (replacement) - new upstream openzwave version 1.3.1224&lt;br /&gt;
* lmce-zwave-ozw(505,506) - build against new libopenzwave1.3&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates&lt;br /&gt;
* lmce-disked-interactor (897,898) - make disked interactor aware of wheezy and jessie.&lt;br /&gt;
&lt;br /&gt;
== Update 31500 ==&lt;br /&gt;
* *myth* (replacement) - fix depends on non-existent packages&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst - verified installing now&lt;br /&gt;
* pluto-std-plugins (116,135) - Use integer comparison for brightness state&lt;br /&gt;
&lt;br /&gt;
== Update 31491 ==&lt;br /&gt;
* lmce-avwizard-skin-basic (replacement) - fix packaging of avwizard skin&lt;br /&gt;
* *myth* (replacement) - mythtv 0.27.5+fixes with Schedules Direct fix included&lt;br /&gt;
* *asterisk* (replacement) - asterisk 11.7 backport from trusty&lt;br /&gt;
* libical* (replacement) - for asterisk 11.7&lt;br /&gt;
* *cec* (replacement) - libcec3&lt;br /&gt;
* libplatform* (replacement) for libcec3&lt;br /&gt;
* lmce-cec-adaptor (871,872) - build against libcec3&lt;br /&gt;
* lmce-mediatomb (702) - fix pkg installation&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - update protocol version and secret word (shhh) for 0.27.5+fixes&lt;br /&gt;
* lmce-diskless-tools (627,628) - remove call to obsolete script in Diskless_Setup.sh&lt;br /&gt;
* pluto-vdr-plugin (466,467) - return full EPG (used in qOrbiter EPG Grid), improve communication speed with SVDRP&lt;br /&gt;
* pluto-slim-server-streamer (289,290) - emit time code event, fix duration parsing&lt;br /&gt;
* pluto-boot-scripts (234) - fix headless booting, update 1404 nvidia driver&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* lmce-md-meta (450) - add depends on alsa-utils&lt;br /&gt;
* pluto-website-admin (220) - Fix cdrviewer (Call Details Records) to accept SSL conections as well, firewall gui change to set Offline rules in red as they are not executed.&lt;br /&gt;
* pluto-app-server (126,145)- new poweroff mode I for ignore, since N is already in use&lt;br /&gt;
&lt;br /&gt;
== Update 31420 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add depends on pluto-boot-scripts for deb cache script&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31411 == &lt;br /&gt;
* pluto-avwizard (555,556) - fix depends on avwizard skins basic, should no longer care about version&lt;br /&gt;
* pluto-boot-scripts (234) - more explicity logic for core only booting, fix startup script db errors&lt;br /&gt;
* lmce-update-system (650,651) - remove and disable old init.d script from /etc/init.d&lt;br /&gt;
* pluto-plutodhcp (330,491) - depends on apparmor&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-dhcpd-plugin (302) - remove hardcoded IP addresses from configure scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31387 ==&lt;br /&gt;
* lmce-weather-plugin - make change to allow for tonight&#039;s forecast data (TSCHAK)&lt;br /&gt;
* lmce-asterisk (replacement) - remove obsolete phonetic engines and replace with espeak, voices remain the same&lt;br /&gt;
* mbrola (replacement) - base mbrola pkg for mbrola voices (add armhf binary)&lt;br /&gt;
* pluto-asterisk (270,271) - generate fr and de voicemail menus with espeak now&lt;br /&gt;
* lmce-core (888) - add depends on iptables&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31378 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Start_KDE.sh ownership fix, AV config updates&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-avwizard (555,556) - update pkgs &amp;amp; depends &amp;amp; config scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - do not run update deb_cache during dvd creation&lt;br /&gt;
* pluto-x-scripts (520) - fixups to Xconfigure.sh&lt;br /&gt;
&lt;br /&gt;
== Update 31356 ==&lt;br /&gt;
* pluto-system-database (211) - update depends&lt;br /&gt;
* pluto-orbiter (119,138) - update depends&lt;br /&gt;
* lmce-diskless-tools (627,628) - speedup dpkg in diskless create, fix missing quotes&lt;br /&gt;
&lt;br /&gt;
== Update 31352 ==&lt;br /&gt;
* pluto-motion-wrapper - more config file location fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 31351 ==&lt;br /&gt;
* pluto-boot-scripts (234) - change service &#039;nis&#039; to &#039;ypserv&#039;, nis is no longer a service name&lt;br /&gt;
* pluto-website-admin (220) - remove &#039;idiot&#039; text, let&#039;s be nice to people.&lt;br /&gt;
* lmce-core (888) - do not create and config under ubiquity&lt;br /&gt;
* lmce-md-meta (450) - do not create and config under ubiquity&lt;br /&gt;
* motion (replacement) - fix bad config file setting in rules&lt;br /&gt;
&lt;br /&gt;
== Update 31337 ==&lt;br /&gt;
* motion (replacement) - new version of motion to match new configuration values generated by linuxmce&lt;br /&gt;
&lt;br /&gt;
== Update 31331 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix for brightness events&lt;br /&gt;
* pluto-boot-scripts (234) - fix kdm disabling, start ubiquity after network config&lt;br /&gt;
* lmce-diskless-tools (627,628) - add upstart overrides for kdm&lt;br /&gt;
* lmce-install-scripts (391) - start ubiquity after network config&lt;br /&gt;
&lt;br /&gt;
== Update 31314 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add missing depends&lt;br /&gt;
&lt;br /&gt;
== Update 31292 ==&lt;br /&gt;
* lmce-core-locator (replacement) - (1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-system-database (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* All .debs created by MakeRelease - removal of all Pre-Depends, everything is now a Depends entry (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
== Update 31228 ==&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-local-database&lt;br /&gt;
&lt;br /&gt;
== Update 31214 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package (not in repo, need build-replacements.sh svn up&#039;d?)&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - preinst/postinst updates&lt;br /&gt;
* pluto-boot-scripts (234) - preinst/postinst updates&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-disked-md-base (801) - firstboot updates&lt;br /&gt;
&lt;br /&gt;
== Update 31187 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package&lt;br /&gt;
* pluto-confirm-dependencies (281,272) - new depends on lmce-install-scripts (fixes unable to apt-get dist-upgrade)&lt;br /&gt;
* lmce-md-meta (450) - new depends on nfs-common, openssh-server and pastebinit&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - update depends, preinst/postinst&lt;br /&gt;
* pluto-boot-scripts (234) - depends &amp;amp; preinst/postinst updates&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - add override mythweb defaults in pkg preinst&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - update depends&lt;br /&gt;
&lt;br /&gt;
== Update 31133 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** enable WakeMDs.sh to wake any halted MDs.&lt;br /&gt;
** consolidate all boot script launching to /etc/init.d/linuxmce&lt;br /&gt;
* pluto-avwizard (555,556) - moves start script to /usr/pluto/bin, called by /etc/init.d/linuxmce now&lt;br /&gt;
* lmce-update-system (650,651) - removes init.d script, called by /etc/init.d/linuxmce now&lt;br /&gt;
* pluto-website-admin (220) - GUI changes on network settings if an bridge is configured on the db.&lt;br /&gt;
* lmce-core (888) - depend on pluto-asterisk, lmce-asterisk, lmce-install-scripts&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* pluto-generic-serial-device (307,335) - wildshot attempt at fixing segfaults&lt;br /&gt;
&lt;br /&gt;
== Update 31103 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** Network bridging now possible  for wifi AP to have the same network as the local lan. &lt;br /&gt;
** ipv6 on/off for network interfaces. Read multiple ipv6 interfaces from the db.&lt;br /&gt;
** re-enable HaltMDs.&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* libqhttpserver (912) needed for linuxmce nvr&lt;br /&gt;
* lmce-launch-manager - (298,299) - ?&lt;br /&gt;
&lt;br /&gt;
== Update 31087 ==&lt;br /&gt;
* lmce-weather (838,839) - Fix a serious bug in getconfig where incorrect configuration device data would crash program. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 31083 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes #2422, advanced zwave page broken in chrome&lt;br /&gt;
* pluto-system-database (211) - thumbnail screen fixes&lt;br /&gt;
&lt;br /&gt;
== Update 31074 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** setEa2.php - Fix settings for creating entertain area.&lt;br /&gt;
** qOrbiterGenerator.php - Fix erroneous EA creation by removing it.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Fix incorrect setting for enabling / disabling motion.&lt;br /&gt;
&lt;br /&gt;
== Update 31069 ==&lt;br /&gt;
* pluto-website-admin (220) - setEa2.php Fix settings for creating entertain area.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Initial build.&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (881) - Large update of skins and internals.&lt;br /&gt;
&lt;br /&gt;
== Update 31061 ==&lt;br /&gt;
* lmce-squeezeslave (762) - Add configuration DD to command line&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DB package updates&lt;br /&gt;
** restore previous video remote layout with Options button to select subtitles/audio tracks/video tracks from a datagrid list.&lt;br /&gt;
* pluto-website-admin (220) - firewall.php edit rules for non advanced firewall and some other small fixes.&lt;br /&gt;
* lmce-asterisk (replacement) - sip config modules to avoid autoload.&lt;br /&gt;
&lt;br /&gt;
== Update 31051 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** firewall.php not adding rules now fixet.&lt;br /&gt;
** Test buttons for Hue lights&lt;br /&gt;
** Security outsideAccess page now works nicely with the new firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 31044 ==&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
&lt;br /&gt;
== Update 31031 ==&lt;br /&gt;
* pluto-website-admin (220) - firewall.php after a strange fault and some layout fixes.&lt;br /&gt;
* lmce-mediatomb (702) - don&#039;t assume mediatomb is already running.&lt;br /&gt;
&lt;br /&gt;
== Update 31013 ==&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* pluto-boot-scripts (234) - Network Parameter count for more interfaces set and Network firewall accepting postrouting Masquerade  for other network interfaces.&lt;br /&gt;
&lt;br /&gt;
== Update 30985 ==&lt;br /&gt;
* pluto-website-admin (220) - #2268 fail2ban integration logging failed user login attempt.&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** #2268 fail2ban script not insert existing rules to our db.&lt;br /&gt;
** Support for audio output select on rpi via web admin&lt;br /&gt;
* lmce-diskless-tools (627,628) - update syslinux depends to syslinux-common&lt;br /&gt;
* lmce-omx-player (829,830) - Honour audio output selection of rpiMD&lt;br /&gt;
* lmce-squeezeslave (762) - Fix detection for squeezelite&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - further fixes&lt;br /&gt;
* lmce-usb-gamepad (795,796) - rewrite the whole main loop to suck less. hold-down repeats work, input handling more sane.&lt;br /&gt;
&lt;br /&gt;
== Update 30926 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Fix for #2368 insert firewall rules en #2064 edit and delete chains (except some system chains).&lt;br /&gt;
** Support for brightness based events.&lt;br /&gt;
* pluto-std-plugins (116,135) - Support for brightness based events&lt;br /&gt;
* lmce-omx-plugin (831,832) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** Database additions for XBOX 360 Gamepad (device templates, package)&lt;br /&gt;
** Modification of OMX Plugin to allow priority to be changed.&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - the XBOX 360 Gamepad driver, uses xboxdrv userspace driver.&lt;br /&gt;
* lmce-usb-gamepad (795,796) - additions here for above XBOX 360 Gamepad support.&lt;br /&gt;
&lt;br /&gt;
== Update 30862 ==&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress can now read latest files per linuxmce user.&lt;br /&gt;
&lt;br /&gt;
== Update 30860 ==&lt;br /&gt;
* lmce-weather (838,839) - some fixes by cfernandes&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress.&lt;br /&gt;
* pluto-boot-scripts (234) - more mail fixes&lt;br /&gt;
&lt;br /&gt;
== Update 30855 ==&lt;br /&gt;
* pluto-vdr, pluto-vdr-plugin - remove hardcoding of core IP and network address, but depend on the pluto.conf entries for DCERouter.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location (again)&lt;br /&gt;
* lmce-diskless-tools - stop copying apt configs from the core&lt;br /&gt;
* pluto-boot-scripts - fix postfix setup #2393&lt;br /&gt;
&lt;br /&gt;
== Update 30841 ==&lt;br /&gt;
* lmce-avwizard-sounds - fix replaces/conflicts data&lt;br /&gt;
* lmce-skins-basic - fix replaces/conflicts data&lt;br /&gt;
* lmce-avwizard-skin-basic - fix replaces/conflicts data&lt;br /&gt;
&lt;br /&gt;
== Update 30383 ==&lt;br /&gt;
* pluto-website-admin (220) - Add Hue lights related test button.&lt;br /&gt;
* pluto-boot-scripts - Add another option --autobackup to PlutoRestorePoint.sh to allow backup of pluto_main only&lt;br /&gt;
&lt;br /&gt;
== Update 30814 ==&lt;br /&gt;
* pluto-Boot-scripts - Firewall order by place and PK_Firewall to let rules stay on top on the middle or on the bottom.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location&lt;br /&gt;
* lmce-hue-controller (862,863) - Fix bug in adding new lights, now adds serial number.&lt;br /&gt;
* pluto-website-admin (220) - Fix oops relating the missing &#039;.&#039; which caused operations/login.php not to work.&lt;br /&gt;
&lt;br /&gt;
== Update 30783 ==&lt;br /&gt;
* lmce-nbd-client-wrapper - new pkg to hold common script&lt;br /&gt;
* pluto-xine-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* lmce-vlc-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* pluto-boot-scripts - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
* pluto-storage-devices - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30777 ==&lt;br /&gt;
* lmce-core - depend on openswan&lt;br /&gt;
* pluto-system-database - pkg updates&lt;br /&gt;
* pluto-boot-scripts - remove check for openswan from bootscript&lt;br /&gt;
* pluto-generic-serial-device - update to ruby 1.9.1&lt;br /&gt;
&lt;br /&gt;
== Update 30773==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller internals to now include polling, so as to make sure floorplan data is accurate. Changes underlying mechanisms for how lights are handled in preparation for extending additional support for Cree lights and sensors devices.&lt;br /&gt;
&lt;br /&gt;
== Update 30767 ==&lt;br /&gt;
* lmce-diskless-tools - update diskless archive name to reflect current compression method xz.&lt;br /&gt;
* pluto-website-admin (220) - updates to internet radio, moves add channels to a seperate page.  Thanks Dap-P!&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
* pluto-vdr - adds missing depends on vdr in trusty&lt;br /&gt;
* lmce-core - update depends to new pkg name lmce-avwizard-sounds&lt;br /&gt;
* pluto-avwizard - update depends to new pkg name lmce-avwizard-skins-basic&lt;br /&gt;
* lmce-clock-screen-saver - make the clock screen saver use the WMController/wmctrl methods for setting window visibility to be compatible with Orbiter. (TSCHAK) (Trusty only)&lt;br /&gt;
* pluto-storage-devices - Make sure that smbpasswd is used to create or update sambahelper&#039;s password (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30726 ==&lt;br /&gt;
* pluto-vdr - VDR player&#039;s package assumed a correctly installed vdr package which includes an entry in /etc/default for vdr. We no longer fail on a missing file.&lt;br /&gt;
&lt;br /&gt;
== Update 30724 ==&lt;br /&gt;
* lmce-weather - updates to weather sources, add OpenWM source.  Thanks SBCC and cfernandes!&lt;br /&gt;
* lmce-skins-* - adds missing telecom icons, updates/adds weather icons&lt;br /&gt;
* lmce-avwizard-sounds - remove extraneous stuff from pkg, reduce pkg size back to normal.  Proper replaces/conflicts/data...&lt;br /&gt;
* lmce-avwizard-skin-basic - Proper replaces/conflicts/data...&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
&lt;br /&gt;
== Update 30718 ==&lt;br /&gt;
* lmce-core - new depends on lmce-skins*&lt;br /&gt;
* lmce-md-meta - add depends on pnp-detection scripts&lt;br /&gt;
* lmce-hybrid - new depends on lmce-skins*&lt;br /&gt;
* pluto-avwizard (556,555) - add pciutils as a depends, still need to deal with multiarch stuff so this will break armhf, we will not update armhf for now, it doesn&#039;t use avwizard but does install it.&lt;br /&gt;
* lmce-diskless-tools - minor diskless create fixups&lt;br /&gt;
* pluto-orbiter - missing depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio script&lt;br /&gt;
* pluto-website-admin (220) - recognize MIDs as top level devices&lt;br /&gt;
* pluto-mythtv-player - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 30628 ==&lt;br /&gt;
* *-database - fix install issues&lt;br /&gt;
&lt;br /&gt;
== Update 30622 ==&lt;br /&gt;
* pluto-orbiterinstallers - fix depends issue&lt;br /&gt;
* pluto-system-database - lots of compat updates&lt;br /&gt;
* lmce-* - lots of compat updates&lt;br /&gt;
* pluto-* - lots of compat updates&lt;br /&gt;
&lt;br /&gt;
== Update 30618 ==&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio scripts&lt;br /&gt;
* pluto-website-admin (220) - updated internet radio page&lt;br /&gt;
&lt;br /&gt;
== Update 30571 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - send &amp;quot;Device is turned on or off&amp;quot; event when appropriate so the corresponding event works as expected&lt;br /&gt;
* lmce-squeezeslave (762) - set to pnp create without prompting&lt;br /&gt;
* lmce-runtime-dependencies (903) - pkg to help consolidate runtime depends.&lt;br /&gt;
* lmce-core (888) - updated depends&lt;br /&gt;
* lmce-md-meta (450)- updated depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated depends&lt;br /&gt;
* pluto-createdevice (303,304) - updated depends&lt;br /&gt;
* lmce-weather(838,839) - fix potential segfault&lt;br /&gt;
* pluto-website-admin (220) - add &amp;quot;replace node&amp;quot; button to advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 30549 ==&lt;br /&gt;
* pluto-mythtv-player - fix misaligned data values during mythtv.txt creation.&lt;br /&gt;
&lt;br /&gt;
== Update 30526 ==&lt;br /&gt;
* lmce-core - new pkg&lt;br /&gt;
* lmce-hybrid - pkg depends changes&lt;br /&gt;
* lmce-md-meta - pkg depends changes&lt;br /&gt;
* pluto-dcerouter - pkg depends changes&lt;br /&gt;
* pluto-photo-screen-saver - pkg depends changes&lt;br /&gt;
* pluto-boot-scripts - pkg depends changes&lt;br /&gt;
* pluto-orbiter - pkg depends changes&lt;br /&gt;
* pluto-simplephone - pkg depends changes&lt;br /&gt;
* pluto-website-admin - pkg depends changes&lt;br /&gt;
* lmce-mythtv-scripts - pkg depends changes&lt;br /&gt;
* pluto-system-database - pkg depends changes&lt;br /&gt;
* lmce-squeezeslave (762) - fix launch script, automatically create associated squeezebox player on the core.&lt;br /&gt;
* pluto-std-plugins - run New_PnP_MD.sh for new MID devices as well.&lt;br /&gt;
* lmce-diskless-tools - don&#039;t fail on invoke-rc.d during diskless create, exit gracefully and continue.&lt;br /&gt;
* pluto-mythtv-player - fix diskless create failures due to old hacks.  more work is needed here overall on mythtv integration.&lt;br /&gt;
&lt;br /&gt;
== Update 30419 ==&lt;br /&gt;
* pluto-slim-server - Make sure to turn off all Squeeze* devices when Slim Server Streamer starts or restarts (so that squeezelite does not hog sound cards.)&lt;br /&gt;
* pluto-hald (529,530) - add device node path to pnpqueue with v4l devices during detection&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - update for new lib version&lt;br /&gt;
&lt;br /&gt;
== Update 30384 ==&lt;br /&gt;
* pluto-confirm-dependencies - depend on pluto-install-scripts.&lt;br /&gt;
* pluto-disk-drive (122,141) - remove hal bits that dealt with old jukebox bugs.&lt;br /&gt;
* pluto-capture-card-scripts (580) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-pnp-detection (562) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-storage-devices (533) - convert autofs from hal to udev.&lt;br /&gt;
* pluto-bootscripts (234) - disable starting the hald since we&#039;re using udev now, remove false &#039;fail&#039; messages during reboot/shutdown&lt;br /&gt;
* pluto-slim-server-streamer - make one tweak (do not delete m_mapStreamsToPlayers entry in CMD_Stop). Streaming now works consistently, properly, with squeezebox devices and their clones. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30354 ==&lt;br /&gt;
* pluto-hald (529,530) - fix attempt to fire event for child device of usb-dongle.&lt;br /&gt;
* pluto-slim-server-streamer - Implement FF/REW (transport) trick-play control for Squeeze* devices. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30341 ==&lt;br /&gt;
* pluto-bootscripst - fixes for PPPoE users to not autostart the external interface.&lt;br /&gt;
* pluto-slim-server-streamer - Fix to power off squeezebox player when stream is not in use. This allows softsqueeze/squeezeslave/squeezelite players to let go of a sound device, when not in use (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30332 ==&lt;br /&gt;
* pluto-orbiter (118,139) - disable old hid device functionality.  Anyone who needs it can request a special build which will be provided at no extra charge. ;)&lt;br /&gt;
* pluto-bootscripts (234) - disable Gamepad Radar, functionality now in hal through udev&lt;br /&gt;
* pluto-avwizard (556,555) - fixes mangling of RemoteCmd when &amp;gt;1 remote is detected.&lt;br /&gt;
* pluto-hal-device-finder (535,536) - update to use udev rather than hal.&lt;br /&gt;
* pluto-hald (529,530) - update to use udev rather than hal.&lt;br /&gt;
* pluto-system-database (211) - updates for new detection method (joystick, cec-adaptor), update dependency data for hal pks to reflect dropping hald and add depends on udev now.&lt;br /&gt;
&lt;br /&gt;
== Update 30219 ==&lt;br /&gt;
* pluto-bootscripts (234) - Fail2ban firewall update script, and missing radioscript.sh.&lt;br /&gt;
* pluto-website-admin - Place set for rules on the firewall and bantime for fail2ban integration.&lt;br /&gt;
* pluto-std-plugins (116,135) - adds heirloom-mailx for &#039;mailx -r&#039; functionality, fixes e-mail in general info plugin&lt;br /&gt;
&lt;br /&gt;
== Update 30068 ==&lt;br /&gt;
* lmce-advanced-ip-camera(813,812) - Fixed high cpu usage if connection to camera can not be made&lt;br /&gt;
&lt;br /&gt;
== Update 30052 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - fix android pkg meta data, need to rebuild all together&lt;br /&gt;
&lt;br /&gt;
== Update 30051 ==&lt;br /&gt;
* pluto-updateentarea (341,342) - use DAY/NIGHT in watching/stopped watching events to make them smarter&lt;br /&gt;
* pluto-std-plugins (116,135) - Implement Get Device Status in General Info Plugin&lt;br /&gt;
* pluto-bootscripts (234) - fix VPN ip up/down&lt;br /&gt;
&lt;br /&gt;
== Update 30025 ==&lt;br /&gt;
* pluto-system-database (211) - column def updates&lt;br /&gt;
* pluto-local-database (214) - new Firewall columns and new VPN columns for Users table.&lt;br /&gt;
&lt;br /&gt;
== Update 30014 ==&lt;br /&gt;
* lmce-transmission-client (852) - fix postinst issue.  (Thanks SBCC)&lt;br /&gt;
== Update 29994 ==&lt;br /&gt;
More VLC Player changes to make it at least somewhat usable, there were some ugly bugs that came to light once i plopped it onto my production system. Right now sound device is plughw:0,3, if you need a different one, change it in the code.  (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* lmce-vlc-player - many little fixes to make it suck less.&lt;br /&gt;
&lt;br /&gt;
== Update 29990 ==&lt;br /&gt;
I am working on the VLC player, and it is breathing enough for basic testing. Please do not use in production environment. There is still a lot of code to write (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - updates for VLC player (TSCHAK)&lt;br /&gt;
* vlc-player (882,884) - Very early alpha developer test of the VLC player. (TSCHAK)&lt;br /&gt;
* vlc-plugin (874,875) - Very alpha developer test of the VLC plugin. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 29984 ==&lt;br /&gt;
* pluto-system-database (211) - fix bad repos in pkgs&lt;br /&gt;
* pluto-website-admin - just because I think it is necessary :-)&lt;br /&gt;
&lt;br /&gt;
== Update 29983 ==&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36983</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36983"/>
		<updated>2017-05-03T03:14:09Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: Lots of stuff for ZFS.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the latest changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo much easier.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please include the pkg #s to facilitate building on 3x i386 targets in addition to 2x amd64 and 3x armhf targets where full builds are not always practical.  Keep in mind that most packages are referred to by two (2) package numbers from the database, a source package and a binary package.  &amp;quot;Thank you for your co-operation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
* pluto-bootscripts (234) firewall need to work together with the vpn.&lt;br /&gt;
* lmce-asterisk (920) - db_create_dialplan.sh to add blacklist better check option on asterisk dialplan. add Voicemailmain op extension *100&lt;br /&gt;
* lmce-vlc-player (884,882) - Further work on VLC_Player&#039;s transport controls. Please test and tell me if they work better. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Addition of ZFS templates.&lt;br /&gt;
* pluto-raid-tools (617) - Additions for ZFS&lt;br /&gt;
* lmce-zfs-support (937) - NEW PACKAGE for ZFS support.&lt;br /&gt;
* pluto-storage-devices (533) - Add ZFS support to automounter.&lt;br /&gt;
* pluto-website-admin (220) - Add ZFS support to RAID pages.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201704211536+941ae691 ==&lt;br /&gt;
* pluto-website-admin (220) - Blacklist.php added for administrating asterisk blacklist of phone numbers #2691&lt;br /&gt;
* lmce-asterisk (920) - db_create_dialplan.sh to add blacklist check on asterisk dialplan.&lt;br /&gt;
* pluto-database* - GRANT to localhost as well (just 127.0.0.1 doesn&#039;t help since MySQL 5.7)&lt;br /&gt;
&lt;br /&gt;
== Update armhf 201704191739+13f4f937 ==&lt;br /&gt;
* pluto-vdr - Don&#039;t check for the existence of a Xine device in the tree. There are many ways to display VDR.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201704182328+13f4f937  ==&lt;br /&gt;
* pluto-text-to-speech - Fix for initial installation which might effect usability.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704181123+a26d414e ==&lt;br /&gt;
* pluto-security-database - Localhost or 127.0.0.1 matters for MySQL - This should be the last fix needed to get MySQL Server v5.7 sorted out - at least for the install.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704180809+9af5cc66 ==&lt;br /&gt;
* pluto-boot-scripts - Set MySqlUser name in ConfigOps if it isn&#039;t already set.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201704171950+9af5cc66 ==&lt;br /&gt;
* pluto-sqlcvs, pluto*database* - Final fixes for 1404 and 1604.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704161042+f5455665 ==&lt;br /&gt;
* pluto-sqlcvs - Now has a dependency to pluto-database-settings&lt;br /&gt;
* pluto-database-settings - all user creation happens in here&lt;br /&gt;
* pluto-database-system - no more user creation.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 - 201704151808+866a5886 ==&lt;br /&gt;
* pluto-database-settings - Takes way too long to get fixed.&lt;br /&gt;
&lt;br /&gt;
== Update 201704151034+80dd9806 ==&lt;br /&gt;
* pluto-database-settings - *grml* don&#039;t just blindly copy other peoples code.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704142323+6ad66efd ==&lt;br /&gt;
* pluto-database-settings - Put user creation into mkr_postinst_mysql instead of mkr_postinst_system. Let&#039;s hope this fixes this sucker.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 2.0.0.47.201704050752+ddbbb689 ==&lt;br /&gt;
* lmce-vlc-player (884,882) - preprocess URL to ensure that file paths with # in them play correctly.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 amd64/i386 201704041743+906d69eb ==&lt;br /&gt;
* pluto-bootscripts (234) - Typo fix for insert rule to the db. /ppp/ip-up.d/lmce-vpn-up and /ppp/ip-down.d/lmce-vpn-down works now niceley togheter with the new firewall.&lt;br /&gt;
* pluto-system-database (211) - sqlCVS commit to add Imagemagick as dependency to VLC Player, finally squashing that #($#@( start bug! (TSCHAK)&lt;br /&gt;
** Also added ir-keytable depedency to pluto-lirc-wrapper&lt;br /&gt;
** Also added generic cd and dvd icons for External Media Identifier&lt;br /&gt;
* pluto-lirc-wrapper (340,421) - Ensure that ir-keytable is cleared before lircd starts to avoid unusual behavior with remotes that use kernel event subsystem (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - Fix DVD to use cifs instead of smbfs (which has been deprecated for 10 years.)&lt;br /&gt;
* lmce-vlc-player (884,882) - bug fixes for multi room sync&lt;br /&gt;
* lmce-vlc-plugin (874,875) - bug fixes for multi room sync&lt;br /&gt;
* lmce-media-identifier (931,932) - add generic dvd and cd identification if disc can&#039;t be identified by normal means.&lt;br /&gt;
* pluto-website-admin (220) - phonelines.php shows the state of a SPA protocol phonline. And firewall.php updated preg_match to find lines on pluto.conf and change them if exists. Issue2745.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201703301804+358c1c45 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fixes Bug #2726 - Media details now work, again.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 - 201703272335+efdf6de9 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Issue #2730 - Media Plugin changes to add support for FIFO capture card playback to VLC Player (route messages to VLC Player if it exists) -TSCHAK&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue #2729, #2730 - Implement FIFO device playback for local devices similar to file playback. (TBD: recompile VLC with PVR functionality), also multi-room playback. VLC Player is now in beta. -TSCHAK&lt;br /&gt;
* lmce-vlc-plugin (874,875) - Issue #2729 - Implement multi-room playback, VLC sync listener on core, etc. VLC functionality is now beta. -TSCHAK&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201702201438+325cc736 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix for multiple cameras and Get Image command&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue 2727, Issue 2728 - Trick play overhaul and fix audio glitches when trick play is used. &lt;br /&gt;
* pluto-boot-scripts (234) - SetupAudioVideo.sh - slight change to libvlc.conf so that trick play OSD works.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1204-1404-1604/amd64 c20633ff ==&lt;br /&gt;
* pluto-website-admin (220) - Added the case for section energyGraph and sipConf, fixed permissions for mysql asteriskuser, add sql credentials for myth, change MYSQL_NUM to MYSQLI_NUM&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1404/amd64 a7c10426 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add backports so 1204 diskless create works&lt;br /&gt;
* lmce-oauth2-server (668) - initial build of lmce oauth2 server for cloud interfacing&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404/1604 i386 - 1404x64 - 201611190055+fee90f43 ==&lt;br /&gt;
* pluto-boot-scripts (234) - database upgrades&lt;br /&gt;
* pluto-orbitergen (226,227) - database upgrades&lt;br /&gt;
* pluto-pluto-main-db (201,237) - database upgrades&lt;br /&gt;
* pluto-pluto-security-db (278,277) - database upgrades&lt;br /&gt;
* lmce-asterisk (replacement) - database upgrades&lt;br /&gt;
* pluto-system-database (211) - database upgrades&lt;br /&gt;
* pluto-local-database (214) - database upgrades&lt;br /&gt;
* pluto-security-database (256) - database upgrades&lt;br /&gt;
* pluto-telecom-database (472) - database upgrades&lt;br /&gt;
* pluto-media-database (233) - database upgrades&lt;br /&gt;
* pluto-database-settings (407) - database upgrades&lt;br /&gt;
* pluto-sqlcvs (212,213) - database upgrades&lt;br /&gt;
* pluto-std-plugins (116,135) - database upgrades&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609281853+9638f5bc ==&lt;br /&gt;
* pluto-website-admin (220) - #2705 fixed syntax error.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609271106+39103855 ==&lt;br /&gt;
* pluto-website-admin (220) - Update firewall.php GUI change some fields where reset to the default values. now the db data is honored.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** don&#039;t create initramfs for Raspbian Jessie diskless filesystems.&lt;br /&gt;
** ensure firstboot runs on diskless Jessie RPis.&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** stop/start rather than restart dhcp server, it&#039;s like nuking the site from orbit... only way to be sure.&lt;br /&gt;
** Firewall blocks udp 1900 UpNP traffic from externalinterface.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609172308+325de35d ==&lt;br /&gt;
* lmce-autotag (780, 781) linuxmceTag - fix comparison issue with media type.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609131230+5eaa4671/201609131753+5eaa4671 ==&lt;br /&gt;
* pluto-boot-scripts (234) - send dhcp vendor specific options only to wired raspberry pis.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 201609102226+fda3da63 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** rpi native pxe additions/updates&lt;br /&gt;
** extend startup timeout when booting under systemd&lt;br /&gt;
* lmce-diskless-tools (627,628) - rpi native pxe additions/updates&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DT updates for rpi native pxe&lt;br /&gt;
** add Serial Number Device Data to RPi DTs&lt;br /&gt;
** sets default PK_Distro to 22 (jessie) for RPi DTs&lt;br /&gt;
** new device data for &amp;quot;Standard Energy Meter&amp;quot;&lt;br /&gt;
* pluto-std-plugins (116,135)&lt;br /&gt;
** stores energy reading in state field for Standard Energy Meter&lt;br /&gt;
** fixes dcerouter crash when searching media&lt;br /&gt;
* pluto-updatemedia (405,406) - fix segfault when a dir is attempting to be tagged directly (without a .id3)&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - don&#039;t fail pkg install if simplephone is not running.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-i386 - 1404-i386/amd64 201607240235+899786ab ==&lt;br /&gt;
* pluto-website-admin (220) - Mysqli_real_escape_string did not work. a start with ipv6 firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/i386 201607202218+14cba09a ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) - Stream Bouncing, Additional settings for location, removed debug output, queue functionality.&lt;br /&gt;
&lt;br /&gt;
== Update 201607181902+d4cec1a0 1404-i386/amd64 - 1204-i386 ==&lt;br /&gt;
* pluto-website-admin - Update to qOrbiterGenerator.php for newer PHP version&lt;br /&gt;
&lt;br /&gt;
== Update 201607161239+6d72c3f9 1404-i386/amd64 1204-i386 ==&lt;br /&gt;
* pluto-website-admin (220) - #2678 fix Warning: Invalid argument supplied for foreach() in /var/www/lmce-admin/include/dhcpd-tools/DHCPd-parse.php on line 113&lt;br /&gt;
* pluto-boot-script&lt;br /&gt;
&lt;br /&gt;
== Update 201607151016+5b5adba3 1404/i386 &amp;amp; amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule use another escape method.&lt;br /&gt;
&lt;br /&gt;
== Update 201607122332+f0fc9c6b 1404/i386 ==&lt;br /&gt;
* pluto-boot-scripts (234) - fix #2684 clients cannot access internet when firewall is disabled. &lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule.&lt;br /&gt;
&lt;br /&gt;
== Update 201607050613+601c67da 1404-i386/amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - more fixes to the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update trusty i386/amd64 201606301955+614dfa7b ==&lt;br /&gt;
* pluto-website-admin (220) - fix for outside access port 443 not uncheckable.&lt;br /&gt;
* pluto-boot-scripts (234) - fix for not dele rules from iptables from outsideAccess.php&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201606201908+31b25c52 ==&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** unicode reading/writing working properly&lt;br /&gt;
** coverart writing to tags working properly&lt;br /&gt;
** .id3 files handled by taglib instead of id3lib.&lt;br /&gt;
** General Object Frame (GEOB) reading/writing working properly (all lmce attributes are stored in id3v2 GEOB tags for .id3/.mp3 files)&lt;br /&gt;
* pluto-website-admin (220) - more updates for mysql -&amp;gt; mysqli conversion&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201605312323+08fb8202 ==&lt;br /&gt;
* pluto-website-admin (220) - fix Text Command button to honor parameters from Screen_CommandParameter&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller to fix spamming of logs with constant updates of device data.&lt;br /&gt;
&lt;br /&gt;
== Update trusty-i386/amd64 201605310531+04df53f5 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - get the stream uri from onvif camera and save it in a device data for use by other devices&lt;br /&gt;
* pluto-website-admin (220) - adate to adodb 5.20.4 and change db driver from mysql to mysqli&lt;br /&gt;
* pluto-updatemedia (405,406) - tag writing/deletion of values update&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201605261039+410242d2 ==&lt;br /&gt;
* pluto-media-database (233) - remove FatGroupBy query as it is massive and no longer required&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** FIX UpdateMedia not detecting changes in files on disk.  Fixes: UpdateMedia not reading modification times properly.&lt;br /&gt;
** improve image reading/writing for mp3/mp4 files, add image handling for asf/wma, improve track art-&amp;gt;performer/album artist matching.&lt;br /&gt;
** don&#039;t add network shares to inotify watch list&lt;br /&gt;
* pluto-system-database (211) - new qml-* pkg definitions for qorbiter&lt;br /&gt;
* pluto-plutoutils (196,197) - add fn&#039; to determine filesystem type of a file&lt;br /&gt;
* lmce-disked-interactor (897,898) - make sure we see the core and have an IP prior to attempting contact&lt;br /&gt;
* pluto-bootscripts (234) - make sure we see the core prior to continuing to boot an MD&lt;br /&gt;
* pluto-website-admin (220) - various fixes in the media page&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 - 201605171740 c6d63dc6 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3, ogg, flac, mp4, wv, wav, oga, mpc, spx, opus, tta, m4a, m4r, m4p, 3g2, m4v, wma, asf, aif, aiff, afc, aifc, ape, s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64  201605131052+2542a526 ==&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - udev rule to ignore usbhid portion of device, permits orbiter to enter screensaver&lt;br /&gt;
* pluto-bootscripts (234) - permit devices that have died 50 times to attempt to restart after a router reload. Firewall fix for manual defined chains.&lt;br /&gt;
* pluto-sound-card-scripts (579) - don&#039;t assume cardid=1, determine phoenix cardid from aplay.&lt;br /&gt;
* pluto-media-database (233) - additional AttributeType &amp;quot;Album Artist&amp;quot;&lt;br /&gt;
* lmce-media-identifier (931,932) - updates for Album Artist tag.&lt;br /&gt;
* pluto-orbiter (119,138) - updates for Album Artist tag.&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** updates for Album Artist tag&lt;br /&gt;
** fix mainMediaFileSync.php. OutsideAccess page showing the options (again). &lt;br /&gt;
** And typo fixes for issue #2643. &lt;br /&gt;
** Firewall page reload issue 2636#. Firewall gui do not show &amp;quot;NULL&amp;quot;.&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3:ogg:flac:mp4:wv:wav::oga:mpc:spx:opus:tta:m4a:m4r:m4p:3g2:m4v:wma:asf:aif:aiff:afc:aifc:ape:s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update jessie 20160427 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for RPi&lt;br /&gt;
* lmce-disked-md-rpi2 (889) - +x firstboot_md_rpi2 to ensure it&#039;s picked up properly&lt;br /&gt;
&lt;br /&gt;
== Update jessie 201604130947+0083d387 ==&lt;br /&gt;
== Update 1204/1404-i386/amd64 201604101031-0b47a986 ==&lt;br /&gt;
* pluto-website-admin, pluto-boot-scripts (220,234) - Firewall Fixes for GUI and inner working of the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603251155+a1c0f6ea ==&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - File view implemented. Fixed not being able to leave resume menu.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603222119+336464d8 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller  to fix floorplan / status being improperly updated.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t mount optical discs as HDDs&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201603220706+c3c4b899 ==&lt;br /&gt;
* lmce-md-meta (450) - for some reason this is not in the main repo&lt;br /&gt;
* lmce-media-identifier - fixed for libcdio&lt;br /&gt;
&lt;br /&gt;
== Update jessie-rpi 60faa181 ==&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - adds video resizing so UI1 can be exposed while video is playing.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 armhf 31c5d994 ==&lt;br /&gt;
== Update 1404 i386 52e39875 ==&lt;br /&gt;
* pluto-storage-devices (533) - fix ntfs detection&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 - 49a8cbf1 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - a little better device to device template mapping&lt;br /&gt;
* pluto-website-admin (220) - fix adv.zwave page and adding secure devices&lt;br /&gt;
* lmce-disked-* - update the disked md/mid meta/base/device pkgs, specific fixes for 1404 joggler&lt;br /&gt;
* lmce-json-plugin (876,877) - first time addition to the main repo&lt;br /&gt;
* libdvdid0 (replacement) - first time addition to the repo, for use by Media Identifier&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - enable disabling internal volume control, similar to how logitechmediaserver does&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1404(armhf)/jessie(rpi)-a84db86f ==&lt;br /&gt;
* lmce-launch-manager (298,299) - only update squeeze devices when running on the core, redundant elsewhere.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404-87954508 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t fail if dvdcss2 cannot be automatically installed.&lt;br /&gt;
* pluto-hald (529,530) - reinstate tty detection, seperate from usb-serial, use direct parent for udi naming.&lt;br /&gt;
* pluto-boot-scripts (234) - disable buildall, the script doesn&#039;t run so why waste time creating it.&lt;br /&gt;
* lmce-launch-manager (298,299)&lt;br /&gt;
** update squeezebox players on router reloads from Launch_Manager&lt;br /&gt;
** call Config_Device_Changes in startCoreServices to ensure everything gets its&#039; Need Configure flag reset.&lt;br /&gt;
&lt;br /&gt;
== Update a332f49a ==&lt;br /&gt;
* lmce-install-scripts (391) - fix missing quote in MD installation.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix missing &#039;fi&#039; in BootMessage.sh&lt;br /&gt;
** fix usb.1 system serial port listing/translating&lt;br /&gt;
* lmce-media-identifier (931,932) - fix segfault, CDs are identified, cd-ripping functional again&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** prioritize new conf dir over old conf dir, fix install on systems upgraded from 1204-&amp;gt;1404&lt;br /&gt;
** redirect mythweb to html/mythweb&lt;br /&gt;
* pluto-hald (529,530) - updates to serial port naming, specifically for odroid.&lt;br /&gt;
* pluto-storage-devices (533) - fix mounted drive detection and add detection for drives mounted in /proc/cmdline like rpi.&lt;br /&gt;
&lt;br /&gt;
== Update 1204=201602080446+2028f850 &amp;lt;br&amp;gt; 1404=201602071815+c31bc44f ==&lt;br /&gt;
* lmce-install-scripts (391)&lt;br /&gt;
** enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
* lmce-core (888) - enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
* pluto-storage-devices (533) - redo StorageDevices_Radar using blkid for internal HDD identification.  /dev/disk/by-path/ is not present anymore.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
** new VerifyDistro.sh script and call the script on boot.&lt;br /&gt;
*** Preventative mostly.  Intended to ease pain for those that upgrade distros.&lt;br /&gt;
*** Ensure child devices, onscreen orbiter, have the proper PK_Distro set.&lt;br /&gt;
&lt;br /&gt;
== Update 296fdcd3 ==&lt;br /&gt;
* pluto-website-admin (220) - fix depends versioning&lt;br /&gt;
* pluto-hald (529,530) - fix depends versioning&lt;br /&gt;
* pluto-boot-scripts (234) - fix depends versioning&lt;br /&gt;
* pluto-system-database (211) - fix depends versioning&lt;br /&gt;
* pluto-orbitergen (226,227) - fix depends versioning&lt;br /&gt;
* lmce-disked-md-base (801) - fix depends versioning&lt;br /&gt;
* lmce-install-scripts (391) - fix depends versioning&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix depends versioning&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix depends versioning&lt;br /&gt;
* lmce-datalogger-plugin (686,687) - fix depends versioning &lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix depends versioning&lt;br /&gt;
&lt;br /&gt;
== Update f3a444c0 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** use newer .sh script rather than obsolete .pl script for dialplan creation&lt;br /&gt;
** fix Directory listing on cisco phones&lt;br /&gt;
** fix delete buttons on internet radio page.&lt;br /&gt;
* pluto-hald (529,530)&lt;br /&gt;
** add &#039;usb&#039; to &#039;pci&#039; and &#039;platform&#039; as valid bus addresses&lt;br /&gt;
** permit adding of usb devices with usb_serial or tty children&lt;br /&gt;
* pluto-boot-scripts (234) - update SetupAudioVideo.sh to more reliably address nvidia hdmi audio outputs&lt;br /&gt;
* lmce-asterisk (replacement) - live_dangerously for now to get all the necessary Voicemail modules to load&lt;br /&gt;
* pluto-system-database (211) - new DD Number of jobs for orbiter plug-in/orbitergen&lt;br /&gt;
* pluto-boot-scripts (234) - updates to RegenOrbiter scripts for parallel job queued orbiter generation.&lt;br /&gt;
* pluto-orbitergen (226,227) - new depends on GNU parallel&lt;br /&gt;
* lmce-disked-md-base (801) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* lmce-install-scripts (391) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - remove hardcoded ip address, get from db instead.&lt;br /&gt;
* lmce-diskless-tools (627,628) - only run UpdateDebCache.sh if it is executable&lt;br /&gt;
* lmce-datalog-plugin(686,687) - fix pear install command in postinst&lt;br /&gt;
* lmce-advanced-ip-camera(812,813) - add basic onvif support (snapshot,PTZ)&lt;br /&gt;
&lt;br /&gt;
== Update 31792 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of new External_Media_Identifier, testing CDDB ids&lt;br /&gt;
&lt;br /&gt;
== Update 31783 ==&lt;br /&gt;
* pluto-libserial (190,191) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-dcecommon (192,193) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-irbase (194,195) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-plutoutils (196,197) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-vipshared (199,200) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-serializeclass (198,238) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-libbd (239,240) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-ra (247,248) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-main-db (201,237) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-media-db (254,255) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-security-db (278,277) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-sdl-helpers (346,347) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-messagetrans (398,401) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-game-db (675,676) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-windowutils (677,678) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-datalog-db (688,689) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
&lt;br /&gt;
== Update 31782 ==&lt;br /&gt;
* pluto-std-plugins - fix FK_File search inside Attribute in Media_Plugin&lt;br /&gt;
&lt;br /&gt;
== Update 31774 ==&lt;br /&gt;
* lmce-disked-mid-base (899) - fix error in postinst&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come (this should be in but apt-get is getting 404 errors)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add &amp;quot;remove failed node&amp;quot; command&lt;br /&gt;
* pluto-website-admin - add &amp;quot;remove failed node&amp;quot; command for zwave advanced page&lt;br /&gt;
&lt;br /&gt;
== Update 31760 ==&lt;br /&gt;
* lmce-disked-md-base (801) - fix another error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31757 ==&lt;br /&gt;
* lmce-core (888) - overwrite AutostartCore conf value&lt;br /&gt;
* lmce-md-meta (450) - overwrite AutostartMedia conf value&lt;br /&gt;
* lmce-mid-meta (962) - missing deb&lt;br /&gt;
* lmce-hybrid (769) - exit 0 in postinst, just to be sure&lt;br /&gt;
* lmce-disked-md-base (801) - fix error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31754 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - reconnect before send&lt;br /&gt;
&lt;br /&gt;
== Update 31752 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - remove hard coded caller id &#039;Cherryhomes, Tho&#039;, use incoming caller id.&lt;br /&gt;
&lt;br /&gt;
== Update 31750 ==&lt;br /&gt;
* pluto-website-admin (220) - fix postinst error notice on precise.&lt;br /&gt;
* pluto-boot-scripts (234) - (re)start asterisk, otherwise configuration doesn&#039;t occur and sip phones cannot register&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - force-reload apache2 after disabling mythbuntu sites&lt;br /&gt;
* lmce-md-meta (450) - don&#039;t overwrite conf values that are already set&lt;br /&gt;
* *openzwave* (replacement) - version bump, upgrade fixes to upstream files&lt;br /&gt;
&lt;br /&gt;
== Update 31744 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come&lt;br /&gt;
&lt;br /&gt;
== Update 31742 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Gui changes to not confuse people. &lt;br /&gt;
** outsideaccess works together with the firewall. &lt;br /&gt;
** phonelines note on protocol for meaning of &amp;quot;SPA&amp;quot; and a status for this protocol setting, port can be changed if needed else it will be the default (5060).&lt;br /&gt;
&lt;br /&gt;
== Update 31739 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix absolute timed events&lt;br /&gt;
&lt;br /&gt;
== Update 31723 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix nfs-premount script in default diskless image.&lt;br /&gt;
* lmce-dlna(842,843) - compatibility fixes&lt;br /&gt;
* lmce-install-scripts (391) - generate ssh keys so openssh-server can accept connections&lt;br /&gt;
* pluto-createdevice (303,304) - hide errors, specifically during initial package postinst&lt;br /&gt;
* lmce-cec-adaptor (871,872) - fix cec remotes not getting to lmce&lt;br /&gt;
&lt;br /&gt;
== Update 31693 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - Fixes #2530 - fix errors in mythtvdb synchronization scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31686 ==&lt;br /&gt;
* lmce-install-scripts (391) - deal with firstboot stuffenz&lt;br /&gt;
* pluto-system-database (211) - add proxy orbiter DT depends for generic web device&lt;br /&gt;
* pluto-website-admin (220) - order by photo file name in screen saver/photo browser&lt;br /&gt;
* pluto-boot-scripts (234) - try ubiquity before anything else, and reboot after the normal firstboot - breaks live boot on dvd atm&lt;br /&gt;
* lmce-diskless-tools (627,628) - permit i386 diskless image building on amd64 cores, ensure processes are killed in chroot before unmounting (deals with systemd for now)&lt;br /&gt;
&lt;br /&gt;
== Update 31660 ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) &lt;br /&gt;
**PS3 control screen, fix layout issue. adds seperate button group (triangle, circle, etc) and navigation arrows. Also adds power off button to properly exit screen&lt;br /&gt;
* pluto-website-admin (220) - prevent creation of extra &#039;blank&#039; network interfaces&lt;br /&gt;
&lt;br /&gt;
== Update 31655 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - close connection after use&lt;br /&gt;
* pluto-website-admin (220) - fill ServerName var if it is unset, not if it is set.&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - unify service control&lt;br /&gt;
* pluto-boot-scripts (234) - unify service control&lt;br /&gt;
* pluto-dhcpd-plugin (302) - unify service control&lt;br /&gt;
* pluto-disk-monitor (554) - unify service control&lt;br /&gt;
* pluto-mythtv-player (133,152) - unify service control&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - unify service control&lt;br /&gt;
* pluto-raid-tools (617) - unify service control&lt;br /&gt;
* pluto-storage-devices (533) - unify service control&lt;br /&gt;
* lmce-update-system (650,651) - unify service control&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - unify service control&lt;br /&gt;
* pluto-vdr-plugin (466,467) - unify service control&lt;br /&gt;
* pluto-vdr (468,469) - unify service control&lt;br /&gt;
* pluto-database-settings (407) - unify service control&lt;br /&gt;
* lmce-asterisk (replacement) - unify service control&lt;br /&gt;
* lmce-diskless-tools (627,628) - unify service control&lt;br /&gt;
* lmce-install-scripts (391) - unify service control&lt;br /&gt;
* pluto-updatemedia (405,406) - unify service control&lt;br /&gt;
* pluto-newmdinteractor (538,539) - unify service control&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - Fix size issues, floorplan popups.&lt;br /&gt;
&lt;br /&gt;
== Update 31621 ==&lt;br /&gt;
* pluto-mythtv-player (133,152) - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 31618 ==&lt;br /&gt;
* lmce-asterisk (replacement) - update db for chan_sccp-v4.2 and fix bug requiring manual asterisk reload on boot&lt;br /&gt;
&lt;br /&gt;
== Update 31615 ==&lt;br /&gt;
* pluto-* - rebuild with new libraries&lt;br /&gt;
* lmce-* - rebuild with new libraries&lt;br /&gt;
&lt;br /&gt;
== Update 31606 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix EPG data on orbiters, myth stores everything in UTC now.&lt;br /&gt;
* pluto-pluto-main-db (201,237) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-media-db (254,255) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-security-db (277,278) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-datalog-db (688,689) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-game-db (675,676) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-updateentarea (341,342) - don&#039;t send empty play command when resetting alarm&lt;br /&gt;
&lt;br /&gt;
== Update 31580 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - use bypass-event to avoid watching media events when playing alerts&lt;br /&gt;
* pluto-updateentarea (341,342) - send bypass-event with security event commands&lt;br /&gt;
* libcec3 debs (replacement) - removes conflict data with libcec2&lt;br /&gt;
&lt;br /&gt;
== Update 31575 ==&lt;br /&gt;
* lmce-asterisk (replacement) - play back alert notification file&lt;br /&gt;
* pluto-std-plugins (116,135) - create alert notification file with correct format&lt;br /&gt;
* pluto-boot-scripts (234) - fixes for nvidia drivers on precise, upgrades to nvidia-340&lt;br /&gt;
* lmce-avwizard-sounds (replacement) - don&#039;t copy fakeroot files (it is redundant it is)&lt;br /&gt;
* video-wizard-videos (replacement) - deb is back to normal size, not 2x&lt;br /&gt;
&lt;br /&gt;
== Update 31553 ==&lt;br /&gt;
* pluto-website-admin (220) - fix error that wipes out the apache2.conf&lt;br /&gt;
* pluto-hald (529,530) - fix segfaults with firewire hardware&lt;br /&gt;
&lt;br /&gt;
== Update 31547 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some API changes in OZW 1.3, more device template mappings&lt;br /&gt;
* pluto-boot-scripts (234) - typo fix for nvidia drivers&lt;br /&gt;
* lmce-disked-md-base (801) - set hostname on disked MDs, set timezone on disked MDs&lt;br /&gt;
* lmce-install-scripts (391) - set hostname on disked MDs, set timezone on disked MDs &lt;br /&gt;
* pluto-website-admin was generated---&amp;gt; lmce-website-admin (220) - set apache2 ServerName to silence error on boot&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates, revert to ruby 1.8&lt;br /&gt;
* pluto-generic-serial-device (307,335) - admit defeat for now, revert to ruby 1.8&lt;br /&gt;
&lt;br /&gt;
== Update 31533 ==&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31520 ==&lt;br /&gt;
* chan-sccp_v4.2 (replacement) - Upgrad asterisk SCCP channel driver to newest version&lt;br /&gt;
* pluto-vdr-plugin (466,467) - implement background loading of EPG from VDR to avoid crashes due to commands not completing on time&lt;br /&gt;
* pluto-boot-scripts (234) - some logic changes and added messages for video driver install debugging&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - link new channels dir to old channels dir for backwards compatibility&lt;br /&gt;
&lt;br /&gt;
== Update 31503 ==&lt;br /&gt;
* *zwave* (replacement) - new upstream openzwave version 1.3.1224&lt;br /&gt;
* lmce-zwave-ozw(505,506) - build against new libopenzwave1.3&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates&lt;br /&gt;
* lmce-disked-interactor (897,898) - make disked interactor aware of wheezy and jessie.&lt;br /&gt;
&lt;br /&gt;
== Update 31500 ==&lt;br /&gt;
* *myth* (replacement) - fix depends on non-existent packages&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst - verified installing now&lt;br /&gt;
* pluto-std-plugins (116,135) - Use integer comparison for brightness state&lt;br /&gt;
&lt;br /&gt;
== Update 31491 ==&lt;br /&gt;
* lmce-avwizard-skin-basic (replacement) - fix packaging of avwizard skin&lt;br /&gt;
* *myth* (replacement) - mythtv 0.27.5+fixes with Schedules Direct fix included&lt;br /&gt;
* *asterisk* (replacement) - asterisk 11.7 backport from trusty&lt;br /&gt;
* libical* (replacement) - for asterisk 11.7&lt;br /&gt;
* *cec* (replacement) - libcec3&lt;br /&gt;
* libplatform* (replacement) for libcec3&lt;br /&gt;
* lmce-cec-adaptor (871,872) - build against libcec3&lt;br /&gt;
* lmce-mediatomb (702) - fix pkg installation&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - update protocol version and secret word (shhh) for 0.27.5+fixes&lt;br /&gt;
* lmce-diskless-tools (627,628) - remove call to obsolete script in Diskless_Setup.sh&lt;br /&gt;
* pluto-vdr-plugin (466,467) - return full EPG (used in qOrbiter EPG Grid), improve communication speed with SVDRP&lt;br /&gt;
* pluto-slim-server-streamer (289,290) - emit time code event, fix duration parsing&lt;br /&gt;
* pluto-boot-scripts (234) - fix headless booting, update 1404 nvidia driver&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* lmce-md-meta (450) - add depends on alsa-utils&lt;br /&gt;
* pluto-website-admin (220) - Fix cdrviewer (Call Details Records) to accept SSL conections as well, firewall gui change to set Offline rules in red as they are not executed.&lt;br /&gt;
* pluto-app-server (126,145)- new poweroff mode I for ignore, since N is already in use&lt;br /&gt;
&lt;br /&gt;
== Update 31420 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add depends on pluto-boot-scripts for deb cache script&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31411 == &lt;br /&gt;
* pluto-avwizard (555,556) - fix depends on avwizard skins basic, should no longer care about version&lt;br /&gt;
* pluto-boot-scripts (234) - more explicity logic for core only booting, fix startup script db errors&lt;br /&gt;
* lmce-update-system (650,651) - remove and disable old init.d script from /etc/init.d&lt;br /&gt;
* pluto-plutodhcp (330,491) - depends on apparmor&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-dhcpd-plugin (302) - remove hardcoded IP addresses from configure scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31387 ==&lt;br /&gt;
* lmce-weather-plugin - make change to allow for tonight&#039;s forecast data (TSCHAK)&lt;br /&gt;
* lmce-asterisk (replacement) - remove obsolete phonetic engines and replace with espeak, voices remain the same&lt;br /&gt;
* mbrola (replacement) - base mbrola pkg for mbrola voices (add armhf binary)&lt;br /&gt;
* pluto-asterisk (270,271) - generate fr and de voicemail menus with espeak now&lt;br /&gt;
* lmce-core (888) - add depends on iptables&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31378 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Start_KDE.sh ownership fix, AV config updates&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-avwizard (555,556) - update pkgs &amp;amp; depends &amp;amp; config scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - do not run update deb_cache during dvd creation&lt;br /&gt;
* pluto-x-scripts (520) - fixups to Xconfigure.sh&lt;br /&gt;
&lt;br /&gt;
== Update 31356 ==&lt;br /&gt;
* pluto-system-database (211) - update depends&lt;br /&gt;
* pluto-orbiter (119,138) - update depends&lt;br /&gt;
* lmce-diskless-tools (627,628) - speedup dpkg in diskless create, fix missing quotes&lt;br /&gt;
&lt;br /&gt;
== Update 31352 ==&lt;br /&gt;
* pluto-motion-wrapper - more config file location fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 31351 ==&lt;br /&gt;
* pluto-boot-scripts (234) - change service &#039;nis&#039; to &#039;ypserv&#039;, nis is no longer a service name&lt;br /&gt;
* pluto-website-admin (220) - remove &#039;idiot&#039; text, let&#039;s be nice to people.&lt;br /&gt;
* lmce-core (888) - do not create and config under ubiquity&lt;br /&gt;
* lmce-md-meta (450) - do not create and config under ubiquity&lt;br /&gt;
* motion (replacement) - fix bad config file setting in rules&lt;br /&gt;
&lt;br /&gt;
== Update 31337 ==&lt;br /&gt;
* motion (replacement) - new version of motion to match new configuration values generated by linuxmce&lt;br /&gt;
&lt;br /&gt;
== Update 31331 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix for brightness events&lt;br /&gt;
* pluto-boot-scripts (234) - fix kdm disabling, start ubiquity after network config&lt;br /&gt;
* lmce-diskless-tools (627,628) - add upstart overrides for kdm&lt;br /&gt;
* lmce-install-scripts (391) - start ubiquity after network config&lt;br /&gt;
&lt;br /&gt;
== Update 31314 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add missing depends&lt;br /&gt;
&lt;br /&gt;
== Update 31292 ==&lt;br /&gt;
* lmce-core-locator (replacement) - (1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-system-database (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* All .debs created by MakeRelease - removal of all Pre-Depends, everything is now a Depends entry (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
== Update 31228 ==&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-local-database&lt;br /&gt;
&lt;br /&gt;
== Update 31214 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package (not in repo, need build-replacements.sh svn up&#039;d?)&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - preinst/postinst updates&lt;br /&gt;
* pluto-boot-scripts (234) - preinst/postinst updates&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-disked-md-base (801) - firstboot updates&lt;br /&gt;
&lt;br /&gt;
== Update 31187 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package&lt;br /&gt;
* pluto-confirm-dependencies (281,272) - new depends on lmce-install-scripts (fixes unable to apt-get dist-upgrade)&lt;br /&gt;
* lmce-md-meta (450) - new depends on nfs-common, openssh-server and pastebinit&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - update depends, preinst/postinst&lt;br /&gt;
* pluto-boot-scripts (234) - depends &amp;amp; preinst/postinst updates&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - add override mythweb defaults in pkg preinst&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - update depends&lt;br /&gt;
&lt;br /&gt;
== Update 31133 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** enable WakeMDs.sh to wake any halted MDs.&lt;br /&gt;
** consolidate all boot script launching to /etc/init.d/linuxmce&lt;br /&gt;
* pluto-avwizard (555,556) - moves start script to /usr/pluto/bin, called by /etc/init.d/linuxmce now&lt;br /&gt;
* lmce-update-system (650,651) - removes init.d script, called by /etc/init.d/linuxmce now&lt;br /&gt;
* pluto-website-admin (220) - GUI changes on network settings if an bridge is configured on the db.&lt;br /&gt;
* lmce-core (888) - depend on pluto-asterisk, lmce-asterisk, lmce-install-scripts&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* pluto-generic-serial-device (307,335) - wildshot attempt at fixing segfaults&lt;br /&gt;
&lt;br /&gt;
== Update 31103 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** Network bridging now possible  for wifi AP to have the same network as the local lan. &lt;br /&gt;
** ipv6 on/off for network interfaces. Read multiple ipv6 interfaces from the db.&lt;br /&gt;
** re-enable HaltMDs.&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* libqhttpserver (912) needed for linuxmce nvr&lt;br /&gt;
* lmce-launch-manager - (298,299) - ?&lt;br /&gt;
&lt;br /&gt;
== Update 31087 ==&lt;br /&gt;
* lmce-weather (838,839) - Fix a serious bug in getconfig where incorrect configuration device data would crash program. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 31083 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes #2422, advanced zwave page broken in chrome&lt;br /&gt;
* pluto-system-database (211) - thumbnail screen fixes&lt;br /&gt;
&lt;br /&gt;
== Update 31074 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** setEa2.php - Fix settings for creating entertain area.&lt;br /&gt;
** qOrbiterGenerator.php - Fix erroneous EA creation by removing it.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Fix incorrect setting for enabling / disabling motion.&lt;br /&gt;
&lt;br /&gt;
== Update 31069 ==&lt;br /&gt;
* pluto-website-admin (220) - setEa2.php Fix settings for creating entertain area.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Initial build.&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (881) - Large update of skins and internals.&lt;br /&gt;
&lt;br /&gt;
== Update 31061 ==&lt;br /&gt;
* lmce-squeezeslave (762) - Add configuration DD to command line&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DB package updates&lt;br /&gt;
** restore previous video remote layout with Options button to select subtitles/audio tracks/video tracks from a datagrid list.&lt;br /&gt;
* pluto-website-admin (220) - firewall.php edit rules for non advanced firewall and some other small fixes.&lt;br /&gt;
* lmce-asterisk (replacement) - sip config modules to avoid autoload.&lt;br /&gt;
&lt;br /&gt;
== Update 31051 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** firewall.php not adding rules now fixet.&lt;br /&gt;
** Test buttons for Hue lights&lt;br /&gt;
** Security outsideAccess page now works nicely with the new firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 31044 ==&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
&lt;br /&gt;
== Update 31031 ==&lt;br /&gt;
* pluto-website-admin (220) - firewall.php after a strange fault and some layout fixes.&lt;br /&gt;
* lmce-mediatomb (702) - don&#039;t assume mediatomb is already running.&lt;br /&gt;
&lt;br /&gt;
== Update 31013 ==&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* pluto-boot-scripts (234) - Network Parameter count for more interfaces set and Network firewall accepting postrouting Masquerade  for other network interfaces.&lt;br /&gt;
&lt;br /&gt;
== Update 30985 ==&lt;br /&gt;
* pluto-website-admin (220) - #2268 fail2ban integration logging failed user login attempt.&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** #2268 fail2ban script not insert existing rules to our db.&lt;br /&gt;
** Support for audio output select on rpi via web admin&lt;br /&gt;
* lmce-diskless-tools (627,628) - update syslinux depends to syslinux-common&lt;br /&gt;
* lmce-omx-player (829,830) - Honour audio output selection of rpiMD&lt;br /&gt;
* lmce-squeezeslave (762) - Fix detection for squeezelite&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - further fixes&lt;br /&gt;
* lmce-usb-gamepad (795,796) - rewrite the whole main loop to suck less. hold-down repeats work, input handling more sane.&lt;br /&gt;
&lt;br /&gt;
== Update 30926 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Fix for #2368 insert firewall rules en #2064 edit and delete chains (except some system chains).&lt;br /&gt;
** Support for brightness based events.&lt;br /&gt;
* pluto-std-plugins (116,135) - Support for brightness based events&lt;br /&gt;
* lmce-omx-plugin (831,832) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** Database additions for XBOX 360 Gamepad (device templates, package)&lt;br /&gt;
** Modification of OMX Plugin to allow priority to be changed.&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - the XBOX 360 Gamepad driver, uses xboxdrv userspace driver.&lt;br /&gt;
* lmce-usb-gamepad (795,796) - additions here for above XBOX 360 Gamepad support.&lt;br /&gt;
&lt;br /&gt;
== Update 30862 ==&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress can now read latest files per linuxmce user.&lt;br /&gt;
&lt;br /&gt;
== Update 30860 ==&lt;br /&gt;
* lmce-weather (838,839) - some fixes by cfernandes&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress.&lt;br /&gt;
* pluto-boot-scripts (234) - more mail fixes&lt;br /&gt;
&lt;br /&gt;
== Update 30855 ==&lt;br /&gt;
* pluto-vdr, pluto-vdr-plugin - remove hardcoding of core IP and network address, but depend on the pluto.conf entries for DCERouter.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location (again)&lt;br /&gt;
* lmce-diskless-tools - stop copying apt configs from the core&lt;br /&gt;
* pluto-boot-scripts - fix postfix setup #2393&lt;br /&gt;
&lt;br /&gt;
== Update 30841 ==&lt;br /&gt;
* lmce-avwizard-sounds - fix replaces/conflicts data&lt;br /&gt;
* lmce-skins-basic - fix replaces/conflicts data&lt;br /&gt;
* lmce-avwizard-skin-basic - fix replaces/conflicts data&lt;br /&gt;
&lt;br /&gt;
== Update 30383 ==&lt;br /&gt;
* pluto-website-admin (220) - Add Hue lights related test button.&lt;br /&gt;
* pluto-boot-scripts - Add another option --autobackup to PlutoRestorePoint.sh to allow backup of pluto_main only&lt;br /&gt;
&lt;br /&gt;
== Update 30814 ==&lt;br /&gt;
* pluto-Boot-scripts - Firewall order by place and PK_Firewall to let rules stay on top on the middle or on the bottom.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location&lt;br /&gt;
* lmce-hue-controller (862,863) - Fix bug in adding new lights, now adds serial number.&lt;br /&gt;
* pluto-website-admin (220) - Fix oops relating the missing &#039;.&#039; which caused operations/login.php not to work.&lt;br /&gt;
&lt;br /&gt;
== Update 30783 ==&lt;br /&gt;
* lmce-nbd-client-wrapper - new pkg to hold common script&lt;br /&gt;
* pluto-xine-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* lmce-vlc-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* pluto-boot-scripts - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
* pluto-storage-devices - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30777 ==&lt;br /&gt;
* lmce-core - depend on openswan&lt;br /&gt;
* pluto-system-database - pkg updates&lt;br /&gt;
* pluto-boot-scripts - remove check for openswan from bootscript&lt;br /&gt;
* pluto-generic-serial-device - update to ruby 1.9.1&lt;br /&gt;
&lt;br /&gt;
== Update 30773==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller internals to now include polling, so as to make sure floorplan data is accurate. Changes underlying mechanisms for how lights are handled in preparation for extending additional support for Cree lights and sensors devices.&lt;br /&gt;
&lt;br /&gt;
== Update 30767 ==&lt;br /&gt;
* lmce-diskless-tools - update diskless archive name to reflect current compression method xz.&lt;br /&gt;
* pluto-website-admin (220) - updates to internet radio, moves add channels to a seperate page.  Thanks Dap-P!&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
* pluto-vdr - adds missing depends on vdr in trusty&lt;br /&gt;
* lmce-core - update depends to new pkg name lmce-avwizard-sounds&lt;br /&gt;
* pluto-avwizard - update depends to new pkg name lmce-avwizard-skins-basic&lt;br /&gt;
* lmce-clock-screen-saver - make the clock screen saver use the WMController/wmctrl methods for setting window visibility to be compatible with Orbiter. (TSCHAK) (Trusty only)&lt;br /&gt;
* pluto-storage-devices - Make sure that smbpasswd is used to create or update sambahelper&#039;s password (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30726 ==&lt;br /&gt;
* pluto-vdr - VDR player&#039;s package assumed a correctly installed vdr package which includes an entry in /etc/default for vdr. We no longer fail on a missing file.&lt;br /&gt;
&lt;br /&gt;
== Update 30724 ==&lt;br /&gt;
* lmce-weather - updates to weather sources, add OpenWM source.  Thanks SBCC and cfernandes!&lt;br /&gt;
* lmce-skins-* - adds missing telecom icons, updates/adds weather icons&lt;br /&gt;
* lmce-avwizard-sounds - remove extraneous stuff from pkg, reduce pkg size back to normal.  Proper replaces/conflicts/data...&lt;br /&gt;
* lmce-avwizard-skin-basic - Proper replaces/conflicts/data...&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
&lt;br /&gt;
== Update 30718 ==&lt;br /&gt;
* lmce-core - new depends on lmce-skins*&lt;br /&gt;
* lmce-md-meta - add depends on pnp-detection scripts&lt;br /&gt;
* lmce-hybrid - new depends on lmce-skins*&lt;br /&gt;
* pluto-avwizard (556,555) - add pciutils as a depends, still need to deal with multiarch stuff so this will break armhf, we will not update armhf for now, it doesn&#039;t use avwizard but does install it.&lt;br /&gt;
* lmce-diskless-tools - minor diskless create fixups&lt;br /&gt;
* pluto-orbiter - missing depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio script&lt;br /&gt;
* pluto-website-admin (220) - recognize MIDs as top level devices&lt;br /&gt;
* pluto-mythtv-player - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 30628 ==&lt;br /&gt;
* *-database - fix install issues&lt;br /&gt;
&lt;br /&gt;
== Update 30622 ==&lt;br /&gt;
* pluto-orbiterinstallers - fix depends issue&lt;br /&gt;
* pluto-system-database - lots of compat updates&lt;br /&gt;
* lmce-* - lots of compat updates&lt;br /&gt;
* pluto-* - lots of compat updates&lt;br /&gt;
&lt;br /&gt;
== Update 30618 ==&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio scripts&lt;br /&gt;
* pluto-website-admin (220) - updated internet radio page&lt;br /&gt;
&lt;br /&gt;
== Update 30571 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - send &amp;quot;Device is turned on or off&amp;quot; event when appropriate so the corresponding event works as expected&lt;br /&gt;
* lmce-squeezeslave (762) - set to pnp create without prompting&lt;br /&gt;
* lmce-runtime-dependencies (903) - pkg to help consolidate runtime depends.&lt;br /&gt;
* lmce-core (888) - updated depends&lt;br /&gt;
* lmce-md-meta (450)- updated depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated depends&lt;br /&gt;
* pluto-createdevice (303,304) - updated depends&lt;br /&gt;
* lmce-weather(838,839) - fix potential segfault&lt;br /&gt;
* pluto-website-admin (220) - add &amp;quot;replace node&amp;quot; button to advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 30549 ==&lt;br /&gt;
* pluto-mythtv-player - fix misaligned data values during mythtv.txt creation.&lt;br /&gt;
&lt;br /&gt;
== Update 30526 ==&lt;br /&gt;
* lmce-core - new pkg&lt;br /&gt;
* lmce-hybrid - pkg depends changes&lt;br /&gt;
* lmce-md-meta - pkg depends changes&lt;br /&gt;
* pluto-dcerouter - pkg depends changes&lt;br /&gt;
* pluto-photo-screen-saver - pkg depends changes&lt;br /&gt;
* pluto-boot-scripts - pkg depends changes&lt;br /&gt;
* pluto-orbiter - pkg depends changes&lt;br /&gt;
* pluto-simplephone - pkg depends changes&lt;br /&gt;
* pluto-website-admin - pkg depends changes&lt;br /&gt;
* lmce-mythtv-scripts - pkg depends changes&lt;br /&gt;
* pluto-system-database - pkg depends changes&lt;br /&gt;
* lmce-squeezeslave (762) - fix launch script, automatically create associated squeezebox player on the core.&lt;br /&gt;
* pluto-std-plugins - run New_PnP_MD.sh for new MID devices as well.&lt;br /&gt;
* lmce-diskless-tools - don&#039;t fail on invoke-rc.d during diskless create, exit gracefully and continue.&lt;br /&gt;
* pluto-mythtv-player - fix diskless create failures due to old hacks.  more work is needed here overall on mythtv integration.&lt;br /&gt;
&lt;br /&gt;
== Update 30419 ==&lt;br /&gt;
* pluto-slim-server - Make sure to turn off all Squeeze* devices when Slim Server Streamer starts or restarts (so that squeezelite does not hog sound cards.)&lt;br /&gt;
* pluto-hald (529,530) - add device node path to pnpqueue with v4l devices during detection&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - update for new lib version&lt;br /&gt;
&lt;br /&gt;
== Update 30384 ==&lt;br /&gt;
* pluto-confirm-dependencies - depend on pluto-install-scripts.&lt;br /&gt;
* pluto-disk-drive (122,141) - remove hal bits that dealt with old jukebox bugs.&lt;br /&gt;
* pluto-capture-card-scripts (580) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-pnp-detection (562) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-storage-devices (533) - convert autofs from hal to udev.&lt;br /&gt;
* pluto-bootscripts (234) - disable starting the hald since we&#039;re using udev now, remove false &#039;fail&#039; messages during reboot/shutdown&lt;br /&gt;
* pluto-slim-server-streamer - make one tweak (do not delete m_mapStreamsToPlayers entry in CMD_Stop). Streaming now works consistently, properly, with squeezebox devices and their clones. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30354 ==&lt;br /&gt;
* pluto-hald (529,530) - fix attempt to fire event for child device of usb-dongle.&lt;br /&gt;
* pluto-slim-server-streamer - Implement FF/REW (transport) trick-play control for Squeeze* devices. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30341 ==&lt;br /&gt;
* pluto-bootscripst - fixes for PPPoE users to not autostart the external interface.&lt;br /&gt;
* pluto-slim-server-streamer - Fix to power off squeezebox player when stream is not in use. This allows softsqueeze/squeezeslave/squeezelite players to let go of a sound device, when not in use (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30332 ==&lt;br /&gt;
* pluto-orbiter (118,139) - disable old hid device functionality.  Anyone who needs it can request a special build which will be provided at no extra charge. ;)&lt;br /&gt;
* pluto-bootscripts (234) - disable Gamepad Radar, functionality now in hal through udev&lt;br /&gt;
* pluto-avwizard (556,555) - fixes mangling of RemoteCmd when &amp;gt;1 remote is detected.&lt;br /&gt;
* pluto-hal-device-finder (535,536) - update to use udev rather than hal.&lt;br /&gt;
* pluto-hald (529,530) - update to use udev rather than hal.&lt;br /&gt;
* pluto-system-database (211) - updates for new detection method (joystick, cec-adaptor), update dependency data for hal pks to reflect dropping hald and add depends on udev now.&lt;br /&gt;
&lt;br /&gt;
== Update 30219 ==&lt;br /&gt;
* pluto-bootscripts (234) - Fail2ban firewall update script, and missing radioscript.sh.&lt;br /&gt;
* pluto-website-admin - Place set for rules on the firewall and bantime for fail2ban integration.&lt;br /&gt;
* pluto-std-plugins (116,135) - adds heirloom-mailx for &#039;mailx -r&#039; functionality, fixes e-mail in general info plugin&lt;br /&gt;
&lt;br /&gt;
== Update 30068 ==&lt;br /&gt;
* lmce-advanced-ip-camera(813,812) - Fixed high cpu usage if connection to camera can not be made&lt;br /&gt;
&lt;br /&gt;
== Update 30052 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - fix android pkg meta data, need to rebuild all together&lt;br /&gt;
&lt;br /&gt;
== Update 30051 ==&lt;br /&gt;
* pluto-updateentarea (341,342) - use DAY/NIGHT in watching/stopped watching events to make them smarter&lt;br /&gt;
* pluto-std-plugins (116,135) - Implement Get Device Status in General Info Plugin&lt;br /&gt;
* pluto-bootscripts (234) - fix VPN ip up/down&lt;br /&gt;
&lt;br /&gt;
== Update 30025 ==&lt;br /&gt;
* pluto-system-database (211) - column def updates&lt;br /&gt;
* pluto-local-database (214) - new Firewall columns and new VPN columns for Users table.&lt;br /&gt;
&lt;br /&gt;
== Update 30014 ==&lt;br /&gt;
* lmce-transmission-client (852) - fix postinst issue.  (Thanks SBCC)&lt;br /&gt;
== Update 29994 ==&lt;br /&gt;
More VLC Player changes to make it at least somewhat usable, there were some ugly bugs that came to light once i plopped it onto my production system. Right now sound device is plughw:0,3, if you need a different one, change it in the code.  (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* lmce-vlc-player - many little fixes to make it suck less.&lt;br /&gt;
&lt;br /&gt;
== Update 29990 ==&lt;br /&gt;
I am working on the VLC player, and it is breathing enough for basic testing. Please do not use in production environment. There is still a lot of code to write (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - updates for VLC player (TSCHAK)&lt;br /&gt;
* vlc-player (882,884) - Very early alpha developer test of the VLC player. (TSCHAK)&lt;br /&gt;
* vlc-plugin (874,875) - Very alpha developer test of the VLC plugin. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 29984 ==&lt;br /&gt;
* pluto-system-database (211) - fix bad repos in pkgs&lt;br /&gt;
* pluto-website-admin - just because I think it is necessary :-)&lt;br /&gt;
&lt;br /&gt;
== Update 29983 ==&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36978</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36978"/>
		<updated>2017-04-29T17:16:25Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: /* Upcoming fixes... */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the latest changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo much easier.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please include the pkg #s to facilitate building on 3x i386 targets in addition to 2x amd64 and 3x armhf targets where full builds are not always practical.  Keep in mind that most packages are referred to by two (2) package numbers from the database, a source package and a binary package.  &amp;quot;Thank you for your co-operation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
* pluto-bootscripts (234) firewall need to work together with the vpn.&lt;br /&gt;
* lmce-asterisk (920) - db_create_dialplan.sh to add blacklist better check option on asterisk dialplan.&lt;br /&gt;
* lmce-vlc-player (884,882) - Further work on VLC_Player&#039;s transport controls. Please test and tell me if they work better. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Addition of ZFS templates. (PENDING, DO NOT PUSH)&lt;br /&gt;
* pluto-raid-tools (617) - Additions for ZFS (PENDING, DO NOT PUSH)&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201704211536+941ae691 ==&lt;br /&gt;
* pluto-website-admin (220) - Blacklist.php added for administrating asterisk blacklist of phone numbers #2691&lt;br /&gt;
* lmce-asterisk (920) - db_create_dialplan.sh to add blacklist check on asterisk dialplan.&lt;br /&gt;
* pluto-database* - GRANT to localhost as well (just 127.0.0.1 doesn&#039;t help since MySQL 5.7)&lt;br /&gt;
&lt;br /&gt;
== Update armhf 201704191739+13f4f937 ==&lt;br /&gt;
* pluto-vdr - Don&#039;t check for the existence of a Xine device in the tree. There are many ways to display VDR.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201704182328+13f4f937  ==&lt;br /&gt;
* pluto-text-to-speech - Fix for initial installation which might effect usability.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704181123+a26d414e ==&lt;br /&gt;
* pluto-security-database - Localhost or 127.0.0.1 matters for MySQL - This should be the last fix needed to get MySQL Server v5.7 sorted out - at least for the install.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704180809+9af5cc66 ==&lt;br /&gt;
* pluto-boot-scripts - Set MySqlUser name in ConfigOps if it isn&#039;t already set.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201704171950+9af5cc66 ==&lt;br /&gt;
* pluto-sqlcvs, pluto*database* - Final fixes for 1404 and 1604.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704161042+f5455665 ==&lt;br /&gt;
* pluto-sqlcvs - Now has a dependency to pluto-database-settings&lt;br /&gt;
* pluto-database-settings - all user creation happens in here&lt;br /&gt;
* pluto-database-system - no more user creation.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 - 201704151808+866a5886 ==&lt;br /&gt;
* pluto-database-settings - Takes way too long to get fixed.&lt;br /&gt;
&lt;br /&gt;
== Update 201704151034+80dd9806 ==&lt;br /&gt;
* pluto-database-settings - *grml* don&#039;t just blindly copy other peoples code.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704142323+6ad66efd ==&lt;br /&gt;
* pluto-database-settings - Put user creation into mkr_postinst_mysql instead of mkr_postinst_system. Let&#039;s hope this fixes this sucker.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 2.0.0.47.201704050752+ddbbb689 ==&lt;br /&gt;
* lmce-vlc-player (884,882) - preprocess URL to ensure that file paths with # in them play correctly.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 amd64/i386 201704041743+906d69eb ==&lt;br /&gt;
* pluto-bootscripts (234) - Typo fix for insert rule to the db. /ppp/ip-up.d/lmce-vpn-up and /ppp/ip-down.d/lmce-vpn-down works now niceley togheter with the new firewall.&lt;br /&gt;
* pluto-system-database (211) - sqlCVS commit to add Imagemagick as dependency to VLC Player, finally squashing that #($#@( start bug! (TSCHAK)&lt;br /&gt;
** Also added ir-keytable depedency to pluto-lirc-wrapper&lt;br /&gt;
** Also added generic cd and dvd icons for External Media Identifier&lt;br /&gt;
* pluto-lirc-wrapper (340,421) - Ensure that ir-keytable is cleared before lircd starts to avoid unusual behavior with remotes that use kernel event subsystem (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - Fix DVD to use cifs instead of smbfs (which has been deprecated for 10 years.)&lt;br /&gt;
* lmce-vlc-player (884,882) - bug fixes for multi room sync&lt;br /&gt;
* lmce-vlc-plugin (874,875) - bug fixes for multi room sync&lt;br /&gt;
* lmce-media-identifier (931,932) - add generic dvd and cd identification if disc can&#039;t be identified by normal means.&lt;br /&gt;
* pluto-website-admin (220) - phonelines.php shows the state of a SPA protocol phonline. And firewall.php updated preg_match to find lines on pluto.conf and change them if exists. Issue2745.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201703301804+358c1c45 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fixes Bug #2726 - Media details now work, again.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 - 201703272335+efdf6de9 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Issue #2730 - Media Plugin changes to add support for FIFO capture card playback to VLC Player (route messages to VLC Player if it exists) -TSCHAK&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue #2729, #2730 - Implement FIFO device playback for local devices similar to file playback. (TBD: recompile VLC with PVR functionality), also multi-room playback. VLC Player is now in beta. -TSCHAK&lt;br /&gt;
* lmce-vlc-plugin (874,875) - Issue #2729 - Implement multi-room playback, VLC sync listener on core, etc. VLC functionality is now beta. -TSCHAK&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201702201438+325cc736 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix for multiple cameras and Get Image command&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue 2727, Issue 2728 - Trick play overhaul and fix audio glitches when trick play is used. &lt;br /&gt;
* pluto-boot-scripts (234) - SetupAudioVideo.sh - slight change to libvlc.conf so that trick play OSD works.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1204-1404-1604/amd64 c20633ff ==&lt;br /&gt;
* pluto-website-admin (220) - Added the case for section energyGraph and sipConf, fixed permissions for mysql asteriskuser, add sql credentials for myth, change MYSQL_NUM to MYSQLI_NUM&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1404/amd64 a7c10426 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add backports so 1204 diskless create works&lt;br /&gt;
* lmce-oauth2-server (668) - initial build of lmce oauth2 server for cloud interfacing&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404/1604 i386 - 1404x64 - 201611190055+fee90f43 ==&lt;br /&gt;
* pluto-boot-scripts (234) - database upgrades&lt;br /&gt;
* pluto-orbitergen (226,227) - database upgrades&lt;br /&gt;
* pluto-pluto-main-db (201,237) - database upgrades&lt;br /&gt;
* pluto-pluto-security-db (278,277) - database upgrades&lt;br /&gt;
* lmce-asterisk (replacement) - database upgrades&lt;br /&gt;
* pluto-system-database (211) - database upgrades&lt;br /&gt;
* pluto-local-database (214) - database upgrades&lt;br /&gt;
* pluto-security-database (256) - database upgrades&lt;br /&gt;
* pluto-telecom-database (472) - database upgrades&lt;br /&gt;
* pluto-media-database (233) - database upgrades&lt;br /&gt;
* pluto-database-settings (407) - database upgrades&lt;br /&gt;
* pluto-sqlcvs (212,213) - database upgrades&lt;br /&gt;
* pluto-std-plugins (116,135) - database upgrades&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609281853+9638f5bc ==&lt;br /&gt;
* pluto-website-admin (220) - #2705 fixed syntax error.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609271106+39103855 ==&lt;br /&gt;
* pluto-website-admin (220) - Update firewall.php GUI change some fields where reset to the default values. now the db data is honored.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** don&#039;t create initramfs for Raspbian Jessie diskless filesystems.&lt;br /&gt;
** ensure firstboot runs on diskless Jessie RPis.&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** stop/start rather than restart dhcp server, it&#039;s like nuking the site from orbit... only way to be sure.&lt;br /&gt;
** Firewall blocks udp 1900 UpNP traffic from externalinterface.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609172308+325de35d ==&lt;br /&gt;
* lmce-autotag (780, 781) linuxmceTag - fix comparison issue with media type.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609131230+5eaa4671/201609131753+5eaa4671 ==&lt;br /&gt;
* pluto-boot-scripts (234) - send dhcp vendor specific options only to wired raspberry pis.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 201609102226+fda3da63 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** rpi native pxe additions/updates&lt;br /&gt;
** extend startup timeout when booting under systemd&lt;br /&gt;
* lmce-diskless-tools (627,628) - rpi native pxe additions/updates&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DT updates for rpi native pxe&lt;br /&gt;
** add Serial Number Device Data to RPi DTs&lt;br /&gt;
** sets default PK_Distro to 22 (jessie) for RPi DTs&lt;br /&gt;
** new device data for &amp;quot;Standard Energy Meter&amp;quot;&lt;br /&gt;
* pluto-std-plugins (116,135)&lt;br /&gt;
** stores energy reading in state field for Standard Energy Meter&lt;br /&gt;
** fixes dcerouter crash when searching media&lt;br /&gt;
* pluto-updatemedia (405,406) - fix segfault when a dir is attempting to be tagged directly (without a .id3)&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - don&#039;t fail pkg install if simplephone is not running.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-i386 - 1404-i386/amd64 201607240235+899786ab ==&lt;br /&gt;
* pluto-website-admin (220) - Mysqli_real_escape_string did not work. a start with ipv6 firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/i386 201607202218+14cba09a ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) - Stream Bouncing, Additional settings for location, removed debug output, queue functionality.&lt;br /&gt;
&lt;br /&gt;
== Update 201607181902+d4cec1a0 1404-i386/amd64 - 1204-i386 ==&lt;br /&gt;
* pluto-website-admin - Update to qOrbiterGenerator.php for newer PHP version&lt;br /&gt;
&lt;br /&gt;
== Update 201607161239+6d72c3f9 1404-i386/amd64 1204-i386 ==&lt;br /&gt;
* pluto-website-admin (220) - #2678 fix Warning: Invalid argument supplied for foreach() in /var/www/lmce-admin/include/dhcpd-tools/DHCPd-parse.php on line 113&lt;br /&gt;
* pluto-boot-script&lt;br /&gt;
&lt;br /&gt;
== Update 201607151016+5b5adba3 1404/i386 &amp;amp; amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule use another escape method.&lt;br /&gt;
&lt;br /&gt;
== Update 201607122332+f0fc9c6b 1404/i386 ==&lt;br /&gt;
* pluto-boot-scripts (234) - fix #2684 clients cannot access internet when firewall is disabled. &lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule.&lt;br /&gt;
&lt;br /&gt;
== Update 201607050613+601c67da 1404-i386/amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - more fixes to the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update trusty i386/amd64 201606301955+614dfa7b ==&lt;br /&gt;
* pluto-website-admin (220) - fix for outside access port 443 not uncheckable.&lt;br /&gt;
* pluto-boot-scripts (234) - fix for not dele rules from iptables from outsideAccess.php&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201606201908+31b25c52 ==&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** unicode reading/writing working properly&lt;br /&gt;
** coverart writing to tags working properly&lt;br /&gt;
** .id3 files handled by taglib instead of id3lib.&lt;br /&gt;
** General Object Frame (GEOB) reading/writing working properly (all lmce attributes are stored in id3v2 GEOB tags for .id3/.mp3 files)&lt;br /&gt;
* pluto-website-admin (220) - more updates for mysql -&amp;gt; mysqli conversion&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201605312323+08fb8202 ==&lt;br /&gt;
* pluto-website-admin (220) - fix Text Command button to honor parameters from Screen_CommandParameter&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller to fix spamming of logs with constant updates of device data.&lt;br /&gt;
&lt;br /&gt;
== Update trusty-i386/amd64 201605310531+04df53f5 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - get the stream uri from onvif camera and save it in a device data for use by other devices&lt;br /&gt;
* pluto-website-admin (220) - adate to adodb 5.20.4 and change db driver from mysql to mysqli&lt;br /&gt;
* pluto-updatemedia (405,406) - tag writing/deletion of values update&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201605261039+410242d2 ==&lt;br /&gt;
* pluto-media-database (233) - remove FatGroupBy query as it is massive and no longer required&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** FIX UpdateMedia not detecting changes in files on disk.  Fixes: UpdateMedia not reading modification times properly.&lt;br /&gt;
** improve image reading/writing for mp3/mp4 files, add image handling for asf/wma, improve track art-&amp;gt;performer/album artist matching.&lt;br /&gt;
** don&#039;t add network shares to inotify watch list&lt;br /&gt;
* pluto-system-database (211) - new qml-* pkg definitions for qorbiter&lt;br /&gt;
* pluto-plutoutils (196,197) - add fn&#039; to determine filesystem type of a file&lt;br /&gt;
* lmce-disked-interactor (897,898) - make sure we see the core and have an IP prior to attempting contact&lt;br /&gt;
* pluto-bootscripts (234) - make sure we see the core prior to continuing to boot an MD&lt;br /&gt;
* pluto-website-admin (220) - various fixes in the media page&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 - 201605171740 c6d63dc6 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3, ogg, flac, mp4, wv, wav, oga, mpc, spx, opus, tta, m4a, m4r, m4p, 3g2, m4v, wma, asf, aif, aiff, afc, aifc, ape, s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64  201605131052+2542a526 ==&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - udev rule to ignore usbhid portion of device, permits orbiter to enter screensaver&lt;br /&gt;
* pluto-bootscripts (234) - permit devices that have died 50 times to attempt to restart after a router reload. Firewall fix for manual defined chains.&lt;br /&gt;
* pluto-sound-card-scripts (579) - don&#039;t assume cardid=1, determine phoenix cardid from aplay.&lt;br /&gt;
* pluto-media-database (233) - additional AttributeType &amp;quot;Album Artist&amp;quot;&lt;br /&gt;
* lmce-media-identifier (931,932) - updates for Album Artist tag.&lt;br /&gt;
* pluto-orbiter (119,138) - updates for Album Artist tag.&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** updates for Album Artist tag&lt;br /&gt;
** fix mainMediaFileSync.php. OutsideAccess page showing the options (again). &lt;br /&gt;
** And typo fixes for issue #2643. &lt;br /&gt;
** Firewall page reload issue 2636#. Firewall gui do not show &amp;quot;NULL&amp;quot;.&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3:ogg:flac:mp4:wv:wav::oga:mpc:spx:opus:tta:m4a:m4r:m4p:3g2:m4v:wma:asf:aif:aiff:afc:aifc:ape:s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update jessie 20160427 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for RPi&lt;br /&gt;
* lmce-disked-md-rpi2 (889) - +x firstboot_md_rpi2 to ensure it&#039;s picked up properly&lt;br /&gt;
&lt;br /&gt;
== Update jessie 201604130947+0083d387 ==&lt;br /&gt;
== Update 1204/1404-i386/amd64 201604101031-0b47a986 ==&lt;br /&gt;
* pluto-website-admin, pluto-boot-scripts (220,234) - Firewall Fixes for GUI and inner working of the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603251155+a1c0f6ea ==&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - File view implemented. Fixed not being able to leave resume menu.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603222119+336464d8 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller  to fix floorplan / status being improperly updated.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t mount optical discs as HDDs&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201603220706+c3c4b899 ==&lt;br /&gt;
* lmce-md-meta (450) - for some reason this is not in the main repo&lt;br /&gt;
* lmce-media-identifier - fixed for libcdio&lt;br /&gt;
&lt;br /&gt;
== Update jessie-rpi 60faa181 ==&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - adds video resizing so UI1 can be exposed while video is playing.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 armhf 31c5d994 ==&lt;br /&gt;
== Update 1404 i386 52e39875 ==&lt;br /&gt;
* pluto-storage-devices (533) - fix ntfs detection&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 - 49a8cbf1 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - a little better device to device template mapping&lt;br /&gt;
* pluto-website-admin (220) - fix adv.zwave page and adding secure devices&lt;br /&gt;
* lmce-disked-* - update the disked md/mid meta/base/device pkgs, specific fixes for 1404 joggler&lt;br /&gt;
* lmce-json-plugin (876,877) - first time addition to the main repo&lt;br /&gt;
* libdvdid0 (replacement) - first time addition to the repo, for use by Media Identifier&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - enable disabling internal volume control, similar to how logitechmediaserver does&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1404(armhf)/jessie(rpi)-a84db86f ==&lt;br /&gt;
* lmce-launch-manager (298,299) - only update squeeze devices when running on the core, redundant elsewhere.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404-87954508 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t fail if dvdcss2 cannot be automatically installed.&lt;br /&gt;
* pluto-hald (529,530) - reinstate tty detection, seperate from usb-serial, use direct parent for udi naming.&lt;br /&gt;
* pluto-boot-scripts (234) - disable buildall, the script doesn&#039;t run so why waste time creating it.&lt;br /&gt;
* lmce-launch-manager (298,299)&lt;br /&gt;
** update squeezebox players on router reloads from Launch_Manager&lt;br /&gt;
** call Config_Device_Changes in startCoreServices to ensure everything gets its&#039; Need Configure flag reset.&lt;br /&gt;
&lt;br /&gt;
== Update a332f49a ==&lt;br /&gt;
* lmce-install-scripts (391) - fix missing quote in MD installation.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix missing &#039;fi&#039; in BootMessage.sh&lt;br /&gt;
** fix usb.1 system serial port listing/translating&lt;br /&gt;
* lmce-media-identifier (931,932) - fix segfault, CDs are identified, cd-ripping functional again&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** prioritize new conf dir over old conf dir, fix install on systems upgraded from 1204-&amp;gt;1404&lt;br /&gt;
** redirect mythweb to html/mythweb&lt;br /&gt;
* pluto-hald (529,530) - updates to serial port naming, specifically for odroid.&lt;br /&gt;
* pluto-storage-devices (533) - fix mounted drive detection and add detection for drives mounted in /proc/cmdline like rpi.&lt;br /&gt;
&lt;br /&gt;
== Update 1204=201602080446+2028f850 &amp;lt;br&amp;gt; 1404=201602071815+c31bc44f ==&lt;br /&gt;
* lmce-install-scripts (391)&lt;br /&gt;
** enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
* lmce-core (888) - enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
* pluto-storage-devices (533) - redo StorageDevices_Radar using blkid for internal HDD identification.  /dev/disk/by-path/ is not present anymore.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
** new VerifyDistro.sh script and call the script on boot.&lt;br /&gt;
*** Preventative mostly.  Intended to ease pain for those that upgrade distros.&lt;br /&gt;
*** Ensure child devices, onscreen orbiter, have the proper PK_Distro set.&lt;br /&gt;
&lt;br /&gt;
== Update 296fdcd3 ==&lt;br /&gt;
* pluto-website-admin (220) - fix depends versioning&lt;br /&gt;
* pluto-hald (529,530) - fix depends versioning&lt;br /&gt;
* pluto-boot-scripts (234) - fix depends versioning&lt;br /&gt;
* pluto-system-database (211) - fix depends versioning&lt;br /&gt;
* pluto-orbitergen (226,227) - fix depends versioning&lt;br /&gt;
* lmce-disked-md-base (801) - fix depends versioning&lt;br /&gt;
* lmce-install-scripts (391) - fix depends versioning&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix depends versioning&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix depends versioning&lt;br /&gt;
* lmce-datalogger-plugin (686,687) - fix depends versioning &lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix depends versioning&lt;br /&gt;
&lt;br /&gt;
== Update f3a444c0 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** use newer .sh script rather than obsolete .pl script for dialplan creation&lt;br /&gt;
** fix Directory listing on cisco phones&lt;br /&gt;
** fix delete buttons on internet radio page.&lt;br /&gt;
* pluto-hald (529,530)&lt;br /&gt;
** add &#039;usb&#039; to &#039;pci&#039; and &#039;platform&#039; as valid bus addresses&lt;br /&gt;
** permit adding of usb devices with usb_serial or tty children&lt;br /&gt;
* pluto-boot-scripts (234) - update SetupAudioVideo.sh to more reliably address nvidia hdmi audio outputs&lt;br /&gt;
* lmce-asterisk (replacement) - live_dangerously for now to get all the necessary Voicemail modules to load&lt;br /&gt;
* pluto-system-database (211) - new DD Number of jobs for orbiter plug-in/orbitergen&lt;br /&gt;
* pluto-boot-scripts (234) - updates to RegenOrbiter scripts for parallel job queued orbiter generation.&lt;br /&gt;
* pluto-orbitergen (226,227) - new depends on GNU parallel&lt;br /&gt;
* lmce-disked-md-base (801) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* lmce-install-scripts (391) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - remove hardcoded ip address, get from db instead.&lt;br /&gt;
* lmce-diskless-tools (627,628) - only run UpdateDebCache.sh if it is executable&lt;br /&gt;
* lmce-datalog-plugin(686,687) - fix pear install command in postinst&lt;br /&gt;
* lmce-advanced-ip-camera(812,813) - add basic onvif support (snapshot,PTZ)&lt;br /&gt;
&lt;br /&gt;
== Update 31792 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of new External_Media_Identifier, testing CDDB ids&lt;br /&gt;
&lt;br /&gt;
== Update 31783 ==&lt;br /&gt;
* pluto-libserial (190,191) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-dcecommon (192,193) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-irbase (194,195) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-plutoutils (196,197) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-vipshared (199,200) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-serializeclass (198,238) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-libbd (239,240) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-ra (247,248) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-main-db (201,237) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-media-db (254,255) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-security-db (278,277) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-sdl-helpers (346,347) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-messagetrans (398,401) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-game-db (675,676) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-windowutils (677,678) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-datalog-db (688,689) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
&lt;br /&gt;
== Update 31782 ==&lt;br /&gt;
* pluto-std-plugins - fix FK_File search inside Attribute in Media_Plugin&lt;br /&gt;
&lt;br /&gt;
== Update 31774 ==&lt;br /&gt;
* lmce-disked-mid-base (899) - fix error in postinst&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come (this should be in but apt-get is getting 404 errors)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add &amp;quot;remove failed node&amp;quot; command&lt;br /&gt;
* pluto-website-admin - add &amp;quot;remove failed node&amp;quot; command for zwave advanced page&lt;br /&gt;
&lt;br /&gt;
== Update 31760 ==&lt;br /&gt;
* lmce-disked-md-base (801) - fix another error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31757 ==&lt;br /&gt;
* lmce-core (888) - overwrite AutostartCore conf value&lt;br /&gt;
* lmce-md-meta (450) - overwrite AutostartMedia conf value&lt;br /&gt;
* lmce-mid-meta (962) - missing deb&lt;br /&gt;
* lmce-hybrid (769) - exit 0 in postinst, just to be sure&lt;br /&gt;
* lmce-disked-md-base (801) - fix error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31754 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - reconnect before send&lt;br /&gt;
&lt;br /&gt;
== Update 31752 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - remove hard coded caller id &#039;Cherryhomes, Tho&#039;, use incoming caller id.&lt;br /&gt;
&lt;br /&gt;
== Update 31750 ==&lt;br /&gt;
* pluto-website-admin (220) - fix postinst error notice on precise.&lt;br /&gt;
* pluto-boot-scripts (234) - (re)start asterisk, otherwise configuration doesn&#039;t occur and sip phones cannot register&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - force-reload apache2 after disabling mythbuntu sites&lt;br /&gt;
* lmce-md-meta (450) - don&#039;t overwrite conf values that are already set&lt;br /&gt;
* *openzwave* (replacement) - version bump, upgrade fixes to upstream files&lt;br /&gt;
&lt;br /&gt;
== Update 31744 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come&lt;br /&gt;
&lt;br /&gt;
== Update 31742 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Gui changes to not confuse people. &lt;br /&gt;
** outsideaccess works together with the firewall. &lt;br /&gt;
** phonelines note on protocol for meaning of &amp;quot;SPA&amp;quot; and a status for this protocol setting, port can be changed if needed else it will be the default (5060).&lt;br /&gt;
&lt;br /&gt;
== Update 31739 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix absolute timed events&lt;br /&gt;
&lt;br /&gt;
== Update 31723 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix nfs-premount script in default diskless image.&lt;br /&gt;
* lmce-dlna(842,843) - compatibility fixes&lt;br /&gt;
* lmce-install-scripts (391) - generate ssh keys so openssh-server can accept connections&lt;br /&gt;
* pluto-createdevice (303,304) - hide errors, specifically during initial package postinst&lt;br /&gt;
* lmce-cec-adaptor (871,872) - fix cec remotes not getting to lmce&lt;br /&gt;
&lt;br /&gt;
== Update 31693 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - Fixes #2530 - fix errors in mythtvdb synchronization scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31686 ==&lt;br /&gt;
* lmce-install-scripts (391) - deal with firstboot stuffenz&lt;br /&gt;
* pluto-system-database (211) - add proxy orbiter DT depends for generic web device&lt;br /&gt;
* pluto-website-admin (220) - order by photo file name in screen saver/photo browser&lt;br /&gt;
* pluto-boot-scripts (234) - try ubiquity before anything else, and reboot after the normal firstboot - breaks live boot on dvd atm&lt;br /&gt;
* lmce-diskless-tools (627,628) - permit i386 diskless image building on amd64 cores, ensure processes are killed in chroot before unmounting (deals with systemd for now)&lt;br /&gt;
&lt;br /&gt;
== Update 31660 ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) &lt;br /&gt;
**PS3 control screen, fix layout issue. adds seperate button group (triangle, circle, etc) and navigation arrows. Also adds power off button to properly exit screen&lt;br /&gt;
* pluto-website-admin (220) - prevent creation of extra &#039;blank&#039; network interfaces&lt;br /&gt;
&lt;br /&gt;
== Update 31655 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - close connection after use&lt;br /&gt;
* pluto-website-admin (220) - fill ServerName var if it is unset, not if it is set.&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - unify service control&lt;br /&gt;
* pluto-boot-scripts (234) - unify service control&lt;br /&gt;
* pluto-dhcpd-plugin (302) - unify service control&lt;br /&gt;
* pluto-disk-monitor (554) - unify service control&lt;br /&gt;
* pluto-mythtv-player (133,152) - unify service control&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - unify service control&lt;br /&gt;
* pluto-raid-tools (617) - unify service control&lt;br /&gt;
* pluto-storage-devices (533) - unify service control&lt;br /&gt;
* lmce-update-system (650,651) - unify service control&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - unify service control&lt;br /&gt;
* pluto-vdr-plugin (466,467) - unify service control&lt;br /&gt;
* pluto-vdr (468,469) - unify service control&lt;br /&gt;
* pluto-database-settings (407) - unify service control&lt;br /&gt;
* lmce-asterisk (replacement) - unify service control&lt;br /&gt;
* lmce-diskless-tools (627,628) - unify service control&lt;br /&gt;
* lmce-install-scripts (391) - unify service control&lt;br /&gt;
* pluto-updatemedia (405,406) - unify service control&lt;br /&gt;
* pluto-newmdinteractor (538,539) - unify service control&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - Fix size issues, floorplan popups.&lt;br /&gt;
&lt;br /&gt;
== Update 31621 ==&lt;br /&gt;
* pluto-mythtv-player (133,152) - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 31618 ==&lt;br /&gt;
* lmce-asterisk (replacement) - update db for chan_sccp-v4.2 and fix bug requiring manual asterisk reload on boot&lt;br /&gt;
&lt;br /&gt;
== Update 31615 ==&lt;br /&gt;
* pluto-* - rebuild with new libraries&lt;br /&gt;
* lmce-* - rebuild with new libraries&lt;br /&gt;
&lt;br /&gt;
== Update 31606 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix EPG data on orbiters, myth stores everything in UTC now.&lt;br /&gt;
* pluto-pluto-main-db (201,237) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-media-db (254,255) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-security-db (277,278) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-datalog-db (688,689) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-game-db (675,676) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-updateentarea (341,342) - don&#039;t send empty play command when resetting alarm&lt;br /&gt;
&lt;br /&gt;
== Update 31580 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - use bypass-event to avoid watching media events when playing alerts&lt;br /&gt;
* pluto-updateentarea (341,342) - send bypass-event with security event commands&lt;br /&gt;
* libcec3 debs (replacement) - removes conflict data with libcec2&lt;br /&gt;
&lt;br /&gt;
== Update 31575 ==&lt;br /&gt;
* lmce-asterisk (replacement) - play back alert notification file&lt;br /&gt;
* pluto-std-plugins (116,135) - create alert notification file with correct format&lt;br /&gt;
* pluto-boot-scripts (234) - fixes for nvidia drivers on precise, upgrades to nvidia-340&lt;br /&gt;
* lmce-avwizard-sounds (replacement) - don&#039;t copy fakeroot files (it is redundant it is)&lt;br /&gt;
* video-wizard-videos (replacement) - deb is back to normal size, not 2x&lt;br /&gt;
&lt;br /&gt;
== Update 31553 ==&lt;br /&gt;
* pluto-website-admin (220) - fix error that wipes out the apache2.conf&lt;br /&gt;
* pluto-hald (529,530) - fix segfaults with firewire hardware&lt;br /&gt;
&lt;br /&gt;
== Update 31547 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some API changes in OZW 1.3, more device template mappings&lt;br /&gt;
* pluto-boot-scripts (234) - typo fix for nvidia drivers&lt;br /&gt;
* lmce-disked-md-base (801) - set hostname on disked MDs, set timezone on disked MDs&lt;br /&gt;
* lmce-install-scripts (391) - set hostname on disked MDs, set timezone on disked MDs &lt;br /&gt;
* pluto-website-admin was generated---&amp;gt; lmce-website-admin (220) - set apache2 ServerName to silence error on boot&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates, revert to ruby 1.8&lt;br /&gt;
* pluto-generic-serial-device (307,335) - admit defeat for now, revert to ruby 1.8&lt;br /&gt;
&lt;br /&gt;
== Update 31533 ==&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31520 ==&lt;br /&gt;
* chan-sccp_v4.2 (replacement) - Upgrad asterisk SCCP channel driver to newest version&lt;br /&gt;
* pluto-vdr-plugin (466,467) - implement background loading of EPG from VDR to avoid crashes due to commands not completing on time&lt;br /&gt;
* pluto-boot-scripts (234) - some logic changes and added messages for video driver install debugging&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - link new channels dir to old channels dir for backwards compatibility&lt;br /&gt;
&lt;br /&gt;
== Update 31503 ==&lt;br /&gt;
* *zwave* (replacement) - new upstream openzwave version 1.3.1224&lt;br /&gt;
* lmce-zwave-ozw(505,506) - build against new libopenzwave1.3&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates&lt;br /&gt;
* lmce-disked-interactor (897,898) - make disked interactor aware of wheezy and jessie.&lt;br /&gt;
&lt;br /&gt;
== Update 31500 ==&lt;br /&gt;
* *myth* (replacement) - fix depends on non-existent packages&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst - verified installing now&lt;br /&gt;
* pluto-std-plugins (116,135) - Use integer comparison for brightness state&lt;br /&gt;
&lt;br /&gt;
== Update 31491 ==&lt;br /&gt;
* lmce-avwizard-skin-basic (replacement) - fix packaging of avwizard skin&lt;br /&gt;
* *myth* (replacement) - mythtv 0.27.5+fixes with Schedules Direct fix included&lt;br /&gt;
* *asterisk* (replacement) - asterisk 11.7 backport from trusty&lt;br /&gt;
* libical* (replacement) - for asterisk 11.7&lt;br /&gt;
* *cec* (replacement) - libcec3&lt;br /&gt;
* libplatform* (replacement) for libcec3&lt;br /&gt;
* lmce-cec-adaptor (871,872) - build against libcec3&lt;br /&gt;
* lmce-mediatomb (702) - fix pkg installation&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - update protocol version and secret word (shhh) for 0.27.5+fixes&lt;br /&gt;
* lmce-diskless-tools (627,628) - remove call to obsolete script in Diskless_Setup.sh&lt;br /&gt;
* pluto-vdr-plugin (466,467) - return full EPG (used in qOrbiter EPG Grid), improve communication speed with SVDRP&lt;br /&gt;
* pluto-slim-server-streamer (289,290) - emit time code event, fix duration parsing&lt;br /&gt;
* pluto-boot-scripts (234) - fix headless booting, update 1404 nvidia driver&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* lmce-md-meta (450) - add depends on alsa-utils&lt;br /&gt;
* pluto-website-admin (220) - Fix cdrviewer (Call Details Records) to accept SSL conections as well, firewall gui change to set Offline rules in red as they are not executed.&lt;br /&gt;
* pluto-app-server (126,145)- new poweroff mode I for ignore, since N is already in use&lt;br /&gt;
&lt;br /&gt;
== Update 31420 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add depends on pluto-boot-scripts for deb cache script&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31411 == &lt;br /&gt;
* pluto-avwizard (555,556) - fix depends on avwizard skins basic, should no longer care about version&lt;br /&gt;
* pluto-boot-scripts (234) - more explicity logic for core only booting, fix startup script db errors&lt;br /&gt;
* lmce-update-system (650,651) - remove and disable old init.d script from /etc/init.d&lt;br /&gt;
* pluto-plutodhcp (330,491) - depends on apparmor&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-dhcpd-plugin (302) - remove hardcoded IP addresses from configure scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31387 ==&lt;br /&gt;
* lmce-weather-plugin - make change to allow for tonight&#039;s forecast data (TSCHAK)&lt;br /&gt;
* lmce-asterisk (replacement) - remove obsolete phonetic engines and replace with espeak, voices remain the same&lt;br /&gt;
* mbrola (replacement) - base mbrola pkg for mbrola voices (add armhf binary)&lt;br /&gt;
* pluto-asterisk (270,271) - generate fr and de voicemail menus with espeak now&lt;br /&gt;
* lmce-core (888) - add depends on iptables&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31378 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Start_KDE.sh ownership fix, AV config updates&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-avwizard (555,556) - update pkgs &amp;amp; depends &amp;amp; config scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - do not run update deb_cache during dvd creation&lt;br /&gt;
* pluto-x-scripts (520) - fixups to Xconfigure.sh&lt;br /&gt;
&lt;br /&gt;
== Update 31356 ==&lt;br /&gt;
* pluto-system-database (211) - update depends&lt;br /&gt;
* pluto-orbiter (119,138) - update depends&lt;br /&gt;
* lmce-diskless-tools (627,628) - speedup dpkg in diskless create, fix missing quotes&lt;br /&gt;
&lt;br /&gt;
== Update 31352 ==&lt;br /&gt;
* pluto-motion-wrapper - more config file location fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 31351 ==&lt;br /&gt;
* pluto-boot-scripts (234) - change service &#039;nis&#039; to &#039;ypserv&#039;, nis is no longer a service name&lt;br /&gt;
* pluto-website-admin (220) - remove &#039;idiot&#039; text, let&#039;s be nice to people.&lt;br /&gt;
* lmce-core (888) - do not create and config under ubiquity&lt;br /&gt;
* lmce-md-meta (450) - do not create and config under ubiquity&lt;br /&gt;
* motion (replacement) - fix bad config file setting in rules&lt;br /&gt;
&lt;br /&gt;
== Update 31337 ==&lt;br /&gt;
* motion (replacement) - new version of motion to match new configuration values generated by linuxmce&lt;br /&gt;
&lt;br /&gt;
== Update 31331 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix for brightness events&lt;br /&gt;
* pluto-boot-scripts (234) - fix kdm disabling, start ubiquity after network config&lt;br /&gt;
* lmce-diskless-tools (627,628) - add upstart overrides for kdm&lt;br /&gt;
* lmce-install-scripts (391) - start ubiquity after network config&lt;br /&gt;
&lt;br /&gt;
== Update 31314 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add missing depends&lt;br /&gt;
&lt;br /&gt;
== Update 31292 ==&lt;br /&gt;
* lmce-core-locator (replacement) - (1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-system-database (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* All .debs created by MakeRelease - removal of all Pre-Depends, everything is now a Depends entry (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
== Update 31228 ==&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-local-database&lt;br /&gt;
&lt;br /&gt;
== Update 31214 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package (not in repo, need build-replacements.sh svn up&#039;d?)&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - preinst/postinst updates&lt;br /&gt;
* pluto-boot-scripts (234) - preinst/postinst updates&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-disked-md-base (801) - firstboot updates&lt;br /&gt;
&lt;br /&gt;
== Update 31187 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package&lt;br /&gt;
* pluto-confirm-dependencies (281,272) - new depends on lmce-install-scripts (fixes unable to apt-get dist-upgrade)&lt;br /&gt;
* lmce-md-meta (450) - new depends on nfs-common, openssh-server and pastebinit&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - update depends, preinst/postinst&lt;br /&gt;
* pluto-boot-scripts (234) - depends &amp;amp; preinst/postinst updates&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - add override mythweb defaults in pkg preinst&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - update depends&lt;br /&gt;
&lt;br /&gt;
== Update 31133 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** enable WakeMDs.sh to wake any halted MDs.&lt;br /&gt;
** consolidate all boot script launching to /etc/init.d/linuxmce&lt;br /&gt;
* pluto-avwizard (555,556) - moves start script to /usr/pluto/bin, called by /etc/init.d/linuxmce now&lt;br /&gt;
* lmce-update-system (650,651) - removes init.d script, called by /etc/init.d/linuxmce now&lt;br /&gt;
* pluto-website-admin (220) - GUI changes on network settings if an bridge is configured on the db.&lt;br /&gt;
* lmce-core (888) - depend on pluto-asterisk, lmce-asterisk, lmce-install-scripts&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* pluto-generic-serial-device (307,335) - wildshot attempt at fixing segfaults&lt;br /&gt;
&lt;br /&gt;
== Update 31103 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** Network bridging now possible  for wifi AP to have the same network as the local lan. &lt;br /&gt;
** ipv6 on/off for network interfaces. Read multiple ipv6 interfaces from the db.&lt;br /&gt;
** re-enable HaltMDs.&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* libqhttpserver (912) needed for linuxmce nvr&lt;br /&gt;
* lmce-launch-manager - (298,299) - ?&lt;br /&gt;
&lt;br /&gt;
== Update 31087 ==&lt;br /&gt;
* lmce-weather (838,839) - Fix a serious bug in getconfig where incorrect configuration device data would crash program. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 31083 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes #2422, advanced zwave page broken in chrome&lt;br /&gt;
* pluto-system-database (211) - thumbnail screen fixes&lt;br /&gt;
&lt;br /&gt;
== Update 31074 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** setEa2.php - Fix settings for creating entertain area.&lt;br /&gt;
** qOrbiterGenerator.php - Fix erroneous EA creation by removing it.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Fix incorrect setting for enabling / disabling motion.&lt;br /&gt;
&lt;br /&gt;
== Update 31069 ==&lt;br /&gt;
* pluto-website-admin (220) - setEa2.php Fix settings for creating entertain area.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Initial build.&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (881) - Large update of skins and internals.&lt;br /&gt;
&lt;br /&gt;
== Update 31061 ==&lt;br /&gt;
* lmce-squeezeslave (762) - Add configuration DD to command line&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DB package updates&lt;br /&gt;
** restore previous video remote layout with Options button to select subtitles/audio tracks/video tracks from a datagrid list.&lt;br /&gt;
* pluto-website-admin (220) - firewall.php edit rules for non advanced firewall and some other small fixes.&lt;br /&gt;
* lmce-asterisk (replacement) - sip config modules to avoid autoload.&lt;br /&gt;
&lt;br /&gt;
== Update 31051 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** firewall.php not adding rules now fixet.&lt;br /&gt;
** Test buttons for Hue lights&lt;br /&gt;
** Security outsideAccess page now works nicely with the new firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 31044 ==&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
&lt;br /&gt;
== Update 31031 ==&lt;br /&gt;
* pluto-website-admin (220) - firewall.php after a strange fault and some layout fixes.&lt;br /&gt;
* lmce-mediatomb (702) - don&#039;t assume mediatomb is already running.&lt;br /&gt;
&lt;br /&gt;
== Update 31013 ==&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* pluto-boot-scripts (234) - Network Parameter count for more interfaces set and Network firewall accepting postrouting Masquerade  for other network interfaces.&lt;br /&gt;
&lt;br /&gt;
== Update 30985 ==&lt;br /&gt;
* pluto-website-admin (220) - #2268 fail2ban integration logging failed user login attempt.&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** #2268 fail2ban script not insert existing rules to our db.&lt;br /&gt;
** Support for audio output select on rpi via web admin&lt;br /&gt;
* lmce-diskless-tools (627,628) - update syslinux depends to syslinux-common&lt;br /&gt;
* lmce-omx-player (829,830) - Honour audio output selection of rpiMD&lt;br /&gt;
* lmce-squeezeslave (762) - Fix detection for squeezelite&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - further fixes&lt;br /&gt;
* lmce-usb-gamepad (795,796) - rewrite the whole main loop to suck less. hold-down repeats work, input handling more sane.&lt;br /&gt;
&lt;br /&gt;
== Update 30926 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Fix for #2368 insert firewall rules en #2064 edit and delete chains (except some system chains).&lt;br /&gt;
** Support for brightness based events.&lt;br /&gt;
* pluto-std-plugins (116,135) - Support for brightness based events&lt;br /&gt;
* lmce-omx-plugin (831,832) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** Database additions for XBOX 360 Gamepad (device templates, package)&lt;br /&gt;
** Modification of OMX Plugin to allow priority to be changed.&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - the XBOX 360 Gamepad driver, uses xboxdrv userspace driver.&lt;br /&gt;
* lmce-usb-gamepad (795,796) - additions here for above XBOX 360 Gamepad support.&lt;br /&gt;
&lt;br /&gt;
== Update 30862 ==&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress can now read latest files per linuxmce user.&lt;br /&gt;
&lt;br /&gt;
== Update 30860 ==&lt;br /&gt;
* lmce-weather (838,839) - some fixes by cfernandes&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress.&lt;br /&gt;
* pluto-boot-scripts (234) - more mail fixes&lt;br /&gt;
&lt;br /&gt;
== Update 30855 ==&lt;br /&gt;
* pluto-vdr, pluto-vdr-plugin - remove hardcoding of core IP and network address, but depend on the pluto.conf entries for DCERouter.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location (again)&lt;br /&gt;
* lmce-diskless-tools - stop copying apt configs from the core&lt;br /&gt;
* pluto-boot-scripts - fix postfix setup #2393&lt;br /&gt;
&lt;br /&gt;
== Update 30841 ==&lt;br /&gt;
* lmce-avwizard-sounds - fix replaces/conflicts data&lt;br /&gt;
* lmce-skins-basic - fix replaces/conflicts data&lt;br /&gt;
* lmce-avwizard-skin-basic - fix replaces/conflicts data&lt;br /&gt;
&lt;br /&gt;
== Update 30383 ==&lt;br /&gt;
* pluto-website-admin (220) - Add Hue lights related test button.&lt;br /&gt;
* pluto-boot-scripts - Add another option --autobackup to PlutoRestorePoint.sh to allow backup of pluto_main only&lt;br /&gt;
&lt;br /&gt;
== Update 30814 ==&lt;br /&gt;
* pluto-Boot-scripts - Firewall order by place and PK_Firewall to let rules stay on top on the middle or on the bottom.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location&lt;br /&gt;
* lmce-hue-controller (862,863) - Fix bug in adding new lights, now adds serial number.&lt;br /&gt;
* pluto-website-admin (220) - Fix oops relating the missing &#039;.&#039; which caused operations/login.php not to work.&lt;br /&gt;
&lt;br /&gt;
== Update 30783 ==&lt;br /&gt;
* lmce-nbd-client-wrapper - new pkg to hold common script&lt;br /&gt;
* pluto-xine-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* lmce-vlc-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* pluto-boot-scripts - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
* pluto-storage-devices - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30777 ==&lt;br /&gt;
* lmce-core - depend on openswan&lt;br /&gt;
* pluto-system-database - pkg updates&lt;br /&gt;
* pluto-boot-scripts - remove check for openswan from bootscript&lt;br /&gt;
* pluto-generic-serial-device - update to ruby 1.9.1&lt;br /&gt;
&lt;br /&gt;
== Update 30773==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller internals to now include polling, so as to make sure floorplan data is accurate. Changes underlying mechanisms for how lights are handled in preparation for extending additional support for Cree lights and sensors devices.&lt;br /&gt;
&lt;br /&gt;
== Update 30767 ==&lt;br /&gt;
* lmce-diskless-tools - update diskless archive name to reflect current compression method xz.&lt;br /&gt;
* pluto-website-admin (220) - updates to internet radio, moves add channels to a seperate page.  Thanks Dap-P!&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
* pluto-vdr - adds missing depends on vdr in trusty&lt;br /&gt;
* lmce-core - update depends to new pkg name lmce-avwizard-sounds&lt;br /&gt;
* pluto-avwizard - update depends to new pkg name lmce-avwizard-skins-basic&lt;br /&gt;
* lmce-clock-screen-saver - make the clock screen saver use the WMController/wmctrl methods for setting window visibility to be compatible with Orbiter. (TSCHAK) (Trusty only)&lt;br /&gt;
* pluto-storage-devices - Make sure that smbpasswd is used to create or update sambahelper&#039;s password (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30726 ==&lt;br /&gt;
* pluto-vdr - VDR player&#039;s package assumed a correctly installed vdr package which includes an entry in /etc/default for vdr. We no longer fail on a missing file.&lt;br /&gt;
&lt;br /&gt;
== Update 30724 ==&lt;br /&gt;
* lmce-weather - updates to weather sources, add OpenWM source.  Thanks SBCC and cfernandes!&lt;br /&gt;
* lmce-skins-* - adds missing telecom icons, updates/adds weather icons&lt;br /&gt;
* lmce-avwizard-sounds - remove extraneous stuff from pkg, reduce pkg size back to normal.  Proper replaces/conflicts/data...&lt;br /&gt;
* lmce-avwizard-skin-basic - Proper replaces/conflicts/data...&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
&lt;br /&gt;
== Update 30718 ==&lt;br /&gt;
* lmce-core - new depends on lmce-skins*&lt;br /&gt;
* lmce-md-meta - add depends on pnp-detection scripts&lt;br /&gt;
* lmce-hybrid - new depends on lmce-skins*&lt;br /&gt;
* pluto-avwizard (556,555) - add pciutils as a depends, still need to deal with multiarch stuff so this will break armhf, we will not update armhf for now, it doesn&#039;t use avwizard but does install it.&lt;br /&gt;
* lmce-diskless-tools - minor diskless create fixups&lt;br /&gt;
* pluto-orbiter - missing depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio script&lt;br /&gt;
* pluto-website-admin (220) - recognize MIDs as top level devices&lt;br /&gt;
* pluto-mythtv-player - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 30628 ==&lt;br /&gt;
* *-database - fix install issues&lt;br /&gt;
&lt;br /&gt;
== Update 30622 ==&lt;br /&gt;
* pluto-orbiterinstallers - fix depends issue&lt;br /&gt;
* pluto-system-database - lots of compat updates&lt;br /&gt;
* lmce-* - lots of compat updates&lt;br /&gt;
* pluto-* - lots of compat updates&lt;br /&gt;
&lt;br /&gt;
== Update 30618 ==&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio scripts&lt;br /&gt;
* pluto-website-admin (220) - updated internet radio page&lt;br /&gt;
&lt;br /&gt;
== Update 30571 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - send &amp;quot;Device is turned on or off&amp;quot; event when appropriate so the corresponding event works as expected&lt;br /&gt;
* lmce-squeezeslave (762) - set to pnp create without prompting&lt;br /&gt;
* lmce-runtime-dependencies (903) - pkg to help consolidate runtime depends.&lt;br /&gt;
* lmce-core (888) - updated depends&lt;br /&gt;
* lmce-md-meta (450)- updated depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated depends&lt;br /&gt;
* pluto-createdevice (303,304) - updated depends&lt;br /&gt;
* lmce-weather(838,839) - fix potential segfault&lt;br /&gt;
* pluto-website-admin (220) - add &amp;quot;replace node&amp;quot; button to advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 30549 ==&lt;br /&gt;
* pluto-mythtv-player - fix misaligned data values during mythtv.txt creation.&lt;br /&gt;
&lt;br /&gt;
== Update 30526 ==&lt;br /&gt;
* lmce-core - new pkg&lt;br /&gt;
* lmce-hybrid - pkg depends changes&lt;br /&gt;
* lmce-md-meta - pkg depends changes&lt;br /&gt;
* pluto-dcerouter - pkg depends changes&lt;br /&gt;
* pluto-photo-screen-saver - pkg depends changes&lt;br /&gt;
* pluto-boot-scripts - pkg depends changes&lt;br /&gt;
* pluto-orbiter - pkg depends changes&lt;br /&gt;
* pluto-simplephone - pkg depends changes&lt;br /&gt;
* pluto-website-admin - pkg depends changes&lt;br /&gt;
* lmce-mythtv-scripts - pkg depends changes&lt;br /&gt;
* pluto-system-database - pkg depends changes&lt;br /&gt;
* lmce-squeezeslave (762) - fix launch script, automatically create associated squeezebox player on the core.&lt;br /&gt;
* pluto-std-plugins - run New_PnP_MD.sh for new MID devices as well.&lt;br /&gt;
* lmce-diskless-tools - don&#039;t fail on invoke-rc.d during diskless create, exit gracefully and continue.&lt;br /&gt;
* pluto-mythtv-player - fix diskless create failures due to old hacks.  more work is needed here overall on mythtv integration.&lt;br /&gt;
&lt;br /&gt;
== Update 30419 ==&lt;br /&gt;
* pluto-slim-server - Make sure to turn off all Squeeze* devices when Slim Server Streamer starts or restarts (so that squeezelite does not hog sound cards.)&lt;br /&gt;
* pluto-hald (529,530) - add device node path to pnpqueue with v4l devices during detection&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - update for new lib version&lt;br /&gt;
&lt;br /&gt;
== Update 30384 ==&lt;br /&gt;
* pluto-confirm-dependencies - depend on pluto-install-scripts.&lt;br /&gt;
* pluto-disk-drive (122,141) - remove hal bits that dealt with old jukebox bugs.&lt;br /&gt;
* pluto-capture-card-scripts (580) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-pnp-detection (562) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-storage-devices (533) - convert autofs from hal to udev.&lt;br /&gt;
* pluto-bootscripts (234) - disable starting the hald since we&#039;re using udev now, remove false &#039;fail&#039; messages during reboot/shutdown&lt;br /&gt;
* pluto-slim-server-streamer - make one tweak (do not delete m_mapStreamsToPlayers entry in CMD_Stop). Streaming now works consistently, properly, with squeezebox devices and their clones. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30354 ==&lt;br /&gt;
* pluto-hald (529,530) - fix attempt to fire event for child device of usb-dongle.&lt;br /&gt;
* pluto-slim-server-streamer - Implement FF/REW (transport) trick-play control for Squeeze* devices. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30341 ==&lt;br /&gt;
* pluto-bootscripst - fixes for PPPoE users to not autostart the external interface.&lt;br /&gt;
* pluto-slim-server-streamer - Fix to power off squeezebox player when stream is not in use. This allows softsqueeze/squeezeslave/squeezelite players to let go of a sound device, when not in use (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30332 ==&lt;br /&gt;
* pluto-orbiter (118,139) - disable old hid device functionality.  Anyone who needs it can request a special build which will be provided at no extra charge. ;)&lt;br /&gt;
* pluto-bootscripts (234) - disable Gamepad Radar, functionality now in hal through udev&lt;br /&gt;
* pluto-avwizard (556,555) - fixes mangling of RemoteCmd when &amp;gt;1 remote is detected.&lt;br /&gt;
* pluto-hal-device-finder (535,536) - update to use udev rather than hal.&lt;br /&gt;
* pluto-hald (529,530) - update to use udev rather than hal.&lt;br /&gt;
* pluto-system-database (211) - updates for new detection method (joystick, cec-adaptor), update dependency data for hal pks to reflect dropping hald and add depends on udev now.&lt;br /&gt;
&lt;br /&gt;
== Update 30219 ==&lt;br /&gt;
* pluto-bootscripts (234) - Fail2ban firewall update script, and missing radioscript.sh.&lt;br /&gt;
* pluto-website-admin - Place set for rules on the firewall and bantime for fail2ban integration.&lt;br /&gt;
* pluto-std-plugins (116,135) - adds heirloom-mailx for &#039;mailx -r&#039; functionality, fixes e-mail in general info plugin&lt;br /&gt;
&lt;br /&gt;
== Update 30068 ==&lt;br /&gt;
* lmce-advanced-ip-camera(813,812) - Fixed high cpu usage if connection to camera can not be made&lt;br /&gt;
&lt;br /&gt;
== Update 30052 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - fix android pkg meta data, need to rebuild all together&lt;br /&gt;
&lt;br /&gt;
== Update 30051 ==&lt;br /&gt;
* pluto-updateentarea (341,342) - use DAY/NIGHT in watching/stopped watching events to make them smarter&lt;br /&gt;
* pluto-std-plugins (116,135) - Implement Get Device Status in General Info Plugin&lt;br /&gt;
* pluto-bootscripts (234) - fix VPN ip up/down&lt;br /&gt;
&lt;br /&gt;
== Update 30025 ==&lt;br /&gt;
* pluto-system-database (211) - column def updates&lt;br /&gt;
* pluto-local-database (214) - new Firewall columns and new VPN columns for Users table.&lt;br /&gt;
&lt;br /&gt;
== Update 30014 ==&lt;br /&gt;
* lmce-transmission-client (852) - fix postinst issue.  (Thanks SBCC)&lt;br /&gt;
== Update 29994 ==&lt;br /&gt;
More VLC Player changes to make it at least somewhat usable, there were some ugly bugs that came to light once i plopped it onto my production system. Right now sound device is plughw:0,3, if you need a different one, change it in the code.  (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* lmce-vlc-player - many little fixes to make it suck less.&lt;br /&gt;
&lt;br /&gt;
== Update 29990 ==&lt;br /&gt;
I am working on the VLC player, and it is breathing enough for basic testing. Please do not use in production environment. There is still a lot of code to write (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - updates for VLC player (TSCHAK)&lt;br /&gt;
* vlc-player (882,884) - Very early alpha developer test of the VLC player. (TSCHAK)&lt;br /&gt;
* vlc-plugin (874,875) - Very alpha developer test of the VLC plugin. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 29984 ==&lt;br /&gt;
* pluto-system-database (211) - fix bad repos in pkgs&lt;br /&gt;
* pluto-website-admin - just because I think it is necessary :-)&lt;br /&gt;
&lt;br /&gt;
== Update 29983 ==&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36977</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36977"/>
		<updated>2017-04-29T17:14:54Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: /* Upcoming fixes... */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the latest changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo much easier.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please include the pkg #s to facilitate building on 3x i386 targets in addition to 2x amd64 and 3x armhf targets where full builds are not always practical.  Keep in mind that most packages are referred to by two (2) package numbers from the database, a source package and a binary package.  &amp;quot;Thank you for your co-operation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
* pluto-bootscripts (234) firewall need to work together with the vpn.&lt;br /&gt;
* lmce-asterisk (920) - db_create_dialplan.sh to add blacklist better check option on asterisk dialplan.&lt;br /&gt;
* lmce-vlc-player (884,882) - Further work on VLC_Player&#039;s transport controls. Please test and tell me if they work better. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Addition of ZFS templates.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201704211536+941ae691 ==&lt;br /&gt;
* pluto-website-admin (220) - Blacklist.php added for administrating asterisk blacklist of phone numbers #2691&lt;br /&gt;
* lmce-asterisk (920) - db_create_dialplan.sh to add blacklist check on asterisk dialplan.&lt;br /&gt;
* pluto-database* - GRANT to localhost as well (just 127.0.0.1 doesn&#039;t help since MySQL 5.7)&lt;br /&gt;
&lt;br /&gt;
== Update armhf 201704191739+13f4f937 ==&lt;br /&gt;
* pluto-vdr - Don&#039;t check for the existence of a Xine device in the tree. There are many ways to display VDR.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201704182328+13f4f937  ==&lt;br /&gt;
* pluto-text-to-speech - Fix for initial installation which might effect usability.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704181123+a26d414e ==&lt;br /&gt;
* pluto-security-database - Localhost or 127.0.0.1 matters for MySQL - This should be the last fix needed to get MySQL Server v5.7 sorted out - at least for the install.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704180809+9af5cc66 ==&lt;br /&gt;
* pluto-boot-scripts - Set MySqlUser name in ConfigOps if it isn&#039;t already set.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201704171950+9af5cc66 ==&lt;br /&gt;
* pluto-sqlcvs, pluto*database* - Final fixes for 1404 and 1604.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704161042+f5455665 ==&lt;br /&gt;
* pluto-sqlcvs - Now has a dependency to pluto-database-settings&lt;br /&gt;
* pluto-database-settings - all user creation happens in here&lt;br /&gt;
* pluto-database-system - no more user creation.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 - 201704151808+866a5886 ==&lt;br /&gt;
* pluto-database-settings - Takes way too long to get fixed.&lt;br /&gt;
&lt;br /&gt;
== Update 201704151034+80dd9806 ==&lt;br /&gt;
* pluto-database-settings - *grml* don&#039;t just blindly copy other peoples code.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704142323+6ad66efd ==&lt;br /&gt;
* pluto-database-settings - Put user creation into mkr_postinst_mysql instead of mkr_postinst_system. Let&#039;s hope this fixes this sucker.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 2.0.0.47.201704050752+ddbbb689 ==&lt;br /&gt;
* lmce-vlc-player (884,882) - preprocess URL to ensure that file paths with # in them play correctly.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 amd64/i386 201704041743+906d69eb ==&lt;br /&gt;
* pluto-bootscripts (234) - Typo fix for insert rule to the db. /ppp/ip-up.d/lmce-vpn-up and /ppp/ip-down.d/lmce-vpn-down works now niceley togheter with the new firewall.&lt;br /&gt;
* pluto-system-database (211) - sqlCVS commit to add Imagemagick as dependency to VLC Player, finally squashing that #($#@( start bug! (TSCHAK)&lt;br /&gt;
** Also added ir-keytable depedency to pluto-lirc-wrapper&lt;br /&gt;
** Also added generic cd and dvd icons for External Media Identifier&lt;br /&gt;
* pluto-lirc-wrapper (340,421) - Ensure that ir-keytable is cleared before lircd starts to avoid unusual behavior with remotes that use kernel event subsystem (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - Fix DVD to use cifs instead of smbfs (which has been deprecated for 10 years.)&lt;br /&gt;
* lmce-vlc-player (884,882) - bug fixes for multi room sync&lt;br /&gt;
* lmce-vlc-plugin (874,875) - bug fixes for multi room sync&lt;br /&gt;
* lmce-media-identifier (931,932) - add generic dvd and cd identification if disc can&#039;t be identified by normal means.&lt;br /&gt;
* pluto-website-admin (220) - phonelines.php shows the state of a SPA protocol phonline. And firewall.php updated preg_match to find lines on pluto.conf and change them if exists. Issue2745.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201703301804+358c1c45 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fixes Bug #2726 - Media details now work, again.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 - 201703272335+efdf6de9 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Issue #2730 - Media Plugin changes to add support for FIFO capture card playback to VLC Player (route messages to VLC Player if it exists) -TSCHAK&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue #2729, #2730 - Implement FIFO device playback for local devices similar to file playback. (TBD: recompile VLC with PVR functionality), also multi-room playback. VLC Player is now in beta. -TSCHAK&lt;br /&gt;
* lmce-vlc-plugin (874,875) - Issue #2729 - Implement multi-room playback, VLC sync listener on core, etc. VLC functionality is now beta. -TSCHAK&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201702201438+325cc736 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix for multiple cameras and Get Image command&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue 2727, Issue 2728 - Trick play overhaul and fix audio glitches when trick play is used. &lt;br /&gt;
* pluto-boot-scripts (234) - SetupAudioVideo.sh - slight change to libvlc.conf so that trick play OSD works.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1204-1404-1604/amd64 c20633ff ==&lt;br /&gt;
* pluto-website-admin (220) - Added the case for section energyGraph and sipConf, fixed permissions for mysql asteriskuser, add sql credentials for myth, change MYSQL_NUM to MYSQLI_NUM&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1404/amd64 a7c10426 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add backports so 1204 diskless create works&lt;br /&gt;
* lmce-oauth2-server (668) - initial build of lmce oauth2 server for cloud interfacing&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404/1604 i386 - 1404x64 - 201611190055+fee90f43 ==&lt;br /&gt;
* pluto-boot-scripts (234) - database upgrades&lt;br /&gt;
* pluto-orbitergen (226,227) - database upgrades&lt;br /&gt;
* pluto-pluto-main-db (201,237) - database upgrades&lt;br /&gt;
* pluto-pluto-security-db (278,277) - database upgrades&lt;br /&gt;
* lmce-asterisk (replacement) - database upgrades&lt;br /&gt;
* pluto-system-database (211) - database upgrades&lt;br /&gt;
* pluto-local-database (214) - database upgrades&lt;br /&gt;
* pluto-security-database (256) - database upgrades&lt;br /&gt;
* pluto-telecom-database (472) - database upgrades&lt;br /&gt;
* pluto-media-database (233) - database upgrades&lt;br /&gt;
* pluto-database-settings (407) - database upgrades&lt;br /&gt;
* pluto-sqlcvs (212,213) - database upgrades&lt;br /&gt;
* pluto-std-plugins (116,135) - database upgrades&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609281853+9638f5bc ==&lt;br /&gt;
* pluto-website-admin (220) - #2705 fixed syntax error.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609271106+39103855 ==&lt;br /&gt;
* pluto-website-admin (220) - Update firewall.php GUI change some fields where reset to the default values. now the db data is honored.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** don&#039;t create initramfs for Raspbian Jessie diskless filesystems.&lt;br /&gt;
** ensure firstboot runs on diskless Jessie RPis.&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** stop/start rather than restart dhcp server, it&#039;s like nuking the site from orbit... only way to be sure.&lt;br /&gt;
** Firewall blocks udp 1900 UpNP traffic from externalinterface.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609172308+325de35d ==&lt;br /&gt;
* lmce-autotag (780, 781) linuxmceTag - fix comparison issue with media type.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609131230+5eaa4671/201609131753+5eaa4671 ==&lt;br /&gt;
* pluto-boot-scripts (234) - send dhcp vendor specific options only to wired raspberry pis.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 201609102226+fda3da63 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** rpi native pxe additions/updates&lt;br /&gt;
** extend startup timeout when booting under systemd&lt;br /&gt;
* lmce-diskless-tools (627,628) - rpi native pxe additions/updates&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DT updates for rpi native pxe&lt;br /&gt;
** add Serial Number Device Data to RPi DTs&lt;br /&gt;
** sets default PK_Distro to 22 (jessie) for RPi DTs&lt;br /&gt;
** new device data for &amp;quot;Standard Energy Meter&amp;quot;&lt;br /&gt;
* pluto-std-plugins (116,135)&lt;br /&gt;
** stores energy reading in state field for Standard Energy Meter&lt;br /&gt;
** fixes dcerouter crash when searching media&lt;br /&gt;
* pluto-updatemedia (405,406) - fix segfault when a dir is attempting to be tagged directly (without a .id3)&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - don&#039;t fail pkg install if simplephone is not running.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-i386 - 1404-i386/amd64 201607240235+899786ab ==&lt;br /&gt;
* pluto-website-admin (220) - Mysqli_real_escape_string did not work. a start with ipv6 firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/i386 201607202218+14cba09a ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) - Stream Bouncing, Additional settings for location, removed debug output, queue functionality.&lt;br /&gt;
&lt;br /&gt;
== Update 201607181902+d4cec1a0 1404-i386/amd64 - 1204-i386 ==&lt;br /&gt;
* pluto-website-admin - Update to qOrbiterGenerator.php for newer PHP version&lt;br /&gt;
&lt;br /&gt;
== Update 201607161239+6d72c3f9 1404-i386/amd64 1204-i386 ==&lt;br /&gt;
* pluto-website-admin (220) - #2678 fix Warning: Invalid argument supplied for foreach() in /var/www/lmce-admin/include/dhcpd-tools/DHCPd-parse.php on line 113&lt;br /&gt;
* pluto-boot-script&lt;br /&gt;
&lt;br /&gt;
== Update 201607151016+5b5adba3 1404/i386 &amp;amp; amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule use another escape method.&lt;br /&gt;
&lt;br /&gt;
== Update 201607122332+f0fc9c6b 1404/i386 ==&lt;br /&gt;
* pluto-boot-scripts (234) - fix #2684 clients cannot access internet when firewall is disabled. &lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule.&lt;br /&gt;
&lt;br /&gt;
== Update 201607050613+601c67da 1404-i386/amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - more fixes to the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update trusty i386/amd64 201606301955+614dfa7b ==&lt;br /&gt;
* pluto-website-admin (220) - fix for outside access port 443 not uncheckable.&lt;br /&gt;
* pluto-boot-scripts (234) - fix for not dele rules from iptables from outsideAccess.php&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201606201908+31b25c52 ==&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** unicode reading/writing working properly&lt;br /&gt;
** coverart writing to tags working properly&lt;br /&gt;
** .id3 files handled by taglib instead of id3lib.&lt;br /&gt;
** General Object Frame (GEOB) reading/writing working properly (all lmce attributes are stored in id3v2 GEOB tags for .id3/.mp3 files)&lt;br /&gt;
* pluto-website-admin (220) - more updates for mysql -&amp;gt; mysqli conversion&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201605312323+08fb8202 ==&lt;br /&gt;
* pluto-website-admin (220) - fix Text Command button to honor parameters from Screen_CommandParameter&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller to fix spamming of logs with constant updates of device data.&lt;br /&gt;
&lt;br /&gt;
== Update trusty-i386/amd64 201605310531+04df53f5 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - get the stream uri from onvif camera and save it in a device data for use by other devices&lt;br /&gt;
* pluto-website-admin (220) - adate to adodb 5.20.4 and change db driver from mysql to mysqli&lt;br /&gt;
* pluto-updatemedia (405,406) - tag writing/deletion of values update&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201605261039+410242d2 ==&lt;br /&gt;
* pluto-media-database (233) - remove FatGroupBy query as it is massive and no longer required&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** FIX UpdateMedia not detecting changes in files on disk.  Fixes: UpdateMedia not reading modification times properly.&lt;br /&gt;
** improve image reading/writing for mp3/mp4 files, add image handling for asf/wma, improve track art-&amp;gt;performer/album artist matching.&lt;br /&gt;
** don&#039;t add network shares to inotify watch list&lt;br /&gt;
* pluto-system-database (211) - new qml-* pkg definitions for qorbiter&lt;br /&gt;
* pluto-plutoutils (196,197) - add fn&#039; to determine filesystem type of a file&lt;br /&gt;
* lmce-disked-interactor (897,898) - make sure we see the core and have an IP prior to attempting contact&lt;br /&gt;
* pluto-bootscripts (234) - make sure we see the core prior to continuing to boot an MD&lt;br /&gt;
* pluto-website-admin (220) - various fixes in the media page&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 - 201605171740 c6d63dc6 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3, ogg, flac, mp4, wv, wav, oga, mpc, spx, opus, tta, m4a, m4r, m4p, 3g2, m4v, wma, asf, aif, aiff, afc, aifc, ape, s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64  201605131052+2542a526 ==&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - udev rule to ignore usbhid portion of device, permits orbiter to enter screensaver&lt;br /&gt;
* pluto-bootscripts (234) - permit devices that have died 50 times to attempt to restart after a router reload. Firewall fix for manual defined chains.&lt;br /&gt;
* pluto-sound-card-scripts (579) - don&#039;t assume cardid=1, determine phoenix cardid from aplay.&lt;br /&gt;
* pluto-media-database (233) - additional AttributeType &amp;quot;Album Artist&amp;quot;&lt;br /&gt;
* lmce-media-identifier (931,932) - updates for Album Artist tag.&lt;br /&gt;
* pluto-orbiter (119,138) - updates for Album Artist tag.&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** updates for Album Artist tag&lt;br /&gt;
** fix mainMediaFileSync.php. OutsideAccess page showing the options (again). &lt;br /&gt;
** And typo fixes for issue #2643. &lt;br /&gt;
** Firewall page reload issue 2636#. Firewall gui do not show &amp;quot;NULL&amp;quot;.&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3:ogg:flac:mp4:wv:wav::oga:mpc:spx:opus:tta:m4a:m4r:m4p:3g2:m4v:wma:asf:aif:aiff:afc:aifc:ape:s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update jessie 20160427 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for RPi&lt;br /&gt;
* lmce-disked-md-rpi2 (889) - +x firstboot_md_rpi2 to ensure it&#039;s picked up properly&lt;br /&gt;
&lt;br /&gt;
== Update jessie 201604130947+0083d387 ==&lt;br /&gt;
== Update 1204/1404-i386/amd64 201604101031-0b47a986 ==&lt;br /&gt;
* pluto-website-admin, pluto-boot-scripts (220,234) - Firewall Fixes for GUI and inner working of the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603251155+a1c0f6ea ==&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - File view implemented. Fixed not being able to leave resume menu.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603222119+336464d8 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller  to fix floorplan / status being improperly updated.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t mount optical discs as HDDs&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201603220706+c3c4b899 ==&lt;br /&gt;
* lmce-md-meta (450) - for some reason this is not in the main repo&lt;br /&gt;
* lmce-media-identifier - fixed for libcdio&lt;br /&gt;
&lt;br /&gt;
== Update jessie-rpi 60faa181 ==&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - adds video resizing so UI1 can be exposed while video is playing.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 armhf 31c5d994 ==&lt;br /&gt;
== Update 1404 i386 52e39875 ==&lt;br /&gt;
* pluto-storage-devices (533) - fix ntfs detection&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 - 49a8cbf1 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - a little better device to device template mapping&lt;br /&gt;
* pluto-website-admin (220) - fix adv.zwave page and adding secure devices&lt;br /&gt;
* lmce-disked-* - update the disked md/mid meta/base/device pkgs, specific fixes for 1404 joggler&lt;br /&gt;
* lmce-json-plugin (876,877) - first time addition to the main repo&lt;br /&gt;
* libdvdid0 (replacement) - first time addition to the repo, for use by Media Identifier&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - enable disabling internal volume control, similar to how logitechmediaserver does&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1404(armhf)/jessie(rpi)-a84db86f ==&lt;br /&gt;
* lmce-launch-manager (298,299) - only update squeeze devices when running on the core, redundant elsewhere.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404-87954508 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t fail if dvdcss2 cannot be automatically installed.&lt;br /&gt;
* pluto-hald (529,530) - reinstate tty detection, seperate from usb-serial, use direct parent for udi naming.&lt;br /&gt;
* pluto-boot-scripts (234) - disable buildall, the script doesn&#039;t run so why waste time creating it.&lt;br /&gt;
* lmce-launch-manager (298,299)&lt;br /&gt;
** update squeezebox players on router reloads from Launch_Manager&lt;br /&gt;
** call Config_Device_Changes in startCoreServices to ensure everything gets its&#039; Need Configure flag reset.&lt;br /&gt;
&lt;br /&gt;
== Update a332f49a ==&lt;br /&gt;
* lmce-install-scripts (391) - fix missing quote in MD installation.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix missing &#039;fi&#039; in BootMessage.sh&lt;br /&gt;
** fix usb.1 system serial port listing/translating&lt;br /&gt;
* lmce-media-identifier (931,932) - fix segfault, CDs are identified, cd-ripping functional again&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** prioritize new conf dir over old conf dir, fix install on systems upgraded from 1204-&amp;gt;1404&lt;br /&gt;
** redirect mythweb to html/mythweb&lt;br /&gt;
* pluto-hald (529,530) - updates to serial port naming, specifically for odroid.&lt;br /&gt;
* pluto-storage-devices (533) - fix mounted drive detection and add detection for drives mounted in /proc/cmdline like rpi.&lt;br /&gt;
&lt;br /&gt;
== Update 1204=201602080446+2028f850 &amp;lt;br&amp;gt; 1404=201602071815+c31bc44f ==&lt;br /&gt;
* lmce-install-scripts (391)&lt;br /&gt;
** enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
* lmce-core (888) - enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
* pluto-storage-devices (533) - redo StorageDevices_Radar using blkid for internal HDD identification.  /dev/disk/by-path/ is not present anymore.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
** new VerifyDistro.sh script and call the script on boot.&lt;br /&gt;
*** Preventative mostly.  Intended to ease pain for those that upgrade distros.&lt;br /&gt;
*** Ensure child devices, onscreen orbiter, have the proper PK_Distro set.&lt;br /&gt;
&lt;br /&gt;
== Update 296fdcd3 ==&lt;br /&gt;
* pluto-website-admin (220) - fix depends versioning&lt;br /&gt;
* pluto-hald (529,530) - fix depends versioning&lt;br /&gt;
* pluto-boot-scripts (234) - fix depends versioning&lt;br /&gt;
* pluto-system-database (211) - fix depends versioning&lt;br /&gt;
* pluto-orbitergen (226,227) - fix depends versioning&lt;br /&gt;
* lmce-disked-md-base (801) - fix depends versioning&lt;br /&gt;
* lmce-install-scripts (391) - fix depends versioning&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix depends versioning&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix depends versioning&lt;br /&gt;
* lmce-datalogger-plugin (686,687) - fix depends versioning &lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix depends versioning&lt;br /&gt;
&lt;br /&gt;
== Update f3a444c0 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** use newer .sh script rather than obsolete .pl script for dialplan creation&lt;br /&gt;
** fix Directory listing on cisco phones&lt;br /&gt;
** fix delete buttons on internet radio page.&lt;br /&gt;
* pluto-hald (529,530)&lt;br /&gt;
** add &#039;usb&#039; to &#039;pci&#039; and &#039;platform&#039; as valid bus addresses&lt;br /&gt;
** permit adding of usb devices with usb_serial or tty children&lt;br /&gt;
* pluto-boot-scripts (234) - update SetupAudioVideo.sh to more reliably address nvidia hdmi audio outputs&lt;br /&gt;
* lmce-asterisk (replacement) - live_dangerously for now to get all the necessary Voicemail modules to load&lt;br /&gt;
* pluto-system-database (211) - new DD Number of jobs for orbiter plug-in/orbitergen&lt;br /&gt;
* pluto-boot-scripts (234) - updates to RegenOrbiter scripts for parallel job queued orbiter generation.&lt;br /&gt;
* pluto-orbitergen (226,227) - new depends on GNU parallel&lt;br /&gt;
* lmce-disked-md-base (801) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* lmce-install-scripts (391) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - remove hardcoded ip address, get from db instead.&lt;br /&gt;
* lmce-diskless-tools (627,628) - only run UpdateDebCache.sh if it is executable&lt;br /&gt;
* lmce-datalog-plugin(686,687) - fix pear install command in postinst&lt;br /&gt;
* lmce-advanced-ip-camera(812,813) - add basic onvif support (snapshot,PTZ)&lt;br /&gt;
&lt;br /&gt;
== Update 31792 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of new External_Media_Identifier, testing CDDB ids&lt;br /&gt;
&lt;br /&gt;
== Update 31783 ==&lt;br /&gt;
* pluto-libserial (190,191) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-dcecommon (192,193) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-irbase (194,195) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-plutoutils (196,197) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-vipshared (199,200) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-serializeclass (198,238) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-libbd (239,240) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-ra (247,248) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-main-db (201,237) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-media-db (254,255) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-security-db (278,277) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-sdl-helpers (346,347) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-messagetrans (398,401) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-game-db (675,676) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-windowutils (677,678) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-datalog-db (688,689) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
&lt;br /&gt;
== Update 31782 ==&lt;br /&gt;
* pluto-std-plugins - fix FK_File search inside Attribute in Media_Plugin&lt;br /&gt;
&lt;br /&gt;
== Update 31774 ==&lt;br /&gt;
* lmce-disked-mid-base (899) - fix error in postinst&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come (this should be in but apt-get is getting 404 errors)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add &amp;quot;remove failed node&amp;quot; command&lt;br /&gt;
* pluto-website-admin - add &amp;quot;remove failed node&amp;quot; command for zwave advanced page&lt;br /&gt;
&lt;br /&gt;
== Update 31760 ==&lt;br /&gt;
* lmce-disked-md-base (801) - fix another error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31757 ==&lt;br /&gt;
* lmce-core (888) - overwrite AutostartCore conf value&lt;br /&gt;
* lmce-md-meta (450) - overwrite AutostartMedia conf value&lt;br /&gt;
* lmce-mid-meta (962) - missing deb&lt;br /&gt;
* lmce-hybrid (769) - exit 0 in postinst, just to be sure&lt;br /&gt;
* lmce-disked-md-base (801) - fix error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31754 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - reconnect before send&lt;br /&gt;
&lt;br /&gt;
== Update 31752 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - remove hard coded caller id &#039;Cherryhomes, Tho&#039;, use incoming caller id.&lt;br /&gt;
&lt;br /&gt;
== Update 31750 ==&lt;br /&gt;
* pluto-website-admin (220) - fix postinst error notice on precise.&lt;br /&gt;
* pluto-boot-scripts (234) - (re)start asterisk, otherwise configuration doesn&#039;t occur and sip phones cannot register&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - force-reload apache2 after disabling mythbuntu sites&lt;br /&gt;
* lmce-md-meta (450) - don&#039;t overwrite conf values that are already set&lt;br /&gt;
* *openzwave* (replacement) - version bump, upgrade fixes to upstream files&lt;br /&gt;
&lt;br /&gt;
== Update 31744 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come&lt;br /&gt;
&lt;br /&gt;
== Update 31742 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Gui changes to not confuse people. &lt;br /&gt;
** outsideaccess works together with the firewall. &lt;br /&gt;
** phonelines note on protocol for meaning of &amp;quot;SPA&amp;quot; and a status for this protocol setting, port can be changed if needed else it will be the default (5060).&lt;br /&gt;
&lt;br /&gt;
== Update 31739 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix absolute timed events&lt;br /&gt;
&lt;br /&gt;
== Update 31723 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix nfs-premount script in default diskless image.&lt;br /&gt;
* lmce-dlna(842,843) - compatibility fixes&lt;br /&gt;
* lmce-install-scripts (391) - generate ssh keys so openssh-server can accept connections&lt;br /&gt;
* pluto-createdevice (303,304) - hide errors, specifically during initial package postinst&lt;br /&gt;
* lmce-cec-adaptor (871,872) - fix cec remotes not getting to lmce&lt;br /&gt;
&lt;br /&gt;
== Update 31693 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - Fixes #2530 - fix errors in mythtvdb synchronization scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31686 ==&lt;br /&gt;
* lmce-install-scripts (391) - deal with firstboot stuffenz&lt;br /&gt;
* pluto-system-database (211) - add proxy orbiter DT depends for generic web device&lt;br /&gt;
* pluto-website-admin (220) - order by photo file name in screen saver/photo browser&lt;br /&gt;
* pluto-boot-scripts (234) - try ubiquity before anything else, and reboot after the normal firstboot - breaks live boot on dvd atm&lt;br /&gt;
* lmce-diskless-tools (627,628) - permit i386 diskless image building on amd64 cores, ensure processes are killed in chroot before unmounting (deals with systemd for now)&lt;br /&gt;
&lt;br /&gt;
== Update 31660 ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) &lt;br /&gt;
**PS3 control screen, fix layout issue. adds seperate button group (triangle, circle, etc) and navigation arrows. Also adds power off button to properly exit screen&lt;br /&gt;
* pluto-website-admin (220) - prevent creation of extra &#039;blank&#039; network interfaces&lt;br /&gt;
&lt;br /&gt;
== Update 31655 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - close connection after use&lt;br /&gt;
* pluto-website-admin (220) - fill ServerName var if it is unset, not if it is set.&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - unify service control&lt;br /&gt;
* pluto-boot-scripts (234) - unify service control&lt;br /&gt;
* pluto-dhcpd-plugin (302) - unify service control&lt;br /&gt;
* pluto-disk-monitor (554) - unify service control&lt;br /&gt;
* pluto-mythtv-player (133,152) - unify service control&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - unify service control&lt;br /&gt;
* pluto-raid-tools (617) - unify service control&lt;br /&gt;
* pluto-storage-devices (533) - unify service control&lt;br /&gt;
* lmce-update-system (650,651) - unify service control&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - unify service control&lt;br /&gt;
* pluto-vdr-plugin (466,467) - unify service control&lt;br /&gt;
* pluto-vdr (468,469) - unify service control&lt;br /&gt;
* pluto-database-settings (407) - unify service control&lt;br /&gt;
* lmce-asterisk (replacement) - unify service control&lt;br /&gt;
* lmce-diskless-tools (627,628) - unify service control&lt;br /&gt;
* lmce-install-scripts (391) - unify service control&lt;br /&gt;
* pluto-updatemedia (405,406) - unify service control&lt;br /&gt;
* pluto-newmdinteractor (538,539) - unify service control&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - Fix size issues, floorplan popups.&lt;br /&gt;
&lt;br /&gt;
== Update 31621 ==&lt;br /&gt;
* pluto-mythtv-player (133,152) - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 31618 ==&lt;br /&gt;
* lmce-asterisk (replacement) - update db for chan_sccp-v4.2 and fix bug requiring manual asterisk reload on boot&lt;br /&gt;
&lt;br /&gt;
== Update 31615 ==&lt;br /&gt;
* pluto-* - rebuild with new libraries&lt;br /&gt;
* lmce-* - rebuild with new libraries&lt;br /&gt;
&lt;br /&gt;
== Update 31606 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix EPG data on orbiters, myth stores everything in UTC now.&lt;br /&gt;
* pluto-pluto-main-db (201,237) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-media-db (254,255) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-security-db (277,278) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-datalog-db (688,689) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-game-db (675,676) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-updateentarea (341,342) - don&#039;t send empty play command when resetting alarm&lt;br /&gt;
&lt;br /&gt;
== Update 31580 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - use bypass-event to avoid watching media events when playing alerts&lt;br /&gt;
* pluto-updateentarea (341,342) - send bypass-event with security event commands&lt;br /&gt;
* libcec3 debs (replacement) - removes conflict data with libcec2&lt;br /&gt;
&lt;br /&gt;
== Update 31575 ==&lt;br /&gt;
* lmce-asterisk (replacement) - play back alert notification file&lt;br /&gt;
* pluto-std-plugins (116,135) - create alert notification file with correct format&lt;br /&gt;
* pluto-boot-scripts (234) - fixes for nvidia drivers on precise, upgrades to nvidia-340&lt;br /&gt;
* lmce-avwizard-sounds (replacement) - don&#039;t copy fakeroot files (it is redundant it is)&lt;br /&gt;
* video-wizard-videos (replacement) - deb is back to normal size, not 2x&lt;br /&gt;
&lt;br /&gt;
== Update 31553 ==&lt;br /&gt;
* pluto-website-admin (220) - fix error that wipes out the apache2.conf&lt;br /&gt;
* pluto-hald (529,530) - fix segfaults with firewire hardware&lt;br /&gt;
&lt;br /&gt;
== Update 31547 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some API changes in OZW 1.3, more device template mappings&lt;br /&gt;
* pluto-boot-scripts (234) - typo fix for nvidia drivers&lt;br /&gt;
* lmce-disked-md-base (801) - set hostname on disked MDs, set timezone on disked MDs&lt;br /&gt;
* lmce-install-scripts (391) - set hostname on disked MDs, set timezone on disked MDs &lt;br /&gt;
* pluto-website-admin was generated---&amp;gt; lmce-website-admin (220) - set apache2 ServerName to silence error on boot&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates, revert to ruby 1.8&lt;br /&gt;
* pluto-generic-serial-device (307,335) - admit defeat for now, revert to ruby 1.8&lt;br /&gt;
&lt;br /&gt;
== Update 31533 ==&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31520 ==&lt;br /&gt;
* chan-sccp_v4.2 (replacement) - Upgrad asterisk SCCP channel driver to newest version&lt;br /&gt;
* pluto-vdr-plugin (466,467) - implement background loading of EPG from VDR to avoid crashes due to commands not completing on time&lt;br /&gt;
* pluto-boot-scripts (234) - some logic changes and added messages for video driver install debugging&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - link new channels dir to old channels dir for backwards compatibility&lt;br /&gt;
&lt;br /&gt;
== Update 31503 ==&lt;br /&gt;
* *zwave* (replacement) - new upstream openzwave version 1.3.1224&lt;br /&gt;
* lmce-zwave-ozw(505,506) - build against new libopenzwave1.3&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates&lt;br /&gt;
* lmce-disked-interactor (897,898) - make disked interactor aware of wheezy and jessie.&lt;br /&gt;
&lt;br /&gt;
== Update 31500 ==&lt;br /&gt;
* *myth* (replacement) - fix depends on non-existent packages&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst - verified installing now&lt;br /&gt;
* pluto-std-plugins (116,135) - Use integer comparison for brightness state&lt;br /&gt;
&lt;br /&gt;
== Update 31491 ==&lt;br /&gt;
* lmce-avwizard-skin-basic (replacement) - fix packaging of avwizard skin&lt;br /&gt;
* *myth* (replacement) - mythtv 0.27.5+fixes with Schedules Direct fix included&lt;br /&gt;
* *asterisk* (replacement) - asterisk 11.7 backport from trusty&lt;br /&gt;
* libical* (replacement) - for asterisk 11.7&lt;br /&gt;
* *cec* (replacement) - libcec3&lt;br /&gt;
* libplatform* (replacement) for libcec3&lt;br /&gt;
* lmce-cec-adaptor (871,872) - build against libcec3&lt;br /&gt;
* lmce-mediatomb (702) - fix pkg installation&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - update protocol version and secret word (shhh) for 0.27.5+fixes&lt;br /&gt;
* lmce-diskless-tools (627,628) - remove call to obsolete script in Diskless_Setup.sh&lt;br /&gt;
* pluto-vdr-plugin (466,467) - return full EPG (used in qOrbiter EPG Grid), improve communication speed with SVDRP&lt;br /&gt;
* pluto-slim-server-streamer (289,290) - emit time code event, fix duration parsing&lt;br /&gt;
* pluto-boot-scripts (234) - fix headless booting, update 1404 nvidia driver&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* lmce-md-meta (450) - add depends on alsa-utils&lt;br /&gt;
* pluto-website-admin (220) - Fix cdrviewer (Call Details Records) to accept SSL conections as well, firewall gui change to set Offline rules in red as they are not executed.&lt;br /&gt;
* pluto-app-server (126,145)- new poweroff mode I for ignore, since N is already in use&lt;br /&gt;
&lt;br /&gt;
== Update 31420 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add depends on pluto-boot-scripts for deb cache script&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31411 == &lt;br /&gt;
* pluto-avwizard (555,556) - fix depends on avwizard skins basic, should no longer care about version&lt;br /&gt;
* pluto-boot-scripts (234) - more explicity logic for core only booting, fix startup script db errors&lt;br /&gt;
* lmce-update-system (650,651) - remove and disable old init.d script from /etc/init.d&lt;br /&gt;
* pluto-plutodhcp (330,491) - depends on apparmor&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-dhcpd-plugin (302) - remove hardcoded IP addresses from configure scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31387 ==&lt;br /&gt;
* lmce-weather-plugin - make change to allow for tonight&#039;s forecast data (TSCHAK)&lt;br /&gt;
* lmce-asterisk (replacement) - remove obsolete phonetic engines and replace with espeak, voices remain the same&lt;br /&gt;
* mbrola (replacement) - base mbrola pkg for mbrola voices (add armhf binary)&lt;br /&gt;
* pluto-asterisk (270,271) - generate fr and de voicemail menus with espeak now&lt;br /&gt;
* lmce-core (888) - add depends on iptables&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31378 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Start_KDE.sh ownership fix, AV config updates&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-avwizard (555,556) - update pkgs &amp;amp; depends &amp;amp; config scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - do not run update deb_cache during dvd creation&lt;br /&gt;
* pluto-x-scripts (520) - fixups to Xconfigure.sh&lt;br /&gt;
&lt;br /&gt;
== Update 31356 ==&lt;br /&gt;
* pluto-system-database (211) - update depends&lt;br /&gt;
* pluto-orbiter (119,138) - update depends&lt;br /&gt;
* lmce-diskless-tools (627,628) - speedup dpkg in diskless create, fix missing quotes&lt;br /&gt;
&lt;br /&gt;
== Update 31352 ==&lt;br /&gt;
* pluto-motion-wrapper - more config file location fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 31351 ==&lt;br /&gt;
* pluto-boot-scripts (234) - change service &#039;nis&#039; to &#039;ypserv&#039;, nis is no longer a service name&lt;br /&gt;
* pluto-website-admin (220) - remove &#039;idiot&#039; text, let&#039;s be nice to people.&lt;br /&gt;
* lmce-core (888) - do not create and config under ubiquity&lt;br /&gt;
* lmce-md-meta (450) - do not create and config under ubiquity&lt;br /&gt;
* motion (replacement) - fix bad config file setting in rules&lt;br /&gt;
&lt;br /&gt;
== Update 31337 ==&lt;br /&gt;
* motion (replacement) - new version of motion to match new configuration values generated by linuxmce&lt;br /&gt;
&lt;br /&gt;
== Update 31331 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix for brightness events&lt;br /&gt;
* pluto-boot-scripts (234) - fix kdm disabling, start ubiquity after network config&lt;br /&gt;
* lmce-diskless-tools (627,628) - add upstart overrides for kdm&lt;br /&gt;
* lmce-install-scripts (391) - start ubiquity after network config&lt;br /&gt;
&lt;br /&gt;
== Update 31314 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add missing depends&lt;br /&gt;
&lt;br /&gt;
== Update 31292 ==&lt;br /&gt;
* lmce-core-locator (replacement) - (1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-system-database (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* All .debs created by MakeRelease - removal of all Pre-Depends, everything is now a Depends entry (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
== Update 31228 ==&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-local-database&lt;br /&gt;
&lt;br /&gt;
== Update 31214 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package (not in repo, need build-replacements.sh svn up&#039;d?)&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - preinst/postinst updates&lt;br /&gt;
* pluto-boot-scripts (234) - preinst/postinst updates&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-disked-md-base (801) - firstboot updates&lt;br /&gt;
&lt;br /&gt;
== Update 31187 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package&lt;br /&gt;
* pluto-confirm-dependencies (281,272) - new depends on lmce-install-scripts (fixes unable to apt-get dist-upgrade)&lt;br /&gt;
* lmce-md-meta (450) - new depends on nfs-common, openssh-server and pastebinit&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - update depends, preinst/postinst&lt;br /&gt;
* pluto-boot-scripts (234) - depends &amp;amp; preinst/postinst updates&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - add override mythweb defaults in pkg preinst&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - update depends&lt;br /&gt;
&lt;br /&gt;
== Update 31133 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** enable WakeMDs.sh to wake any halted MDs.&lt;br /&gt;
** consolidate all boot script launching to /etc/init.d/linuxmce&lt;br /&gt;
* pluto-avwizard (555,556) - moves start script to /usr/pluto/bin, called by /etc/init.d/linuxmce now&lt;br /&gt;
* lmce-update-system (650,651) - removes init.d script, called by /etc/init.d/linuxmce now&lt;br /&gt;
* pluto-website-admin (220) - GUI changes on network settings if an bridge is configured on the db.&lt;br /&gt;
* lmce-core (888) - depend on pluto-asterisk, lmce-asterisk, lmce-install-scripts&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* pluto-generic-serial-device (307,335) - wildshot attempt at fixing segfaults&lt;br /&gt;
&lt;br /&gt;
== Update 31103 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** Network bridging now possible  for wifi AP to have the same network as the local lan. &lt;br /&gt;
** ipv6 on/off for network interfaces. Read multiple ipv6 interfaces from the db.&lt;br /&gt;
** re-enable HaltMDs.&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* libqhttpserver (912) needed for linuxmce nvr&lt;br /&gt;
* lmce-launch-manager - (298,299) - ?&lt;br /&gt;
&lt;br /&gt;
== Update 31087 ==&lt;br /&gt;
* lmce-weather (838,839) - Fix a serious bug in getconfig where incorrect configuration device data would crash program. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 31083 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes #2422, advanced zwave page broken in chrome&lt;br /&gt;
* pluto-system-database (211) - thumbnail screen fixes&lt;br /&gt;
&lt;br /&gt;
== Update 31074 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** setEa2.php - Fix settings for creating entertain area.&lt;br /&gt;
** qOrbiterGenerator.php - Fix erroneous EA creation by removing it.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Fix incorrect setting for enabling / disabling motion.&lt;br /&gt;
&lt;br /&gt;
== Update 31069 ==&lt;br /&gt;
* pluto-website-admin (220) - setEa2.php Fix settings for creating entertain area.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Initial build.&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (881) - Large update of skins and internals.&lt;br /&gt;
&lt;br /&gt;
== Update 31061 ==&lt;br /&gt;
* lmce-squeezeslave (762) - Add configuration DD to command line&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DB package updates&lt;br /&gt;
** restore previous video remote layout with Options button to select subtitles/audio tracks/video tracks from a datagrid list.&lt;br /&gt;
* pluto-website-admin (220) - firewall.php edit rules for non advanced firewall and some other small fixes.&lt;br /&gt;
* lmce-asterisk (replacement) - sip config modules to avoid autoload.&lt;br /&gt;
&lt;br /&gt;
== Update 31051 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** firewall.php not adding rules now fixet.&lt;br /&gt;
** Test buttons for Hue lights&lt;br /&gt;
** Security outsideAccess page now works nicely with the new firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 31044 ==&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
&lt;br /&gt;
== Update 31031 ==&lt;br /&gt;
* pluto-website-admin (220) - firewall.php after a strange fault and some layout fixes.&lt;br /&gt;
* lmce-mediatomb (702) - don&#039;t assume mediatomb is already running.&lt;br /&gt;
&lt;br /&gt;
== Update 31013 ==&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* pluto-boot-scripts (234) - Network Parameter count for more interfaces set and Network firewall accepting postrouting Masquerade  for other network interfaces.&lt;br /&gt;
&lt;br /&gt;
== Update 30985 ==&lt;br /&gt;
* pluto-website-admin (220) - #2268 fail2ban integration logging failed user login attempt.&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** #2268 fail2ban script not insert existing rules to our db.&lt;br /&gt;
** Support for audio output select on rpi via web admin&lt;br /&gt;
* lmce-diskless-tools (627,628) - update syslinux depends to syslinux-common&lt;br /&gt;
* lmce-omx-player (829,830) - Honour audio output selection of rpiMD&lt;br /&gt;
* lmce-squeezeslave (762) - Fix detection for squeezelite&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - further fixes&lt;br /&gt;
* lmce-usb-gamepad (795,796) - rewrite the whole main loop to suck less. hold-down repeats work, input handling more sane.&lt;br /&gt;
&lt;br /&gt;
== Update 30926 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Fix for #2368 insert firewall rules en #2064 edit and delete chains (except some system chains).&lt;br /&gt;
** Support for brightness based events.&lt;br /&gt;
* pluto-std-plugins (116,135) - Support for brightness based events&lt;br /&gt;
* lmce-omx-plugin (831,832) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** Database additions for XBOX 360 Gamepad (device templates, package)&lt;br /&gt;
** Modification of OMX Plugin to allow priority to be changed.&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - the XBOX 360 Gamepad driver, uses xboxdrv userspace driver.&lt;br /&gt;
* lmce-usb-gamepad (795,796) - additions here for above XBOX 360 Gamepad support.&lt;br /&gt;
&lt;br /&gt;
== Update 30862 ==&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress can now read latest files per linuxmce user.&lt;br /&gt;
&lt;br /&gt;
== Update 30860 ==&lt;br /&gt;
* lmce-weather (838,839) - some fixes by cfernandes&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress.&lt;br /&gt;
* pluto-boot-scripts (234) - more mail fixes&lt;br /&gt;
&lt;br /&gt;
== Update 30855 ==&lt;br /&gt;
* pluto-vdr, pluto-vdr-plugin - remove hardcoding of core IP and network address, but depend on the pluto.conf entries for DCERouter.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location (again)&lt;br /&gt;
* lmce-diskless-tools - stop copying apt configs from the core&lt;br /&gt;
* pluto-boot-scripts - fix postfix setup #2393&lt;br /&gt;
&lt;br /&gt;
== Update 30841 ==&lt;br /&gt;
* lmce-avwizard-sounds - fix replaces/conflicts data&lt;br /&gt;
* lmce-skins-basic - fix replaces/conflicts data&lt;br /&gt;
* lmce-avwizard-skin-basic - fix replaces/conflicts data&lt;br /&gt;
&lt;br /&gt;
== Update 30383 ==&lt;br /&gt;
* pluto-website-admin (220) - Add Hue lights related test button.&lt;br /&gt;
* pluto-boot-scripts - Add another option --autobackup to PlutoRestorePoint.sh to allow backup of pluto_main only&lt;br /&gt;
&lt;br /&gt;
== Update 30814 ==&lt;br /&gt;
* pluto-Boot-scripts - Firewall order by place and PK_Firewall to let rules stay on top on the middle or on the bottom.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location&lt;br /&gt;
* lmce-hue-controller (862,863) - Fix bug in adding new lights, now adds serial number.&lt;br /&gt;
* pluto-website-admin (220) - Fix oops relating the missing &#039;.&#039; which caused operations/login.php not to work.&lt;br /&gt;
&lt;br /&gt;
== Update 30783 ==&lt;br /&gt;
* lmce-nbd-client-wrapper - new pkg to hold common script&lt;br /&gt;
* pluto-xine-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* lmce-vlc-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* pluto-boot-scripts - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
* pluto-storage-devices - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30777 ==&lt;br /&gt;
* lmce-core - depend on openswan&lt;br /&gt;
* pluto-system-database - pkg updates&lt;br /&gt;
* pluto-boot-scripts - remove check for openswan from bootscript&lt;br /&gt;
* pluto-generic-serial-device - update to ruby 1.9.1&lt;br /&gt;
&lt;br /&gt;
== Update 30773==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller internals to now include polling, so as to make sure floorplan data is accurate. Changes underlying mechanisms for how lights are handled in preparation for extending additional support for Cree lights and sensors devices.&lt;br /&gt;
&lt;br /&gt;
== Update 30767 ==&lt;br /&gt;
* lmce-diskless-tools - update diskless archive name to reflect current compression method xz.&lt;br /&gt;
* pluto-website-admin (220) - updates to internet radio, moves add channels to a seperate page.  Thanks Dap-P!&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
* pluto-vdr - adds missing depends on vdr in trusty&lt;br /&gt;
* lmce-core - update depends to new pkg name lmce-avwizard-sounds&lt;br /&gt;
* pluto-avwizard - update depends to new pkg name lmce-avwizard-skins-basic&lt;br /&gt;
* lmce-clock-screen-saver - make the clock screen saver use the WMController/wmctrl methods for setting window visibility to be compatible with Orbiter. (TSCHAK) (Trusty only)&lt;br /&gt;
* pluto-storage-devices - Make sure that smbpasswd is used to create or update sambahelper&#039;s password (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30726 ==&lt;br /&gt;
* pluto-vdr - VDR player&#039;s package assumed a correctly installed vdr package which includes an entry in /etc/default for vdr. We no longer fail on a missing file.&lt;br /&gt;
&lt;br /&gt;
== Update 30724 ==&lt;br /&gt;
* lmce-weather - updates to weather sources, add OpenWM source.  Thanks SBCC and cfernandes!&lt;br /&gt;
* lmce-skins-* - adds missing telecom icons, updates/adds weather icons&lt;br /&gt;
* lmce-avwizard-sounds - remove extraneous stuff from pkg, reduce pkg size back to normal.  Proper replaces/conflicts/data...&lt;br /&gt;
* lmce-avwizard-skin-basic - Proper replaces/conflicts/data...&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
&lt;br /&gt;
== Update 30718 ==&lt;br /&gt;
* lmce-core - new depends on lmce-skins*&lt;br /&gt;
* lmce-md-meta - add depends on pnp-detection scripts&lt;br /&gt;
* lmce-hybrid - new depends on lmce-skins*&lt;br /&gt;
* pluto-avwizard (556,555) - add pciutils as a depends, still need to deal with multiarch stuff so this will break armhf, we will not update armhf for now, it doesn&#039;t use avwizard but does install it.&lt;br /&gt;
* lmce-diskless-tools - minor diskless create fixups&lt;br /&gt;
* pluto-orbiter - missing depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio script&lt;br /&gt;
* pluto-website-admin (220) - recognize MIDs as top level devices&lt;br /&gt;
* pluto-mythtv-player - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 30628 ==&lt;br /&gt;
* *-database - fix install issues&lt;br /&gt;
&lt;br /&gt;
== Update 30622 ==&lt;br /&gt;
* pluto-orbiterinstallers - fix depends issue&lt;br /&gt;
* pluto-system-database - lots of compat updates&lt;br /&gt;
* lmce-* - lots of compat updates&lt;br /&gt;
* pluto-* - lots of compat updates&lt;br /&gt;
&lt;br /&gt;
== Update 30618 ==&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio scripts&lt;br /&gt;
* pluto-website-admin (220) - updated internet radio page&lt;br /&gt;
&lt;br /&gt;
== Update 30571 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - send &amp;quot;Device is turned on or off&amp;quot; event when appropriate so the corresponding event works as expected&lt;br /&gt;
* lmce-squeezeslave (762) - set to pnp create without prompting&lt;br /&gt;
* lmce-runtime-dependencies (903) - pkg to help consolidate runtime depends.&lt;br /&gt;
* lmce-core (888) - updated depends&lt;br /&gt;
* lmce-md-meta (450)- updated depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated depends&lt;br /&gt;
* pluto-createdevice (303,304) - updated depends&lt;br /&gt;
* lmce-weather(838,839) - fix potential segfault&lt;br /&gt;
* pluto-website-admin (220) - add &amp;quot;replace node&amp;quot; button to advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 30549 ==&lt;br /&gt;
* pluto-mythtv-player - fix misaligned data values during mythtv.txt creation.&lt;br /&gt;
&lt;br /&gt;
== Update 30526 ==&lt;br /&gt;
* lmce-core - new pkg&lt;br /&gt;
* lmce-hybrid - pkg depends changes&lt;br /&gt;
* lmce-md-meta - pkg depends changes&lt;br /&gt;
* pluto-dcerouter - pkg depends changes&lt;br /&gt;
* pluto-photo-screen-saver - pkg depends changes&lt;br /&gt;
* pluto-boot-scripts - pkg depends changes&lt;br /&gt;
* pluto-orbiter - pkg depends changes&lt;br /&gt;
* pluto-simplephone - pkg depends changes&lt;br /&gt;
* pluto-website-admin - pkg depends changes&lt;br /&gt;
* lmce-mythtv-scripts - pkg depends changes&lt;br /&gt;
* pluto-system-database - pkg depends changes&lt;br /&gt;
* lmce-squeezeslave (762) - fix launch script, automatically create associated squeezebox player on the core.&lt;br /&gt;
* pluto-std-plugins - run New_PnP_MD.sh for new MID devices as well.&lt;br /&gt;
* lmce-diskless-tools - don&#039;t fail on invoke-rc.d during diskless create, exit gracefully and continue.&lt;br /&gt;
* pluto-mythtv-player - fix diskless create failures due to old hacks.  more work is needed here overall on mythtv integration.&lt;br /&gt;
&lt;br /&gt;
== Update 30419 ==&lt;br /&gt;
* pluto-slim-server - Make sure to turn off all Squeeze* devices when Slim Server Streamer starts or restarts (so that squeezelite does not hog sound cards.)&lt;br /&gt;
* pluto-hald (529,530) - add device node path to pnpqueue with v4l devices during detection&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - update for new lib version&lt;br /&gt;
&lt;br /&gt;
== Update 30384 ==&lt;br /&gt;
* pluto-confirm-dependencies - depend on pluto-install-scripts.&lt;br /&gt;
* pluto-disk-drive (122,141) - remove hal bits that dealt with old jukebox bugs.&lt;br /&gt;
* pluto-capture-card-scripts (580) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-pnp-detection (562) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-storage-devices (533) - convert autofs from hal to udev.&lt;br /&gt;
* pluto-bootscripts (234) - disable starting the hald since we&#039;re using udev now, remove false &#039;fail&#039; messages during reboot/shutdown&lt;br /&gt;
* pluto-slim-server-streamer - make one tweak (do not delete m_mapStreamsToPlayers entry in CMD_Stop). Streaming now works consistently, properly, with squeezebox devices and their clones. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30354 ==&lt;br /&gt;
* pluto-hald (529,530) - fix attempt to fire event for child device of usb-dongle.&lt;br /&gt;
* pluto-slim-server-streamer - Implement FF/REW (transport) trick-play control for Squeeze* devices. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30341 ==&lt;br /&gt;
* pluto-bootscripst - fixes for PPPoE users to not autostart the external interface.&lt;br /&gt;
* pluto-slim-server-streamer - Fix to power off squeezebox player when stream is not in use. This allows softsqueeze/squeezeslave/squeezelite players to let go of a sound device, when not in use (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30332 ==&lt;br /&gt;
* pluto-orbiter (118,139) - disable old hid device functionality.  Anyone who needs it can request a special build which will be provided at no extra charge. ;)&lt;br /&gt;
* pluto-bootscripts (234) - disable Gamepad Radar, functionality now in hal through udev&lt;br /&gt;
* pluto-avwizard (556,555) - fixes mangling of RemoteCmd when &amp;gt;1 remote is detected.&lt;br /&gt;
* pluto-hal-device-finder (535,536) - update to use udev rather than hal.&lt;br /&gt;
* pluto-hald (529,530) - update to use udev rather than hal.&lt;br /&gt;
* pluto-system-database (211) - updates for new detection method (joystick, cec-adaptor), update dependency data for hal pks to reflect dropping hald and add depends on udev now.&lt;br /&gt;
&lt;br /&gt;
== Update 30219 ==&lt;br /&gt;
* pluto-bootscripts (234) - Fail2ban firewall update script, and missing radioscript.sh.&lt;br /&gt;
* pluto-website-admin - Place set for rules on the firewall and bantime for fail2ban integration.&lt;br /&gt;
* pluto-std-plugins (116,135) - adds heirloom-mailx for &#039;mailx -r&#039; functionality, fixes e-mail in general info plugin&lt;br /&gt;
&lt;br /&gt;
== Update 30068 ==&lt;br /&gt;
* lmce-advanced-ip-camera(813,812) - Fixed high cpu usage if connection to camera can not be made&lt;br /&gt;
&lt;br /&gt;
== Update 30052 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - fix android pkg meta data, need to rebuild all together&lt;br /&gt;
&lt;br /&gt;
== Update 30051 ==&lt;br /&gt;
* pluto-updateentarea (341,342) - use DAY/NIGHT in watching/stopped watching events to make them smarter&lt;br /&gt;
* pluto-std-plugins (116,135) - Implement Get Device Status in General Info Plugin&lt;br /&gt;
* pluto-bootscripts (234) - fix VPN ip up/down&lt;br /&gt;
&lt;br /&gt;
== Update 30025 ==&lt;br /&gt;
* pluto-system-database (211) - column def updates&lt;br /&gt;
* pluto-local-database (214) - new Firewall columns and new VPN columns for Users table.&lt;br /&gt;
&lt;br /&gt;
== Update 30014 ==&lt;br /&gt;
* lmce-transmission-client (852) - fix postinst issue.  (Thanks SBCC)&lt;br /&gt;
== Update 29994 ==&lt;br /&gt;
More VLC Player changes to make it at least somewhat usable, there were some ugly bugs that came to light once i plopped it onto my production system. Right now sound device is plughw:0,3, if you need a different one, change it in the code.  (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* lmce-vlc-player - many little fixes to make it suck less.&lt;br /&gt;
&lt;br /&gt;
== Update 29990 ==&lt;br /&gt;
I am working on the VLC player, and it is breathing enough for basic testing. Please do not use in production environment. There is still a lot of code to write (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - updates for VLC player (TSCHAK)&lt;br /&gt;
* vlc-player (882,884) - Very early alpha developer test of the VLC player. (TSCHAK)&lt;br /&gt;
* vlc-plugin (874,875) - Very alpha developer test of the VLC plugin. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 29984 ==&lt;br /&gt;
* pluto-system-database (211) - fix bad repos in pkgs&lt;br /&gt;
* pluto-website-admin - just because I think it is necessary :-)&lt;br /&gt;
&lt;br /&gt;
== Update 29983 ==&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36974</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36974"/>
		<updated>2017-04-24T23:37:11Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: /* Upcoming fixes... */ VLC Player&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the latest changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo much easier.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please include the pkg #s to facilitate building on 3x i386 targets in addition to 2x amd64 and 3x armhf targets where full builds are not always practical.  Keep in mind that most packages are referred to by two (2) package numbers from the database, a source package and a binary package.  &amp;quot;Thank you for your co-operation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
* lmce-vlc-player (884,882) - Further work on VLC_Player&#039;s transport controls. Please test and tell me if they work better. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201704211536+941ae691 ==&lt;br /&gt;
* pluto-website-admin (220) - Blacklist.php added for administrating asterisk blacklist of phone numbers #2691&lt;br /&gt;
* lmce-asterisk (920) - db_create_dialplan.sh to add blacklist check on asterisk dialplan.&lt;br /&gt;
* pluto-database* - GRANT to localhost as well (just 127.0.0.1 doesn&#039;t help since MySQL 5.7)&lt;br /&gt;
&lt;br /&gt;
== Update armhf 201704191739+13f4f937 ==&lt;br /&gt;
* pluto-vdr - Don&#039;t check for the existence of a Xine device in the tree. There are many ways to display VDR.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201704182328+13f4f937  ==&lt;br /&gt;
* pluto-text-to-speech - Fix for initial installation which might effect usability.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704181123+a26d414e ==&lt;br /&gt;
* pluto-security-database - Localhost or 127.0.0.1 matters for MySQL - This should be the last fix needed to get MySQL Server v5.7 sorted out - at least for the install.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704180809+9af5cc66 ==&lt;br /&gt;
* pluto-boot-scripts - Set MySqlUser name in ConfigOps if it isn&#039;t already set.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201704171950+9af5cc66 ==&lt;br /&gt;
* pluto-sqlcvs, pluto*database* - Final fixes for 1404 and 1604.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704161042+f5455665 ==&lt;br /&gt;
* pluto-sqlcvs - Now has a dependency to pluto-database-settings&lt;br /&gt;
* pluto-database-settings - all user creation happens in here&lt;br /&gt;
* pluto-database-system - no more user creation.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 - 201704151808+866a5886 ==&lt;br /&gt;
* pluto-database-settings - Takes way too long to get fixed.&lt;br /&gt;
&lt;br /&gt;
== Update 201704151034+80dd9806 ==&lt;br /&gt;
* pluto-database-settings - *grml* don&#039;t just blindly copy other peoples code.&lt;br /&gt;
&lt;br /&gt;
== Update 1604 i386/amd64 201704142323+6ad66efd ==&lt;br /&gt;
* pluto-database-settings - Put user creation into mkr_postinst_mysql instead of mkr_postinst_system. Let&#039;s hope this fixes this sucker.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 2.0.0.47.201704050752+ddbbb689 ==&lt;br /&gt;
* lmce-vlc-player (884,882) - preprocess URL to ensure that file paths with # in them play correctly.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 amd64/i386 201704041743+906d69eb ==&lt;br /&gt;
* pluto-bootscripts (234) - Typo fix for insert rule to the db. /ppp/ip-up.d/lmce-vpn-up and /ppp/ip-down.d/lmce-vpn-down works now niceley togheter with the new firewall.&lt;br /&gt;
* pluto-system-database (211) - sqlCVS commit to add Imagemagick as dependency to VLC Player, finally squashing that #($#@( start bug! (TSCHAK)&lt;br /&gt;
** Also added ir-keytable depedency to pluto-lirc-wrapper&lt;br /&gt;
** Also added generic cd and dvd icons for External Media Identifier&lt;br /&gt;
* pluto-lirc-wrapper (340,421) - Ensure that ir-keytable is cleared before lircd starts to avoid unusual behavior with remotes that use kernel event subsystem (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - Fix DVD to use cifs instead of smbfs (which has been deprecated for 10 years.)&lt;br /&gt;
* lmce-vlc-player (884,882) - bug fixes for multi room sync&lt;br /&gt;
* lmce-vlc-plugin (874,875) - bug fixes for multi room sync&lt;br /&gt;
* lmce-media-identifier (931,932) - add generic dvd and cd identification if disc can&#039;t be identified by normal means.&lt;br /&gt;
* pluto-website-admin (220) - phonelines.php shows the state of a SPA protocol phonline. And firewall.php updated preg_match to find lines on pluto.conf and change them if exists. Issue2745.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201703301804+358c1c45 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fixes Bug #2726 - Media details now work, again.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 - 201703272335+efdf6de9 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Issue #2730 - Media Plugin changes to add support for FIFO capture card playback to VLC Player (route messages to VLC Player if it exists) -TSCHAK&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue #2729, #2730 - Implement FIFO device playback for local devices similar to file playback. (TBD: recompile VLC with PVR functionality), also multi-room playback. VLC Player is now in beta. -TSCHAK&lt;br /&gt;
* lmce-vlc-plugin (874,875) - Issue #2729 - Implement multi-room playback, VLC sync listener on core, etc. VLC functionality is now beta. -TSCHAK&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201702201438+325cc736 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix for multiple cameras and Get Image command&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue 2727, Issue 2728 - Trick play overhaul and fix audio glitches when trick play is used. &lt;br /&gt;
* pluto-boot-scripts (234) - SetupAudioVideo.sh - slight change to libvlc.conf so that trick play OSD works.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1204-1404-1604/amd64 c20633ff ==&lt;br /&gt;
* pluto-website-admin (220) - Added the case for section energyGraph and sipConf, fixed permissions for mysql asteriskuser, add sql credentials for myth, change MYSQL_NUM to MYSQLI_NUM&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1404/amd64 a7c10426 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add backports so 1204 diskless create works&lt;br /&gt;
* lmce-oauth2-server (668) - initial build of lmce oauth2 server for cloud interfacing&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404/1604 i386 - 1404x64 - 201611190055+fee90f43 ==&lt;br /&gt;
* pluto-boot-scripts (234) - database upgrades&lt;br /&gt;
* pluto-orbitergen (226,227) - database upgrades&lt;br /&gt;
* pluto-pluto-main-db (201,237) - database upgrades&lt;br /&gt;
* pluto-pluto-security-db (278,277) - database upgrades&lt;br /&gt;
* lmce-asterisk (replacement) - database upgrades&lt;br /&gt;
* pluto-system-database (211) - database upgrades&lt;br /&gt;
* pluto-local-database (214) - database upgrades&lt;br /&gt;
* pluto-security-database (256) - database upgrades&lt;br /&gt;
* pluto-telecom-database (472) - database upgrades&lt;br /&gt;
* pluto-media-database (233) - database upgrades&lt;br /&gt;
* pluto-database-settings (407) - database upgrades&lt;br /&gt;
* pluto-sqlcvs (212,213) - database upgrades&lt;br /&gt;
* pluto-std-plugins (116,135) - database upgrades&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609281853+9638f5bc ==&lt;br /&gt;
* pluto-website-admin (220) - #2705 fixed syntax error.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609271106+39103855 ==&lt;br /&gt;
* pluto-website-admin (220) - Update firewall.php GUI change some fields where reset to the default values. now the db data is honored.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** don&#039;t create initramfs for Raspbian Jessie diskless filesystems.&lt;br /&gt;
** ensure firstboot runs on diskless Jessie RPis.&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** stop/start rather than restart dhcp server, it&#039;s like nuking the site from orbit... only way to be sure.&lt;br /&gt;
** Firewall blocks udp 1900 UpNP traffic from externalinterface.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609172308+325de35d ==&lt;br /&gt;
* lmce-autotag (780, 781) linuxmceTag - fix comparison issue with media type.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609131230+5eaa4671/201609131753+5eaa4671 ==&lt;br /&gt;
* pluto-boot-scripts (234) - send dhcp vendor specific options only to wired raspberry pis.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 201609102226+fda3da63 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** rpi native pxe additions/updates&lt;br /&gt;
** extend startup timeout when booting under systemd&lt;br /&gt;
* lmce-diskless-tools (627,628) - rpi native pxe additions/updates&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DT updates for rpi native pxe&lt;br /&gt;
** add Serial Number Device Data to RPi DTs&lt;br /&gt;
** sets default PK_Distro to 22 (jessie) for RPi DTs&lt;br /&gt;
** new device data for &amp;quot;Standard Energy Meter&amp;quot;&lt;br /&gt;
* pluto-std-plugins (116,135)&lt;br /&gt;
** stores energy reading in state field for Standard Energy Meter&lt;br /&gt;
** fixes dcerouter crash when searching media&lt;br /&gt;
* pluto-updatemedia (405,406) - fix segfault when a dir is attempting to be tagged directly (without a .id3)&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - don&#039;t fail pkg install if simplephone is not running.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-i386 - 1404-i386/amd64 201607240235+899786ab ==&lt;br /&gt;
* pluto-website-admin (220) - Mysqli_real_escape_string did not work. a start with ipv6 firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/i386 201607202218+14cba09a ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) - Stream Bouncing, Additional settings for location, removed debug output, queue functionality.&lt;br /&gt;
&lt;br /&gt;
== Update 201607181902+d4cec1a0 1404-i386/amd64 - 1204-i386 ==&lt;br /&gt;
* pluto-website-admin - Update to qOrbiterGenerator.php for newer PHP version&lt;br /&gt;
&lt;br /&gt;
== Update 201607161239+6d72c3f9 1404-i386/amd64 1204-i386 ==&lt;br /&gt;
* pluto-website-admin (220) - #2678 fix Warning: Invalid argument supplied for foreach() in /var/www/lmce-admin/include/dhcpd-tools/DHCPd-parse.php on line 113&lt;br /&gt;
* pluto-boot-script&lt;br /&gt;
&lt;br /&gt;
== Update 201607151016+5b5adba3 1404/i386 &amp;amp; amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule use another escape method.&lt;br /&gt;
&lt;br /&gt;
== Update 201607122332+f0fc9c6b 1404/i386 ==&lt;br /&gt;
* pluto-boot-scripts (234) - fix #2684 clients cannot access internet when firewall is disabled. &lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule.&lt;br /&gt;
&lt;br /&gt;
== Update 201607050613+601c67da 1404-i386/amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - more fixes to the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update trusty i386/amd64 201606301955+614dfa7b ==&lt;br /&gt;
* pluto-website-admin (220) - fix for outside access port 443 not uncheckable.&lt;br /&gt;
* pluto-boot-scripts (234) - fix for not dele rules from iptables from outsideAccess.php&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201606201908+31b25c52 ==&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** unicode reading/writing working properly&lt;br /&gt;
** coverart writing to tags working properly&lt;br /&gt;
** .id3 files handled by taglib instead of id3lib.&lt;br /&gt;
** General Object Frame (GEOB) reading/writing working properly (all lmce attributes are stored in id3v2 GEOB tags for .id3/.mp3 files)&lt;br /&gt;
* pluto-website-admin (220) - more updates for mysql -&amp;gt; mysqli conversion&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201605312323+08fb8202 ==&lt;br /&gt;
* pluto-website-admin (220) - fix Text Command button to honor parameters from Screen_CommandParameter&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller to fix spamming of logs with constant updates of device data.&lt;br /&gt;
&lt;br /&gt;
== Update trusty-i386/amd64 201605310531+04df53f5 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - get the stream uri from onvif camera and save it in a device data for use by other devices&lt;br /&gt;
* pluto-website-admin (220) - adate to adodb 5.20.4 and change db driver from mysql to mysqli&lt;br /&gt;
* pluto-updatemedia (405,406) - tag writing/deletion of values update&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201605261039+410242d2 ==&lt;br /&gt;
* pluto-media-database (233) - remove FatGroupBy query as it is massive and no longer required&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** FIX UpdateMedia not detecting changes in files on disk.  Fixes: UpdateMedia not reading modification times properly.&lt;br /&gt;
** improve image reading/writing for mp3/mp4 files, add image handling for asf/wma, improve track art-&amp;gt;performer/album artist matching.&lt;br /&gt;
** don&#039;t add network shares to inotify watch list&lt;br /&gt;
* pluto-system-database (211) - new qml-* pkg definitions for qorbiter&lt;br /&gt;
* pluto-plutoutils (196,197) - add fn&#039; to determine filesystem type of a file&lt;br /&gt;
* lmce-disked-interactor (897,898) - make sure we see the core and have an IP prior to attempting contact&lt;br /&gt;
* pluto-bootscripts (234) - make sure we see the core prior to continuing to boot an MD&lt;br /&gt;
* pluto-website-admin (220) - various fixes in the media page&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 - 201605171740 c6d63dc6 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3, ogg, flac, mp4, wv, wav, oga, mpc, spx, opus, tta, m4a, m4r, m4p, 3g2, m4v, wma, asf, aif, aiff, afc, aifc, ape, s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64  201605131052+2542a526 ==&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - udev rule to ignore usbhid portion of device, permits orbiter to enter screensaver&lt;br /&gt;
* pluto-bootscripts (234) - permit devices that have died 50 times to attempt to restart after a router reload. Firewall fix for manual defined chains.&lt;br /&gt;
* pluto-sound-card-scripts (579) - don&#039;t assume cardid=1, determine phoenix cardid from aplay.&lt;br /&gt;
* pluto-media-database (233) - additional AttributeType &amp;quot;Album Artist&amp;quot;&lt;br /&gt;
* lmce-media-identifier (931,932) - updates for Album Artist tag.&lt;br /&gt;
* pluto-orbiter (119,138) - updates for Album Artist tag.&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** updates for Album Artist tag&lt;br /&gt;
** fix mainMediaFileSync.php. OutsideAccess page showing the options (again). &lt;br /&gt;
** And typo fixes for issue #2643. &lt;br /&gt;
** Firewall page reload issue 2636#. Firewall gui do not show &amp;quot;NULL&amp;quot;.&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3:ogg:flac:mp4:wv:wav::oga:mpc:spx:opus:tta:m4a:m4r:m4p:3g2:m4v:wma:asf:aif:aiff:afc:aifc:ape:s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update jessie 20160427 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for RPi&lt;br /&gt;
* lmce-disked-md-rpi2 (889) - +x firstboot_md_rpi2 to ensure it&#039;s picked up properly&lt;br /&gt;
&lt;br /&gt;
== Update jessie 201604130947+0083d387 ==&lt;br /&gt;
== Update 1204/1404-i386/amd64 201604101031-0b47a986 ==&lt;br /&gt;
* pluto-website-admin, pluto-boot-scripts (220,234) - Firewall Fixes for GUI and inner working of the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603251155+a1c0f6ea ==&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - File view implemented. Fixed not being able to leave resume menu.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603222119+336464d8 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller  to fix floorplan / status being improperly updated.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t mount optical discs as HDDs&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201603220706+c3c4b899 ==&lt;br /&gt;
* lmce-md-meta (450) - for some reason this is not in the main repo&lt;br /&gt;
* lmce-media-identifier - fixed for libcdio&lt;br /&gt;
&lt;br /&gt;
== Update jessie-rpi 60faa181 ==&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - adds video resizing so UI1 can be exposed while video is playing.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 armhf 31c5d994 ==&lt;br /&gt;
== Update 1404 i386 52e39875 ==&lt;br /&gt;
* pluto-storage-devices (533) - fix ntfs detection&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 - 49a8cbf1 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - a little better device to device template mapping&lt;br /&gt;
* pluto-website-admin (220) - fix adv.zwave page and adding secure devices&lt;br /&gt;
* lmce-disked-* - update the disked md/mid meta/base/device pkgs, specific fixes for 1404 joggler&lt;br /&gt;
* lmce-json-plugin (876,877) - first time addition to the main repo&lt;br /&gt;
* libdvdid0 (replacement) - first time addition to the repo, for use by Media Identifier&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - enable disabling internal volume control, similar to how logitechmediaserver does&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1404(armhf)/jessie(rpi)-a84db86f ==&lt;br /&gt;
* lmce-launch-manager (298,299) - only update squeeze devices when running on the core, redundant elsewhere.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404-87954508 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t fail if dvdcss2 cannot be automatically installed.&lt;br /&gt;
* pluto-hald (529,530) - reinstate tty detection, seperate from usb-serial, use direct parent for udi naming.&lt;br /&gt;
* pluto-boot-scripts (234) - disable buildall, the script doesn&#039;t run so why waste time creating it.&lt;br /&gt;
* lmce-launch-manager (298,299)&lt;br /&gt;
** update squeezebox players on router reloads from Launch_Manager&lt;br /&gt;
** call Config_Device_Changes in startCoreServices to ensure everything gets its&#039; Need Configure flag reset.&lt;br /&gt;
&lt;br /&gt;
== Update a332f49a ==&lt;br /&gt;
* lmce-install-scripts (391) - fix missing quote in MD installation.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix missing &#039;fi&#039; in BootMessage.sh&lt;br /&gt;
** fix usb.1 system serial port listing/translating&lt;br /&gt;
* lmce-media-identifier (931,932) - fix segfault, CDs are identified, cd-ripping functional again&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** prioritize new conf dir over old conf dir, fix install on systems upgraded from 1204-&amp;gt;1404&lt;br /&gt;
** redirect mythweb to html/mythweb&lt;br /&gt;
* pluto-hald (529,530) - updates to serial port naming, specifically for odroid.&lt;br /&gt;
* pluto-storage-devices (533) - fix mounted drive detection and add detection for drives mounted in /proc/cmdline like rpi.&lt;br /&gt;
&lt;br /&gt;
== Update 1204=201602080446+2028f850 &amp;lt;br&amp;gt; 1404=201602071815+c31bc44f ==&lt;br /&gt;
* lmce-install-scripts (391)&lt;br /&gt;
** enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
* lmce-core (888) - enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
* pluto-storage-devices (533) - redo StorageDevices_Radar using blkid for internal HDD identification.  /dev/disk/by-path/ is not present anymore.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
** new VerifyDistro.sh script and call the script on boot.&lt;br /&gt;
*** Preventative mostly.  Intended to ease pain for those that upgrade distros.&lt;br /&gt;
*** Ensure child devices, onscreen orbiter, have the proper PK_Distro set.&lt;br /&gt;
&lt;br /&gt;
== Update 296fdcd3 ==&lt;br /&gt;
* pluto-website-admin (220) - fix depends versioning&lt;br /&gt;
* pluto-hald (529,530) - fix depends versioning&lt;br /&gt;
* pluto-boot-scripts (234) - fix depends versioning&lt;br /&gt;
* pluto-system-database (211) - fix depends versioning&lt;br /&gt;
* pluto-orbitergen (226,227) - fix depends versioning&lt;br /&gt;
* lmce-disked-md-base (801) - fix depends versioning&lt;br /&gt;
* lmce-install-scripts (391) - fix depends versioning&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix depends versioning&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix depends versioning&lt;br /&gt;
* lmce-datalogger-plugin (686,687) - fix depends versioning &lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix depends versioning&lt;br /&gt;
&lt;br /&gt;
== Update f3a444c0 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** use newer .sh script rather than obsolete .pl script for dialplan creation&lt;br /&gt;
** fix Directory listing on cisco phones&lt;br /&gt;
** fix delete buttons on internet radio page.&lt;br /&gt;
* pluto-hald (529,530)&lt;br /&gt;
** add &#039;usb&#039; to &#039;pci&#039; and &#039;platform&#039; as valid bus addresses&lt;br /&gt;
** permit adding of usb devices with usb_serial or tty children&lt;br /&gt;
* pluto-boot-scripts (234) - update SetupAudioVideo.sh to more reliably address nvidia hdmi audio outputs&lt;br /&gt;
* lmce-asterisk (replacement) - live_dangerously for now to get all the necessary Voicemail modules to load&lt;br /&gt;
* pluto-system-database (211) - new DD Number of jobs for orbiter plug-in/orbitergen&lt;br /&gt;
* pluto-boot-scripts (234) - updates to RegenOrbiter scripts for parallel job queued orbiter generation.&lt;br /&gt;
* pluto-orbitergen (226,227) - new depends on GNU parallel&lt;br /&gt;
* lmce-disked-md-base (801) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* lmce-install-scripts (391) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - remove hardcoded ip address, get from db instead.&lt;br /&gt;
* lmce-diskless-tools (627,628) - only run UpdateDebCache.sh if it is executable&lt;br /&gt;
* lmce-datalog-plugin(686,687) - fix pear install command in postinst&lt;br /&gt;
* lmce-advanced-ip-camera(812,813) - add basic onvif support (snapshot,PTZ)&lt;br /&gt;
&lt;br /&gt;
== Update 31792 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of new External_Media_Identifier, testing CDDB ids&lt;br /&gt;
&lt;br /&gt;
== Update 31783 ==&lt;br /&gt;
* pluto-libserial (190,191) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-dcecommon (192,193) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-irbase (194,195) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-plutoutils (196,197) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-vipshared (199,200) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-serializeclass (198,238) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-libbd (239,240) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-ra (247,248) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-main-db (201,237) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-media-db (254,255) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-security-db (278,277) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-sdl-helpers (346,347) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-messagetrans (398,401) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-game-db (675,676) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-windowutils (677,678) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-datalog-db (688,689) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
&lt;br /&gt;
== Update 31782 ==&lt;br /&gt;
* pluto-std-plugins - fix FK_File search inside Attribute in Media_Plugin&lt;br /&gt;
&lt;br /&gt;
== Update 31774 ==&lt;br /&gt;
* lmce-disked-mid-base (899) - fix error in postinst&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come (this should be in but apt-get is getting 404 errors)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add &amp;quot;remove failed node&amp;quot; command&lt;br /&gt;
* pluto-website-admin - add &amp;quot;remove failed node&amp;quot; command for zwave advanced page&lt;br /&gt;
&lt;br /&gt;
== Update 31760 ==&lt;br /&gt;
* lmce-disked-md-base (801) - fix another error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31757 ==&lt;br /&gt;
* lmce-core (888) - overwrite AutostartCore conf value&lt;br /&gt;
* lmce-md-meta (450) - overwrite AutostartMedia conf value&lt;br /&gt;
* lmce-mid-meta (962) - missing deb&lt;br /&gt;
* lmce-hybrid (769) - exit 0 in postinst, just to be sure&lt;br /&gt;
* lmce-disked-md-base (801) - fix error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31754 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - reconnect before send&lt;br /&gt;
&lt;br /&gt;
== Update 31752 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - remove hard coded caller id &#039;Cherryhomes, Tho&#039;, use incoming caller id.&lt;br /&gt;
&lt;br /&gt;
== Update 31750 ==&lt;br /&gt;
* pluto-website-admin (220) - fix postinst error notice on precise.&lt;br /&gt;
* pluto-boot-scripts (234) - (re)start asterisk, otherwise configuration doesn&#039;t occur and sip phones cannot register&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - force-reload apache2 after disabling mythbuntu sites&lt;br /&gt;
* lmce-md-meta (450) - don&#039;t overwrite conf values that are already set&lt;br /&gt;
* *openzwave* (replacement) - version bump, upgrade fixes to upstream files&lt;br /&gt;
&lt;br /&gt;
== Update 31744 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come&lt;br /&gt;
&lt;br /&gt;
== Update 31742 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Gui changes to not confuse people. &lt;br /&gt;
** outsideaccess works together with the firewall. &lt;br /&gt;
** phonelines note on protocol for meaning of &amp;quot;SPA&amp;quot; and a status for this protocol setting, port can be changed if needed else it will be the default (5060).&lt;br /&gt;
&lt;br /&gt;
== Update 31739 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix absolute timed events&lt;br /&gt;
&lt;br /&gt;
== Update 31723 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix nfs-premount script in default diskless image.&lt;br /&gt;
* lmce-dlna(842,843) - compatibility fixes&lt;br /&gt;
* lmce-install-scripts (391) - generate ssh keys so openssh-server can accept connections&lt;br /&gt;
* pluto-createdevice (303,304) - hide errors, specifically during initial package postinst&lt;br /&gt;
* lmce-cec-adaptor (871,872) - fix cec remotes not getting to lmce&lt;br /&gt;
&lt;br /&gt;
== Update 31693 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - Fixes #2530 - fix errors in mythtvdb synchronization scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31686 ==&lt;br /&gt;
* lmce-install-scripts (391) - deal with firstboot stuffenz&lt;br /&gt;
* pluto-system-database (211) - add proxy orbiter DT depends for generic web device&lt;br /&gt;
* pluto-website-admin (220) - order by photo file name in screen saver/photo browser&lt;br /&gt;
* pluto-boot-scripts (234) - try ubiquity before anything else, and reboot after the normal firstboot - breaks live boot on dvd atm&lt;br /&gt;
* lmce-diskless-tools (627,628) - permit i386 diskless image building on amd64 cores, ensure processes are killed in chroot before unmounting (deals with systemd for now)&lt;br /&gt;
&lt;br /&gt;
== Update 31660 ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) &lt;br /&gt;
**PS3 control screen, fix layout issue. adds seperate button group (triangle, circle, etc) and navigation arrows. Also adds power off button to properly exit screen&lt;br /&gt;
* pluto-website-admin (220) - prevent creation of extra &#039;blank&#039; network interfaces&lt;br /&gt;
&lt;br /&gt;
== Update 31655 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - close connection after use&lt;br /&gt;
* pluto-website-admin (220) - fill ServerName var if it is unset, not if it is set.&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - unify service control&lt;br /&gt;
* pluto-boot-scripts (234) - unify service control&lt;br /&gt;
* pluto-dhcpd-plugin (302) - unify service control&lt;br /&gt;
* pluto-disk-monitor (554) - unify service control&lt;br /&gt;
* pluto-mythtv-player (133,152) - unify service control&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - unify service control&lt;br /&gt;
* pluto-raid-tools (617) - unify service control&lt;br /&gt;
* pluto-storage-devices (533) - unify service control&lt;br /&gt;
* lmce-update-system (650,651) - unify service control&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - unify service control&lt;br /&gt;
* pluto-vdr-plugin (466,467) - unify service control&lt;br /&gt;
* pluto-vdr (468,469) - unify service control&lt;br /&gt;
* pluto-database-settings (407) - unify service control&lt;br /&gt;
* lmce-asterisk (replacement) - unify service control&lt;br /&gt;
* lmce-diskless-tools (627,628) - unify service control&lt;br /&gt;
* lmce-install-scripts (391) - unify service control&lt;br /&gt;
* pluto-updatemedia (405,406) - unify service control&lt;br /&gt;
* pluto-newmdinteractor (538,539) - unify service control&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - Fix size issues, floorplan popups.&lt;br /&gt;
&lt;br /&gt;
== Update 31621 ==&lt;br /&gt;
* pluto-mythtv-player (133,152) - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 31618 ==&lt;br /&gt;
* lmce-asterisk (replacement) - update db for chan_sccp-v4.2 and fix bug requiring manual asterisk reload on boot&lt;br /&gt;
&lt;br /&gt;
== Update 31615 ==&lt;br /&gt;
* pluto-* - rebuild with new libraries&lt;br /&gt;
* lmce-* - rebuild with new libraries&lt;br /&gt;
&lt;br /&gt;
== Update 31606 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix EPG data on orbiters, myth stores everything in UTC now.&lt;br /&gt;
* pluto-pluto-main-db (201,237) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-media-db (254,255) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-security-db (277,278) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-datalog-db (688,689) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-game-db (675,676) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-updateentarea (341,342) - don&#039;t send empty play command when resetting alarm&lt;br /&gt;
&lt;br /&gt;
== Update 31580 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - use bypass-event to avoid watching media events when playing alerts&lt;br /&gt;
* pluto-updateentarea (341,342) - send bypass-event with security event commands&lt;br /&gt;
* libcec3 debs (replacement) - removes conflict data with libcec2&lt;br /&gt;
&lt;br /&gt;
== Update 31575 ==&lt;br /&gt;
* lmce-asterisk (replacement) - play back alert notification file&lt;br /&gt;
* pluto-std-plugins (116,135) - create alert notification file with correct format&lt;br /&gt;
* pluto-boot-scripts (234) - fixes for nvidia drivers on precise, upgrades to nvidia-340&lt;br /&gt;
* lmce-avwizard-sounds (replacement) - don&#039;t copy fakeroot files (it is redundant it is)&lt;br /&gt;
* video-wizard-videos (replacement) - deb is back to normal size, not 2x&lt;br /&gt;
&lt;br /&gt;
== Update 31553 ==&lt;br /&gt;
* pluto-website-admin (220) - fix error that wipes out the apache2.conf&lt;br /&gt;
* pluto-hald (529,530) - fix segfaults with firewire hardware&lt;br /&gt;
&lt;br /&gt;
== Update 31547 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some API changes in OZW 1.3, more device template mappings&lt;br /&gt;
* pluto-boot-scripts (234) - typo fix for nvidia drivers&lt;br /&gt;
* lmce-disked-md-base (801) - set hostname on disked MDs, set timezone on disked MDs&lt;br /&gt;
* lmce-install-scripts (391) - set hostname on disked MDs, set timezone on disked MDs &lt;br /&gt;
* pluto-website-admin was generated---&amp;gt; lmce-website-admin (220) - set apache2 ServerName to silence error on boot&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates, revert to ruby 1.8&lt;br /&gt;
* pluto-generic-serial-device (307,335) - admit defeat for now, revert to ruby 1.8&lt;br /&gt;
&lt;br /&gt;
== Update 31533 ==&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31520 ==&lt;br /&gt;
* chan-sccp_v4.2 (replacement) - Upgrad asterisk SCCP channel driver to newest version&lt;br /&gt;
* pluto-vdr-plugin (466,467) - implement background loading of EPG from VDR to avoid crashes due to commands not completing on time&lt;br /&gt;
* pluto-boot-scripts (234) - some logic changes and added messages for video driver install debugging&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - link new channels dir to old channels dir for backwards compatibility&lt;br /&gt;
&lt;br /&gt;
== Update 31503 ==&lt;br /&gt;
* *zwave* (replacement) - new upstream openzwave version 1.3.1224&lt;br /&gt;
* lmce-zwave-ozw(505,506) - build against new libopenzwave1.3&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates&lt;br /&gt;
* lmce-disked-interactor (897,898) - make disked interactor aware of wheezy and jessie.&lt;br /&gt;
&lt;br /&gt;
== Update 31500 ==&lt;br /&gt;
* *myth* (replacement) - fix depends on non-existent packages&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst - verified installing now&lt;br /&gt;
* pluto-std-plugins (116,135) - Use integer comparison for brightness state&lt;br /&gt;
&lt;br /&gt;
== Update 31491 ==&lt;br /&gt;
* lmce-avwizard-skin-basic (replacement) - fix packaging of avwizard skin&lt;br /&gt;
* *myth* (replacement) - mythtv 0.27.5+fixes with Schedules Direct fix included&lt;br /&gt;
* *asterisk* (replacement) - asterisk 11.7 backport from trusty&lt;br /&gt;
* libical* (replacement) - for asterisk 11.7&lt;br /&gt;
* *cec* (replacement) - libcec3&lt;br /&gt;
* libplatform* (replacement) for libcec3&lt;br /&gt;
* lmce-cec-adaptor (871,872) - build against libcec3&lt;br /&gt;
* lmce-mediatomb (702) - fix pkg installation&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - update protocol version and secret word (shhh) for 0.27.5+fixes&lt;br /&gt;
* lmce-diskless-tools (627,628) - remove call to obsolete script in Diskless_Setup.sh&lt;br /&gt;
* pluto-vdr-plugin (466,467) - return full EPG (used in qOrbiter EPG Grid), improve communication speed with SVDRP&lt;br /&gt;
* pluto-slim-server-streamer (289,290) - emit time code event, fix duration parsing&lt;br /&gt;
* pluto-boot-scripts (234) - fix headless booting, update 1404 nvidia driver&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* lmce-md-meta (450) - add depends on alsa-utils&lt;br /&gt;
* pluto-website-admin (220) - Fix cdrviewer (Call Details Records) to accept SSL conections as well, firewall gui change to set Offline rules in red as they are not executed.&lt;br /&gt;
* pluto-app-server (126,145)- new poweroff mode I for ignore, since N is already in use&lt;br /&gt;
&lt;br /&gt;
== Update 31420 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add depends on pluto-boot-scripts for deb cache script&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31411 == &lt;br /&gt;
* pluto-avwizard (555,556) - fix depends on avwizard skins basic, should no longer care about version&lt;br /&gt;
* pluto-boot-scripts (234) - more explicity logic for core only booting, fix startup script db errors&lt;br /&gt;
* lmce-update-system (650,651) - remove and disable old init.d script from /etc/init.d&lt;br /&gt;
* pluto-plutodhcp (330,491) - depends on apparmor&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-dhcpd-plugin (302) - remove hardcoded IP addresses from configure scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31387 ==&lt;br /&gt;
* lmce-weather-plugin - make change to allow for tonight&#039;s forecast data (TSCHAK)&lt;br /&gt;
* lmce-asterisk (replacement) - remove obsolete phonetic engines and replace with espeak, voices remain the same&lt;br /&gt;
* mbrola (replacement) - base mbrola pkg for mbrola voices (add armhf binary)&lt;br /&gt;
* pluto-asterisk (270,271) - generate fr and de voicemail menus with espeak now&lt;br /&gt;
* lmce-core (888) - add depends on iptables&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31378 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Start_KDE.sh ownership fix, AV config updates&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-avwizard (555,556) - update pkgs &amp;amp; depends &amp;amp; config scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - do not run update deb_cache during dvd creation&lt;br /&gt;
* pluto-x-scripts (520) - fixups to Xconfigure.sh&lt;br /&gt;
&lt;br /&gt;
== Update 31356 ==&lt;br /&gt;
* pluto-system-database (211) - update depends&lt;br /&gt;
* pluto-orbiter (119,138) - update depends&lt;br /&gt;
* lmce-diskless-tools (627,628) - speedup dpkg in diskless create, fix missing quotes&lt;br /&gt;
&lt;br /&gt;
== Update 31352 ==&lt;br /&gt;
* pluto-motion-wrapper - more config file location fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 31351 ==&lt;br /&gt;
* pluto-boot-scripts (234) - change service &#039;nis&#039; to &#039;ypserv&#039;, nis is no longer a service name&lt;br /&gt;
* pluto-website-admin (220) - remove &#039;idiot&#039; text, let&#039;s be nice to people.&lt;br /&gt;
* lmce-core (888) - do not create and config under ubiquity&lt;br /&gt;
* lmce-md-meta (450) - do not create and config under ubiquity&lt;br /&gt;
* motion (replacement) - fix bad config file setting in rules&lt;br /&gt;
&lt;br /&gt;
== Update 31337 ==&lt;br /&gt;
* motion (replacement) - new version of motion to match new configuration values generated by linuxmce&lt;br /&gt;
&lt;br /&gt;
== Update 31331 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix for brightness events&lt;br /&gt;
* pluto-boot-scripts (234) - fix kdm disabling, start ubiquity after network config&lt;br /&gt;
* lmce-diskless-tools (627,628) - add upstart overrides for kdm&lt;br /&gt;
* lmce-install-scripts (391) - start ubiquity after network config&lt;br /&gt;
&lt;br /&gt;
== Update 31314 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add missing depends&lt;br /&gt;
&lt;br /&gt;
== Update 31292 ==&lt;br /&gt;
* lmce-core-locator (replacement) - (1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-system-database (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* All .debs created by MakeRelease - removal of all Pre-Depends, everything is now a Depends entry (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
== Update 31228 ==&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-local-database&lt;br /&gt;
&lt;br /&gt;
== Update 31214 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package (not in repo, need build-replacements.sh svn up&#039;d?)&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - preinst/postinst updates&lt;br /&gt;
* pluto-boot-scripts (234) - preinst/postinst updates&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-disked-md-base (801) - firstboot updates&lt;br /&gt;
&lt;br /&gt;
== Update 31187 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package&lt;br /&gt;
* pluto-confirm-dependencies (281,272) - new depends on lmce-install-scripts (fixes unable to apt-get dist-upgrade)&lt;br /&gt;
* lmce-md-meta (450) - new depends on nfs-common, openssh-server and pastebinit&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - update depends, preinst/postinst&lt;br /&gt;
* pluto-boot-scripts (234) - depends &amp;amp; preinst/postinst updates&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - add override mythweb defaults in pkg preinst&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - update depends&lt;br /&gt;
&lt;br /&gt;
== Update 31133 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** enable WakeMDs.sh to wake any halted MDs.&lt;br /&gt;
** consolidate all boot script launching to /etc/init.d/linuxmce&lt;br /&gt;
* pluto-avwizard (555,556) - moves start script to /usr/pluto/bin, called by /etc/init.d/linuxmce now&lt;br /&gt;
* lmce-update-system (650,651) - removes init.d script, called by /etc/init.d/linuxmce now&lt;br /&gt;
* pluto-website-admin (220) - GUI changes on network settings if an bridge is configured on the db.&lt;br /&gt;
* lmce-core (888) - depend on pluto-asterisk, lmce-asterisk, lmce-install-scripts&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* pluto-generic-serial-device (307,335) - wildshot attempt at fixing segfaults&lt;br /&gt;
&lt;br /&gt;
== Update 31103 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** Network bridging now possible  for wifi AP to have the same network as the local lan. &lt;br /&gt;
** ipv6 on/off for network interfaces. Read multiple ipv6 interfaces from the db.&lt;br /&gt;
** re-enable HaltMDs.&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* libqhttpserver (912) needed for linuxmce nvr&lt;br /&gt;
* lmce-launch-manager - (298,299) - ?&lt;br /&gt;
&lt;br /&gt;
== Update 31087 ==&lt;br /&gt;
* lmce-weather (838,839) - Fix a serious bug in getconfig where incorrect configuration device data would crash program. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 31083 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes #2422, advanced zwave page broken in chrome&lt;br /&gt;
* pluto-system-database (211) - thumbnail screen fixes&lt;br /&gt;
&lt;br /&gt;
== Update 31074 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** setEa2.php - Fix settings for creating entertain area.&lt;br /&gt;
** qOrbiterGenerator.php - Fix erroneous EA creation by removing it.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Fix incorrect setting for enabling / disabling motion.&lt;br /&gt;
&lt;br /&gt;
== Update 31069 ==&lt;br /&gt;
* pluto-website-admin (220) - setEa2.php Fix settings for creating entertain area.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Initial build.&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (881) - Large update of skins and internals.&lt;br /&gt;
&lt;br /&gt;
== Update 31061 ==&lt;br /&gt;
* lmce-squeezeslave (762) - Add configuration DD to command line&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DB package updates&lt;br /&gt;
** restore previous video remote layout with Options button to select subtitles/audio tracks/video tracks from a datagrid list.&lt;br /&gt;
* pluto-website-admin (220) - firewall.php edit rules for non advanced firewall and some other small fixes.&lt;br /&gt;
* lmce-asterisk (replacement) - sip config modules to avoid autoload.&lt;br /&gt;
&lt;br /&gt;
== Update 31051 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** firewall.php not adding rules now fixet.&lt;br /&gt;
** Test buttons for Hue lights&lt;br /&gt;
** Security outsideAccess page now works nicely with the new firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 31044 ==&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
&lt;br /&gt;
== Update 31031 ==&lt;br /&gt;
* pluto-website-admin (220) - firewall.php after a strange fault and some layout fixes.&lt;br /&gt;
* lmce-mediatomb (702) - don&#039;t assume mediatomb is already running.&lt;br /&gt;
&lt;br /&gt;
== Update 31013 ==&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* pluto-boot-scripts (234) - Network Parameter count for more interfaces set and Network firewall accepting postrouting Masquerade  for other network interfaces.&lt;br /&gt;
&lt;br /&gt;
== Update 30985 ==&lt;br /&gt;
* pluto-website-admin (220) - #2268 fail2ban integration logging failed user login attempt.&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** #2268 fail2ban script not insert existing rules to our db.&lt;br /&gt;
** Support for audio output select on rpi via web admin&lt;br /&gt;
* lmce-diskless-tools (627,628) - update syslinux depends to syslinux-common&lt;br /&gt;
* lmce-omx-player (829,830) - Honour audio output selection of rpiMD&lt;br /&gt;
* lmce-squeezeslave (762) - Fix detection for squeezelite&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - further fixes&lt;br /&gt;
* lmce-usb-gamepad (795,796) - rewrite the whole main loop to suck less. hold-down repeats work, input handling more sane.&lt;br /&gt;
&lt;br /&gt;
== Update 30926 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Fix for #2368 insert firewall rules en #2064 edit and delete chains (except some system chains).&lt;br /&gt;
** Support for brightness based events.&lt;br /&gt;
* pluto-std-plugins (116,135) - Support for brightness based events&lt;br /&gt;
* lmce-omx-plugin (831,832) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** Database additions for XBOX 360 Gamepad (device templates, package)&lt;br /&gt;
** Modification of OMX Plugin to allow priority to be changed.&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - the XBOX 360 Gamepad driver, uses xboxdrv userspace driver.&lt;br /&gt;
* lmce-usb-gamepad (795,796) - additions here for above XBOX 360 Gamepad support.&lt;br /&gt;
&lt;br /&gt;
== Update 30862 ==&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress can now read latest files per linuxmce user.&lt;br /&gt;
&lt;br /&gt;
== Update 30860 ==&lt;br /&gt;
* lmce-weather (838,839) - some fixes by cfernandes&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress.&lt;br /&gt;
* pluto-boot-scripts (234) - more mail fixes&lt;br /&gt;
&lt;br /&gt;
== Update 30855 ==&lt;br /&gt;
* pluto-vdr, pluto-vdr-plugin - remove hardcoding of core IP and network address, but depend on the pluto.conf entries for DCERouter.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location (again)&lt;br /&gt;
* lmce-diskless-tools - stop copying apt configs from the core&lt;br /&gt;
* pluto-boot-scripts - fix postfix setup #2393&lt;br /&gt;
&lt;br /&gt;
== Update 30841 ==&lt;br /&gt;
* lmce-avwizard-sounds - fix replaces/conflicts data&lt;br /&gt;
* lmce-skins-basic - fix replaces/conflicts data&lt;br /&gt;
* lmce-avwizard-skin-basic - fix replaces/conflicts data&lt;br /&gt;
&lt;br /&gt;
== Update 30383 ==&lt;br /&gt;
* pluto-website-admin (220) - Add Hue lights related test button.&lt;br /&gt;
* pluto-boot-scripts - Add another option --autobackup to PlutoRestorePoint.sh to allow backup of pluto_main only&lt;br /&gt;
&lt;br /&gt;
== Update 30814 ==&lt;br /&gt;
* pluto-Boot-scripts - Firewall order by place and PK_Firewall to let rules stay on top on the middle or on the bottom.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location&lt;br /&gt;
* lmce-hue-controller (862,863) - Fix bug in adding new lights, now adds serial number.&lt;br /&gt;
* pluto-website-admin (220) - Fix oops relating the missing &#039;.&#039; which caused operations/login.php not to work.&lt;br /&gt;
&lt;br /&gt;
== Update 30783 ==&lt;br /&gt;
* lmce-nbd-client-wrapper - new pkg to hold common script&lt;br /&gt;
* pluto-xine-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* lmce-vlc-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* pluto-boot-scripts - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
* pluto-storage-devices - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30777 ==&lt;br /&gt;
* lmce-core - depend on openswan&lt;br /&gt;
* pluto-system-database - pkg updates&lt;br /&gt;
* pluto-boot-scripts - remove check for openswan from bootscript&lt;br /&gt;
* pluto-generic-serial-device - update to ruby 1.9.1&lt;br /&gt;
&lt;br /&gt;
== Update 30773==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller internals to now include polling, so as to make sure floorplan data is accurate. Changes underlying mechanisms for how lights are handled in preparation for extending additional support for Cree lights and sensors devices.&lt;br /&gt;
&lt;br /&gt;
== Update 30767 ==&lt;br /&gt;
* lmce-diskless-tools - update diskless archive name to reflect current compression method xz.&lt;br /&gt;
* pluto-website-admin (220) - updates to internet radio, moves add channels to a seperate page.  Thanks Dap-P!&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
* pluto-vdr - adds missing depends on vdr in trusty&lt;br /&gt;
* lmce-core - update depends to new pkg name lmce-avwizard-sounds&lt;br /&gt;
* pluto-avwizard - update depends to new pkg name lmce-avwizard-skins-basic&lt;br /&gt;
* lmce-clock-screen-saver - make the clock screen saver use the WMController/wmctrl methods for setting window visibility to be compatible with Orbiter. (TSCHAK) (Trusty only)&lt;br /&gt;
* pluto-storage-devices - Make sure that smbpasswd is used to create or update sambahelper&#039;s password (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30726 ==&lt;br /&gt;
* pluto-vdr - VDR player&#039;s package assumed a correctly installed vdr package which includes an entry in /etc/default for vdr. We no longer fail on a missing file.&lt;br /&gt;
&lt;br /&gt;
== Update 30724 ==&lt;br /&gt;
* lmce-weather - updates to weather sources, add OpenWM source.  Thanks SBCC and cfernandes!&lt;br /&gt;
* lmce-skins-* - adds missing telecom icons, updates/adds weather icons&lt;br /&gt;
* lmce-avwizard-sounds - remove extraneous stuff from pkg, reduce pkg size back to normal.  Proper replaces/conflicts/data...&lt;br /&gt;
* lmce-avwizard-skin-basic - Proper replaces/conflicts/data...&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
&lt;br /&gt;
== Update 30718 ==&lt;br /&gt;
* lmce-core - new depends on lmce-skins*&lt;br /&gt;
* lmce-md-meta - add depends on pnp-detection scripts&lt;br /&gt;
* lmce-hybrid - new depends on lmce-skins*&lt;br /&gt;
* pluto-avwizard (556,555) - add pciutils as a depends, still need to deal with multiarch stuff so this will break armhf, we will not update armhf for now, it doesn&#039;t use avwizard but does install it.&lt;br /&gt;
* lmce-diskless-tools - minor diskless create fixups&lt;br /&gt;
* pluto-orbiter - missing depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio script&lt;br /&gt;
* pluto-website-admin (220) - recognize MIDs as top level devices&lt;br /&gt;
* pluto-mythtv-player - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 30628 ==&lt;br /&gt;
* *-database - fix install issues&lt;br /&gt;
&lt;br /&gt;
== Update 30622 ==&lt;br /&gt;
* pluto-orbiterinstallers - fix depends issue&lt;br /&gt;
* pluto-system-database - lots of compat updates&lt;br /&gt;
* lmce-* - lots of compat updates&lt;br /&gt;
* pluto-* - lots of compat updates&lt;br /&gt;
&lt;br /&gt;
== Update 30618 ==&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio scripts&lt;br /&gt;
* pluto-website-admin (220) - updated internet radio page&lt;br /&gt;
&lt;br /&gt;
== Update 30571 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - send &amp;quot;Device is turned on or off&amp;quot; event when appropriate so the corresponding event works as expected&lt;br /&gt;
* lmce-squeezeslave (762) - set to pnp create without prompting&lt;br /&gt;
* lmce-runtime-dependencies (903) - pkg to help consolidate runtime depends.&lt;br /&gt;
* lmce-core (888) - updated depends&lt;br /&gt;
* lmce-md-meta (450)- updated depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated depends&lt;br /&gt;
* pluto-createdevice (303,304) - updated depends&lt;br /&gt;
* lmce-weather(838,839) - fix potential segfault&lt;br /&gt;
* pluto-website-admin (220) - add &amp;quot;replace node&amp;quot; button to advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 30549 ==&lt;br /&gt;
* pluto-mythtv-player - fix misaligned data values during mythtv.txt creation.&lt;br /&gt;
&lt;br /&gt;
== Update 30526 ==&lt;br /&gt;
* lmce-core - new pkg&lt;br /&gt;
* lmce-hybrid - pkg depends changes&lt;br /&gt;
* lmce-md-meta - pkg depends changes&lt;br /&gt;
* pluto-dcerouter - pkg depends changes&lt;br /&gt;
* pluto-photo-screen-saver - pkg depends changes&lt;br /&gt;
* pluto-boot-scripts - pkg depends changes&lt;br /&gt;
* pluto-orbiter - pkg depends changes&lt;br /&gt;
* pluto-simplephone - pkg depends changes&lt;br /&gt;
* pluto-website-admin - pkg depends changes&lt;br /&gt;
* lmce-mythtv-scripts - pkg depends changes&lt;br /&gt;
* pluto-system-database - pkg depends changes&lt;br /&gt;
* lmce-squeezeslave (762) - fix launch script, automatically create associated squeezebox player on the core.&lt;br /&gt;
* pluto-std-plugins - run New_PnP_MD.sh for new MID devices as well.&lt;br /&gt;
* lmce-diskless-tools - don&#039;t fail on invoke-rc.d during diskless create, exit gracefully and continue.&lt;br /&gt;
* pluto-mythtv-player - fix diskless create failures due to old hacks.  more work is needed here overall on mythtv integration.&lt;br /&gt;
&lt;br /&gt;
== Update 30419 ==&lt;br /&gt;
* pluto-slim-server - Make sure to turn off all Squeeze* devices when Slim Server Streamer starts or restarts (so that squeezelite does not hog sound cards.)&lt;br /&gt;
* pluto-hald (529,530) - add device node path to pnpqueue with v4l devices during detection&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - update for new lib version&lt;br /&gt;
&lt;br /&gt;
== Update 30384 ==&lt;br /&gt;
* pluto-confirm-dependencies - depend on pluto-install-scripts.&lt;br /&gt;
* pluto-disk-drive (122,141) - remove hal bits that dealt with old jukebox bugs.&lt;br /&gt;
* pluto-capture-card-scripts (580) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-pnp-detection (562) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-storage-devices (533) - convert autofs from hal to udev.&lt;br /&gt;
* pluto-bootscripts (234) - disable starting the hald since we&#039;re using udev now, remove false &#039;fail&#039; messages during reboot/shutdown&lt;br /&gt;
* pluto-slim-server-streamer - make one tweak (do not delete m_mapStreamsToPlayers entry in CMD_Stop). Streaming now works consistently, properly, with squeezebox devices and their clones. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30354 ==&lt;br /&gt;
* pluto-hald (529,530) - fix attempt to fire event for child device of usb-dongle.&lt;br /&gt;
* pluto-slim-server-streamer - Implement FF/REW (transport) trick-play control for Squeeze* devices. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30341 ==&lt;br /&gt;
* pluto-bootscripst - fixes for PPPoE users to not autostart the external interface.&lt;br /&gt;
* pluto-slim-server-streamer - Fix to power off squeezebox player when stream is not in use. This allows softsqueeze/squeezeslave/squeezelite players to let go of a sound device, when not in use (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30332 ==&lt;br /&gt;
* pluto-orbiter (118,139) - disable old hid device functionality.  Anyone who needs it can request a special build which will be provided at no extra charge. ;)&lt;br /&gt;
* pluto-bootscripts (234) - disable Gamepad Radar, functionality now in hal through udev&lt;br /&gt;
* pluto-avwizard (556,555) - fixes mangling of RemoteCmd when &amp;gt;1 remote is detected.&lt;br /&gt;
* pluto-hal-device-finder (535,536) - update to use udev rather than hal.&lt;br /&gt;
* pluto-hald (529,530) - update to use udev rather than hal.&lt;br /&gt;
* pluto-system-database (211) - updates for new detection method (joystick, cec-adaptor), update dependency data for hal pks to reflect dropping hald and add depends on udev now.&lt;br /&gt;
&lt;br /&gt;
== Update 30219 ==&lt;br /&gt;
* pluto-bootscripts (234) - Fail2ban firewall update script, and missing radioscript.sh.&lt;br /&gt;
* pluto-website-admin - Place set for rules on the firewall and bantime for fail2ban integration.&lt;br /&gt;
* pluto-std-plugins (116,135) - adds heirloom-mailx for &#039;mailx -r&#039; functionality, fixes e-mail in general info plugin&lt;br /&gt;
&lt;br /&gt;
== Update 30068 ==&lt;br /&gt;
* lmce-advanced-ip-camera(813,812) - Fixed high cpu usage if connection to camera can not be made&lt;br /&gt;
&lt;br /&gt;
== Update 30052 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - fix android pkg meta data, need to rebuild all together&lt;br /&gt;
&lt;br /&gt;
== Update 30051 ==&lt;br /&gt;
* pluto-updateentarea (341,342) - use DAY/NIGHT in watching/stopped watching events to make them smarter&lt;br /&gt;
* pluto-std-plugins (116,135) - Implement Get Device Status in General Info Plugin&lt;br /&gt;
* pluto-bootscripts (234) - fix VPN ip up/down&lt;br /&gt;
&lt;br /&gt;
== Update 30025 ==&lt;br /&gt;
* pluto-system-database (211) - column def updates&lt;br /&gt;
* pluto-local-database (214) - new Firewall columns and new VPN columns for Users table.&lt;br /&gt;
&lt;br /&gt;
== Update 30014 ==&lt;br /&gt;
* lmce-transmission-client (852) - fix postinst issue.  (Thanks SBCC)&lt;br /&gt;
== Update 29994 ==&lt;br /&gt;
More VLC Player changes to make it at least somewhat usable, there were some ugly bugs that came to light once i plopped it onto my production system. Right now sound device is plughw:0,3, if you need a different one, change it in the code.  (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* lmce-vlc-player - many little fixes to make it suck less.&lt;br /&gt;
&lt;br /&gt;
== Update 29990 ==&lt;br /&gt;
I am working on the VLC player, and it is breathing enough for basic testing. Please do not use in production environment. There is still a lot of code to write (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - updates for VLC player (TSCHAK)&lt;br /&gt;
* vlc-player (882,884) - Very early alpha developer test of the VLC player. (TSCHAK)&lt;br /&gt;
* vlc-plugin (874,875) - Very alpha developer test of the VLC plugin. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 29984 ==&lt;br /&gt;
* pluto-system-database (211) - fix bad repos in pkgs&lt;br /&gt;
* pluto-website-admin - just because I think it is necessary :-)&lt;br /&gt;
&lt;br /&gt;
== Update 29983 ==&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Source_Code&amp;diff=36973</id>
		<title>Source Code</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Source_Code&amp;diff=36973"/>
		<updated>2017-04-24T23:35:35Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: Actually mention git.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Development]]&lt;br /&gt;
[[Category:Programmer&#039;s Guide]]&lt;br /&gt;
&#039;&#039;&#039;LinuxMCE&#039;&#039;&#039; is a pretty big project. Not counting [[GSD]] devices, LinuxMCE&#039;s own code is already well over a million lines in hundreds of modules, with over 1,000 pages of online documentation, and in addition LinuxMCE also incorporates lots of other big open source projects like [[Asterisk]], [[Xine]], [[MythTV]], [[Firefox]], [http://www.videolan.org/ VideoLan], [http://www.slimdevices.com/pi_features.html SlimServer], [http://www.kubuntu.org/ Kubuntu Linux] itself, etc., all of which have special LinuxMCE &#039;wrappers&#039; to allow them to work together seamlessly as a total home solution. For the brave of heart, you can also download modules by hand, and see all the dependencies and compatibility for each module.&lt;br /&gt;
&lt;br /&gt;
== GIT Repository ==&lt;br /&gt;
&lt;br /&gt;
We run a Gitlab repository here: http://git.linuxmce.org/&lt;br /&gt;
&lt;br /&gt;
And of course, the main source tree can be pulled via:&lt;br /&gt;
&lt;br /&gt;
        git clone http://git.linuxmce.org/linuxmce/linuxmce.git&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LniuxMCE_Regression_Testing&amp;diff=36968</id>
		<title>LniuxMCE Regression Testing</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LniuxMCE_Regression_Testing&amp;diff=36968"/>
		<updated>2017-04-19T21:44:36Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: Initial content.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Automated Regression Testing for LinuxMCE ==&lt;br /&gt;
&lt;br /&gt;
* Use Vagrant for machine bring-up, down.&lt;br /&gt;
* Implement virtual sound card to file, and use VNC perhaps to do automated snapshots.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36943</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36943"/>
		<updated>2017-04-05T04:31:38Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: /* Upcoming fixes... */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the 1204 changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo much easier.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please include the pkg #s to facilitate building on 3x i386 targets in addition to 2x amd64 and 3x armhf targets where full builds are not always practical.  Keep in mind that most packages are referred to by two (2) package numbers from the database, a source package and a binary package.  &amp;quot;Thank you for your co-operation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
lmce-vlc-player (884,882) - preprocess URL to ensure that file paths with # in them play correctly.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 amd64/i386 201704041743+906d69eb ==&lt;br /&gt;
* pluto-bootscripts (234) - Typo fix for insert rule to the db. /ppp/ip-up.d/lmce-vpn-up and /ppp/ip-down.d/lmce-vpn-down works now niceley togheter with the new firewall.&lt;br /&gt;
* pluto-system-database (211) - sqlCVS commit to add Imagemagick as dependency to VLC Player, finally squashing that #($#@( start bug! (TSCHAK)&lt;br /&gt;
** Also added ir-keytable depedency to pluto-lirc-wrapper&lt;br /&gt;
** Also added generic cd and dvd icons for External Media Identifier&lt;br /&gt;
* pluto-lirc-wrapper (340,421) - Ensure that ir-keytable is cleared before lircd starts to avoid unusual behavior with remotes that use kernel event subsystem (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - Fix DVD to use cifs instead of smbfs (which has been deprecated for 10 years.)&lt;br /&gt;
* lmce-vlc-player (884,882) - bug fixes for multi room sync&lt;br /&gt;
* lmce-vlc-plugin (874,875) - bug fixes for multi room sync&lt;br /&gt;
* lmce-media-identifier (931,932) - add generic dvd and cd identification if disc can&#039;t be identified by normal means.&lt;br /&gt;
* pluto-website-admin (220) - phonelines.php shows the state of a SPA protocol phonline. And firewall.php updated preg_match to find lines on pluto.conf and change them if exists. Issue2745.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201703301804+358c1c45 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fixes Bug #2726 - Media details now work, again.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 - 201703272335+efdf6de9 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Issue #2730 - Media Plugin changes to add support for FIFO capture card playback to VLC Player (route messages to VLC Player if it exists) -TSCHAK&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue #2729, #2730 - Implement FIFO device playback for local devices similar to file playback. (TBD: recompile VLC with PVR functionality), also multi-room playback. VLC Player is now in beta. -TSCHAK&lt;br /&gt;
* lmce-vlc-plugin (874,875) - Issue #2729 - Implement multi-room playback, VLC sync listener on core, etc. VLC functionality is now beta. -TSCHAK&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201702201438+325cc736 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix for multiple cameras and Get Image command&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue 2727, Issue 2728 - Trick play overhaul and fix audio glitches when trick play is used. &lt;br /&gt;
* pluto-boot-scripts (234) - SetupAudioVideo.sh - slight change to libvlc.conf so that trick play OSD works.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1204-1404-1604/amd64 c20633ff ==&lt;br /&gt;
* pluto-website-admin (220) - Added the case for section energyGraph and sipConf, fixed permissions for mysql asteriskuser, add sql credentials for myth, change MYSQL_NUM to MYSQLI_NUM&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1404/amd64 a7c10426 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add backports so 1204 diskless create works&lt;br /&gt;
* lmce-oauth2-server (668) - initial build of lmce oauth2 server for cloud interfacing&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404/1604 i386 - 1404x64 - 201611190055+fee90f43 ==&lt;br /&gt;
* pluto-boot-scripts (234) - database upgrades&lt;br /&gt;
* pluto-orbitergen (226,227) - database upgrades&lt;br /&gt;
* pluto-pluto-main-db (201,237) - database upgrades&lt;br /&gt;
* pluto-pluto-security-db (278,277) - database upgrades&lt;br /&gt;
* lmce-asterisk (replacement) - database upgrades&lt;br /&gt;
* pluto-system-database (211) - database upgrades&lt;br /&gt;
* pluto-local-database (214) - database upgrades&lt;br /&gt;
* pluto-security-database (256) - database upgrades&lt;br /&gt;
* pluto-telecom-database (472) - database upgrades&lt;br /&gt;
* pluto-media-database (233) - database upgrades&lt;br /&gt;
* pluto-database-settings (407) - database upgrades&lt;br /&gt;
* pluto-sqlcvs (212,213) - database upgrades&lt;br /&gt;
* pluto-std-plugins (116,135) - database upgrades&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609281853+9638f5bc ==&lt;br /&gt;
* pluto-website-admin (220) - #2705 fixed syntax error.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609271106+39103855 ==&lt;br /&gt;
* pluto-website-admin (220) - Update firewall.php GUI change some fields where reset to the default values. now the db data is honored.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** don&#039;t create initramfs for Raspbian Jessie diskless filesystems.&lt;br /&gt;
** ensure firstboot runs on diskless Jessie RPis.&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** stop/start rather than restart dhcp server, it&#039;s like nuking the site from orbit... only way to be sure.&lt;br /&gt;
** Firewall blocks udp 1900 UpNP traffic from externalinterface.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609172308+325de35d ==&lt;br /&gt;
* lmce-autotag (780, 781) linuxmceTag - fix comparison issue with media type.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609131230+5eaa4671/201609131753+5eaa4671 ==&lt;br /&gt;
* pluto-boot-scripts (234) - send dhcp vendor specific options only to wired raspberry pis.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 201609102226+fda3da63 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** rpi native pxe additions/updates&lt;br /&gt;
** extend startup timeout when booting under systemd&lt;br /&gt;
* lmce-diskless-tools (627,628) - rpi native pxe additions/updates&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DT updates for rpi native pxe&lt;br /&gt;
** add Serial Number Device Data to RPi DTs&lt;br /&gt;
** sets default PK_Distro to 22 (jessie) for RPi DTs&lt;br /&gt;
** new device data for &amp;quot;Standard Energy Meter&amp;quot;&lt;br /&gt;
* pluto-std-plugins (116,135)&lt;br /&gt;
** stores energy reading in state field for Standard Energy Meter&lt;br /&gt;
** fixes dcerouter crash when searching media&lt;br /&gt;
* pluto-updatemedia (405,406) - fix segfault when a dir is attempting to be tagged directly (without a .id3)&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - don&#039;t fail pkg install if simplephone is not running.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-i386 - 1404-i386/amd64 201607240235+899786ab ==&lt;br /&gt;
* pluto-website-admin (220) - Mysqli_real_escape_string did not work. a start with ipv6 firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/i386 201607202218+14cba09a ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) - Stream Bouncing, Additional settings for location, removed debug output, queue functionality.&lt;br /&gt;
&lt;br /&gt;
== Update 201607181902+d4cec1a0 1404-i386/amd64 - 1204-i386 ==&lt;br /&gt;
* pluto-website-admin - Update to qOrbiterGenerator.php for newer PHP version&lt;br /&gt;
&lt;br /&gt;
== Update 201607161239+6d72c3f9 1404-i386/amd64 1204-i386 ==&lt;br /&gt;
* pluto-website-admin (220) - #2678 fix Warning: Invalid argument supplied for foreach() in /var/www/lmce-admin/include/dhcpd-tools/DHCPd-parse.php on line 113&lt;br /&gt;
* pluto-boot-script&lt;br /&gt;
&lt;br /&gt;
== Update 201607151016+5b5adba3 1404/i386 &amp;amp; amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule use another escape method.&lt;br /&gt;
&lt;br /&gt;
== Update 201607122332+f0fc9c6b 1404/i386 ==&lt;br /&gt;
* pluto-boot-scripts (234) - fix #2684 clients cannot access internet when firewall is disabled. &lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule.&lt;br /&gt;
&lt;br /&gt;
== Update 201607050613+601c67da 1404-i386/amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - more fixes to the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update trusty i386/amd64 201606301955+614dfa7b ==&lt;br /&gt;
* pluto-website-admin (220) - fix for outside access port 443 not uncheckable.&lt;br /&gt;
* pluto-boot-scripts (234) - fix for not dele rules from iptables from outsideAccess.php&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201606201908+31b25c52 ==&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** unicode reading/writing working properly&lt;br /&gt;
** coverart writing to tags working properly&lt;br /&gt;
** .id3 files handled by taglib instead of id3lib.&lt;br /&gt;
** General Object Frame (GEOB) reading/writing working properly (all lmce attributes are stored in id3v2 GEOB tags for .id3/.mp3 files)&lt;br /&gt;
* pluto-website-admin (220) - more updates for mysql -&amp;gt; mysqli conversion&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201605312323+08fb8202 ==&lt;br /&gt;
* pluto-website-admin (220) - fix Text Command button to honor parameters from Screen_CommandParameter&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller to fix spamming of logs with constant updates of device data.&lt;br /&gt;
&lt;br /&gt;
== Update trusty-i386/amd64 201605310531+04df53f5 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - get the stream uri from onvif camera and save it in a device data for use by other devices&lt;br /&gt;
* pluto-website-admin (220) - adate to adodb 5.20.4 and change db driver from mysql to mysqli&lt;br /&gt;
* pluto-updatemedia (405,406) - tag writing/deletion of values update&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201605261039+410242d2 ==&lt;br /&gt;
* pluto-media-database (233) - remove FatGroupBy query as it is massive and no longer required&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** FIX UpdateMedia not detecting changes in files on disk.  Fixes: UpdateMedia not reading modification times properly.&lt;br /&gt;
** improve image reading/writing for mp3/mp4 files, add image handling for asf/wma, improve track art-&amp;gt;performer/album artist matching.&lt;br /&gt;
** don&#039;t add network shares to inotify watch list&lt;br /&gt;
* pluto-system-database (211) - new qml-* pkg definitions for qorbiter&lt;br /&gt;
* pluto-plutoutils (196,197) - add fn&#039; to determine filesystem type of a file&lt;br /&gt;
* lmce-disked-interactor (897,898) - make sure we see the core and have an IP prior to attempting contact&lt;br /&gt;
* pluto-bootscripts (234) - make sure we see the core prior to continuing to boot an MD&lt;br /&gt;
* pluto-website-admin (220) - various fixes in the media page&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 - 201605171740 c6d63dc6 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3, ogg, flac, mp4, wv, wav, oga, mpc, spx, opus, tta, m4a, m4r, m4p, 3g2, m4v, wma, asf, aif, aiff, afc, aifc, ape, s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64  201605131052+2542a526 ==&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - udev rule to ignore usbhid portion of device, permits orbiter to enter screensaver&lt;br /&gt;
* pluto-bootscripts (234) - permit devices that have died 50 times to attempt to restart after a router reload. Firewall fix for manual defined chains.&lt;br /&gt;
* pluto-sound-card-scripts (579) - don&#039;t assume cardid=1, determine phoenix cardid from aplay.&lt;br /&gt;
* pluto-media-database (233) - additional AttributeType &amp;quot;Album Artist&amp;quot;&lt;br /&gt;
* lmce-media-identifier (931,932) - updates for Album Artist tag.&lt;br /&gt;
* pluto-orbiter (119,138) - updates for Album Artist tag.&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** updates for Album Artist tag&lt;br /&gt;
** fix mainMediaFileSync.php. OutsideAccess page showing the options (again). &lt;br /&gt;
** And typo fixes for issue #2643. &lt;br /&gt;
** Firewall page reload issue 2636#. Firewall gui do not show &amp;quot;NULL&amp;quot;.&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3:ogg:flac:mp4:wv:wav::oga:mpc:spx:opus:tta:m4a:m4r:m4p:3g2:m4v:wma:asf:aif:aiff:afc:aifc:ape:s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update jessie 20160427 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for RPi&lt;br /&gt;
* lmce-disked-md-rpi2 (889) - +x firstboot_md_rpi2 to ensure it&#039;s picked up properly&lt;br /&gt;
&lt;br /&gt;
== Update jessie 201604130947+0083d387 ==&lt;br /&gt;
== Update 1204/1404-i386/amd64 201604101031-0b47a986 ==&lt;br /&gt;
* pluto-website-admin, pluto-boot-scripts (220,234) - Firewall Fixes for GUI and inner working of the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603251155+a1c0f6ea ==&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - File view implemented. Fixed not being able to leave resume menu.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603222119+336464d8 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller  to fix floorplan / status being improperly updated.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t mount optical discs as HDDs&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201603220706+c3c4b899 ==&lt;br /&gt;
* lmce-md-meta (450) - for some reason this is not in the main repo&lt;br /&gt;
* lmce-media-identifier - fixed for libcdio&lt;br /&gt;
&lt;br /&gt;
== Update jessie-rpi 60faa181 ==&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - adds video resizing so UI1 can be exposed while video is playing.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 armhf 31c5d994 ==&lt;br /&gt;
== Update 1404 i386 52e39875 ==&lt;br /&gt;
* pluto-storage-devices (533) - fix ntfs detection&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 - 49a8cbf1 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - a little better device to device template mapping&lt;br /&gt;
* pluto-website-admin (220) - fix adv.zwave page and adding secure devices&lt;br /&gt;
* lmce-disked-* - update the disked md/mid meta/base/device pkgs, specific fixes for 1404 joggler&lt;br /&gt;
* lmce-json-plugin (876,877) - first time addition to the main repo&lt;br /&gt;
* libdvdid0 (replacement) - first time addition to the repo, for use by Media Identifier&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - enable disabling internal volume control, similar to how logitechmediaserver does&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1404(armhf)/jessie(rpi)-a84db86f ==&lt;br /&gt;
* lmce-launch-manager (298,299) - only update squeeze devices when running on the core, redundant elsewhere.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404-87954508 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t fail if dvdcss2 cannot be automatically installed.&lt;br /&gt;
* pluto-hald (529,530) - reinstate tty detection, seperate from usb-serial, use direct parent for udi naming.&lt;br /&gt;
* pluto-boot-scripts (234) - disable buildall, the script doesn&#039;t run so why waste time creating it.&lt;br /&gt;
* lmce-launch-manager (298,299)&lt;br /&gt;
** update squeezebox players on router reloads from Launch_Manager&lt;br /&gt;
** call Config_Device_Changes in startCoreServices to ensure everything gets its&#039; Need Configure flag reset.&lt;br /&gt;
&lt;br /&gt;
== Update a332f49a ==&lt;br /&gt;
* lmce-install-scripts (391) - fix missing quote in MD installation.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix missing &#039;fi&#039; in BootMessage.sh&lt;br /&gt;
** fix usb.1 system serial port listing/translating&lt;br /&gt;
* lmce-media-identifier (931,932) - fix segfault, CDs are identified, cd-ripping functional again&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** prioritize new conf dir over old conf dir, fix install on systems upgraded from 1204-&amp;gt;1404&lt;br /&gt;
** redirect mythweb to html/mythweb&lt;br /&gt;
* pluto-hald (529,530) - updates to serial port naming, specifically for odroid.&lt;br /&gt;
* pluto-storage-devices (533) - fix mounted drive detection and add detection for drives mounted in /proc/cmdline like rpi.&lt;br /&gt;
&lt;br /&gt;
== Update 1204=201602080446+2028f850 &amp;lt;br&amp;gt; 1404=201602071815+c31bc44f ==&lt;br /&gt;
* lmce-install-scripts (391)&lt;br /&gt;
** enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
* lmce-core (888) - enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
* pluto-storage-devices (533) - redo StorageDevices_Radar using blkid for internal HDD identification.  /dev/disk/by-path/ is not present anymore.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
** new VerifyDistro.sh script and call the script on boot.&lt;br /&gt;
*** Preventative mostly.  Intended to ease pain for those that upgrade distros.&lt;br /&gt;
*** Ensure child devices, onscreen orbiter, have the proper PK_Distro set.&lt;br /&gt;
&lt;br /&gt;
== Update 296fdcd3 ==&lt;br /&gt;
* pluto-website-admin (220) - fix depends versioning&lt;br /&gt;
* pluto-hald (529,530) - fix depends versioning&lt;br /&gt;
* pluto-boot-scripts (234) - fix depends versioning&lt;br /&gt;
* pluto-system-database (211) - fix depends versioning&lt;br /&gt;
* pluto-orbitergen (226,227) - fix depends versioning&lt;br /&gt;
* lmce-disked-md-base (801) - fix depends versioning&lt;br /&gt;
* lmce-install-scripts (391) - fix depends versioning&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix depends versioning&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix depends versioning&lt;br /&gt;
* lmce-datalogger-plugin (686,687) - fix depends versioning &lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix depends versioning&lt;br /&gt;
&lt;br /&gt;
== Update f3a444c0 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** use newer .sh script rather than obsolete .pl script for dialplan creation&lt;br /&gt;
** fix Directory listing on cisco phones&lt;br /&gt;
** fix delete buttons on internet radio page.&lt;br /&gt;
* pluto-hald (529,530)&lt;br /&gt;
** add &#039;usb&#039; to &#039;pci&#039; and &#039;platform&#039; as valid bus addresses&lt;br /&gt;
** permit adding of usb devices with usb_serial or tty children&lt;br /&gt;
* pluto-boot-scripts (234) - update SetupAudioVideo.sh to more reliably address nvidia hdmi audio outputs&lt;br /&gt;
* lmce-asterisk (replacement) - live_dangerously for now to get all the necessary Voicemail modules to load&lt;br /&gt;
* pluto-system-database (211) - new DD Number of jobs for orbiter plug-in/orbitergen&lt;br /&gt;
* pluto-boot-scripts (234) - updates to RegenOrbiter scripts for parallel job queued orbiter generation.&lt;br /&gt;
* pluto-orbitergen (226,227) - new depends on GNU parallel&lt;br /&gt;
* lmce-disked-md-base (801) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* lmce-install-scripts (391) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - remove hardcoded ip address, get from db instead.&lt;br /&gt;
* lmce-diskless-tools (627,628) - only run UpdateDebCache.sh if it is executable&lt;br /&gt;
* lmce-datalog-plugin(686,687) - fix pear install command in postinst&lt;br /&gt;
* lmce-advanced-ip-camera(812,813) - add basic onvif support (snapshot,PTZ)&lt;br /&gt;
&lt;br /&gt;
== Update 31792 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of new External_Media_Identifier, testing CDDB ids&lt;br /&gt;
&lt;br /&gt;
== Update 31783 ==&lt;br /&gt;
* pluto-libserial (190,191) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-dcecommon (192,193) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-irbase (194,195) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-plutoutils (196,197) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-vipshared (199,200) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-serializeclass (198,238) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-libbd (239,240) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-ra (247,248) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-main-db (201,237) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-media-db (254,255) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-security-db (278,277) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-sdl-helpers (346,347) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-messagetrans (398,401) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-game-db (675,676) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-windowutils (677,678) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-datalog-db (688,689) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
&lt;br /&gt;
== Update 31782 ==&lt;br /&gt;
* pluto-std-plugins - fix FK_File search inside Attribute in Media_Plugin&lt;br /&gt;
&lt;br /&gt;
== Update 31774 ==&lt;br /&gt;
* lmce-disked-mid-base (899) - fix error in postinst&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come (this should be in but apt-get is getting 404 errors)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add &amp;quot;remove failed node&amp;quot; command&lt;br /&gt;
* pluto-website-admin - add &amp;quot;remove failed node&amp;quot; command for zwave advanced page&lt;br /&gt;
&lt;br /&gt;
== Update 31760 ==&lt;br /&gt;
* lmce-disked-md-base (801) - fix another error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31757 ==&lt;br /&gt;
* lmce-core (888) - overwrite AutostartCore conf value&lt;br /&gt;
* lmce-md-meta (450) - overwrite AutostartMedia conf value&lt;br /&gt;
* lmce-mid-meta (962) - missing deb&lt;br /&gt;
* lmce-hybrid (769) - exit 0 in postinst, just to be sure&lt;br /&gt;
* lmce-disked-md-base (801) - fix error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31754 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - reconnect before send&lt;br /&gt;
&lt;br /&gt;
== Update 31752 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - remove hard coded caller id &#039;Cherryhomes, Tho&#039;, use incoming caller id.&lt;br /&gt;
&lt;br /&gt;
== Update 31750 ==&lt;br /&gt;
* pluto-website-admin (220) - fix postinst error notice on precise.&lt;br /&gt;
* pluto-boot-scripts (234) - (re)start asterisk, otherwise configuration doesn&#039;t occur and sip phones cannot register&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - force-reload apache2 after disabling mythbuntu sites&lt;br /&gt;
* lmce-md-meta (450) - don&#039;t overwrite conf values that are already set&lt;br /&gt;
* *openzwave* (replacement) - version bump, upgrade fixes to upstream files&lt;br /&gt;
&lt;br /&gt;
== Update 31744 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come&lt;br /&gt;
&lt;br /&gt;
== Update 31742 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Gui changes to not confuse people. &lt;br /&gt;
** outsideaccess works together with the firewall. &lt;br /&gt;
** phonelines note on protocol for meaning of &amp;quot;SPA&amp;quot; and a status for this protocol setting, port can be changed if needed else it will be the default (5060).&lt;br /&gt;
&lt;br /&gt;
== Update 31739 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix absolute timed events&lt;br /&gt;
&lt;br /&gt;
== Update 31723 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix nfs-premount script in default diskless image.&lt;br /&gt;
* lmce-dlna(842,843) - compatibility fixes&lt;br /&gt;
* lmce-install-scripts (391) - generate ssh keys so openssh-server can accept connections&lt;br /&gt;
* pluto-createdevice (303,304) - hide errors, specifically during initial package postinst&lt;br /&gt;
* lmce-cec-adaptor (871,872) - fix cec remotes not getting to lmce&lt;br /&gt;
&lt;br /&gt;
== Update 31693 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - Fixes #2530 - fix errors in mythtvdb synchronization scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31686 ==&lt;br /&gt;
* lmce-install-scripts (391) - deal with firstboot stuffenz&lt;br /&gt;
* pluto-system-database (211) - add proxy orbiter DT depends for generic web device&lt;br /&gt;
* pluto-website-admin (220) - order by photo file name in screen saver/photo browser&lt;br /&gt;
* pluto-boot-scripts (234) - try ubiquity before anything else, and reboot after the normal firstboot - breaks live boot on dvd atm&lt;br /&gt;
* lmce-diskless-tools (627,628) - permit i386 diskless image building on amd64 cores, ensure processes are killed in chroot before unmounting (deals with systemd for now)&lt;br /&gt;
&lt;br /&gt;
== Update 31660 ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) &lt;br /&gt;
**PS3 control screen, fix layout issue. adds seperate button group (triangle, circle, etc) and navigation arrows. Also adds power off button to properly exit screen&lt;br /&gt;
* pluto-website-admin (220) - prevent creation of extra &#039;blank&#039; network interfaces&lt;br /&gt;
&lt;br /&gt;
== Update 31655 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - close connection after use&lt;br /&gt;
* pluto-website-admin (220) - fill ServerName var if it is unset, not if it is set.&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - unify service control&lt;br /&gt;
* pluto-boot-scripts (234) - unify service control&lt;br /&gt;
* pluto-dhcpd-plugin (302) - unify service control&lt;br /&gt;
* pluto-disk-monitor (554) - unify service control&lt;br /&gt;
* pluto-mythtv-player (133,152) - unify service control&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - unify service control&lt;br /&gt;
* pluto-raid-tools (617) - unify service control&lt;br /&gt;
* pluto-storage-devices (533) - unify service control&lt;br /&gt;
* lmce-update-system (650,651) - unify service control&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - unify service control&lt;br /&gt;
* pluto-vdr-plugin (466,467) - unify service control&lt;br /&gt;
* pluto-vdr (468,469) - unify service control&lt;br /&gt;
* pluto-database-settings (407) - unify service control&lt;br /&gt;
* lmce-asterisk (replacement) - unify service control&lt;br /&gt;
* lmce-diskless-tools (627,628) - unify service control&lt;br /&gt;
* lmce-install-scripts (391) - unify service control&lt;br /&gt;
* pluto-updatemedia (405,406) - unify service control&lt;br /&gt;
* pluto-newmdinteractor (538,539) - unify service control&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - Fix size issues, floorplan popups.&lt;br /&gt;
&lt;br /&gt;
== Update 31621 ==&lt;br /&gt;
* pluto-mythtv-player (133,152) - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 31618 ==&lt;br /&gt;
* lmce-asterisk (replacement) - update db for chan_sccp-v4.2 and fix bug requiring manual asterisk reload on boot&lt;br /&gt;
&lt;br /&gt;
== Update 31615 ==&lt;br /&gt;
* pluto-* - rebuild with new libraries&lt;br /&gt;
* lmce-* - rebuild with new libraries&lt;br /&gt;
&lt;br /&gt;
== Update 31606 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix EPG data on orbiters, myth stores everything in UTC now.&lt;br /&gt;
* pluto-pluto-main-db (201,237) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-media-db (254,255) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-security-db (277,278) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-datalog-db (688,689) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-game-db (675,676) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-updateentarea (341,342) - don&#039;t send empty play command when resetting alarm&lt;br /&gt;
&lt;br /&gt;
== Update 31580 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - use bypass-event to avoid watching media events when playing alerts&lt;br /&gt;
* pluto-updateentarea (341,342) - send bypass-event with security event commands&lt;br /&gt;
* libcec3 debs (replacement) - removes conflict data with libcec2&lt;br /&gt;
&lt;br /&gt;
== Update 31575 ==&lt;br /&gt;
* lmce-asterisk (replacement) - play back alert notification file&lt;br /&gt;
* pluto-std-plugins (116,135) - create alert notification file with correct format&lt;br /&gt;
* pluto-boot-scripts (234) - fixes for nvidia drivers on precise, upgrades to nvidia-340&lt;br /&gt;
* lmce-avwizard-sounds (replacement) - don&#039;t copy fakeroot files (it is redundant it is)&lt;br /&gt;
* video-wizard-videos (replacement) - deb is back to normal size, not 2x&lt;br /&gt;
&lt;br /&gt;
== Update 31553 ==&lt;br /&gt;
* pluto-website-admin (220) - fix error that wipes out the apache2.conf&lt;br /&gt;
* pluto-hald (529,530) - fix segfaults with firewire hardware&lt;br /&gt;
&lt;br /&gt;
== Update 31547 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some API changes in OZW 1.3, more device template mappings&lt;br /&gt;
* pluto-boot-scripts (234) - typo fix for nvidia drivers&lt;br /&gt;
* lmce-disked-md-base (801) - set hostname on disked MDs, set timezone on disked MDs&lt;br /&gt;
* lmce-install-scripts (391) - set hostname on disked MDs, set timezone on disked MDs &lt;br /&gt;
* pluto-website-admin was generated---&amp;gt; lmce-website-admin (220) - set apache2 ServerName to silence error on boot&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates, revert to ruby 1.8&lt;br /&gt;
* pluto-generic-serial-device (307,335) - admit defeat for now, revert to ruby 1.8&lt;br /&gt;
&lt;br /&gt;
== Update 31533 ==&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31520 ==&lt;br /&gt;
* chan-sccp_v4.2 (replacement) - Upgrad asterisk SCCP channel driver to newest version&lt;br /&gt;
* pluto-vdr-plugin (466,467) - implement background loading of EPG from VDR to avoid crashes due to commands not completing on time&lt;br /&gt;
* pluto-boot-scripts (234) - some logic changes and added messages for video driver install debugging&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - link new channels dir to old channels dir for backwards compatibility&lt;br /&gt;
&lt;br /&gt;
== Update 31503 ==&lt;br /&gt;
* *zwave* (replacement) - new upstream openzwave version 1.3.1224&lt;br /&gt;
* lmce-zwave-ozw(505,506) - build against new libopenzwave1.3&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates&lt;br /&gt;
* lmce-disked-interactor (897,898) - make disked interactor aware of wheezy and jessie.&lt;br /&gt;
&lt;br /&gt;
== Update 31500 ==&lt;br /&gt;
* *myth* (replacement) - fix depends on non-existent packages&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst - verified installing now&lt;br /&gt;
* pluto-std-plugins (116,135) - Use integer comparison for brightness state&lt;br /&gt;
&lt;br /&gt;
== Update 31491 ==&lt;br /&gt;
* lmce-avwizard-skin-basic (replacement) - fix packaging of avwizard skin&lt;br /&gt;
* *myth* (replacement) - mythtv 0.27.5+fixes with Schedules Direct fix included&lt;br /&gt;
* *asterisk* (replacement) - asterisk 11.7 backport from trusty&lt;br /&gt;
* libical* (replacement) - for asterisk 11.7&lt;br /&gt;
* *cec* (replacement) - libcec3&lt;br /&gt;
* libplatform* (replacement) for libcec3&lt;br /&gt;
* lmce-cec-adaptor (871,872) - build against libcec3&lt;br /&gt;
* lmce-mediatomb (702) - fix pkg installation&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - update protocol version and secret word (shhh) for 0.27.5+fixes&lt;br /&gt;
* lmce-diskless-tools (627,628) - remove call to obsolete script in Diskless_Setup.sh&lt;br /&gt;
* pluto-vdr-plugin (466,467) - return full EPG (used in qOrbiter EPG Grid), improve communication speed with SVDRP&lt;br /&gt;
* pluto-slim-server-streamer (289,290) - emit time code event, fix duration parsing&lt;br /&gt;
* pluto-boot-scripts (234) - fix headless booting, update 1404 nvidia driver&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* lmce-md-meta (450) - add depends on alsa-utils&lt;br /&gt;
* pluto-website-admin (220) - Fix cdrviewer (Call Details Records) to accept SSL conections as well, firewall gui change to set Offline rules in red as they are not executed.&lt;br /&gt;
* pluto-app-server (126,145)- new poweroff mode I for ignore, since N is already in use&lt;br /&gt;
&lt;br /&gt;
== Update 31420 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add depends on pluto-boot-scripts for deb cache script&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31411 == &lt;br /&gt;
* pluto-avwizard (555,556) - fix depends on avwizard skins basic, should no longer care about version&lt;br /&gt;
* pluto-boot-scripts (234) - more explicity logic for core only booting, fix startup script db errors&lt;br /&gt;
* lmce-update-system (650,651) - remove and disable old init.d script from /etc/init.d&lt;br /&gt;
* pluto-plutodhcp (330,491) - depends on apparmor&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-dhcpd-plugin (302) - remove hardcoded IP addresses from configure scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31387 ==&lt;br /&gt;
* lmce-weather-plugin - make change to allow for tonight&#039;s forecast data (TSCHAK)&lt;br /&gt;
* lmce-asterisk (replacement) - remove obsolete phonetic engines and replace with espeak, voices remain the same&lt;br /&gt;
* mbrola (replacement) - base mbrola pkg for mbrola voices (add armhf binary)&lt;br /&gt;
* pluto-asterisk (270,271) - generate fr and de voicemail menus with espeak now&lt;br /&gt;
* lmce-core (888) - add depends on iptables&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31378 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Start_KDE.sh ownership fix, AV config updates&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-avwizard (555,556) - update pkgs &amp;amp; depends &amp;amp; config scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - do not run update deb_cache during dvd creation&lt;br /&gt;
* pluto-x-scripts (520) - fixups to Xconfigure.sh&lt;br /&gt;
&lt;br /&gt;
== Update 31356 ==&lt;br /&gt;
* pluto-system-database (211) - update depends&lt;br /&gt;
* pluto-orbiter (119,138) - update depends&lt;br /&gt;
* lmce-diskless-tools (627,628) - speedup dpkg in diskless create, fix missing quotes&lt;br /&gt;
&lt;br /&gt;
== Update 31352 ==&lt;br /&gt;
* pluto-motion-wrapper - more config file location fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 31351 ==&lt;br /&gt;
* pluto-boot-scripts (234) - change service &#039;nis&#039; to &#039;ypserv&#039;, nis is no longer a service name&lt;br /&gt;
* pluto-website-admin (220) - remove &#039;idiot&#039; text, let&#039;s be nice to people.&lt;br /&gt;
* lmce-core (888) - do not create and config under ubiquity&lt;br /&gt;
* lmce-md-meta (450) - do not create and config under ubiquity&lt;br /&gt;
* motion (replacement) - fix bad config file setting in rules&lt;br /&gt;
&lt;br /&gt;
== Update 31337 ==&lt;br /&gt;
* motion (replacement) - new version of motion to match new configuration values generated by linuxmce&lt;br /&gt;
&lt;br /&gt;
== Update 31331 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix for brightness events&lt;br /&gt;
* pluto-boot-scripts (234) - fix kdm disabling, start ubiquity after network config&lt;br /&gt;
* lmce-diskless-tools (627,628) - add upstart overrides for kdm&lt;br /&gt;
* lmce-install-scripts (391) - start ubiquity after network config&lt;br /&gt;
&lt;br /&gt;
== Update 31314 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add missing depends&lt;br /&gt;
&lt;br /&gt;
== Update 31292 ==&lt;br /&gt;
* lmce-core-locator (replacement) - (1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-system-database (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* All .debs created by MakeRelease - removal of all Pre-Depends, everything is now a Depends entry (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
== Update 31228 ==&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-local-database&lt;br /&gt;
&lt;br /&gt;
== Update 31214 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package (not in repo, need build-replacements.sh svn up&#039;d?)&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - preinst/postinst updates&lt;br /&gt;
* pluto-boot-scripts (234) - preinst/postinst updates&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-disked-md-base (801) - firstboot updates&lt;br /&gt;
&lt;br /&gt;
== Update 31187 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package&lt;br /&gt;
* pluto-confirm-dependencies (281,272) - new depends on lmce-install-scripts (fixes unable to apt-get dist-upgrade)&lt;br /&gt;
* lmce-md-meta (450) - new depends on nfs-common, openssh-server and pastebinit&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - update depends, preinst/postinst&lt;br /&gt;
* pluto-boot-scripts (234) - depends &amp;amp; preinst/postinst updates&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - add override mythweb defaults in pkg preinst&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - update depends&lt;br /&gt;
&lt;br /&gt;
== Update 31133 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** enable WakeMDs.sh to wake any halted MDs.&lt;br /&gt;
** consolidate all boot script launching to /etc/init.d/linuxmce&lt;br /&gt;
* pluto-avwizard (555,556) - moves start script to /usr/pluto/bin, called by /etc/init.d/linuxmce now&lt;br /&gt;
* lmce-update-system (650,651) - removes init.d script, called by /etc/init.d/linuxmce now&lt;br /&gt;
* pluto-website-admin (220) - GUI changes on network settings if an bridge is configured on the db.&lt;br /&gt;
* lmce-core (888) - depend on pluto-asterisk, lmce-asterisk, lmce-install-scripts&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* pluto-generic-serial-device (307,335) - wildshot attempt at fixing segfaults&lt;br /&gt;
&lt;br /&gt;
== Update 31103 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** Network bridging now possible  for wifi AP to have the same network as the local lan. &lt;br /&gt;
** ipv6 on/off for network interfaces. Read multiple ipv6 interfaces from the db.&lt;br /&gt;
** re-enable HaltMDs.&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* libqhttpserver (912) needed for linuxmce nvr&lt;br /&gt;
* lmce-launch-manager - (298,299) - ?&lt;br /&gt;
&lt;br /&gt;
== Update 31087 ==&lt;br /&gt;
* lmce-weather (838,839) - Fix a serious bug in getconfig where incorrect configuration device data would crash program. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 31083 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes #2422, advanced zwave page broken in chrome&lt;br /&gt;
* pluto-system-database (211) - thumbnail screen fixes&lt;br /&gt;
&lt;br /&gt;
== Update 31074 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** setEa2.php - Fix settings for creating entertain area.&lt;br /&gt;
** qOrbiterGenerator.php - Fix erroneous EA creation by removing it.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Fix incorrect setting for enabling / disabling motion.&lt;br /&gt;
&lt;br /&gt;
== Update 31069 ==&lt;br /&gt;
* pluto-website-admin (220) - setEa2.php Fix settings for creating entertain area.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Initial build.&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (881) - Large update of skins and internals.&lt;br /&gt;
&lt;br /&gt;
== Update 31061 ==&lt;br /&gt;
* lmce-squeezeslave (762) - Add configuration DD to command line&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DB package updates&lt;br /&gt;
** restore previous video remote layout with Options button to select subtitles/audio tracks/video tracks from a datagrid list.&lt;br /&gt;
* pluto-website-admin (220) - firewall.php edit rules for non advanced firewall and some other small fixes.&lt;br /&gt;
* lmce-asterisk (replacement) - sip config modules to avoid autoload.&lt;br /&gt;
&lt;br /&gt;
== Update 31051 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** firewall.php not adding rules now fixet.&lt;br /&gt;
** Test buttons for Hue lights&lt;br /&gt;
** Security outsideAccess page now works nicely with the new firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 31044 ==&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
&lt;br /&gt;
== Update 31031 ==&lt;br /&gt;
* pluto-website-admin (220) - firewall.php after a strange fault and some layout fixes.&lt;br /&gt;
* lmce-mediatomb (702) - don&#039;t assume mediatomb is already running.&lt;br /&gt;
&lt;br /&gt;
== Update 31013 ==&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* pluto-boot-scripts (234) - Network Parameter count for more interfaces set and Network firewall accepting postrouting Masquerade  for other network interfaces.&lt;br /&gt;
&lt;br /&gt;
== Update 30985 ==&lt;br /&gt;
* pluto-website-admin (220) - #2268 fail2ban integration logging failed user login attempt.&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** #2268 fail2ban script not insert existing rules to our db.&lt;br /&gt;
** Support for audio output select on rpi via web admin&lt;br /&gt;
* lmce-diskless-tools (627,628) - update syslinux depends to syslinux-common&lt;br /&gt;
* lmce-omx-player (829,830) - Honour audio output selection of rpiMD&lt;br /&gt;
* lmce-squeezeslave (762) - Fix detection for squeezelite&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - further fixes&lt;br /&gt;
* lmce-usb-gamepad (795,796) - rewrite the whole main loop to suck less. hold-down repeats work, input handling more sane.&lt;br /&gt;
&lt;br /&gt;
== Update 30926 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Fix for #2368 insert firewall rules en #2064 edit and delete chains (except some system chains).&lt;br /&gt;
** Support for brightness based events.&lt;br /&gt;
* pluto-std-plugins (116,135) - Support for brightness based events&lt;br /&gt;
* lmce-omx-plugin (831,832) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** Database additions for XBOX 360 Gamepad (device templates, package)&lt;br /&gt;
** Modification of OMX Plugin to allow priority to be changed.&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - the XBOX 360 Gamepad driver, uses xboxdrv userspace driver.&lt;br /&gt;
* lmce-usb-gamepad (795,796) - additions here for above XBOX 360 Gamepad support.&lt;br /&gt;
&lt;br /&gt;
== Update 30862 ==&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress can now read latest files per linuxmce user.&lt;br /&gt;
&lt;br /&gt;
== Update 30860 ==&lt;br /&gt;
* lmce-weather (838,839) - some fixes by cfernandes&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress.&lt;br /&gt;
* pluto-boot-scripts (234) - more mail fixes&lt;br /&gt;
&lt;br /&gt;
== Update 30855 ==&lt;br /&gt;
* pluto-vdr, pluto-vdr-plugin - remove hardcoding of core IP and network address, but depend on the pluto.conf entries for DCERouter.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location (again)&lt;br /&gt;
* lmce-diskless-tools - stop copying apt configs from the core&lt;br /&gt;
* pluto-boot-scripts - fix postfix setup #2393&lt;br /&gt;
&lt;br /&gt;
== Update 30841 ==&lt;br /&gt;
* lmce-avwizard-sounds - fix replaces/conflicts data&lt;br /&gt;
* lmce-skins-basic - fix replaces/conflicts data&lt;br /&gt;
* lmce-avwizard-skin-basic - fix replaces/conflicts data&lt;br /&gt;
&lt;br /&gt;
== Update 30383 ==&lt;br /&gt;
* pluto-website-admin (220) - Add Hue lights related test button.&lt;br /&gt;
* pluto-boot-scripts - Add another option --autobackup to PlutoRestorePoint.sh to allow backup of pluto_main only&lt;br /&gt;
&lt;br /&gt;
== Update 30814 ==&lt;br /&gt;
* pluto-Boot-scripts - Firewall order by place and PK_Firewall to let rules stay on top on the middle or on the bottom.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location&lt;br /&gt;
* lmce-hue-controller (862,863) - Fix bug in adding new lights, now adds serial number.&lt;br /&gt;
* pluto-website-admin (220) - Fix oops relating the missing &#039;.&#039; which caused operations/login.php not to work.&lt;br /&gt;
&lt;br /&gt;
== Update 30783 ==&lt;br /&gt;
* lmce-nbd-client-wrapper - new pkg to hold common script&lt;br /&gt;
* pluto-xine-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* lmce-vlc-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* pluto-boot-scripts - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
* pluto-storage-devices - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30777 ==&lt;br /&gt;
* lmce-core - depend on openswan&lt;br /&gt;
* pluto-system-database - pkg updates&lt;br /&gt;
* pluto-boot-scripts - remove check for openswan from bootscript&lt;br /&gt;
* pluto-generic-serial-device - update to ruby 1.9.1&lt;br /&gt;
&lt;br /&gt;
== Update 30773==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller internals to now include polling, so as to make sure floorplan data is accurate. Changes underlying mechanisms for how lights are handled in preparation for extending additional support for Cree lights and sensors devices.&lt;br /&gt;
&lt;br /&gt;
== Update 30767 ==&lt;br /&gt;
* lmce-diskless-tools - update diskless archive name to reflect current compression method xz.&lt;br /&gt;
* pluto-website-admin (220) - updates to internet radio, moves add channels to a seperate page.  Thanks Dap-P!&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
* pluto-vdr - adds missing depends on vdr in trusty&lt;br /&gt;
* lmce-core - update depends to new pkg name lmce-avwizard-sounds&lt;br /&gt;
* pluto-avwizard - update depends to new pkg name lmce-avwizard-skins-basic&lt;br /&gt;
* lmce-clock-screen-saver - make the clock screen saver use the WMController/wmctrl methods for setting window visibility to be compatible with Orbiter. (TSCHAK) (Trusty only)&lt;br /&gt;
* pluto-storage-devices - Make sure that smbpasswd is used to create or update sambahelper&#039;s password (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30726 ==&lt;br /&gt;
* pluto-vdr - VDR player&#039;s package assumed a correctly installed vdr package which includes an entry in /etc/default for vdr. We no longer fail on a missing file.&lt;br /&gt;
&lt;br /&gt;
== Update 30724 ==&lt;br /&gt;
* lmce-weather - updates to weather sources, add OpenWM source.  Thanks SBCC and cfernandes!&lt;br /&gt;
* lmce-skins-* - adds missing telecom icons, updates/adds weather icons&lt;br /&gt;
* lmce-avwizard-sounds - remove extraneous stuff from pkg, reduce pkg size back to normal.  Proper replaces/conflicts/data...&lt;br /&gt;
* lmce-avwizard-skin-basic - Proper replaces/conflicts/data...&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
&lt;br /&gt;
== Update 30718 ==&lt;br /&gt;
* lmce-core - new depends on lmce-skins*&lt;br /&gt;
* lmce-md-meta - add depends on pnp-detection scripts&lt;br /&gt;
* lmce-hybrid - new depends on lmce-skins*&lt;br /&gt;
* pluto-avwizard (556,555) - add pciutils as a depends, still need to deal with multiarch stuff so this will break armhf, we will not update armhf for now, it doesn&#039;t use avwizard but does install it.&lt;br /&gt;
* lmce-diskless-tools - minor diskless create fixups&lt;br /&gt;
* pluto-orbiter - missing depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio script&lt;br /&gt;
* pluto-website-admin (220) - recognize MIDs as top level devices&lt;br /&gt;
* pluto-mythtv-player - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 30628 ==&lt;br /&gt;
* *-database - fix install issues&lt;br /&gt;
&lt;br /&gt;
== Update 30622 ==&lt;br /&gt;
* pluto-orbiterinstallers - fix depends issue&lt;br /&gt;
* pluto-system-database - lots of compat updates&lt;br /&gt;
* lmce-* - lots of compat updates&lt;br /&gt;
* pluto-* - lots of compat updates&lt;br /&gt;
&lt;br /&gt;
== Update 30618 ==&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio scripts&lt;br /&gt;
* pluto-website-admin (220) - updated internet radio page&lt;br /&gt;
&lt;br /&gt;
== Update 30571 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - send &amp;quot;Device is turned on or off&amp;quot; event when appropriate so the corresponding event works as expected&lt;br /&gt;
* lmce-squeezeslave (762) - set to pnp create without prompting&lt;br /&gt;
* lmce-runtime-dependencies (903) - pkg to help consolidate runtime depends.&lt;br /&gt;
* lmce-core (888) - updated depends&lt;br /&gt;
* lmce-md-meta (450)- updated depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated depends&lt;br /&gt;
* pluto-createdevice (303,304) - updated depends&lt;br /&gt;
* lmce-weather(838,839) - fix potential segfault&lt;br /&gt;
* pluto-website-admin (220) - add &amp;quot;replace node&amp;quot; button to advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 30549 ==&lt;br /&gt;
* pluto-mythtv-player - fix misaligned data values during mythtv.txt creation.&lt;br /&gt;
&lt;br /&gt;
== Update 30526 ==&lt;br /&gt;
* lmce-core - new pkg&lt;br /&gt;
* lmce-hybrid - pkg depends changes&lt;br /&gt;
* lmce-md-meta - pkg depends changes&lt;br /&gt;
* pluto-dcerouter - pkg depends changes&lt;br /&gt;
* pluto-photo-screen-saver - pkg depends changes&lt;br /&gt;
* pluto-boot-scripts - pkg depends changes&lt;br /&gt;
* pluto-orbiter - pkg depends changes&lt;br /&gt;
* pluto-simplephone - pkg depends changes&lt;br /&gt;
* pluto-website-admin - pkg depends changes&lt;br /&gt;
* lmce-mythtv-scripts - pkg depends changes&lt;br /&gt;
* pluto-system-database - pkg depends changes&lt;br /&gt;
* lmce-squeezeslave (762) - fix launch script, automatically create associated squeezebox player on the core.&lt;br /&gt;
* pluto-std-plugins - run New_PnP_MD.sh for new MID devices as well.&lt;br /&gt;
* lmce-diskless-tools - don&#039;t fail on invoke-rc.d during diskless create, exit gracefully and continue.&lt;br /&gt;
* pluto-mythtv-player - fix diskless create failures due to old hacks.  more work is needed here overall on mythtv integration.&lt;br /&gt;
&lt;br /&gt;
== Update 30419 ==&lt;br /&gt;
* pluto-slim-server - Make sure to turn off all Squeeze* devices when Slim Server Streamer starts or restarts (so that squeezelite does not hog sound cards.)&lt;br /&gt;
* pluto-hald (529,530) - add device node path to pnpqueue with v4l devices during detection&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - update for new lib version&lt;br /&gt;
&lt;br /&gt;
== Update 30384 ==&lt;br /&gt;
* pluto-confirm-dependencies - depend on pluto-install-scripts.&lt;br /&gt;
* pluto-disk-drive (122,141) - remove hal bits that dealt with old jukebox bugs.&lt;br /&gt;
* pluto-capture-card-scripts (580) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-pnp-detection (562) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-storage-devices (533) - convert autofs from hal to udev.&lt;br /&gt;
* pluto-bootscripts (234) - disable starting the hald since we&#039;re using udev now, remove false &#039;fail&#039; messages during reboot/shutdown&lt;br /&gt;
* pluto-slim-server-streamer - make one tweak (do not delete m_mapStreamsToPlayers entry in CMD_Stop). Streaming now works consistently, properly, with squeezebox devices and their clones. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30354 ==&lt;br /&gt;
* pluto-hald (529,530) - fix attempt to fire event for child device of usb-dongle.&lt;br /&gt;
* pluto-slim-server-streamer - Implement FF/REW (transport) trick-play control for Squeeze* devices. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30341 ==&lt;br /&gt;
* pluto-bootscripst - fixes for PPPoE users to not autostart the external interface.&lt;br /&gt;
* pluto-slim-server-streamer - Fix to power off squeezebox player when stream is not in use. This allows softsqueeze/squeezeslave/squeezelite players to let go of a sound device, when not in use (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30332 ==&lt;br /&gt;
* pluto-orbiter (118,139) - disable old hid device functionality.  Anyone who needs it can request a special build which will be provided at no extra charge. ;)&lt;br /&gt;
* pluto-bootscripts (234) - disable Gamepad Radar, functionality now in hal through udev&lt;br /&gt;
* pluto-avwizard (556,555) - fixes mangling of RemoteCmd when &amp;gt;1 remote is detected.&lt;br /&gt;
* pluto-hal-device-finder (535,536) - update to use udev rather than hal.&lt;br /&gt;
* pluto-hald (529,530) - update to use udev rather than hal.&lt;br /&gt;
* pluto-system-database (211) - updates for new detection method (joystick, cec-adaptor), update dependency data for hal pks to reflect dropping hald and add depends on udev now.&lt;br /&gt;
&lt;br /&gt;
== Update 30219 ==&lt;br /&gt;
* pluto-bootscripts (234) - Fail2ban firewall update script, and missing radioscript.sh.&lt;br /&gt;
* pluto-website-admin - Place set for rules on the firewall and bantime for fail2ban integration.&lt;br /&gt;
* pluto-std-plugins (116,135) - adds heirloom-mailx for &#039;mailx -r&#039; functionality, fixes e-mail in general info plugin&lt;br /&gt;
&lt;br /&gt;
== Update 30068 ==&lt;br /&gt;
* lmce-advanced-ip-camera(813,812) - Fixed high cpu usage if connection to camera can not be made&lt;br /&gt;
&lt;br /&gt;
== Update 30052 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - fix android pkg meta data, need to rebuild all together&lt;br /&gt;
&lt;br /&gt;
== Update 30051 ==&lt;br /&gt;
* pluto-updateentarea (341,342) - use DAY/NIGHT in watching/stopped watching events to make them smarter&lt;br /&gt;
* pluto-std-plugins (116,135) - Implement Get Device Status in General Info Plugin&lt;br /&gt;
* pluto-bootscripts (234) - fix VPN ip up/down&lt;br /&gt;
&lt;br /&gt;
== Update 30025 ==&lt;br /&gt;
* pluto-system-database (211) - column def updates&lt;br /&gt;
* pluto-local-database (214) - new Firewall columns and new VPN columns for Users table.&lt;br /&gt;
&lt;br /&gt;
== Update 30014 ==&lt;br /&gt;
* lmce-transmission-client (852) - fix postinst issue.  (Thanks SBCC)&lt;br /&gt;
== Update 29994 ==&lt;br /&gt;
More VLC Player changes to make it at least somewhat usable, there were some ugly bugs that came to light once i plopped it onto my production system. Right now sound device is plughw:0,3, if you need a different one, change it in the code.  (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* lmce-vlc-player - many little fixes to make it suck less.&lt;br /&gt;
&lt;br /&gt;
== Update 29990 ==&lt;br /&gt;
I am working on the VLC player, and it is breathing enough for basic testing. Please do not use in production environment. There is still a lot of code to write (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - updates for VLC player (TSCHAK)&lt;br /&gt;
* vlc-player (882,884) - Very early alpha developer test of the VLC player. (TSCHAK)&lt;br /&gt;
* vlc-plugin (874,875) - Very alpha developer test of the VLC plugin. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 29984 ==&lt;br /&gt;
* pluto-system-database (211) - fix bad repos in pkgs&lt;br /&gt;
* pluto-website-admin - just because I think it is necessary :-)&lt;br /&gt;
&lt;br /&gt;
== Update 29983 ==&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36939</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36939"/>
		<updated>2017-04-03T04:52:21Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: /* Upcoming fixes... */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the 1204 changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo much easier.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please include the pkg #s to facilitate building on 3x i386 targets in addition to 2x amd64 and 3x armhf targets where full builds are not always practical.  Keep in mind that most packages are referred to by two (2) package numbers from the database, a source package and a binary package.  &amp;quot;Thank you for your co-operation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
* pluto-bootscripts (234) - Typo fix for insert rule to the db. /ppp/ip-up.d/lmce-vpn-up and /ppp/ip-down.d/lmce-vpn-down works now niceley togheter with the new firewall.&lt;br /&gt;
* pluto-system-database (211) - sqlCVS commit to add Imagemagick as dependency to VLC Player, finally squashing that #($#@( start bug! (TSCHAK)&lt;br /&gt;
** Also added ir-keytable depedency to pluto-lirc-wrapper&lt;br /&gt;
** Also added generic cd and dvd icons for External Media Identifier&lt;br /&gt;
* pluto-lirc-wrapper (340,421) - Ensure that ir-keytable is cleared before lircd starts to avoid unusual behavior with remotes that use kernel event subsystem (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - Fix DVD to use cifs instead of smbfs (which has been deprecated for 10 years.)&lt;br /&gt;
* lmce-vlc-player (884,882) - bug fixes for multi room sync&lt;br /&gt;
* lmce-vlc-plugin (874,875) - bug fixes for multi room sync&lt;br /&gt;
* lmce-media-identifier (931,932) - add generic dvd and cd identification if disc can&#039;t be identified by normal means.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201703301804+358c1c45 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fixes Bug #2726 - Media details now work, again.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 - 201703272335+efdf6de9 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Issue #2730 - Media Plugin changes to add support for FIFO capture card playback to VLC Player (route messages to VLC Player if it exists) -TSCHAK&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue #2729, #2730 - Implement FIFO device playback for local devices similar to file playback. (TBD: recompile VLC with PVR functionality), also multi-room playback. VLC Player is now in beta. -TSCHAK&lt;br /&gt;
* lmce-vlc-plugin (874,875) - Issue #2729 - Implement multi-room playback, VLC sync listener on core, etc. VLC functionality is now beta. -TSCHAK&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201702201438+325cc736 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix for multiple cameras and Get Image command&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue 2727, Issue 2728 - Trick play overhaul and fix audio glitches when trick play is used. &lt;br /&gt;
* pluto-boot-scripts (234) - SetupAudioVideo.sh - slight change to libvlc.conf so that trick play OSD works.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1204-1404-1604/amd64 c20633ff ==&lt;br /&gt;
* pluto-website-admin (220) - Added the case for section energyGraph and sipConf, fixed permissions for mysql asteriskuser, add sql credentials for myth, change MYSQL_NUM to MYSQLI_NUM&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1404/amd64 a7c10426 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add backports so 1204 diskless create works&lt;br /&gt;
* lmce-oauth2-server (668) - initial build of lmce oauth2 server for cloud interfacing&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404/1604 i386 - 1404x64 - 201611190055+fee90f43 ==&lt;br /&gt;
* pluto-boot-scripts (234) - database upgrades&lt;br /&gt;
* pluto-orbitergen (226,227) - database upgrades&lt;br /&gt;
* pluto-pluto-main-db (201,237) - database upgrades&lt;br /&gt;
* pluto-pluto-security-db (278,277) - database upgrades&lt;br /&gt;
* lmce-asterisk (replacement) - database upgrades&lt;br /&gt;
* pluto-system-database (211) - database upgrades&lt;br /&gt;
* pluto-local-database (214) - database upgrades&lt;br /&gt;
* pluto-security-database (256) - database upgrades&lt;br /&gt;
* pluto-telecom-database (472) - database upgrades&lt;br /&gt;
* pluto-media-database (233) - database upgrades&lt;br /&gt;
* pluto-database-settings (407) - database upgrades&lt;br /&gt;
* pluto-sqlcvs (212,213) - database upgrades&lt;br /&gt;
* pluto-std-plugins (116,135) - database upgrades&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609281853+9638f5bc ==&lt;br /&gt;
* pluto-website-admin (220) - #2705 fixed syntax error.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609271106+39103855 ==&lt;br /&gt;
* pluto-website-admin (220) - Update firewall.php GUI change some fields where reset to the default values. now the db data is honored.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** don&#039;t create initramfs for Raspbian Jessie diskless filesystems.&lt;br /&gt;
** ensure firstboot runs on diskless Jessie RPis.&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** stop/start rather than restart dhcp server, it&#039;s like nuking the site from orbit... only way to be sure.&lt;br /&gt;
** Firewall blocks udp 1900 UpNP traffic from externalinterface.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609172308+325de35d ==&lt;br /&gt;
* lmce-autotag (780, 781) linuxmceTag - fix comparison issue with media type.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609131230+5eaa4671/201609131753+5eaa4671 ==&lt;br /&gt;
* pluto-boot-scripts (234) - send dhcp vendor specific options only to wired raspberry pis.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 201609102226+fda3da63 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** rpi native pxe additions/updates&lt;br /&gt;
** extend startup timeout when booting under systemd&lt;br /&gt;
* lmce-diskless-tools (627,628) - rpi native pxe additions/updates&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DT updates for rpi native pxe&lt;br /&gt;
** add Serial Number Device Data to RPi DTs&lt;br /&gt;
** sets default PK_Distro to 22 (jessie) for RPi DTs&lt;br /&gt;
** new device data for &amp;quot;Standard Energy Meter&amp;quot;&lt;br /&gt;
* pluto-std-plugins (116,135)&lt;br /&gt;
** stores energy reading in state field for Standard Energy Meter&lt;br /&gt;
** fixes dcerouter crash when searching media&lt;br /&gt;
* pluto-updatemedia (405,406) - fix segfault when a dir is attempting to be tagged directly (without a .id3)&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - don&#039;t fail pkg install if simplephone is not running.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-i386 - 1404-i386/amd64 201607240235+899786ab ==&lt;br /&gt;
* pluto-website-admin (220) - Mysqli_real_escape_string did not work. a start with ipv6 firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/i386 201607202218+14cba09a ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) - Stream Bouncing, Additional settings for location, removed debug output, queue functionality.&lt;br /&gt;
&lt;br /&gt;
== Update 201607181902+d4cec1a0 1404-i386/amd64 - 1204-i386 ==&lt;br /&gt;
* pluto-website-admin - Update to qOrbiterGenerator.php for newer PHP version&lt;br /&gt;
&lt;br /&gt;
== Update 201607161239+6d72c3f9 1404-i386/amd64 1204-i386 ==&lt;br /&gt;
* pluto-website-admin (220) - #2678 fix Warning: Invalid argument supplied for foreach() in /var/www/lmce-admin/include/dhcpd-tools/DHCPd-parse.php on line 113&lt;br /&gt;
* pluto-boot-script&lt;br /&gt;
&lt;br /&gt;
== Update 201607151016+5b5adba3 1404/i386 &amp;amp; amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule use another escape method.&lt;br /&gt;
&lt;br /&gt;
== Update 201607122332+f0fc9c6b 1404/i386 ==&lt;br /&gt;
* pluto-boot-scripts (234) - fix #2684 clients cannot access internet when firewall is disabled. &lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule.&lt;br /&gt;
&lt;br /&gt;
== Update 201607050613+601c67da 1404-i386/amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - more fixes to the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update trusty i386/amd64 201606301955+614dfa7b ==&lt;br /&gt;
* pluto-website-admin (220) - fix for outside access port 443 not uncheckable.&lt;br /&gt;
* pluto-boot-scripts (234) - fix for not dele rules from iptables from outsideAccess.php&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201606201908+31b25c52 ==&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** unicode reading/writing working properly&lt;br /&gt;
** coverart writing to tags working properly&lt;br /&gt;
** .id3 files handled by taglib instead of id3lib.&lt;br /&gt;
** General Object Frame (GEOB) reading/writing working properly (all lmce attributes are stored in id3v2 GEOB tags for .id3/.mp3 files)&lt;br /&gt;
* pluto-website-admin (220) - more updates for mysql -&amp;gt; mysqli conversion&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201605312323+08fb8202 ==&lt;br /&gt;
* pluto-website-admin (220) - fix Text Command button to honor parameters from Screen_CommandParameter&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller to fix spamming of logs with constant updates of device data.&lt;br /&gt;
&lt;br /&gt;
== Update trusty-i386/amd64 201605310531+04df53f5 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - get the stream uri from onvif camera and save it in a device data for use by other devices&lt;br /&gt;
* pluto-website-admin (220) - adate to adodb 5.20.4 and change db driver from mysql to mysqli&lt;br /&gt;
* pluto-updatemedia (405,406) - tag writing/deletion of values update&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201605261039+410242d2 ==&lt;br /&gt;
* pluto-media-database (233) - remove FatGroupBy query as it is massive and no longer required&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** FIX UpdateMedia not detecting changes in files on disk.  Fixes: UpdateMedia not reading modification times properly.&lt;br /&gt;
** improve image reading/writing for mp3/mp4 files, add image handling for asf/wma, improve track art-&amp;gt;performer/album artist matching.&lt;br /&gt;
** don&#039;t add network shares to inotify watch list&lt;br /&gt;
* pluto-system-database (211) - new qml-* pkg definitions for qorbiter&lt;br /&gt;
* pluto-plutoutils (196,197) - add fn&#039; to determine filesystem type of a file&lt;br /&gt;
* lmce-disked-interactor (897,898) - make sure we see the core and have an IP prior to attempting contact&lt;br /&gt;
* pluto-bootscripts (234) - make sure we see the core prior to continuing to boot an MD&lt;br /&gt;
* pluto-website-admin (220) - various fixes in the media page&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 - 201605171740 c6d63dc6 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3, ogg, flac, mp4, wv, wav, oga, mpc, spx, opus, tta, m4a, m4r, m4p, 3g2, m4v, wma, asf, aif, aiff, afc, aifc, ape, s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64  201605131052+2542a526 ==&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - udev rule to ignore usbhid portion of device, permits orbiter to enter screensaver&lt;br /&gt;
* pluto-bootscripts (234) - permit devices that have died 50 times to attempt to restart after a router reload. Firewall fix for manual defined chains.&lt;br /&gt;
* pluto-sound-card-scripts (579) - don&#039;t assume cardid=1, determine phoenix cardid from aplay.&lt;br /&gt;
* pluto-media-database (233) - additional AttributeType &amp;quot;Album Artist&amp;quot;&lt;br /&gt;
* lmce-media-identifier (931,932) - updates for Album Artist tag.&lt;br /&gt;
* pluto-orbiter (119,138) - updates for Album Artist tag.&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** updates for Album Artist tag&lt;br /&gt;
** fix mainMediaFileSync.php. OutsideAccess page showing the options (again). &lt;br /&gt;
** And typo fixes for issue #2643. &lt;br /&gt;
** Firewall page reload issue 2636#. Firewall gui do not show &amp;quot;NULL&amp;quot;.&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3:ogg:flac:mp4:wv:wav::oga:mpc:spx:opus:tta:m4a:m4r:m4p:3g2:m4v:wma:asf:aif:aiff:afc:aifc:ape:s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update jessie 20160427 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for RPi&lt;br /&gt;
* lmce-disked-md-rpi2 (889) - +x firstboot_md_rpi2 to ensure it&#039;s picked up properly&lt;br /&gt;
&lt;br /&gt;
== Update jessie 201604130947+0083d387 ==&lt;br /&gt;
== Update 1204/1404-i386/amd64 201604101031-0b47a986 ==&lt;br /&gt;
* pluto-website-admin, pluto-boot-scripts (220,234) - Firewall Fixes for GUI and inner working of the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603251155+a1c0f6ea ==&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - File view implemented. Fixed not being able to leave resume menu.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603222119+336464d8 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller  to fix floorplan / status being improperly updated.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t mount optical discs as HDDs&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201603220706+c3c4b899 ==&lt;br /&gt;
* lmce-md-meta (450) - for some reason this is not in the main repo&lt;br /&gt;
* lmce-media-identifier - fixed for libcdio&lt;br /&gt;
&lt;br /&gt;
== Update jessie-rpi 60faa181 ==&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - adds video resizing so UI1 can be exposed while video is playing.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 armhf 31c5d994 ==&lt;br /&gt;
== Update 1404 i386 52e39875 ==&lt;br /&gt;
* pluto-storage-devices (533) - fix ntfs detection&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 - 49a8cbf1 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - a little better device to device template mapping&lt;br /&gt;
* pluto-website-admin (220) - fix adv.zwave page and adding secure devices&lt;br /&gt;
* lmce-disked-* - update the disked md/mid meta/base/device pkgs, specific fixes for 1404 joggler&lt;br /&gt;
* lmce-json-plugin (876,877) - first time addition to the main repo&lt;br /&gt;
* libdvdid0 (replacement) - first time addition to the repo, for use by Media Identifier&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - enable disabling internal volume control, similar to how logitechmediaserver does&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1404(armhf)/jessie(rpi)-a84db86f ==&lt;br /&gt;
* lmce-launch-manager (298,299) - only update squeeze devices when running on the core, redundant elsewhere.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404-87954508 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t fail if dvdcss2 cannot be automatically installed.&lt;br /&gt;
* pluto-hald (529,530) - reinstate tty detection, seperate from usb-serial, use direct parent for udi naming.&lt;br /&gt;
* pluto-boot-scripts (234) - disable buildall, the script doesn&#039;t run so why waste time creating it.&lt;br /&gt;
* lmce-launch-manager (298,299)&lt;br /&gt;
** update squeezebox players on router reloads from Launch_Manager&lt;br /&gt;
** call Config_Device_Changes in startCoreServices to ensure everything gets its&#039; Need Configure flag reset.&lt;br /&gt;
&lt;br /&gt;
== Update a332f49a ==&lt;br /&gt;
* lmce-install-scripts (391) - fix missing quote in MD installation.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix missing &#039;fi&#039; in BootMessage.sh&lt;br /&gt;
** fix usb.1 system serial port listing/translating&lt;br /&gt;
* lmce-media-identifier (931,932) - fix segfault, CDs are identified, cd-ripping functional again&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** prioritize new conf dir over old conf dir, fix install on systems upgraded from 1204-&amp;gt;1404&lt;br /&gt;
** redirect mythweb to html/mythweb&lt;br /&gt;
* pluto-hald (529,530) - updates to serial port naming, specifically for odroid.&lt;br /&gt;
* pluto-storage-devices (533) - fix mounted drive detection and add detection for drives mounted in /proc/cmdline like rpi.&lt;br /&gt;
&lt;br /&gt;
== Update 1204=201602080446+2028f850 &amp;lt;br&amp;gt; 1404=201602071815+c31bc44f ==&lt;br /&gt;
* lmce-install-scripts (391)&lt;br /&gt;
** enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
* lmce-core (888) - enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
* pluto-storage-devices (533) - redo StorageDevices_Radar using blkid for internal HDD identification.  /dev/disk/by-path/ is not present anymore.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
** new VerifyDistro.sh script and call the script on boot.&lt;br /&gt;
*** Preventative mostly.  Intended to ease pain for those that upgrade distros.&lt;br /&gt;
*** Ensure child devices, onscreen orbiter, have the proper PK_Distro set.&lt;br /&gt;
&lt;br /&gt;
== Update 296fdcd3 ==&lt;br /&gt;
* pluto-website-admin (220) - fix depends versioning&lt;br /&gt;
* pluto-hald (529,530) - fix depends versioning&lt;br /&gt;
* pluto-boot-scripts (234) - fix depends versioning&lt;br /&gt;
* pluto-system-database (211) - fix depends versioning&lt;br /&gt;
* pluto-orbitergen (226,227) - fix depends versioning&lt;br /&gt;
* lmce-disked-md-base (801) - fix depends versioning&lt;br /&gt;
* lmce-install-scripts (391) - fix depends versioning&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix depends versioning&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix depends versioning&lt;br /&gt;
* lmce-datalogger-plugin (686,687) - fix depends versioning &lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix depends versioning&lt;br /&gt;
&lt;br /&gt;
== Update f3a444c0 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** use newer .sh script rather than obsolete .pl script for dialplan creation&lt;br /&gt;
** fix Directory listing on cisco phones&lt;br /&gt;
** fix delete buttons on internet radio page.&lt;br /&gt;
* pluto-hald (529,530)&lt;br /&gt;
** add &#039;usb&#039; to &#039;pci&#039; and &#039;platform&#039; as valid bus addresses&lt;br /&gt;
** permit adding of usb devices with usb_serial or tty children&lt;br /&gt;
* pluto-boot-scripts (234) - update SetupAudioVideo.sh to more reliably address nvidia hdmi audio outputs&lt;br /&gt;
* lmce-asterisk (replacement) - live_dangerously for now to get all the necessary Voicemail modules to load&lt;br /&gt;
* pluto-system-database (211) - new DD Number of jobs for orbiter plug-in/orbitergen&lt;br /&gt;
* pluto-boot-scripts (234) - updates to RegenOrbiter scripts for parallel job queued orbiter generation.&lt;br /&gt;
* pluto-orbitergen (226,227) - new depends on GNU parallel&lt;br /&gt;
* lmce-disked-md-base (801) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* lmce-install-scripts (391) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - remove hardcoded ip address, get from db instead.&lt;br /&gt;
* lmce-diskless-tools (627,628) - only run UpdateDebCache.sh if it is executable&lt;br /&gt;
* lmce-datalog-plugin(686,687) - fix pear install command in postinst&lt;br /&gt;
* lmce-advanced-ip-camera(812,813) - add basic onvif support (snapshot,PTZ)&lt;br /&gt;
&lt;br /&gt;
== Update 31792 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of new External_Media_Identifier, testing CDDB ids&lt;br /&gt;
&lt;br /&gt;
== Update 31783 ==&lt;br /&gt;
* pluto-libserial (190,191) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-dcecommon (192,193) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-irbase (194,195) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-plutoutils (196,197) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-vipshared (199,200) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-serializeclass (198,238) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-libbd (239,240) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-ra (247,248) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-main-db (201,237) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-media-db (254,255) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-security-db (278,277) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-sdl-helpers (346,347) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-messagetrans (398,401) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-game-db (675,676) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-windowutils (677,678) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-datalog-db (688,689) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
&lt;br /&gt;
== Update 31782 ==&lt;br /&gt;
* pluto-std-plugins - fix FK_File search inside Attribute in Media_Plugin&lt;br /&gt;
&lt;br /&gt;
== Update 31774 ==&lt;br /&gt;
* lmce-disked-mid-base (899) - fix error in postinst&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come (this should be in but apt-get is getting 404 errors)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add &amp;quot;remove failed node&amp;quot; command&lt;br /&gt;
* pluto-website-admin - add &amp;quot;remove failed node&amp;quot; command for zwave advanced page&lt;br /&gt;
&lt;br /&gt;
== Update 31760 ==&lt;br /&gt;
* lmce-disked-md-base (801) - fix another error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31757 ==&lt;br /&gt;
* lmce-core (888) - overwrite AutostartCore conf value&lt;br /&gt;
* lmce-md-meta (450) - overwrite AutostartMedia conf value&lt;br /&gt;
* lmce-mid-meta (962) - missing deb&lt;br /&gt;
* lmce-hybrid (769) - exit 0 in postinst, just to be sure&lt;br /&gt;
* lmce-disked-md-base (801) - fix error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31754 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - reconnect before send&lt;br /&gt;
&lt;br /&gt;
== Update 31752 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - remove hard coded caller id &#039;Cherryhomes, Tho&#039;, use incoming caller id.&lt;br /&gt;
&lt;br /&gt;
== Update 31750 ==&lt;br /&gt;
* pluto-website-admin (220) - fix postinst error notice on precise.&lt;br /&gt;
* pluto-boot-scripts (234) - (re)start asterisk, otherwise configuration doesn&#039;t occur and sip phones cannot register&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - force-reload apache2 after disabling mythbuntu sites&lt;br /&gt;
* lmce-md-meta (450) - don&#039;t overwrite conf values that are already set&lt;br /&gt;
* *openzwave* (replacement) - version bump, upgrade fixes to upstream files&lt;br /&gt;
&lt;br /&gt;
== Update 31744 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come&lt;br /&gt;
&lt;br /&gt;
== Update 31742 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Gui changes to not confuse people. &lt;br /&gt;
** outsideaccess works together with the firewall. &lt;br /&gt;
** phonelines note on protocol for meaning of &amp;quot;SPA&amp;quot; and a status for this protocol setting, port can be changed if needed else it will be the default (5060).&lt;br /&gt;
&lt;br /&gt;
== Update 31739 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix absolute timed events&lt;br /&gt;
&lt;br /&gt;
== Update 31723 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix nfs-premount script in default diskless image.&lt;br /&gt;
* lmce-dlna(842,843) - compatibility fixes&lt;br /&gt;
* lmce-install-scripts (391) - generate ssh keys so openssh-server can accept connections&lt;br /&gt;
* pluto-createdevice (303,304) - hide errors, specifically during initial package postinst&lt;br /&gt;
* lmce-cec-adaptor (871,872) - fix cec remotes not getting to lmce&lt;br /&gt;
&lt;br /&gt;
== Update 31693 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - Fixes #2530 - fix errors in mythtvdb synchronization scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31686 ==&lt;br /&gt;
* lmce-install-scripts (391) - deal with firstboot stuffenz&lt;br /&gt;
* pluto-system-database (211) - add proxy orbiter DT depends for generic web device&lt;br /&gt;
* pluto-website-admin (220) - order by photo file name in screen saver/photo browser&lt;br /&gt;
* pluto-boot-scripts (234) - try ubiquity before anything else, and reboot after the normal firstboot - breaks live boot on dvd atm&lt;br /&gt;
* lmce-diskless-tools (627,628) - permit i386 diskless image building on amd64 cores, ensure processes are killed in chroot before unmounting (deals with systemd for now)&lt;br /&gt;
&lt;br /&gt;
== Update 31660 ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) &lt;br /&gt;
**PS3 control screen, fix layout issue. adds seperate button group (triangle, circle, etc) and navigation arrows. Also adds power off button to properly exit screen&lt;br /&gt;
* pluto-website-admin (220) - prevent creation of extra &#039;blank&#039; network interfaces&lt;br /&gt;
&lt;br /&gt;
== Update 31655 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - close connection after use&lt;br /&gt;
* pluto-website-admin (220) - fill ServerName var if it is unset, not if it is set.&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - unify service control&lt;br /&gt;
* pluto-boot-scripts (234) - unify service control&lt;br /&gt;
* pluto-dhcpd-plugin (302) - unify service control&lt;br /&gt;
* pluto-disk-monitor (554) - unify service control&lt;br /&gt;
* pluto-mythtv-player (133,152) - unify service control&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - unify service control&lt;br /&gt;
* pluto-raid-tools (617) - unify service control&lt;br /&gt;
* pluto-storage-devices (533) - unify service control&lt;br /&gt;
* lmce-update-system (650,651) - unify service control&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - unify service control&lt;br /&gt;
* pluto-vdr-plugin (466,467) - unify service control&lt;br /&gt;
* pluto-vdr (468,469) - unify service control&lt;br /&gt;
* pluto-database-settings (407) - unify service control&lt;br /&gt;
* lmce-asterisk (replacement) - unify service control&lt;br /&gt;
* lmce-diskless-tools (627,628) - unify service control&lt;br /&gt;
* lmce-install-scripts (391) - unify service control&lt;br /&gt;
* pluto-updatemedia (405,406) - unify service control&lt;br /&gt;
* pluto-newmdinteractor (538,539) - unify service control&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - Fix size issues, floorplan popups.&lt;br /&gt;
&lt;br /&gt;
== Update 31621 ==&lt;br /&gt;
* pluto-mythtv-player (133,152) - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 31618 ==&lt;br /&gt;
* lmce-asterisk (replacement) - update db for chan_sccp-v4.2 and fix bug requiring manual asterisk reload on boot&lt;br /&gt;
&lt;br /&gt;
== Update 31615 ==&lt;br /&gt;
* pluto-* - rebuild with new libraries&lt;br /&gt;
* lmce-* - rebuild with new libraries&lt;br /&gt;
&lt;br /&gt;
== Update 31606 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix EPG data on orbiters, myth stores everything in UTC now.&lt;br /&gt;
* pluto-pluto-main-db (201,237) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-media-db (254,255) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-security-db (277,278) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-datalog-db (688,689) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-game-db (675,676) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-updateentarea (341,342) - don&#039;t send empty play command when resetting alarm&lt;br /&gt;
&lt;br /&gt;
== Update 31580 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - use bypass-event to avoid watching media events when playing alerts&lt;br /&gt;
* pluto-updateentarea (341,342) - send bypass-event with security event commands&lt;br /&gt;
* libcec3 debs (replacement) - removes conflict data with libcec2&lt;br /&gt;
&lt;br /&gt;
== Update 31575 ==&lt;br /&gt;
* lmce-asterisk (replacement) - play back alert notification file&lt;br /&gt;
* pluto-std-plugins (116,135) - create alert notification file with correct format&lt;br /&gt;
* pluto-boot-scripts (234) - fixes for nvidia drivers on precise, upgrades to nvidia-340&lt;br /&gt;
* lmce-avwizard-sounds (replacement) - don&#039;t copy fakeroot files (it is redundant it is)&lt;br /&gt;
* video-wizard-videos (replacement) - deb is back to normal size, not 2x&lt;br /&gt;
&lt;br /&gt;
== Update 31553 ==&lt;br /&gt;
* pluto-website-admin (220) - fix error that wipes out the apache2.conf&lt;br /&gt;
* pluto-hald (529,530) - fix segfaults with firewire hardware&lt;br /&gt;
&lt;br /&gt;
== Update 31547 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some API changes in OZW 1.3, more device template mappings&lt;br /&gt;
* pluto-boot-scripts (234) - typo fix for nvidia drivers&lt;br /&gt;
* lmce-disked-md-base (801) - set hostname on disked MDs, set timezone on disked MDs&lt;br /&gt;
* lmce-install-scripts (391) - set hostname on disked MDs, set timezone on disked MDs &lt;br /&gt;
* pluto-website-admin was generated---&amp;gt; lmce-website-admin (220) - set apache2 ServerName to silence error on boot&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates, revert to ruby 1.8&lt;br /&gt;
* pluto-generic-serial-device (307,335) - admit defeat for now, revert to ruby 1.8&lt;br /&gt;
&lt;br /&gt;
== Update 31533 ==&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31520 ==&lt;br /&gt;
* chan-sccp_v4.2 (replacement) - Upgrad asterisk SCCP channel driver to newest version&lt;br /&gt;
* pluto-vdr-plugin (466,467) - implement background loading of EPG from VDR to avoid crashes due to commands not completing on time&lt;br /&gt;
* pluto-boot-scripts (234) - some logic changes and added messages for video driver install debugging&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - link new channels dir to old channels dir for backwards compatibility&lt;br /&gt;
&lt;br /&gt;
== Update 31503 ==&lt;br /&gt;
* *zwave* (replacement) - new upstream openzwave version 1.3.1224&lt;br /&gt;
* lmce-zwave-ozw(505,506) - build against new libopenzwave1.3&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates&lt;br /&gt;
* lmce-disked-interactor (897,898) - make disked interactor aware of wheezy and jessie.&lt;br /&gt;
&lt;br /&gt;
== Update 31500 ==&lt;br /&gt;
* *myth* (replacement) - fix depends on non-existent packages&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst - verified installing now&lt;br /&gt;
* pluto-std-plugins (116,135) - Use integer comparison for brightness state&lt;br /&gt;
&lt;br /&gt;
== Update 31491 ==&lt;br /&gt;
* lmce-avwizard-skin-basic (replacement) - fix packaging of avwizard skin&lt;br /&gt;
* *myth* (replacement) - mythtv 0.27.5+fixes with Schedules Direct fix included&lt;br /&gt;
* *asterisk* (replacement) - asterisk 11.7 backport from trusty&lt;br /&gt;
* libical* (replacement) - for asterisk 11.7&lt;br /&gt;
* *cec* (replacement) - libcec3&lt;br /&gt;
* libplatform* (replacement) for libcec3&lt;br /&gt;
* lmce-cec-adaptor (871,872) - build against libcec3&lt;br /&gt;
* lmce-mediatomb (702) - fix pkg installation&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - update protocol version and secret word (shhh) for 0.27.5+fixes&lt;br /&gt;
* lmce-diskless-tools (627,628) - remove call to obsolete script in Diskless_Setup.sh&lt;br /&gt;
* pluto-vdr-plugin (466,467) - return full EPG (used in qOrbiter EPG Grid), improve communication speed with SVDRP&lt;br /&gt;
* pluto-slim-server-streamer (289,290) - emit time code event, fix duration parsing&lt;br /&gt;
* pluto-boot-scripts (234) - fix headless booting, update 1404 nvidia driver&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* lmce-md-meta (450) - add depends on alsa-utils&lt;br /&gt;
* pluto-website-admin (220) - Fix cdrviewer (Call Details Records) to accept SSL conections as well, firewall gui change to set Offline rules in red as they are not executed.&lt;br /&gt;
* pluto-app-server (126,145)- new poweroff mode I for ignore, since N is already in use&lt;br /&gt;
&lt;br /&gt;
== Update 31420 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add depends on pluto-boot-scripts for deb cache script&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31411 == &lt;br /&gt;
* pluto-avwizard (555,556) - fix depends on avwizard skins basic, should no longer care about version&lt;br /&gt;
* pluto-boot-scripts (234) - more explicity logic for core only booting, fix startup script db errors&lt;br /&gt;
* lmce-update-system (650,651) - remove and disable old init.d script from /etc/init.d&lt;br /&gt;
* pluto-plutodhcp (330,491) - depends on apparmor&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-dhcpd-plugin (302) - remove hardcoded IP addresses from configure scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31387 ==&lt;br /&gt;
* lmce-weather-plugin - make change to allow for tonight&#039;s forecast data (TSCHAK)&lt;br /&gt;
* lmce-asterisk (replacement) - remove obsolete phonetic engines and replace with espeak, voices remain the same&lt;br /&gt;
* mbrola (replacement) - base mbrola pkg for mbrola voices (add armhf binary)&lt;br /&gt;
* pluto-asterisk (270,271) - generate fr and de voicemail menus with espeak now&lt;br /&gt;
* lmce-core (888) - add depends on iptables&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31378 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Start_KDE.sh ownership fix, AV config updates&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-avwizard (555,556) - update pkgs &amp;amp; depends &amp;amp; config scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - do not run update deb_cache during dvd creation&lt;br /&gt;
* pluto-x-scripts (520) - fixups to Xconfigure.sh&lt;br /&gt;
&lt;br /&gt;
== Update 31356 ==&lt;br /&gt;
* pluto-system-database (211) - update depends&lt;br /&gt;
* pluto-orbiter (119,138) - update depends&lt;br /&gt;
* lmce-diskless-tools (627,628) - speedup dpkg in diskless create, fix missing quotes&lt;br /&gt;
&lt;br /&gt;
== Update 31352 ==&lt;br /&gt;
* pluto-motion-wrapper - more config file location fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 31351 ==&lt;br /&gt;
* pluto-boot-scripts (234) - change service &#039;nis&#039; to &#039;ypserv&#039;, nis is no longer a service name&lt;br /&gt;
* pluto-website-admin (220) - remove &#039;idiot&#039; text, let&#039;s be nice to people.&lt;br /&gt;
* lmce-core (888) - do not create and config under ubiquity&lt;br /&gt;
* lmce-md-meta (450) - do not create and config under ubiquity&lt;br /&gt;
* motion (replacement) - fix bad config file setting in rules&lt;br /&gt;
&lt;br /&gt;
== Update 31337 ==&lt;br /&gt;
* motion (replacement) - new version of motion to match new configuration values generated by linuxmce&lt;br /&gt;
&lt;br /&gt;
== Update 31331 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix for brightness events&lt;br /&gt;
* pluto-boot-scripts (234) - fix kdm disabling, start ubiquity after network config&lt;br /&gt;
* lmce-diskless-tools (627,628) - add upstart overrides for kdm&lt;br /&gt;
* lmce-install-scripts (391) - start ubiquity after network config&lt;br /&gt;
&lt;br /&gt;
== Update 31314 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add missing depends&lt;br /&gt;
&lt;br /&gt;
== Update 31292 ==&lt;br /&gt;
* lmce-core-locator (replacement) - (1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-system-database (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* All .debs created by MakeRelease - removal of all Pre-Depends, everything is now a Depends entry (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
== Update 31228 ==&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-local-database&lt;br /&gt;
&lt;br /&gt;
== Update 31214 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package (not in repo, need build-replacements.sh svn up&#039;d?)&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - preinst/postinst updates&lt;br /&gt;
* pluto-boot-scripts (234) - preinst/postinst updates&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-disked-md-base (801) - firstboot updates&lt;br /&gt;
&lt;br /&gt;
== Update 31187 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package&lt;br /&gt;
* pluto-confirm-dependencies (281,272) - new depends on lmce-install-scripts (fixes unable to apt-get dist-upgrade)&lt;br /&gt;
* lmce-md-meta (450) - new depends on nfs-common, openssh-server and pastebinit&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - update depends, preinst/postinst&lt;br /&gt;
* pluto-boot-scripts (234) - depends &amp;amp; preinst/postinst updates&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - add override mythweb defaults in pkg preinst&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - update depends&lt;br /&gt;
&lt;br /&gt;
== Update 31133 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** enable WakeMDs.sh to wake any halted MDs.&lt;br /&gt;
** consolidate all boot script launching to /etc/init.d/linuxmce&lt;br /&gt;
* pluto-avwizard (555,556) - moves start script to /usr/pluto/bin, called by /etc/init.d/linuxmce now&lt;br /&gt;
* lmce-update-system (650,651) - removes init.d script, called by /etc/init.d/linuxmce now&lt;br /&gt;
* pluto-website-admin (220) - GUI changes on network settings if an bridge is configured on the db.&lt;br /&gt;
* lmce-core (888) - depend on pluto-asterisk, lmce-asterisk, lmce-install-scripts&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* pluto-generic-serial-device (307,335) - wildshot attempt at fixing segfaults&lt;br /&gt;
&lt;br /&gt;
== Update 31103 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** Network bridging now possible  for wifi AP to have the same network as the local lan. &lt;br /&gt;
** ipv6 on/off for network interfaces. Read multiple ipv6 interfaces from the db.&lt;br /&gt;
** re-enable HaltMDs.&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* libqhttpserver (912) needed for linuxmce nvr&lt;br /&gt;
* lmce-launch-manager - (298,299) - ?&lt;br /&gt;
&lt;br /&gt;
== Update 31087 ==&lt;br /&gt;
* lmce-weather (838,839) - Fix a serious bug in getconfig where incorrect configuration device data would crash program. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 31083 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes #2422, advanced zwave page broken in chrome&lt;br /&gt;
* pluto-system-database (211) - thumbnail screen fixes&lt;br /&gt;
&lt;br /&gt;
== Update 31074 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** setEa2.php - Fix settings for creating entertain area.&lt;br /&gt;
** qOrbiterGenerator.php - Fix erroneous EA creation by removing it.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Fix incorrect setting for enabling / disabling motion.&lt;br /&gt;
&lt;br /&gt;
== Update 31069 ==&lt;br /&gt;
* pluto-website-admin (220) - setEa2.php Fix settings for creating entertain area.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Initial build.&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (881) - Large update of skins and internals.&lt;br /&gt;
&lt;br /&gt;
== Update 31061 ==&lt;br /&gt;
* lmce-squeezeslave (762) - Add configuration DD to command line&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DB package updates&lt;br /&gt;
** restore previous video remote layout with Options button to select subtitles/audio tracks/video tracks from a datagrid list.&lt;br /&gt;
* pluto-website-admin (220) - firewall.php edit rules for non advanced firewall and some other small fixes.&lt;br /&gt;
* lmce-asterisk (replacement) - sip config modules to avoid autoload.&lt;br /&gt;
&lt;br /&gt;
== Update 31051 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** firewall.php not adding rules now fixet.&lt;br /&gt;
** Test buttons for Hue lights&lt;br /&gt;
** Security outsideAccess page now works nicely with the new firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 31044 ==&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
&lt;br /&gt;
== Update 31031 ==&lt;br /&gt;
* pluto-website-admin (220) - firewall.php after a strange fault and some layout fixes.&lt;br /&gt;
* lmce-mediatomb (702) - don&#039;t assume mediatomb is already running.&lt;br /&gt;
&lt;br /&gt;
== Update 31013 ==&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* pluto-boot-scripts (234) - Network Parameter count for more interfaces set and Network firewall accepting postrouting Masquerade  for other network interfaces.&lt;br /&gt;
&lt;br /&gt;
== Update 30985 ==&lt;br /&gt;
* pluto-website-admin (220) - #2268 fail2ban integration logging failed user login attempt.&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** #2268 fail2ban script not insert existing rules to our db.&lt;br /&gt;
** Support for audio output select on rpi via web admin&lt;br /&gt;
* lmce-diskless-tools (627,628) - update syslinux depends to syslinux-common&lt;br /&gt;
* lmce-omx-player (829,830) - Honour audio output selection of rpiMD&lt;br /&gt;
* lmce-squeezeslave (762) - Fix detection for squeezelite&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - further fixes&lt;br /&gt;
* lmce-usb-gamepad (795,796) - rewrite the whole main loop to suck less. hold-down repeats work, input handling more sane.&lt;br /&gt;
&lt;br /&gt;
== Update 30926 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Fix for #2368 insert firewall rules en #2064 edit and delete chains (except some system chains).&lt;br /&gt;
** Support for brightness based events.&lt;br /&gt;
* pluto-std-plugins (116,135) - Support for brightness based events&lt;br /&gt;
* lmce-omx-plugin (831,832) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** Database additions for XBOX 360 Gamepad (device templates, package)&lt;br /&gt;
** Modification of OMX Plugin to allow priority to be changed.&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - the XBOX 360 Gamepad driver, uses xboxdrv userspace driver.&lt;br /&gt;
* lmce-usb-gamepad (795,796) - additions here for above XBOX 360 Gamepad support.&lt;br /&gt;
&lt;br /&gt;
== Update 30862 ==&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress can now read latest files per linuxmce user.&lt;br /&gt;
&lt;br /&gt;
== Update 30860 ==&lt;br /&gt;
* lmce-weather (838,839) - some fixes by cfernandes&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress.&lt;br /&gt;
* pluto-boot-scripts (234) - more mail fixes&lt;br /&gt;
&lt;br /&gt;
== Update 30855 ==&lt;br /&gt;
* pluto-vdr, pluto-vdr-plugin - remove hardcoding of core IP and network address, but depend on the pluto.conf entries for DCERouter.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location (again)&lt;br /&gt;
* lmce-diskless-tools - stop copying apt configs from the core&lt;br /&gt;
* pluto-boot-scripts - fix postfix setup #2393&lt;br /&gt;
&lt;br /&gt;
== Update 30841 ==&lt;br /&gt;
* lmce-avwizard-sounds - fix replaces/conflicts data&lt;br /&gt;
* lmce-skins-basic - fix replaces/conflicts data&lt;br /&gt;
* lmce-avwizard-skin-basic - fix replaces/conflicts data&lt;br /&gt;
&lt;br /&gt;
== Update 30383 ==&lt;br /&gt;
* pluto-website-admin (220) - Add Hue lights related test button.&lt;br /&gt;
* pluto-boot-scripts - Add another option --autobackup to PlutoRestorePoint.sh to allow backup of pluto_main only&lt;br /&gt;
&lt;br /&gt;
== Update 30814 ==&lt;br /&gt;
* pluto-Boot-scripts - Firewall order by place and PK_Firewall to let rules stay on top on the middle or on the bottom.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location&lt;br /&gt;
* lmce-hue-controller (862,863) - Fix bug in adding new lights, now adds serial number.&lt;br /&gt;
* pluto-website-admin (220) - Fix oops relating the missing &#039;.&#039; which caused operations/login.php not to work.&lt;br /&gt;
&lt;br /&gt;
== Update 30783 ==&lt;br /&gt;
* lmce-nbd-client-wrapper - new pkg to hold common script&lt;br /&gt;
* pluto-xine-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* lmce-vlc-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* pluto-boot-scripts - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
* pluto-storage-devices - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30777 ==&lt;br /&gt;
* lmce-core - depend on openswan&lt;br /&gt;
* pluto-system-database - pkg updates&lt;br /&gt;
* pluto-boot-scripts - remove check for openswan from bootscript&lt;br /&gt;
* pluto-generic-serial-device - update to ruby 1.9.1&lt;br /&gt;
&lt;br /&gt;
== Update 30773==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller internals to now include polling, so as to make sure floorplan data is accurate. Changes underlying mechanisms for how lights are handled in preparation for extending additional support for Cree lights and sensors devices.&lt;br /&gt;
&lt;br /&gt;
== Update 30767 ==&lt;br /&gt;
* lmce-diskless-tools - update diskless archive name to reflect current compression method xz.&lt;br /&gt;
* pluto-website-admin (220) - updates to internet radio, moves add channels to a seperate page.  Thanks Dap-P!&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
* pluto-vdr - adds missing depends on vdr in trusty&lt;br /&gt;
* lmce-core - update depends to new pkg name lmce-avwizard-sounds&lt;br /&gt;
* pluto-avwizard - update depends to new pkg name lmce-avwizard-skins-basic&lt;br /&gt;
* lmce-clock-screen-saver - make the clock screen saver use the WMController/wmctrl methods for setting window visibility to be compatible with Orbiter. (TSCHAK) (Trusty only)&lt;br /&gt;
* pluto-storage-devices - Make sure that smbpasswd is used to create or update sambahelper&#039;s password (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30726 ==&lt;br /&gt;
* pluto-vdr - VDR player&#039;s package assumed a correctly installed vdr package which includes an entry in /etc/default for vdr. We no longer fail on a missing file.&lt;br /&gt;
&lt;br /&gt;
== Update 30724 ==&lt;br /&gt;
* lmce-weather - updates to weather sources, add OpenWM source.  Thanks SBCC and cfernandes!&lt;br /&gt;
* lmce-skins-* - adds missing telecom icons, updates/adds weather icons&lt;br /&gt;
* lmce-avwizard-sounds - remove extraneous stuff from pkg, reduce pkg size back to normal.  Proper replaces/conflicts/data...&lt;br /&gt;
* lmce-avwizard-skin-basic - Proper replaces/conflicts/data...&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
&lt;br /&gt;
== Update 30718 ==&lt;br /&gt;
* lmce-core - new depends on lmce-skins*&lt;br /&gt;
* lmce-md-meta - add depends on pnp-detection scripts&lt;br /&gt;
* lmce-hybrid - new depends on lmce-skins*&lt;br /&gt;
* pluto-avwizard (556,555) - add pciutils as a depends, still need to deal with multiarch stuff so this will break armhf, we will not update armhf for now, it doesn&#039;t use avwizard but does install it.&lt;br /&gt;
* lmce-diskless-tools - minor diskless create fixups&lt;br /&gt;
* pluto-orbiter - missing depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio script&lt;br /&gt;
* pluto-website-admin (220) - recognize MIDs as top level devices&lt;br /&gt;
* pluto-mythtv-player - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 30628 ==&lt;br /&gt;
* *-database - fix install issues&lt;br /&gt;
&lt;br /&gt;
== Update 30622 ==&lt;br /&gt;
* pluto-orbiterinstallers - fix depends issue&lt;br /&gt;
* pluto-system-database - lots of compat updates&lt;br /&gt;
* lmce-* - lots of compat updates&lt;br /&gt;
* pluto-* - lots of compat updates&lt;br /&gt;
&lt;br /&gt;
== Update 30618 ==&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio scripts&lt;br /&gt;
* pluto-website-admin (220) - updated internet radio page&lt;br /&gt;
&lt;br /&gt;
== Update 30571 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - send &amp;quot;Device is turned on or off&amp;quot; event when appropriate so the corresponding event works as expected&lt;br /&gt;
* lmce-squeezeslave (762) - set to pnp create without prompting&lt;br /&gt;
* lmce-runtime-dependencies (903) - pkg to help consolidate runtime depends.&lt;br /&gt;
* lmce-core (888) - updated depends&lt;br /&gt;
* lmce-md-meta (450)- updated depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated depends&lt;br /&gt;
* pluto-createdevice (303,304) - updated depends&lt;br /&gt;
* lmce-weather(838,839) - fix potential segfault&lt;br /&gt;
* pluto-website-admin (220) - add &amp;quot;replace node&amp;quot; button to advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 30549 ==&lt;br /&gt;
* pluto-mythtv-player - fix misaligned data values during mythtv.txt creation.&lt;br /&gt;
&lt;br /&gt;
== Update 30526 ==&lt;br /&gt;
* lmce-core - new pkg&lt;br /&gt;
* lmce-hybrid - pkg depends changes&lt;br /&gt;
* lmce-md-meta - pkg depends changes&lt;br /&gt;
* pluto-dcerouter - pkg depends changes&lt;br /&gt;
* pluto-photo-screen-saver - pkg depends changes&lt;br /&gt;
* pluto-boot-scripts - pkg depends changes&lt;br /&gt;
* pluto-orbiter - pkg depends changes&lt;br /&gt;
* pluto-simplephone - pkg depends changes&lt;br /&gt;
* pluto-website-admin - pkg depends changes&lt;br /&gt;
* lmce-mythtv-scripts - pkg depends changes&lt;br /&gt;
* pluto-system-database - pkg depends changes&lt;br /&gt;
* lmce-squeezeslave (762) - fix launch script, automatically create associated squeezebox player on the core.&lt;br /&gt;
* pluto-std-plugins - run New_PnP_MD.sh for new MID devices as well.&lt;br /&gt;
* lmce-diskless-tools - don&#039;t fail on invoke-rc.d during diskless create, exit gracefully and continue.&lt;br /&gt;
* pluto-mythtv-player - fix diskless create failures due to old hacks.  more work is needed here overall on mythtv integration.&lt;br /&gt;
&lt;br /&gt;
== Update 30419 ==&lt;br /&gt;
* pluto-slim-server - Make sure to turn off all Squeeze* devices when Slim Server Streamer starts or restarts (so that squeezelite does not hog sound cards.)&lt;br /&gt;
* pluto-hald (529,530) - add device node path to pnpqueue with v4l devices during detection&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - update for new lib version&lt;br /&gt;
&lt;br /&gt;
== Update 30384 ==&lt;br /&gt;
* pluto-confirm-dependencies - depend on pluto-install-scripts.&lt;br /&gt;
* pluto-disk-drive (122,141) - remove hal bits that dealt with old jukebox bugs.&lt;br /&gt;
* pluto-capture-card-scripts (580) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-pnp-detection (562) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-storage-devices (533) - convert autofs from hal to udev.&lt;br /&gt;
* pluto-bootscripts (234) - disable starting the hald since we&#039;re using udev now, remove false &#039;fail&#039; messages during reboot/shutdown&lt;br /&gt;
* pluto-slim-server-streamer - make one tweak (do not delete m_mapStreamsToPlayers entry in CMD_Stop). Streaming now works consistently, properly, with squeezebox devices and their clones. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30354 ==&lt;br /&gt;
* pluto-hald (529,530) - fix attempt to fire event for child device of usb-dongle.&lt;br /&gt;
* pluto-slim-server-streamer - Implement FF/REW (transport) trick-play control for Squeeze* devices. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30341 ==&lt;br /&gt;
* pluto-bootscripst - fixes for PPPoE users to not autostart the external interface.&lt;br /&gt;
* pluto-slim-server-streamer - Fix to power off squeezebox player when stream is not in use. This allows softsqueeze/squeezeslave/squeezelite players to let go of a sound device, when not in use (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30332 ==&lt;br /&gt;
* pluto-orbiter (118,139) - disable old hid device functionality.  Anyone who needs it can request a special build which will be provided at no extra charge. ;)&lt;br /&gt;
* pluto-bootscripts (234) - disable Gamepad Radar, functionality now in hal through udev&lt;br /&gt;
* pluto-avwizard (556,555) - fixes mangling of RemoteCmd when &amp;gt;1 remote is detected.&lt;br /&gt;
* pluto-hal-device-finder (535,536) - update to use udev rather than hal.&lt;br /&gt;
* pluto-hald (529,530) - update to use udev rather than hal.&lt;br /&gt;
* pluto-system-database (211) - updates for new detection method (joystick, cec-adaptor), update dependency data for hal pks to reflect dropping hald and add depends on udev now.&lt;br /&gt;
&lt;br /&gt;
== Update 30219 ==&lt;br /&gt;
* pluto-bootscripts (234) - Fail2ban firewall update script, and missing radioscript.sh.&lt;br /&gt;
* pluto-website-admin - Place set for rules on the firewall and bantime for fail2ban integration.&lt;br /&gt;
* pluto-std-plugins (116,135) - adds heirloom-mailx for &#039;mailx -r&#039; functionality, fixes e-mail in general info plugin&lt;br /&gt;
&lt;br /&gt;
== Update 30068 ==&lt;br /&gt;
* lmce-advanced-ip-camera(813,812) - Fixed high cpu usage if connection to camera can not be made&lt;br /&gt;
&lt;br /&gt;
== Update 30052 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - fix android pkg meta data, need to rebuild all together&lt;br /&gt;
&lt;br /&gt;
== Update 30051 ==&lt;br /&gt;
* pluto-updateentarea (341,342) - use DAY/NIGHT in watching/stopped watching events to make them smarter&lt;br /&gt;
* pluto-std-plugins (116,135) - Implement Get Device Status in General Info Plugin&lt;br /&gt;
* pluto-bootscripts (234) - fix VPN ip up/down&lt;br /&gt;
&lt;br /&gt;
== Update 30025 ==&lt;br /&gt;
* pluto-system-database (211) - column def updates&lt;br /&gt;
* pluto-local-database (214) - new Firewall columns and new VPN columns for Users table.&lt;br /&gt;
&lt;br /&gt;
== Update 30014 ==&lt;br /&gt;
* lmce-transmission-client (852) - fix postinst issue.  (Thanks SBCC)&lt;br /&gt;
== Update 29994 ==&lt;br /&gt;
More VLC Player changes to make it at least somewhat usable, there were some ugly bugs that came to light once i plopped it onto my production system. Right now sound device is plughw:0,3, if you need a different one, change it in the code.  (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* lmce-vlc-player - many little fixes to make it suck less.&lt;br /&gt;
&lt;br /&gt;
== Update 29990 ==&lt;br /&gt;
I am working on the VLC player, and it is breathing enough for basic testing. Please do not use in production environment. There is still a lot of code to write (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - updates for VLC player (TSCHAK)&lt;br /&gt;
* vlc-player (882,884) - Very early alpha developer test of the VLC player. (TSCHAK)&lt;br /&gt;
* vlc-plugin (874,875) - Very alpha developer test of the VLC plugin. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 29984 ==&lt;br /&gt;
* pluto-system-database (211) - fix bad repos in pkgs&lt;br /&gt;
* pluto-website-admin - just because I think it is necessary :-)&lt;br /&gt;
&lt;br /&gt;
== Update 29983 ==&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36938</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36938"/>
		<updated>2017-04-02T21:30:39Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: /* Upcoming fixes... */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the 1204 changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo much easier.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please include the pkg #s to facilitate building on 3x i386 targets in addition to 2x amd64 and 3x armhf targets where full builds are not always practical.  Keep in mind that most packages are referred to by two (2) package numbers from the database, a source package and a binary package.  &amp;quot;Thank you for your co-operation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
* pluto-bootscripts (234) - Typo fix for insert rule to the db. /ppp/ip-up.d/lmce-vpn-up and /ppp/ip-down.d/lmce-vpn-down works now niceley togheter with the new firewall.&lt;br /&gt;
* pluto-system-database (211) - sqlCVS commit to add Imagemagick as dependency to VLC Player, finally squashing that #($#@( start bug! (TSCHAK)&lt;br /&gt;
** Also added ir-keytable depedency to pluto-lirc-wrapper&lt;br /&gt;
* pluto-lirc-wrapper (340,421) - Ensure that ir-keytable is cleared before lircd starts to avoid unusual behavior with remotes that use kernel event subsystem (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - Fix DVD to use cifs instead of smbfs (which has been deprecated for 10 years.)&lt;br /&gt;
* lmce-vlc-player (884,882) - bug fixes for multi room sync&lt;br /&gt;
* lmce-vlc-plugin (874,875) - bug fixes for multi room sync&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201703301804+358c1c45 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fixes Bug #2726 - Media details now work, again.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 - 201703272335+efdf6de9 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Issue #2730 - Media Plugin changes to add support for FIFO capture card playback to VLC Player (route messages to VLC Player if it exists) -TSCHAK&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue #2729, #2730 - Implement FIFO device playback for local devices similar to file playback. (TBD: recompile VLC with PVR functionality), also multi-room playback. VLC Player is now in beta. -TSCHAK&lt;br /&gt;
* lmce-vlc-plugin (874,875) - Issue #2729 - Implement multi-room playback, VLC sync listener on core, etc. VLC functionality is now beta. -TSCHAK&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201702201438+325cc736 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix for multiple cameras and Get Image command&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue 2727, Issue 2728 - Trick play overhaul and fix audio glitches when trick play is used. &lt;br /&gt;
* pluto-boot-scripts (234) - SetupAudioVideo.sh - slight change to libvlc.conf so that trick play OSD works.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1204-1404-1604/amd64 c20633ff ==&lt;br /&gt;
* pluto-website-admin (220) - Added the case for section energyGraph and sipConf, fixed permissions for mysql asteriskuser, add sql credentials for myth, change MYSQL_NUM to MYSQLI_NUM&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1404/amd64 a7c10426 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add backports so 1204 diskless create works&lt;br /&gt;
* lmce-oauth2-server (668) - initial build of lmce oauth2 server for cloud interfacing&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404/1604 i386 - 1404x64 - 201611190055+fee90f43 ==&lt;br /&gt;
* pluto-boot-scripts (234) - database upgrades&lt;br /&gt;
* pluto-orbitergen (226,227) - database upgrades&lt;br /&gt;
* pluto-pluto-main-db (201,237) - database upgrades&lt;br /&gt;
* pluto-pluto-security-db (278,277) - database upgrades&lt;br /&gt;
* lmce-asterisk (replacement) - database upgrades&lt;br /&gt;
* pluto-system-database (211) - database upgrades&lt;br /&gt;
* pluto-local-database (214) - database upgrades&lt;br /&gt;
* pluto-security-database (256) - database upgrades&lt;br /&gt;
* pluto-telecom-database (472) - database upgrades&lt;br /&gt;
* pluto-media-database (233) - database upgrades&lt;br /&gt;
* pluto-database-settings (407) - database upgrades&lt;br /&gt;
* pluto-sqlcvs (212,213) - database upgrades&lt;br /&gt;
* pluto-std-plugins (116,135) - database upgrades&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609281853+9638f5bc ==&lt;br /&gt;
* pluto-website-admin (220) - #2705 fixed syntax error.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609271106+39103855 ==&lt;br /&gt;
* pluto-website-admin (220) - Update firewall.php GUI change some fields where reset to the default values. now the db data is honored.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** don&#039;t create initramfs for Raspbian Jessie diskless filesystems.&lt;br /&gt;
** ensure firstboot runs on diskless Jessie RPis.&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** stop/start rather than restart dhcp server, it&#039;s like nuking the site from orbit... only way to be sure.&lt;br /&gt;
** Firewall blocks udp 1900 UpNP traffic from externalinterface.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609172308+325de35d ==&lt;br /&gt;
* lmce-autotag (780, 781) linuxmceTag - fix comparison issue with media type.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609131230+5eaa4671/201609131753+5eaa4671 ==&lt;br /&gt;
* pluto-boot-scripts (234) - send dhcp vendor specific options only to wired raspberry pis.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 201609102226+fda3da63 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** rpi native pxe additions/updates&lt;br /&gt;
** extend startup timeout when booting under systemd&lt;br /&gt;
* lmce-diskless-tools (627,628) - rpi native pxe additions/updates&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DT updates for rpi native pxe&lt;br /&gt;
** add Serial Number Device Data to RPi DTs&lt;br /&gt;
** sets default PK_Distro to 22 (jessie) for RPi DTs&lt;br /&gt;
** new device data for &amp;quot;Standard Energy Meter&amp;quot;&lt;br /&gt;
* pluto-std-plugins (116,135)&lt;br /&gt;
** stores energy reading in state field for Standard Energy Meter&lt;br /&gt;
** fixes dcerouter crash when searching media&lt;br /&gt;
* pluto-updatemedia (405,406) - fix segfault when a dir is attempting to be tagged directly (without a .id3)&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - don&#039;t fail pkg install if simplephone is not running.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-i386 - 1404-i386/amd64 201607240235+899786ab ==&lt;br /&gt;
* pluto-website-admin (220) - Mysqli_real_escape_string did not work. a start with ipv6 firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/i386 201607202218+14cba09a ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) - Stream Bouncing, Additional settings for location, removed debug output, queue functionality.&lt;br /&gt;
&lt;br /&gt;
== Update 201607181902+d4cec1a0 1404-i386/amd64 - 1204-i386 ==&lt;br /&gt;
* pluto-website-admin - Update to qOrbiterGenerator.php for newer PHP version&lt;br /&gt;
&lt;br /&gt;
== Update 201607161239+6d72c3f9 1404-i386/amd64 1204-i386 ==&lt;br /&gt;
* pluto-website-admin (220) - #2678 fix Warning: Invalid argument supplied for foreach() in /var/www/lmce-admin/include/dhcpd-tools/DHCPd-parse.php on line 113&lt;br /&gt;
* pluto-boot-script&lt;br /&gt;
&lt;br /&gt;
== Update 201607151016+5b5adba3 1404/i386 &amp;amp; amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule use another escape method.&lt;br /&gt;
&lt;br /&gt;
== Update 201607122332+f0fc9c6b 1404/i386 ==&lt;br /&gt;
* pluto-boot-scripts (234) - fix #2684 clients cannot access internet when firewall is disabled. &lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule.&lt;br /&gt;
&lt;br /&gt;
== Update 201607050613+601c67da 1404-i386/amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - more fixes to the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update trusty i386/amd64 201606301955+614dfa7b ==&lt;br /&gt;
* pluto-website-admin (220) - fix for outside access port 443 not uncheckable.&lt;br /&gt;
* pluto-boot-scripts (234) - fix for not dele rules from iptables from outsideAccess.php&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201606201908+31b25c52 ==&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** unicode reading/writing working properly&lt;br /&gt;
** coverart writing to tags working properly&lt;br /&gt;
** .id3 files handled by taglib instead of id3lib.&lt;br /&gt;
** General Object Frame (GEOB) reading/writing working properly (all lmce attributes are stored in id3v2 GEOB tags for .id3/.mp3 files)&lt;br /&gt;
* pluto-website-admin (220) - more updates for mysql -&amp;gt; mysqli conversion&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201605312323+08fb8202 ==&lt;br /&gt;
* pluto-website-admin (220) - fix Text Command button to honor parameters from Screen_CommandParameter&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller to fix spamming of logs with constant updates of device data.&lt;br /&gt;
&lt;br /&gt;
== Update trusty-i386/amd64 201605310531+04df53f5 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - get the stream uri from onvif camera and save it in a device data for use by other devices&lt;br /&gt;
* pluto-website-admin (220) - adate to adodb 5.20.4 and change db driver from mysql to mysqli&lt;br /&gt;
* pluto-updatemedia (405,406) - tag writing/deletion of values update&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201605261039+410242d2 ==&lt;br /&gt;
* pluto-media-database (233) - remove FatGroupBy query as it is massive and no longer required&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** FIX UpdateMedia not detecting changes in files on disk.  Fixes: UpdateMedia not reading modification times properly.&lt;br /&gt;
** improve image reading/writing for mp3/mp4 files, add image handling for asf/wma, improve track art-&amp;gt;performer/album artist matching.&lt;br /&gt;
** don&#039;t add network shares to inotify watch list&lt;br /&gt;
* pluto-system-database (211) - new qml-* pkg definitions for qorbiter&lt;br /&gt;
* pluto-plutoutils (196,197) - add fn&#039; to determine filesystem type of a file&lt;br /&gt;
* lmce-disked-interactor (897,898) - make sure we see the core and have an IP prior to attempting contact&lt;br /&gt;
* pluto-bootscripts (234) - make sure we see the core prior to continuing to boot an MD&lt;br /&gt;
* pluto-website-admin (220) - various fixes in the media page&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 - 201605171740 c6d63dc6 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3, ogg, flac, mp4, wv, wav, oga, mpc, spx, opus, tta, m4a, m4r, m4p, 3g2, m4v, wma, asf, aif, aiff, afc, aifc, ape, s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64  201605131052+2542a526 ==&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - udev rule to ignore usbhid portion of device, permits orbiter to enter screensaver&lt;br /&gt;
* pluto-bootscripts (234) - permit devices that have died 50 times to attempt to restart after a router reload. Firewall fix for manual defined chains.&lt;br /&gt;
* pluto-sound-card-scripts (579) - don&#039;t assume cardid=1, determine phoenix cardid from aplay.&lt;br /&gt;
* pluto-media-database (233) - additional AttributeType &amp;quot;Album Artist&amp;quot;&lt;br /&gt;
* lmce-media-identifier (931,932) - updates for Album Artist tag.&lt;br /&gt;
* pluto-orbiter (119,138) - updates for Album Artist tag.&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** updates for Album Artist tag&lt;br /&gt;
** fix mainMediaFileSync.php. OutsideAccess page showing the options (again). &lt;br /&gt;
** And typo fixes for issue #2643. &lt;br /&gt;
** Firewall page reload issue 2636#. Firewall gui do not show &amp;quot;NULL&amp;quot;.&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3:ogg:flac:mp4:wv:wav::oga:mpc:spx:opus:tta:m4a:m4r:m4p:3g2:m4v:wma:asf:aif:aiff:afc:aifc:ape:s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update jessie 20160427 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for RPi&lt;br /&gt;
* lmce-disked-md-rpi2 (889) - +x firstboot_md_rpi2 to ensure it&#039;s picked up properly&lt;br /&gt;
&lt;br /&gt;
== Update jessie 201604130947+0083d387 ==&lt;br /&gt;
== Update 1204/1404-i386/amd64 201604101031-0b47a986 ==&lt;br /&gt;
* pluto-website-admin, pluto-boot-scripts (220,234) - Firewall Fixes for GUI and inner working of the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603251155+a1c0f6ea ==&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - File view implemented. Fixed not being able to leave resume menu.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603222119+336464d8 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller  to fix floorplan / status being improperly updated.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t mount optical discs as HDDs&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201603220706+c3c4b899 ==&lt;br /&gt;
* lmce-md-meta (450) - for some reason this is not in the main repo&lt;br /&gt;
* lmce-media-identifier - fixed for libcdio&lt;br /&gt;
&lt;br /&gt;
== Update jessie-rpi 60faa181 ==&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - adds video resizing so UI1 can be exposed while video is playing.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 armhf 31c5d994 ==&lt;br /&gt;
== Update 1404 i386 52e39875 ==&lt;br /&gt;
* pluto-storage-devices (533) - fix ntfs detection&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 - 49a8cbf1 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - a little better device to device template mapping&lt;br /&gt;
* pluto-website-admin (220) - fix adv.zwave page and adding secure devices&lt;br /&gt;
* lmce-disked-* - update the disked md/mid meta/base/device pkgs, specific fixes for 1404 joggler&lt;br /&gt;
* lmce-json-plugin (876,877) - first time addition to the main repo&lt;br /&gt;
* libdvdid0 (replacement) - first time addition to the repo, for use by Media Identifier&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - enable disabling internal volume control, similar to how logitechmediaserver does&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1404(armhf)/jessie(rpi)-a84db86f ==&lt;br /&gt;
* lmce-launch-manager (298,299) - only update squeeze devices when running on the core, redundant elsewhere.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404-87954508 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t fail if dvdcss2 cannot be automatically installed.&lt;br /&gt;
* pluto-hald (529,530) - reinstate tty detection, seperate from usb-serial, use direct parent for udi naming.&lt;br /&gt;
* pluto-boot-scripts (234) - disable buildall, the script doesn&#039;t run so why waste time creating it.&lt;br /&gt;
* lmce-launch-manager (298,299)&lt;br /&gt;
** update squeezebox players on router reloads from Launch_Manager&lt;br /&gt;
** call Config_Device_Changes in startCoreServices to ensure everything gets its&#039; Need Configure flag reset.&lt;br /&gt;
&lt;br /&gt;
== Update a332f49a ==&lt;br /&gt;
* lmce-install-scripts (391) - fix missing quote in MD installation.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix missing &#039;fi&#039; in BootMessage.sh&lt;br /&gt;
** fix usb.1 system serial port listing/translating&lt;br /&gt;
* lmce-media-identifier (931,932) - fix segfault, CDs are identified, cd-ripping functional again&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** prioritize new conf dir over old conf dir, fix install on systems upgraded from 1204-&amp;gt;1404&lt;br /&gt;
** redirect mythweb to html/mythweb&lt;br /&gt;
* pluto-hald (529,530) - updates to serial port naming, specifically for odroid.&lt;br /&gt;
* pluto-storage-devices (533) - fix mounted drive detection and add detection for drives mounted in /proc/cmdline like rpi.&lt;br /&gt;
&lt;br /&gt;
== Update 1204=201602080446+2028f850 &amp;lt;br&amp;gt; 1404=201602071815+c31bc44f ==&lt;br /&gt;
* lmce-install-scripts (391)&lt;br /&gt;
** enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
* lmce-core (888) - enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
* pluto-storage-devices (533) - redo StorageDevices_Radar using blkid for internal HDD identification.  /dev/disk/by-path/ is not present anymore.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
** new VerifyDistro.sh script and call the script on boot.&lt;br /&gt;
*** Preventative mostly.  Intended to ease pain for those that upgrade distros.&lt;br /&gt;
*** Ensure child devices, onscreen orbiter, have the proper PK_Distro set.&lt;br /&gt;
&lt;br /&gt;
== Update 296fdcd3 ==&lt;br /&gt;
* pluto-website-admin (220) - fix depends versioning&lt;br /&gt;
* pluto-hald (529,530) - fix depends versioning&lt;br /&gt;
* pluto-boot-scripts (234) - fix depends versioning&lt;br /&gt;
* pluto-system-database (211) - fix depends versioning&lt;br /&gt;
* pluto-orbitergen (226,227) - fix depends versioning&lt;br /&gt;
* lmce-disked-md-base (801) - fix depends versioning&lt;br /&gt;
* lmce-install-scripts (391) - fix depends versioning&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix depends versioning&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix depends versioning&lt;br /&gt;
* lmce-datalogger-plugin (686,687) - fix depends versioning &lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix depends versioning&lt;br /&gt;
&lt;br /&gt;
== Update f3a444c0 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** use newer .sh script rather than obsolete .pl script for dialplan creation&lt;br /&gt;
** fix Directory listing on cisco phones&lt;br /&gt;
** fix delete buttons on internet radio page.&lt;br /&gt;
* pluto-hald (529,530)&lt;br /&gt;
** add &#039;usb&#039; to &#039;pci&#039; and &#039;platform&#039; as valid bus addresses&lt;br /&gt;
** permit adding of usb devices with usb_serial or tty children&lt;br /&gt;
* pluto-boot-scripts (234) - update SetupAudioVideo.sh to more reliably address nvidia hdmi audio outputs&lt;br /&gt;
* lmce-asterisk (replacement) - live_dangerously for now to get all the necessary Voicemail modules to load&lt;br /&gt;
* pluto-system-database (211) - new DD Number of jobs for orbiter plug-in/orbitergen&lt;br /&gt;
* pluto-boot-scripts (234) - updates to RegenOrbiter scripts for parallel job queued orbiter generation.&lt;br /&gt;
* pluto-orbitergen (226,227) - new depends on GNU parallel&lt;br /&gt;
* lmce-disked-md-base (801) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* lmce-install-scripts (391) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - remove hardcoded ip address, get from db instead.&lt;br /&gt;
* lmce-diskless-tools (627,628) - only run UpdateDebCache.sh if it is executable&lt;br /&gt;
* lmce-datalog-plugin(686,687) - fix pear install command in postinst&lt;br /&gt;
* lmce-advanced-ip-camera(812,813) - add basic onvif support (snapshot,PTZ)&lt;br /&gt;
&lt;br /&gt;
== Update 31792 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of new External_Media_Identifier, testing CDDB ids&lt;br /&gt;
&lt;br /&gt;
== Update 31783 ==&lt;br /&gt;
* pluto-libserial (190,191) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-dcecommon (192,193) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-irbase (194,195) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-plutoutils (196,197) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-vipshared (199,200) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-serializeclass (198,238) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-libbd (239,240) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-ra (247,248) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-main-db (201,237) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-media-db (254,255) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-security-db (278,277) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-sdl-helpers (346,347) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-messagetrans (398,401) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-game-db (675,676) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-windowutils (677,678) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-datalog-db (688,689) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
&lt;br /&gt;
== Update 31782 ==&lt;br /&gt;
* pluto-std-plugins - fix FK_File search inside Attribute in Media_Plugin&lt;br /&gt;
&lt;br /&gt;
== Update 31774 ==&lt;br /&gt;
* lmce-disked-mid-base (899) - fix error in postinst&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come (this should be in but apt-get is getting 404 errors)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add &amp;quot;remove failed node&amp;quot; command&lt;br /&gt;
* pluto-website-admin - add &amp;quot;remove failed node&amp;quot; command for zwave advanced page&lt;br /&gt;
&lt;br /&gt;
== Update 31760 ==&lt;br /&gt;
* lmce-disked-md-base (801) - fix another error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31757 ==&lt;br /&gt;
* lmce-core (888) - overwrite AutostartCore conf value&lt;br /&gt;
* lmce-md-meta (450) - overwrite AutostartMedia conf value&lt;br /&gt;
* lmce-mid-meta (962) - missing deb&lt;br /&gt;
* lmce-hybrid (769) - exit 0 in postinst, just to be sure&lt;br /&gt;
* lmce-disked-md-base (801) - fix error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31754 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - reconnect before send&lt;br /&gt;
&lt;br /&gt;
== Update 31752 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - remove hard coded caller id &#039;Cherryhomes, Tho&#039;, use incoming caller id.&lt;br /&gt;
&lt;br /&gt;
== Update 31750 ==&lt;br /&gt;
* pluto-website-admin (220) - fix postinst error notice on precise.&lt;br /&gt;
* pluto-boot-scripts (234) - (re)start asterisk, otherwise configuration doesn&#039;t occur and sip phones cannot register&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - force-reload apache2 after disabling mythbuntu sites&lt;br /&gt;
* lmce-md-meta (450) - don&#039;t overwrite conf values that are already set&lt;br /&gt;
* *openzwave* (replacement) - version bump, upgrade fixes to upstream files&lt;br /&gt;
&lt;br /&gt;
== Update 31744 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come&lt;br /&gt;
&lt;br /&gt;
== Update 31742 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Gui changes to not confuse people. &lt;br /&gt;
** outsideaccess works together with the firewall. &lt;br /&gt;
** phonelines note on protocol for meaning of &amp;quot;SPA&amp;quot; and a status for this protocol setting, port can be changed if needed else it will be the default (5060).&lt;br /&gt;
&lt;br /&gt;
== Update 31739 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix absolute timed events&lt;br /&gt;
&lt;br /&gt;
== Update 31723 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix nfs-premount script in default diskless image.&lt;br /&gt;
* lmce-dlna(842,843) - compatibility fixes&lt;br /&gt;
* lmce-install-scripts (391) - generate ssh keys so openssh-server can accept connections&lt;br /&gt;
* pluto-createdevice (303,304) - hide errors, specifically during initial package postinst&lt;br /&gt;
* lmce-cec-adaptor (871,872) - fix cec remotes not getting to lmce&lt;br /&gt;
&lt;br /&gt;
== Update 31693 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - Fixes #2530 - fix errors in mythtvdb synchronization scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31686 ==&lt;br /&gt;
* lmce-install-scripts (391) - deal with firstboot stuffenz&lt;br /&gt;
* pluto-system-database (211) - add proxy orbiter DT depends for generic web device&lt;br /&gt;
* pluto-website-admin (220) - order by photo file name in screen saver/photo browser&lt;br /&gt;
* pluto-boot-scripts (234) - try ubiquity before anything else, and reboot after the normal firstboot - breaks live boot on dvd atm&lt;br /&gt;
* lmce-diskless-tools (627,628) - permit i386 diskless image building on amd64 cores, ensure processes are killed in chroot before unmounting (deals with systemd for now)&lt;br /&gt;
&lt;br /&gt;
== Update 31660 ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) &lt;br /&gt;
**PS3 control screen, fix layout issue. adds seperate button group (triangle, circle, etc) and navigation arrows. Also adds power off button to properly exit screen&lt;br /&gt;
* pluto-website-admin (220) - prevent creation of extra &#039;blank&#039; network interfaces&lt;br /&gt;
&lt;br /&gt;
== Update 31655 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - close connection after use&lt;br /&gt;
* pluto-website-admin (220) - fill ServerName var if it is unset, not if it is set.&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - unify service control&lt;br /&gt;
* pluto-boot-scripts (234) - unify service control&lt;br /&gt;
* pluto-dhcpd-plugin (302) - unify service control&lt;br /&gt;
* pluto-disk-monitor (554) - unify service control&lt;br /&gt;
* pluto-mythtv-player (133,152) - unify service control&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - unify service control&lt;br /&gt;
* pluto-raid-tools (617) - unify service control&lt;br /&gt;
* pluto-storage-devices (533) - unify service control&lt;br /&gt;
* lmce-update-system (650,651) - unify service control&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - unify service control&lt;br /&gt;
* pluto-vdr-plugin (466,467) - unify service control&lt;br /&gt;
* pluto-vdr (468,469) - unify service control&lt;br /&gt;
* pluto-database-settings (407) - unify service control&lt;br /&gt;
* lmce-asterisk (replacement) - unify service control&lt;br /&gt;
* lmce-diskless-tools (627,628) - unify service control&lt;br /&gt;
* lmce-install-scripts (391) - unify service control&lt;br /&gt;
* pluto-updatemedia (405,406) - unify service control&lt;br /&gt;
* pluto-newmdinteractor (538,539) - unify service control&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - Fix size issues, floorplan popups.&lt;br /&gt;
&lt;br /&gt;
== Update 31621 ==&lt;br /&gt;
* pluto-mythtv-player (133,152) - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 31618 ==&lt;br /&gt;
* lmce-asterisk (replacement) - update db for chan_sccp-v4.2 and fix bug requiring manual asterisk reload on boot&lt;br /&gt;
&lt;br /&gt;
== Update 31615 ==&lt;br /&gt;
* pluto-* - rebuild with new libraries&lt;br /&gt;
* lmce-* - rebuild with new libraries&lt;br /&gt;
&lt;br /&gt;
== Update 31606 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix EPG data on orbiters, myth stores everything in UTC now.&lt;br /&gt;
* pluto-pluto-main-db (201,237) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-media-db (254,255) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-security-db (277,278) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-datalog-db (688,689) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-game-db (675,676) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-updateentarea (341,342) - don&#039;t send empty play command when resetting alarm&lt;br /&gt;
&lt;br /&gt;
== Update 31580 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - use bypass-event to avoid watching media events when playing alerts&lt;br /&gt;
* pluto-updateentarea (341,342) - send bypass-event with security event commands&lt;br /&gt;
* libcec3 debs (replacement) - removes conflict data with libcec2&lt;br /&gt;
&lt;br /&gt;
== Update 31575 ==&lt;br /&gt;
* lmce-asterisk (replacement) - play back alert notification file&lt;br /&gt;
* pluto-std-plugins (116,135) - create alert notification file with correct format&lt;br /&gt;
* pluto-boot-scripts (234) - fixes for nvidia drivers on precise, upgrades to nvidia-340&lt;br /&gt;
* lmce-avwizard-sounds (replacement) - don&#039;t copy fakeroot files (it is redundant it is)&lt;br /&gt;
* video-wizard-videos (replacement) - deb is back to normal size, not 2x&lt;br /&gt;
&lt;br /&gt;
== Update 31553 ==&lt;br /&gt;
* pluto-website-admin (220) - fix error that wipes out the apache2.conf&lt;br /&gt;
* pluto-hald (529,530) - fix segfaults with firewire hardware&lt;br /&gt;
&lt;br /&gt;
== Update 31547 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some API changes in OZW 1.3, more device template mappings&lt;br /&gt;
* pluto-boot-scripts (234) - typo fix for nvidia drivers&lt;br /&gt;
* lmce-disked-md-base (801) - set hostname on disked MDs, set timezone on disked MDs&lt;br /&gt;
* lmce-install-scripts (391) - set hostname on disked MDs, set timezone on disked MDs &lt;br /&gt;
* pluto-website-admin was generated---&amp;gt; lmce-website-admin (220) - set apache2 ServerName to silence error on boot&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates, revert to ruby 1.8&lt;br /&gt;
* pluto-generic-serial-device (307,335) - admit defeat for now, revert to ruby 1.8&lt;br /&gt;
&lt;br /&gt;
== Update 31533 ==&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31520 ==&lt;br /&gt;
* chan-sccp_v4.2 (replacement) - Upgrad asterisk SCCP channel driver to newest version&lt;br /&gt;
* pluto-vdr-plugin (466,467) - implement background loading of EPG from VDR to avoid crashes due to commands not completing on time&lt;br /&gt;
* pluto-boot-scripts (234) - some logic changes and added messages for video driver install debugging&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - link new channels dir to old channels dir for backwards compatibility&lt;br /&gt;
&lt;br /&gt;
== Update 31503 ==&lt;br /&gt;
* *zwave* (replacement) - new upstream openzwave version 1.3.1224&lt;br /&gt;
* lmce-zwave-ozw(505,506) - build against new libopenzwave1.3&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates&lt;br /&gt;
* lmce-disked-interactor (897,898) - make disked interactor aware of wheezy and jessie.&lt;br /&gt;
&lt;br /&gt;
== Update 31500 ==&lt;br /&gt;
* *myth* (replacement) - fix depends on non-existent packages&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst - verified installing now&lt;br /&gt;
* pluto-std-plugins (116,135) - Use integer comparison for brightness state&lt;br /&gt;
&lt;br /&gt;
== Update 31491 ==&lt;br /&gt;
* lmce-avwizard-skin-basic (replacement) - fix packaging of avwizard skin&lt;br /&gt;
* *myth* (replacement) - mythtv 0.27.5+fixes with Schedules Direct fix included&lt;br /&gt;
* *asterisk* (replacement) - asterisk 11.7 backport from trusty&lt;br /&gt;
* libical* (replacement) - for asterisk 11.7&lt;br /&gt;
* *cec* (replacement) - libcec3&lt;br /&gt;
* libplatform* (replacement) for libcec3&lt;br /&gt;
* lmce-cec-adaptor (871,872) - build against libcec3&lt;br /&gt;
* lmce-mediatomb (702) - fix pkg installation&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - update protocol version and secret word (shhh) for 0.27.5+fixes&lt;br /&gt;
* lmce-diskless-tools (627,628) - remove call to obsolete script in Diskless_Setup.sh&lt;br /&gt;
* pluto-vdr-plugin (466,467) - return full EPG (used in qOrbiter EPG Grid), improve communication speed with SVDRP&lt;br /&gt;
* pluto-slim-server-streamer (289,290) - emit time code event, fix duration parsing&lt;br /&gt;
* pluto-boot-scripts (234) - fix headless booting, update 1404 nvidia driver&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* lmce-md-meta (450) - add depends on alsa-utils&lt;br /&gt;
* pluto-website-admin (220) - Fix cdrviewer (Call Details Records) to accept SSL conections as well, firewall gui change to set Offline rules in red as they are not executed.&lt;br /&gt;
* pluto-app-server (126,145)- new poweroff mode I for ignore, since N is already in use&lt;br /&gt;
&lt;br /&gt;
== Update 31420 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add depends on pluto-boot-scripts for deb cache script&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31411 == &lt;br /&gt;
* pluto-avwizard (555,556) - fix depends on avwizard skins basic, should no longer care about version&lt;br /&gt;
* pluto-boot-scripts (234) - more explicity logic for core only booting, fix startup script db errors&lt;br /&gt;
* lmce-update-system (650,651) - remove and disable old init.d script from /etc/init.d&lt;br /&gt;
* pluto-plutodhcp (330,491) - depends on apparmor&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-dhcpd-plugin (302) - remove hardcoded IP addresses from configure scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31387 ==&lt;br /&gt;
* lmce-weather-plugin - make change to allow for tonight&#039;s forecast data (TSCHAK)&lt;br /&gt;
* lmce-asterisk (replacement) - remove obsolete phonetic engines and replace with espeak, voices remain the same&lt;br /&gt;
* mbrola (replacement) - base mbrola pkg for mbrola voices (add armhf binary)&lt;br /&gt;
* pluto-asterisk (270,271) - generate fr and de voicemail menus with espeak now&lt;br /&gt;
* lmce-core (888) - add depends on iptables&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31378 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Start_KDE.sh ownership fix, AV config updates&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-avwizard (555,556) - update pkgs &amp;amp; depends &amp;amp; config scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - do not run update deb_cache during dvd creation&lt;br /&gt;
* pluto-x-scripts (520) - fixups to Xconfigure.sh&lt;br /&gt;
&lt;br /&gt;
== Update 31356 ==&lt;br /&gt;
* pluto-system-database (211) - update depends&lt;br /&gt;
* pluto-orbiter (119,138) - update depends&lt;br /&gt;
* lmce-diskless-tools (627,628) - speedup dpkg in diskless create, fix missing quotes&lt;br /&gt;
&lt;br /&gt;
== Update 31352 ==&lt;br /&gt;
* pluto-motion-wrapper - more config file location fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 31351 ==&lt;br /&gt;
* pluto-boot-scripts (234) - change service &#039;nis&#039; to &#039;ypserv&#039;, nis is no longer a service name&lt;br /&gt;
* pluto-website-admin (220) - remove &#039;idiot&#039; text, let&#039;s be nice to people.&lt;br /&gt;
* lmce-core (888) - do not create and config under ubiquity&lt;br /&gt;
* lmce-md-meta (450) - do not create and config under ubiquity&lt;br /&gt;
* motion (replacement) - fix bad config file setting in rules&lt;br /&gt;
&lt;br /&gt;
== Update 31337 ==&lt;br /&gt;
* motion (replacement) - new version of motion to match new configuration values generated by linuxmce&lt;br /&gt;
&lt;br /&gt;
== Update 31331 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix for brightness events&lt;br /&gt;
* pluto-boot-scripts (234) - fix kdm disabling, start ubiquity after network config&lt;br /&gt;
* lmce-diskless-tools (627,628) - add upstart overrides for kdm&lt;br /&gt;
* lmce-install-scripts (391) - start ubiquity after network config&lt;br /&gt;
&lt;br /&gt;
== Update 31314 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add missing depends&lt;br /&gt;
&lt;br /&gt;
== Update 31292 ==&lt;br /&gt;
* lmce-core-locator (replacement) - (1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-system-database (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* All .debs created by MakeRelease - removal of all Pre-Depends, everything is now a Depends entry (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
== Update 31228 ==&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-local-database&lt;br /&gt;
&lt;br /&gt;
== Update 31214 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package (not in repo, need build-replacements.sh svn up&#039;d?)&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - preinst/postinst updates&lt;br /&gt;
* pluto-boot-scripts (234) - preinst/postinst updates&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-disked-md-base (801) - firstboot updates&lt;br /&gt;
&lt;br /&gt;
== Update 31187 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package&lt;br /&gt;
* pluto-confirm-dependencies (281,272) - new depends on lmce-install-scripts (fixes unable to apt-get dist-upgrade)&lt;br /&gt;
* lmce-md-meta (450) - new depends on nfs-common, openssh-server and pastebinit&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - update depends, preinst/postinst&lt;br /&gt;
* pluto-boot-scripts (234) - depends &amp;amp; preinst/postinst updates&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - add override mythweb defaults in pkg preinst&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - update depends&lt;br /&gt;
&lt;br /&gt;
== Update 31133 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** enable WakeMDs.sh to wake any halted MDs.&lt;br /&gt;
** consolidate all boot script launching to /etc/init.d/linuxmce&lt;br /&gt;
* pluto-avwizard (555,556) - moves start script to /usr/pluto/bin, called by /etc/init.d/linuxmce now&lt;br /&gt;
* lmce-update-system (650,651) - removes init.d script, called by /etc/init.d/linuxmce now&lt;br /&gt;
* pluto-website-admin (220) - GUI changes on network settings if an bridge is configured on the db.&lt;br /&gt;
* lmce-core (888) - depend on pluto-asterisk, lmce-asterisk, lmce-install-scripts&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* pluto-generic-serial-device (307,335) - wildshot attempt at fixing segfaults&lt;br /&gt;
&lt;br /&gt;
== Update 31103 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** Network bridging now possible  for wifi AP to have the same network as the local lan. &lt;br /&gt;
** ipv6 on/off for network interfaces. Read multiple ipv6 interfaces from the db.&lt;br /&gt;
** re-enable HaltMDs.&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* libqhttpserver (912) needed for linuxmce nvr&lt;br /&gt;
* lmce-launch-manager - (298,299) - ?&lt;br /&gt;
&lt;br /&gt;
== Update 31087 ==&lt;br /&gt;
* lmce-weather (838,839) - Fix a serious bug in getconfig where incorrect configuration device data would crash program. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 31083 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes #2422, advanced zwave page broken in chrome&lt;br /&gt;
* pluto-system-database (211) - thumbnail screen fixes&lt;br /&gt;
&lt;br /&gt;
== Update 31074 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** setEa2.php - Fix settings for creating entertain area.&lt;br /&gt;
** qOrbiterGenerator.php - Fix erroneous EA creation by removing it.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Fix incorrect setting for enabling / disabling motion.&lt;br /&gt;
&lt;br /&gt;
== Update 31069 ==&lt;br /&gt;
* pluto-website-admin (220) - setEa2.php Fix settings for creating entertain area.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Initial build.&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (881) - Large update of skins and internals.&lt;br /&gt;
&lt;br /&gt;
== Update 31061 ==&lt;br /&gt;
* lmce-squeezeslave (762) - Add configuration DD to command line&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DB package updates&lt;br /&gt;
** restore previous video remote layout with Options button to select subtitles/audio tracks/video tracks from a datagrid list.&lt;br /&gt;
* pluto-website-admin (220) - firewall.php edit rules for non advanced firewall and some other small fixes.&lt;br /&gt;
* lmce-asterisk (replacement) - sip config modules to avoid autoload.&lt;br /&gt;
&lt;br /&gt;
== Update 31051 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** firewall.php not adding rules now fixet.&lt;br /&gt;
** Test buttons for Hue lights&lt;br /&gt;
** Security outsideAccess page now works nicely with the new firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 31044 ==&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
&lt;br /&gt;
== Update 31031 ==&lt;br /&gt;
* pluto-website-admin (220) - firewall.php after a strange fault and some layout fixes.&lt;br /&gt;
* lmce-mediatomb (702) - don&#039;t assume mediatomb is already running.&lt;br /&gt;
&lt;br /&gt;
== Update 31013 ==&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* pluto-boot-scripts (234) - Network Parameter count for more interfaces set and Network firewall accepting postrouting Masquerade  for other network interfaces.&lt;br /&gt;
&lt;br /&gt;
== Update 30985 ==&lt;br /&gt;
* pluto-website-admin (220) - #2268 fail2ban integration logging failed user login attempt.&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** #2268 fail2ban script not insert existing rules to our db.&lt;br /&gt;
** Support for audio output select on rpi via web admin&lt;br /&gt;
* lmce-diskless-tools (627,628) - update syslinux depends to syslinux-common&lt;br /&gt;
* lmce-omx-player (829,830) - Honour audio output selection of rpiMD&lt;br /&gt;
* lmce-squeezeslave (762) - Fix detection for squeezelite&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - further fixes&lt;br /&gt;
* lmce-usb-gamepad (795,796) - rewrite the whole main loop to suck less. hold-down repeats work, input handling more sane.&lt;br /&gt;
&lt;br /&gt;
== Update 30926 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Fix for #2368 insert firewall rules en #2064 edit and delete chains (except some system chains).&lt;br /&gt;
** Support for brightness based events.&lt;br /&gt;
* pluto-std-plugins (116,135) - Support for brightness based events&lt;br /&gt;
* lmce-omx-plugin (831,832) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** Database additions for XBOX 360 Gamepad (device templates, package)&lt;br /&gt;
** Modification of OMX Plugin to allow priority to be changed.&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - the XBOX 360 Gamepad driver, uses xboxdrv userspace driver.&lt;br /&gt;
* lmce-usb-gamepad (795,796) - additions here for above XBOX 360 Gamepad support.&lt;br /&gt;
&lt;br /&gt;
== Update 30862 ==&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress can now read latest files per linuxmce user.&lt;br /&gt;
&lt;br /&gt;
== Update 30860 ==&lt;br /&gt;
* lmce-weather (838,839) - some fixes by cfernandes&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress.&lt;br /&gt;
* pluto-boot-scripts (234) - more mail fixes&lt;br /&gt;
&lt;br /&gt;
== Update 30855 ==&lt;br /&gt;
* pluto-vdr, pluto-vdr-plugin - remove hardcoding of core IP and network address, but depend on the pluto.conf entries for DCERouter.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location (again)&lt;br /&gt;
* lmce-diskless-tools - stop copying apt configs from the core&lt;br /&gt;
* pluto-boot-scripts - fix postfix setup #2393&lt;br /&gt;
&lt;br /&gt;
== Update 30841 ==&lt;br /&gt;
* lmce-avwizard-sounds - fix replaces/conflicts data&lt;br /&gt;
* lmce-skins-basic - fix replaces/conflicts data&lt;br /&gt;
* lmce-avwizard-skin-basic - fix replaces/conflicts data&lt;br /&gt;
&lt;br /&gt;
== Update 30383 ==&lt;br /&gt;
* pluto-website-admin (220) - Add Hue lights related test button.&lt;br /&gt;
* pluto-boot-scripts - Add another option --autobackup to PlutoRestorePoint.sh to allow backup of pluto_main only&lt;br /&gt;
&lt;br /&gt;
== Update 30814 ==&lt;br /&gt;
* pluto-Boot-scripts - Firewall order by place and PK_Firewall to let rules stay on top on the middle or on the bottom.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location&lt;br /&gt;
* lmce-hue-controller (862,863) - Fix bug in adding new lights, now adds serial number.&lt;br /&gt;
* pluto-website-admin (220) - Fix oops relating the missing &#039;.&#039; which caused operations/login.php not to work.&lt;br /&gt;
&lt;br /&gt;
== Update 30783 ==&lt;br /&gt;
* lmce-nbd-client-wrapper - new pkg to hold common script&lt;br /&gt;
* pluto-xine-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* lmce-vlc-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* pluto-boot-scripts - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
* pluto-storage-devices - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30777 ==&lt;br /&gt;
* lmce-core - depend on openswan&lt;br /&gt;
* pluto-system-database - pkg updates&lt;br /&gt;
* pluto-boot-scripts - remove check for openswan from bootscript&lt;br /&gt;
* pluto-generic-serial-device - update to ruby 1.9.1&lt;br /&gt;
&lt;br /&gt;
== Update 30773==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller internals to now include polling, so as to make sure floorplan data is accurate. Changes underlying mechanisms for how lights are handled in preparation for extending additional support for Cree lights and sensors devices.&lt;br /&gt;
&lt;br /&gt;
== Update 30767 ==&lt;br /&gt;
* lmce-diskless-tools - update diskless archive name to reflect current compression method xz.&lt;br /&gt;
* pluto-website-admin (220) - updates to internet radio, moves add channels to a seperate page.  Thanks Dap-P!&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
* pluto-vdr - adds missing depends on vdr in trusty&lt;br /&gt;
* lmce-core - update depends to new pkg name lmce-avwizard-sounds&lt;br /&gt;
* pluto-avwizard - update depends to new pkg name lmce-avwizard-skins-basic&lt;br /&gt;
* lmce-clock-screen-saver - make the clock screen saver use the WMController/wmctrl methods for setting window visibility to be compatible with Orbiter. (TSCHAK) (Trusty only)&lt;br /&gt;
* pluto-storage-devices - Make sure that smbpasswd is used to create or update sambahelper&#039;s password (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30726 ==&lt;br /&gt;
* pluto-vdr - VDR player&#039;s package assumed a correctly installed vdr package which includes an entry in /etc/default for vdr. We no longer fail on a missing file.&lt;br /&gt;
&lt;br /&gt;
== Update 30724 ==&lt;br /&gt;
* lmce-weather - updates to weather sources, add OpenWM source.  Thanks SBCC and cfernandes!&lt;br /&gt;
* lmce-skins-* - adds missing telecom icons, updates/adds weather icons&lt;br /&gt;
* lmce-avwizard-sounds - remove extraneous stuff from pkg, reduce pkg size back to normal.  Proper replaces/conflicts/data...&lt;br /&gt;
* lmce-avwizard-skin-basic - Proper replaces/conflicts/data...&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
&lt;br /&gt;
== Update 30718 ==&lt;br /&gt;
* lmce-core - new depends on lmce-skins*&lt;br /&gt;
* lmce-md-meta - add depends on pnp-detection scripts&lt;br /&gt;
* lmce-hybrid - new depends on lmce-skins*&lt;br /&gt;
* pluto-avwizard (556,555) - add pciutils as a depends, still need to deal with multiarch stuff so this will break armhf, we will not update armhf for now, it doesn&#039;t use avwizard but does install it.&lt;br /&gt;
* lmce-diskless-tools - minor diskless create fixups&lt;br /&gt;
* pluto-orbiter - missing depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio script&lt;br /&gt;
* pluto-website-admin (220) - recognize MIDs as top level devices&lt;br /&gt;
* pluto-mythtv-player - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 30628 ==&lt;br /&gt;
* *-database - fix install issues&lt;br /&gt;
&lt;br /&gt;
== Update 30622 ==&lt;br /&gt;
* pluto-orbiterinstallers - fix depends issue&lt;br /&gt;
* pluto-system-database - lots of compat updates&lt;br /&gt;
* lmce-* - lots of compat updates&lt;br /&gt;
* pluto-* - lots of compat updates&lt;br /&gt;
&lt;br /&gt;
== Update 30618 ==&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio scripts&lt;br /&gt;
* pluto-website-admin (220) - updated internet radio page&lt;br /&gt;
&lt;br /&gt;
== Update 30571 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - send &amp;quot;Device is turned on or off&amp;quot; event when appropriate so the corresponding event works as expected&lt;br /&gt;
* lmce-squeezeslave (762) - set to pnp create without prompting&lt;br /&gt;
* lmce-runtime-dependencies (903) - pkg to help consolidate runtime depends.&lt;br /&gt;
* lmce-core (888) - updated depends&lt;br /&gt;
* lmce-md-meta (450)- updated depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated depends&lt;br /&gt;
* pluto-createdevice (303,304) - updated depends&lt;br /&gt;
* lmce-weather(838,839) - fix potential segfault&lt;br /&gt;
* pluto-website-admin (220) - add &amp;quot;replace node&amp;quot; button to advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 30549 ==&lt;br /&gt;
* pluto-mythtv-player - fix misaligned data values during mythtv.txt creation.&lt;br /&gt;
&lt;br /&gt;
== Update 30526 ==&lt;br /&gt;
* lmce-core - new pkg&lt;br /&gt;
* lmce-hybrid - pkg depends changes&lt;br /&gt;
* lmce-md-meta - pkg depends changes&lt;br /&gt;
* pluto-dcerouter - pkg depends changes&lt;br /&gt;
* pluto-photo-screen-saver - pkg depends changes&lt;br /&gt;
* pluto-boot-scripts - pkg depends changes&lt;br /&gt;
* pluto-orbiter - pkg depends changes&lt;br /&gt;
* pluto-simplephone - pkg depends changes&lt;br /&gt;
* pluto-website-admin - pkg depends changes&lt;br /&gt;
* lmce-mythtv-scripts - pkg depends changes&lt;br /&gt;
* pluto-system-database - pkg depends changes&lt;br /&gt;
* lmce-squeezeslave (762) - fix launch script, automatically create associated squeezebox player on the core.&lt;br /&gt;
* pluto-std-plugins - run New_PnP_MD.sh for new MID devices as well.&lt;br /&gt;
* lmce-diskless-tools - don&#039;t fail on invoke-rc.d during diskless create, exit gracefully and continue.&lt;br /&gt;
* pluto-mythtv-player - fix diskless create failures due to old hacks.  more work is needed here overall on mythtv integration.&lt;br /&gt;
&lt;br /&gt;
== Update 30419 ==&lt;br /&gt;
* pluto-slim-server - Make sure to turn off all Squeeze* devices when Slim Server Streamer starts or restarts (so that squeezelite does not hog sound cards.)&lt;br /&gt;
* pluto-hald (529,530) - add device node path to pnpqueue with v4l devices during detection&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - update for new lib version&lt;br /&gt;
&lt;br /&gt;
== Update 30384 ==&lt;br /&gt;
* pluto-confirm-dependencies - depend on pluto-install-scripts.&lt;br /&gt;
* pluto-disk-drive (122,141) - remove hal bits that dealt with old jukebox bugs.&lt;br /&gt;
* pluto-capture-card-scripts (580) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-pnp-detection (562) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-storage-devices (533) - convert autofs from hal to udev.&lt;br /&gt;
* pluto-bootscripts (234) - disable starting the hald since we&#039;re using udev now, remove false &#039;fail&#039; messages during reboot/shutdown&lt;br /&gt;
* pluto-slim-server-streamer - make one tweak (do not delete m_mapStreamsToPlayers entry in CMD_Stop). Streaming now works consistently, properly, with squeezebox devices and their clones. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30354 ==&lt;br /&gt;
* pluto-hald (529,530) - fix attempt to fire event for child device of usb-dongle.&lt;br /&gt;
* pluto-slim-server-streamer - Implement FF/REW (transport) trick-play control for Squeeze* devices. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30341 ==&lt;br /&gt;
* pluto-bootscripst - fixes for PPPoE users to not autostart the external interface.&lt;br /&gt;
* pluto-slim-server-streamer - Fix to power off squeezebox player when stream is not in use. This allows softsqueeze/squeezeslave/squeezelite players to let go of a sound device, when not in use (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30332 ==&lt;br /&gt;
* pluto-orbiter (118,139) - disable old hid device functionality.  Anyone who needs it can request a special build which will be provided at no extra charge. ;)&lt;br /&gt;
* pluto-bootscripts (234) - disable Gamepad Radar, functionality now in hal through udev&lt;br /&gt;
* pluto-avwizard (556,555) - fixes mangling of RemoteCmd when &amp;gt;1 remote is detected.&lt;br /&gt;
* pluto-hal-device-finder (535,536) - update to use udev rather than hal.&lt;br /&gt;
* pluto-hald (529,530) - update to use udev rather than hal.&lt;br /&gt;
* pluto-system-database (211) - updates for new detection method (joystick, cec-adaptor), update dependency data for hal pks to reflect dropping hald and add depends on udev now.&lt;br /&gt;
&lt;br /&gt;
== Update 30219 ==&lt;br /&gt;
* pluto-bootscripts (234) - Fail2ban firewall update script, and missing radioscript.sh.&lt;br /&gt;
* pluto-website-admin - Place set for rules on the firewall and bantime for fail2ban integration.&lt;br /&gt;
* pluto-std-plugins (116,135) - adds heirloom-mailx for &#039;mailx -r&#039; functionality, fixes e-mail in general info plugin&lt;br /&gt;
&lt;br /&gt;
== Update 30068 ==&lt;br /&gt;
* lmce-advanced-ip-camera(813,812) - Fixed high cpu usage if connection to camera can not be made&lt;br /&gt;
&lt;br /&gt;
== Update 30052 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - fix android pkg meta data, need to rebuild all together&lt;br /&gt;
&lt;br /&gt;
== Update 30051 ==&lt;br /&gt;
* pluto-updateentarea (341,342) - use DAY/NIGHT in watching/stopped watching events to make them smarter&lt;br /&gt;
* pluto-std-plugins (116,135) - Implement Get Device Status in General Info Plugin&lt;br /&gt;
* pluto-bootscripts (234) - fix VPN ip up/down&lt;br /&gt;
&lt;br /&gt;
== Update 30025 ==&lt;br /&gt;
* pluto-system-database (211) - column def updates&lt;br /&gt;
* pluto-local-database (214) - new Firewall columns and new VPN columns for Users table.&lt;br /&gt;
&lt;br /&gt;
== Update 30014 ==&lt;br /&gt;
* lmce-transmission-client (852) - fix postinst issue.  (Thanks SBCC)&lt;br /&gt;
== Update 29994 ==&lt;br /&gt;
More VLC Player changes to make it at least somewhat usable, there were some ugly bugs that came to light once i plopped it onto my production system. Right now sound device is plughw:0,3, if you need a different one, change it in the code.  (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* lmce-vlc-player - many little fixes to make it suck less.&lt;br /&gt;
&lt;br /&gt;
== Update 29990 ==&lt;br /&gt;
I am working on the VLC player, and it is breathing enough for basic testing. Please do not use in production environment. There is still a lot of code to write (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - updates for VLC player (TSCHAK)&lt;br /&gt;
* vlc-player (882,884) - Very early alpha developer test of the VLC player. (TSCHAK)&lt;br /&gt;
* vlc-plugin (874,875) - Very alpha developer test of the VLC plugin. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 29984 ==&lt;br /&gt;
* pluto-system-database (211) - fix bad repos in pkgs&lt;br /&gt;
* pluto-website-admin - just because I think it is necessary :-)&lt;br /&gt;
&lt;br /&gt;
== Update 29983 ==&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36937</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36937"/>
		<updated>2017-04-02T20:45:30Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: /* Upcoming fixes... */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the 1204 changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo much easier.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please include the pkg #s to facilitate building on 3x i386 targets in addition to 2x amd64 and 3x armhf targets where full builds are not always practical.  Keep in mind that most packages are referred to by two (2) package numbers from the database, a source package and a binary package.  &amp;quot;Thank you for your co-operation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
* pluto-bootscripts (234) - Typo fix for insert rule to the db. /ppp/ip-up.d/lmce-vpn-up and /ppp/ip-down.d/lmce-vpn-down works now niceley togheter with the new firewall.&lt;br /&gt;
* pluto-system-database (211) - sqlCVS commit to add Imagemagick as dependency to VLC Player, finally squashing that #($#@( start bug! (TSCHAK)&lt;br /&gt;
** Also added ir-keytable depedency to pluto-lirc-wrapper&lt;br /&gt;
* pluto-lirc-wrapper (340,421) - Ensure that ir-keytable is cleared before lircd starts to avoid unusual behavior with remotes that use kernel event subsystem (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - Fix DVD to use cifs instead of smbfs (which has been deprecated for 10 years.)&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201703301804+358c1c45 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fixes Bug #2726 - Media details now work, again.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 - 201703272335+efdf6de9 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Issue #2730 - Media Plugin changes to add support for FIFO capture card playback to VLC Player (route messages to VLC Player if it exists) -TSCHAK&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue #2729, #2730 - Implement FIFO device playback for local devices similar to file playback. (TBD: recompile VLC with PVR functionality), also multi-room playback. VLC Player is now in beta. -TSCHAK&lt;br /&gt;
* lmce-vlc-plugin (874,875) - Issue #2729 - Implement multi-room playback, VLC sync listener on core, etc. VLC functionality is now beta. -TSCHAK&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201702201438+325cc736 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix for multiple cameras and Get Image command&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue 2727, Issue 2728 - Trick play overhaul and fix audio glitches when trick play is used. &lt;br /&gt;
* pluto-boot-scripts (234) - SetupAudioVideo.sh - slight change to libvlc.conf so that trick play OSD works.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1204-1404-1604/amd64 c20633ff ==&lt;br /&gt;
* pluto-website-admin (220) - Added the case for section energyGraph and sipConf, fixed permissions for mysql asteriskuser, add sql credentials for myth, change MYSQL_NUM to MYSQLI_NUM&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1404/amd64 a7c10426 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add backports so 1204 diskless create works&lt;br /&gt;
* lmce-oauth2-server (668) - initial build of lmce oauth2 server for cloud interfacing&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404/1604 i386 - 1404x64 - 201611190055+fee90f43 ==&lt;br /&gt;
* pluto-boot-scripts (234) - database upgrades&lt;br /&gt;
* pluto-orbitergen (226,227) - database upgrades&lt;br /&gt;
* pluto-pluto-main-db (201,237) - database upgrades&lt;br /&gt;
* pluto-pluto-security-db (278,277) - database upgrades&lt;br /&gt;
* lmce-asterisk (replacement) - database upgrades&lt;br /&gt;
* pluto-system-database (211) - database upgrades&lt;br /&gt;
* pluto-local-database (214) - database upgrades&lt;br /&gt;
* pluto-security-database (256) - database upgrades&lt;br /&gt;
* pluto-telecom-database (472) - database upgrades&lt;br /&gt;
* pluto-media-database (233) - database upgrades&lt;br /&gt;
* pluto-database-settings (407) - database upgrades&lt;br /&gt;
* pluto-sqlcvs (212,213) - database upgrades&lt;br /&gt;
* pluto-std-plugins (116,135) - database upgrades&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609281853+9638f5bc ==&lt;br /&gt;
* pluto-website-admin (220) - #2705 fixed syntax error.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609271106+39103855 ==&lt;br /&gt;
* pluto-website-admin (220) - Update firewall.php GUI change some fields where reset to the default values. now the db data is honored.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** don&#039;t create initramfs for Raspbian Jessie diskless filesystems.&lt;br /&gt;
** ensure firstboot runs on diskless Jessie RPis.&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** stop/start rather than restart dhcp server, it&#039;s like nuking the site from orbit... only way to be sure.&lt;br /&gt;
** Firewall blocks udp 1900 UpNP traffic from externalinterface.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609172308+325de35d ==&lt;br /&gt;
* lmce-autotag (780, 781) linuxmceTag - fix comparison issue with media type.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609131230+5eaa4671/201609131753+5eaa4671 ==&lt;br /&gt;
* pluto-boot-scripts (234) - send dhcp vendor specific options only to wired raspberry pis.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 201609102226+fda3da63 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** rpi native pxe additions/updates&lt;br /&gt;
** extend startup timeout when booting under systemd&lt;br /&gt;
* lmce-diskless-tools (627,628) - rpi native pxe additions/updates&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DT updates for rpi native pxe&lt;br /&gt;
** add Serial Number Device Data to RPi DTs&lt;br /&gt;
** sets default PK_Distro to 22 (jessie) for RPi DTs&lt;br /&gt;
** new device data for &amp;quot;Standard Energy Meter&amp;quot;&lt;br /&gt;
* pluto-std-plugins (116,135)&lt;br /&gt;
** stores energy reading in state field for Standard Energy Meter&lt;br /&gt;
** fixes dcerouter crash when searching media&lt;br /&gt;
* pluto-updatemedia (405,406) - fix segfault when a dir is attempting to be tagged directly (without a .id3)&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - don&#039;t fail pkg install if simplephone is not running.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-i386 - 1404-i386/amd64 201607240235+899786ab ==&lt;br /&gt;
* pluto-website-admin (220) - Mysqli_real_escape_string did not work. a start with ipv6 firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/i386 201607202218+14cba09a ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) - Stream Bouncing, Additional settings for location, removed debug output, queue functionality.&lt;br /&gt;
&lt;br /&gt;
== Update 201607181902+d4cec1a0 1404-i386/amd64 - 1204-i386 ==&lt;br /&gt;
* pluto-website-admin - Update to qOrbiterGenerator.php for newer PHP version&lt;br /&gt;
&lt;br /&gt;
== Update 201607161239+6d72c3f9 1404-i386/amd64 1204-i386 ==&lt;br /&gt;
* pluto-website-admin (220) - #2678 fix Warning: Invalid argument supplied for foreach() in /var/www/lmce-admin/include/dhcpd-tools/DHCPd-parse.php on line 113&lt;br /&gt;
* pluto-boot-script&lt;br /&gt;
&lt;br /&gt;
== Update 201607151016+5b5adba3 1404/i386 &amp;amp; amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule use another escape method.&lt;br /&gt;
&lt;br /&gt;
== Update 201607122332+f0fc9c6b 1404/i386 ==&lt;br /&gt;
* pluto-boot-scripts (234) - fix #2684 clients cannot access internet when firewall is disabled. &lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule.&lt;br /&gt;
&lt;br /&gt;
== Update 201607050613+601c67da 1404-i386/amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - more fixes to the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update trusty i386/amd64 201606301955+614dfa7b ==&lt;br /&gt;
* pluto-website-admin (220) - fix for outside access port 443 not uncheckable.&lt;br /&gt;
* pluto-boot-scripts (234) - fix for not dele rules from iptables from outsideAccess.php&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201606201908+31b25c52 ==&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** unicode reading/writing working properly&lt;br /&gt;
** coverart writing to tags working properly&lt;br /&gt;
** .id3 files handled by taglib instead of id3lib.&lt;br /&gt;
** General Object Frame (GEOB) reading/writing working properly (all lmce attributes are stored in id3v2 GEOB tags for .id3/.mp3 files)&lt;br /&gt;
* pluto-website-admin (220) - more updates for mysql -&amp;gt; mysqli conversion&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201605312323+08fb8202 ==&lt;br /&gt;
* pluto-website-admin (220) - fix Text Command button to honor parameters from Screen_CommandParameter&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller to fix spamming of logs with constant updates of device data.&lt;br /&gt;
&lt;br /&gt;
== Update trusty-i386/amd64 201605310531+04df53f5 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - get the stream uri from onvif camera and save it in a device data for use by other devices&lt;br /&gt;
* pluto-website-admin (220) - adate to adodb 5.20.4 and change db driver from mysql to mysqli&lt;br /&gt;
* pluto-updatemedia (405,406) - tag writing/deletion of values update&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201605261039+410242d2 ==&lt;br /&gt;
* pluto-media-database (233) - remove FatGroupBy query as it is massive and no longer required&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** FIX UpdateMedia not detecting changes in files on disk.  Fixes: UpdateMedia not reading modification times properly.&lt;br /&gt;
** improve image reading/writing for mp3/mp4 files, add image handling for asf/wma, improve track art-&amp;gt;performer/album artist matching.&lt;br /&gt;
** don&#039;t add network shares to inotify watch list&lt;br /&gt;
* pluto-system-database (211) - new qml-* pkg definitions for qorbiter&lt;br /&gt;
* pluto-plutoutils (196,197) - add fn&#039; to determine filesystem type of a file&lt;br /&gt;
* lmce-disked-interactor (897,898) - make sure we see the core and have an IP prior to attempting contact&lt;br /&gt;
* pluto-bootscripts (234) - make sure we see the core prior to continuing to boot an MD&lt;br /&gt;
* pluto-website-admin (220) - various fixes in the media page&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 - 201605171740 c6d63dc6 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3, ogg, flac, mp4, wv, wav, oga, mpc, spx, opus, tta, m4a, m4r, m4p, 3g2, m4v, wma, asf, aif, aiff, afc, aifc, ape, s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64  201605131052+2542a526 ==&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - udev rule to ignore usbhid portion of device, permits orbiter to enter screensaver&lt;br /&gt;
* pluto-bootscripts (234) - permit devices that have died 50 times to attempt to restart after a router reload. Firewall fix for manual defined chains.&lt;br /&gt;
* pluto-sound-card-scripts (579) - don&#039;t assume cardid=1, determine phoenix cardid from aplay.&lt;br /&gt;
* pluto-media-database (233) - additional AttributeType &amp;quot;Album Artist&amp;quot;&lt;br /&gt;
* lmce-media-identifier (931,932) - updates for Album Artist tag.&lt;br /&gt;
* pluto-orbiter (119,138) - updates for Album Artist tag.&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** updates for Album Artist tag&lt;br /&gt;
** fix mainMediaFileSync.php. OutsideAccess page showing the options (again). &lt;br /&gt;
** And typo fixes for issue #2643. &lt;br /&gt;
** Firewall page reload issue 2636#. Firewall gui do not show &amp;quot;NULL&amp;quot;.&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3:ogg:flac:mp4:wv:wav::oga:mpc:spx:opus:tta:m4a:m4r:m4p:3g2:m4v:wma:asf:aif:aiff:afc:aifc:ape:s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update jessie 20160427 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for RPi&lt;br /&gt;
* lmce-disked-md-rpi2 (889) - +x firstboot_md_rpi2 to ensure it&#039;s picked up properly&lt;br /&gt;
&lt;br /&gt;
== Update jessie 201604130947+0083d387 ==&lt;br /&gt;
== Update 1204/1404-i386/amd64 201604101031-0b47a986 ==&lt;br /&gt;
* pluto-website-admin, pluto-boot-scripts (220,234) - Firewall Fixes for GUI and inner working of the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603251155+a1c0f6ea ==&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - File view implemented. Fixed not being able to leave resume menu.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603222119+336464d8 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller  to fix floorplan / status being improperly updated.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t mount optical discs as HDDs&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201603220706+c3c4b899 ==&lt;br /&gt;
* lmce-md-meta (450) - for some reason this is not in the main repo&lt;br /&gt;
* lmce-media-identifier - fixed for libcdio&lt;br /&gt;
&lt;br /&gt;
== Update jessie-rpi 60faa181 ==&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - adds video resizing so UI1 can be exposed while video is playing.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 armhf 31c5d994 ==&lt;br /&gt;
== Update 1404 i386 52e39875 ==&lt;br /&gt;
* pluto-storage-devices (533) - fix ntfs detection&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 - 49a8cbf1 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - a little better device to device template mapping&lt;br /&gt;
* pluto-website-admin (220) - fix adv.zwave page and adding secure devices&lt;br /&gt;
* lmce-disked-* - update the disked md/mid meta/base/device pkgs, specific fixes for 1404 joggler&lt;br /&gt;
* lmce-json-plugin (876,877) - first time addition to the main repo&lt;br /&gt;
* libdvdid0 (replacement) - first time addition to the repo, for use by Media Identifier&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - enable disabling internal volume control, similar to how logitechmediaserver does&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1404(armhf)/jessie(rpi)-a84db86f ==&lt;br /&gt;
* lmce-launch-manager (298,299) - only update squeeze devices when running on the core, redundant elsewhere.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404-87954508 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t fail if dvdcss2 cannot be automatically installed.&lt;br /&gt;
* pluto-hald (529,530) - reinstate tty detection, seperate from usb-serial, use direct parent for udi naming.&lt;br /&gt;
* pluto-boot-scripts (234) - disable buildall, the script doesn&#039;t run so why waste time creating it.&lt;br /&gt;
* lmce-launch-manager (298,299)&lt;br /&gt;
** update squeezebox players on router reloads from Launch_Manager&lt;br /&gt;
** call Config_Device_Changes in startCoreServices to ensure everything gets its&#039; Need Configure flag reset.&lt;br /&gt;
&lt;br /&gt;
== Update a332f49a ==&lt;br /&gt;
* lmce-install-scripts (391) - fix missing quote in MD installation.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix missing &#039;fi&#039; in BootMessage.sh&lt;br /&gt;
** fix usb.1 system serial port listing/translating&lt;br /&gt;
* lmce-media-identifier (931,932) - fix segfault, CDs are identified, cd-ripping functional again&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** prioritize new conf dir over old conf dir, fix install on systems upgraded from 1204-&amp;gt;1404&lt;br /&gt;
** redirect mythweb to html/mythweb&lt;br /&gt;
* pluto-hald (529,530) - updates to serial port naming, specifically for odroid.&lt;br /&gt;
* pluto-storage-devices (533) - fix mounted drive detection and add detection for drives mounted in /proc/cmdline like rpi.&lt;br /&gt;
&lt;br /&gt;
== Update 1204=201602080446+2028f850 &amp;lt;br&amp;gt; 1404=201602071815+c31bc44f ==&lt;br /&gt;
* lmce-install-scripts (391)&lt;br /&gt;
** enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
* lmce-core (888) - enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
* pluto-storage-devices (533) - redo StorageDevices_Radar using blkid for internal HDD identification.  /dev/disk/by-path/ is not present anymore.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
** new VerifyDistro.sh script and call the script on boot.&lt;br /&gt;
*** Preventative mostly.  Intended to ease pain for those that upgrade distros.&lt;br /&gt;
*** Ensure child devices, onscreen orbiter, have the proper PK_Distro set.&lt;br /&gt;
&lt;br /&gt;
== Update 296fdcd3 ==&lt;br /&gt;
* pluto-website-admin (220) - fix depends versioning&lt;br /&gt;
* pluto-hald (529,530) - fix depends versioning&lt;br /&gt;
* pluto-boot-scripts (234) - fix depends versioning&lt;br /&gt;
* pluto-system-database (211) - fix depends versioning&lt;br /&gt;
* pluto-orbitergen (226,227) - fix depends versioning&lt;br /&gt;
* lmce-disked-md-base (801) - fix depends versioning&lt;br /&gt;
* lmce-install-scripts (391) - fix depends versioning&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix depends versioning&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix depends versioning&lt;br /&gt;
* lmce-datalogger-plugin (686,687) - fix depends versioning &lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix depends versioning&lt;br /&gt;
&lt;br /&gt;
== Update f3a444c0 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** use newer .sh script rather than obsolete .pl script for dialplan creation&lt;br /&gt;
** fix Directory listing on cisco phones&lt;br /&gt;
** fix delete buttons on internet radio page.&lt;br /&gt;
* pluto-hald (529,530)&lt;br /&gt;
** add &#039;usb&#039; to &#039;pci&#039; and &#039;platform&#039; as valid bus addresses&lt;br /&gt;
** permit adding of usb devices with usb_serial or tty children&lt;br /&gt;
* pluto-boot-scripts (234) - update SetupAudioVideo.sh to more reliably address nvidia hdmi audio outputs&lt;br /&gt;
* lmce-asterisk (replacement) - live_dangerously for now to get all the necessary Voicemail modules to load&lt;br /&gt;
* pluto-system-database (211) - new DD Number of jobs for orbiter plug-in/orbitergen&lt;br /&gt;
* pluto-boot-scripts (234) - updates to RegenOrbiter scripts for parallel job queued orbiter generation.&lt;br /&gt;
* pluto-orbitergen (226,227) - new depends on GNU parallel&lt;br /&gt;
* lmce-disked-md-base (801) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* lmce-install-scripts (391) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - remove hardcoded ip address, get from db instead.&lt;br /&gt;
* lmce-diskless-tools (627,628) - only run UpdateDebCache.sh if it is executable&lt;br /&gt;
* lmce-datalog-plugin(686,687) - fix pear install command in postinst&lt;br /&gt;
* lmce-advanced-ip-camera(812,813) - add basic onvif support (snapshot,PTZ)&lt;br /&gt;
&lt;br /&gt;
== Update 31792 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of new External_Media_Identifier, testing CDDB ids&lt;br /&gt;
&lt;br /&gt;
== Update 31783 ==&lt;br /&gt;
* pluto-libserial (190,191) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-dcecommon (192,193) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-irbase (194,195) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-plutoutils (196,197) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-vipshared (199,200) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-serializeclass (198,238) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-libbd (239,240) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-ra (247,248) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-main-db (201,237) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-media-db (254,255) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-security-db (278,277) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-sdl-helpers (346,347) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-messagetrans (398,401) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-game-db (675,676) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-windowutils (677,678) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-datalog-db (688,689) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
&lt;br /&gt;
== Update 31782 ==&lt;br /&gt;
* pluto-std-plugins - fix FK_File search inside Attribute in Media_Plugin&lt;br /&gt;
&lt;br /&gt;
== Update 31774 ==&lt;br /&gt;
* lmce-disked-mid-base (899) - fix error in postinst&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come (this should be in but apt-get is getting 404 errors)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add &amp;quot;remove failed node&amp;quot; command&lt;br /&gt;
* pluto-website-admin - add &amp;quot;remove failed node&amp;quot; command for zwave advanced page&lt;br /&gt;
&lt;br /&gt;
== Update 31760 ==&lt;br /&gt;
* lmce-disked-md-base (801) - fix another error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31757 ==&lt;br /&gt;
* lmce-core (888) - overwrite AutostartCore conf value&lt;br /&gt;
* lmce-md-meta (450) - overwrite AutostartMedia conf value&lt;br /&gt;
* lmce-mid-meta (962) - missing deb&lt;br /&gt;
* lmce-hybrid (769) - exit 0 in postinst, just to be sure&lt;br /&gt;
* lmce-disked-md-base (801) - fix error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31754 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - reconnect before send&lt;br /&gt;
&lt;br /&gt;
== Update 31752 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - remove hard coded caller id &#039;Cherryhomes, Tho&#039;, use incoming caller id.&lt;br /&gt;
&lt;br /&gt;
== Update 31750 ==&lt;br /&gt;
* pluto-website-admin (220) - fix postinst error notice on precise.&lt;br /&gt;
* pluto-boot-scripts (234) - (re)start asterisk, otherwise configuration doesn&#039;t occur and sip phones cannot register&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - force-reload apache2 after disabling mythbuntu sites&lt;br /&gt;
* lmce-md-meta (450) - don&#039;t overwrite conf values that are already set&lt;br /&gt;
* *openzwave* (replacement) - version bump, upgrade fixes to upstream files&lt;br /&gt;
&lt;br /&gt;
== Update 31744 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come&lt;br /&gt;
&lt;br /&gt;
== Update 31742 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Gui changes to not confuse people. &lt;br /&gt;
** outsideaccess works together with the firewall. &lt;br /&gt;
** phonelines note on protocol for meaning of &amp;quot;SPA&amp;quot; and a status for this protocol setting, port can be changed if needed else it will be the default (5060).&lt;br /&gt;
&lt;br /&gt;
== Update 31739 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix absolute timed events&lt;br /&gt;
&lt;br /&gt;
== Update 31723 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix nfs-premount script in default diskless image.&lt;br /&gt;
* lmce-dlna(842,843) - compatibility fixes&lt;br /&gt;
* lmce-install-scripts (391) - generate ssh keys so openssh-server can accept connections&lt;br /&gt;
* pluto-createdevice (303,304) - hide errors, specifically during initial package postinst&lt;br /&gt;
* lmce-cec-adaptor (871,872) - fix cec remotes not getting to lmce&lt;br /&gt;
&lt;br /&gt;
== Update 31693 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - Fixes #2530 - fix errors in mythtvdb synchronization scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31686 ==&lt;br /&gt;
* lmce-install-scripts (391) - deal with firstboot stuffenz&lt;br /&gt;
* pluto-system-database (211) - add proxy orbiter DT depends for generic web device&lt;br /&gt;
* pluto-website-admin (220) - order by photo file name in screen saver/photo browser&lt;br /&gt;
* pluto-boot-scripts (234) - try ubiquity before anything else, and reboot after the normal firstboot - breaks live boot on dvd atm&lt;br /&gt;
* lmce-diskless-tools (627,628) - permit i386 diskless image building on amd64 cores, ensure processes are killed in chroot before unmounting (deals with systemd for now)&lt;br /&gt;
&lt;br /&gt;
== Update 31660 ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) &lt;br /&gt;
**PS3 control screen, fix layout issue. adds seperate button group (triangle, circle, etc) and navigation arrows. Also adds power off button to properly exit screen&lt;br /&gt;
* pluto-website-admin (220) - prevent creation of extra &#039;blank&#039; network interfaces&lt;br /&gt;
&lt;br /&gt;
== Update 31655 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - close connection after use&lt;br /&gt;
* pluto-website-admin (220) - fill ServerName var if it is unset, not if it is set.&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - unify service control&lt;br /&gt;
* pluto-boot-scripts (234) - unify service control&lt;br /&gt;
* pluto-dhcpd-plugin (302) - unify service control&lt;br /&gt;
* pluto-disk-monitor (554) - unify service control&lt;br /&gt;
* pluto-mythtv-player (133,152) - unify service control&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - unify service control&lt;br /&gt;
* pluto-raid-tools (617) - unify service control&lt;br /&gt;
* pluto-storage-devices (533) - unify service control&lt;br /&gt;
* lmce-update-system (650,651) - unify service control&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - unify service control&lt;br /&gt;
* pluto-vdr-plugin (466,467) - unify service control&lt;br /&gt;
* pluto-vdr (468,469) - unify service control&lt;br /&gt;
* pluto-database-settings (407) - unify service control&lt;br /&gt;
* lmce-asterisk (replacement) - unify service control&lt;br /&gt;
* lmce-diskless-tools (627,628) - unify service control&lt;br /&gt;
* lmce-install-scripts (391) - unify service control&lt;br /&gt;
* pluto-updatemedia (405,406) - unify service control&lt;br /&gt;
* pluto-newmdinteractor (538,539) - unify service control&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - Fix size issues, floorplan popups.&lt;br /&gt;
&lt;br /&gt;
== Update 31621 ==&lt;br /&gt;
* pluto-mythtv-player (133,152) - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 31618 ==&lt;br /&gt;
* lmce-asterisk (replacement) - update db for chan_sccp-v4.2 and fix bug requiring manual asterisk reload on boot&lt;br /&gt;
&lt;br /&gt;
== Update 31615 ==&lt;br /&gt;
* pluto-* - rebuild with new libraries&lt;br /&gt;
* lmce-* - rebuild with new libraries&lt;br /&gt;
&lt;br /&gt;
== Update 31606 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix EPG data on orbiters, myth stores everything in UTC now.&lt;br /&gt;
* pluto-pluto-main-db (201,237) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-media-db (254,255) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-security-db (277,278) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-datalog-db (688,689) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-game-db (675,676) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-updateentarea (341,342) - don&#039;t send empty play command when resetting alarm&lt;br /&gt;
&lt;br /&gt;
== Update 31580 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - use bypass-event to avoid watching media events when playing alerts&lt;br /&gt;
* pluto-updateentarea (341,342) - send bypass-event with security event commands&lt;br /&gt;
* libcec3 debs (replacement) - removes conflict data with libcec2&lt;br /&gt;
&lt;br /&gt;
== Update 31575 ==&lt;br /&gt;
* lmce-asterisk (replacement) - play back alert notification file&lt;br /&gt;
* pluto-std-plugins (116,135) - create alert notification file with correct format&lt;br /&gt;
* pluto-boot-scripts (234) - fixes for nvidia drivers on precise, upgrades to nvidia-340&lt;br /&gt;
* lmce-avwizard-sounds (replacement) - don&#039;t copy fakeroot files (it is redundant it is)&lt;br /&gt;
* video-wizard-videos (replacement) - deb is back to normal size, not 2x&lt;br /&gt;
&lt;br /&gt;
== Update 31553 ==&lt;br /&gt;
* pluto-website-admin (220) - fix error that wipes out the apache2.conf&lt;br /&gt;
* pluto-hald (529,530) - fix segfaults with firewire hardware&lt;br /&gt;
&lt;br /&gt;
== Update 31547 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some API changes in OZW 1.3, more device template mappings&lt;br /&gt;
* pluto-boot-scripts (234) - typo fix for nvidia drivers&lt;br /&gt;
* lmce-disked-md-base (801) - set hostname on disked MDs, set timezone on disked MDs&lt;br /&gt;
* lmce-install-scripts (391) - set hostname on disked MDs, set timezone on disked MDs &lt;br /&gt;
* pluto-website-admin was generated---&amp;gt; lmce-website-admin (220) - set apache2 ServerName to silence error on boot&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates, revert to ruby 1.8&lt;br /&gt;
* pluto-generic-serial-device (307,335) - admit defeat for now, revert to ruby 1.8&lt;br /&gt;
&lt;br /&gt;
== Update 31533 ==&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31520 ==&lt;br /&gt;
* chan-sccp_v4.2 (replacement) - Upgrad asterisk SCCP channel driver to newest version&lt;br /&gt;
* pluto-vdr-plugin (466,467) - implement background loading of EPG from VDR to avoid crashes due to commands not completing on time&lt;br /&gt;
* pluto-boot-scripts (234) - some logic changes and added messages for video driver install debugging&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - link new channels dir to old channels dir for backwards compatibility&lt;br /&gt;
&lt;br /&gt;
== Update 31503 ==&lt;br /&gt;
* *zwave* (replacement) - new upstream openzwave version 1.3.1224&lt;br /&gt;
* lmce-zwave-ozw(505,506) - build against new libopenzwave1.3&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates&lt;br /&gt;
* lmce-disked-interactor (897,898) - make disked interactor aware of wheezy and jessie.&lt;br /&gt;
&lt;br /&gt;
== Update 31500 ==&lt;br /&gt;
* *myth* (replacement) - fix depends on non-existent packages&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst - verified installing now&lt;br /&gt;
* pluto-std-plugins (116,135) - Use integer comparison for brightness state&lt;br /&gt;
&lt;br /&gt;
== Update 31491 ==&lt;br /&gt;
* lmce-avwizard-skin-basic (replacement) - fix packaging of avwizard skin&lt;br /&gt;
* *myth* (replacement) - mythtv 0.27.5+fixes with Schedules Direct fix included&lt;br /&gt;
* *asterisk* (replacement) - asterisk 11.7 backport from trusty&lt;br /&gt;
* libical* (replacement) - for asterisk 11.7&lt;br /&gt;
* *cec* (replacement) - libcec3&lt;br /&gt;
* libplatform* (replacement) for libcec3&lt;br /&gt;
* lmce-cec-adaptor (871,872) - build against libcec3&lt;br /&gt;
* lmce-mediatomb (702) - fix pkg installation&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - update protocol version and secret word (shhh) for 0.27.5+fixes&lt;br /&gt;
* lmce-diskless-tools (627,628) - remove call to obsolete script in Diskless_Setup.sh&lt;br /&gt;
* pluto-vdr-plugin (466,467) - return full EPG (used in qOrbiter EPG Grid), improve communication speed with SVDRP&lt;br /&gt;
* pluto-slim-server-streamer (289,290) - emit time code event, fix duration parsing&lt;br /&gt;
* pluto-boot-scripts (234) - fix headless booting, update 1404 nvidia driver&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* lmce-md-meta (450) - add depends on alsa-utils&lt;br /&gt;
* pluto-website-admin (220) - Fix cdrviewer (Call Details Records) to accept SSL conections as well, firewall gui change to set Offline rules in red as they are not executed.&lt;br /&gt;
* pluto-app-server (126,145)- new poweroff mode I for ignore, since N is already in use&lt;br /&gt;
&lt;br /&gt;
== Update 31420 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add depends on pluto-boot-scripts for deb cache script&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31411 == &lt;br /&gt;
* pluto-avwizard (555,556) - fix depends on avwizard skins basic, should no longer care about version&lt;br /&gt;
* pluto-boot-scripts (234) - more explicity logic for core only booting, fix startup script db errors&lt;br /&gt;
* lmce-update-system (650,651) - remove and disable old init.d script from /etc/init.d&lt;br /&gt;
* pluto-plutodhcp (330,491) - depends on apparmor&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-dhcpd-plugin (302) - remove hardcoded IP addresses from configure scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31387 ==&lt;br /&gt;
* lmce-weather-plugin - make change to allow for tonight&#039;s forecast data (TSCHAK)&lt;br /&gt;
* lmce-asterisk (replacement) - remove obsolete phonetic engines and replace with espeak, voices remain the same&lt;br /&gt;
* mbrola (replacement) - base mbrola pkg for mbrola voices (add armhf binary)&lt;br /&gt;
* pluto-asterisk (270,271) - generate fr and de voicemail menus with espeak now&lt;br /&gt;
* lmce-core (888) - add depends on iptables&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31378 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Start_KDE.sh ownership fix, AV config updates&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-avwizard (555,556) - update pkgs &amp;amp; depends &amp;amp; config scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - do not run update deb_cache during dvd creation&lt;br /&gt;
* pluto-x-scripts (520) - fixups to Xconfigure.sh&lt;br /&gt;
&lt;br /&gt;
== Update 31356 ==&lt;br /&gt;
* pluto-system-database (211) - update depends&lt;br /&gt;
* pluto-orbiter (119,138) - update depends&lt;br /&gt;
* lmce-diskless-tools (627,628) - speedup dpkg in diskless create, fix missing quotes&lt;br /&gt;
&lt;br /&gt;
== Update 31352 ==&lt;br /&gt;
* pluto-motion-wrapper - more config file location fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 31351 ==&lt;br /&gt;
* pluto-boot-scripts (234) - change service &#039;nis&#039; to &#039;ypserv&#039;, nis is no longer a service name&lt;br /&gt;
* pluto-website-admin (220) - remove &#039;idiot&#039; text, let&#039;s be nice to people.&lt;br /&gt;
* lmce-core (888) - do not create and config under ubiquity&lt;br /&gt;
* lmce-md-meta (450) - do not create and config under ubiquity&lt;br /&gt;
* motion (replacement) - fix bad config file setting in rules&lt;br /&gt;
&lt;br /&gt;
== Update 31337 ==&lt;br /&gt;
* motion (replacement) - new version of motion to match new configuration values generated by linuxmce&lt;br /&gt;
&lt;br /&gt;
== Update 31331 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix for brightness events&lt;br /&gt;
* pluto-boot-scripts (234) - fix kdm disabling, start ubiquity after network config&lt;br /&gt;
* lmce-diskless-tools (627,628) - add upstart overrides for kdm&lt;br /&gt;
* lmce-install-scripts (391) - start ubiquity after network config&lt;br /&gt;
&lt;br /&gt;
== Update 31314 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add missing depends&lt;br /&gt;
&lt;br /&gt;
== Update 31292 ==&lt;br /&gt;
* lmce-core-locator (replacement) - (1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-system-database (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* All .debs created by MakeRelease - removal of all Pre-Depends, everything is now a Depends entry (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
== Update 31228 ==&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-local-database&lt;br /&gt;
&lt;br /&gt;
== Update 31214 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package (not in repo, need build-replacements.sh svn up&#039;d?)&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - preinst/postinst updates&lt;br /&gt;
* pluto-boot-scripts (234) - preinst/postinst updates&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-disked-md-base (801) - firstboot updates&lt;br /&gt;
&lt;br /&gt;
== Update 31187 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package&lt;br /&gt;
* pluto-confirm-dependencies (281,272) - new depends on lmce-install-scripts (fixes unable to apt-get dist-upgrade)&lt;br /&gt;
* lmce-md-meta (450) - new depends on nfs-common, openssh-server and pastebinit&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - update depends, preinst/postinst&lt;br /&gt;
* pluto-boot-scripts (234) - depends &amp;amp; preinst/postinst updates&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - add override mythweb defaults in pkg preinst&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - update depends&lt;br /&gt;
&lt;br /&gt;
== Update 31133 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** enable WakeMDs.sh to wake any halted MDs.&lt;br /&gt;
** consolidate all boot script launching to /etc/init.d/linuxmce&lt;br /&gt;
* pluto-avwizard (555,556) - moves start script to /usr/pluto/bin, called by /etc/init.d/linuxmce now&lt;br /&gt;
* lmce-update-system (650,651) - removes init.d script, called by /etc/init.d/linuxmce now&lt;br /&gt;
* pluto-website-admin (220) - GUI changes on network settings if an bridge is configured on the db.&lt;br /&gt;
* lmce-core (888) - depend on pluto-asterisk, lmce-asterisk, lmce-install-scripts&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* pluto-generic-serial-device (307,335) - wildshot attempt at fixing segfaults&lt;br /&gt;
&lt;br /&gt;
== Update 31103 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** Network bridging now possible  for wifi AP to have the same network as the local lan. &lt;br /&gt;
** ipv6 on/off for network interfaces. Read multiple ipv6 interfaces from the db.&lt;br /&gt;
** re-enable HaltMDs.&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* libqhttpserver (912) needed for linuxmce nvr&lt;br /&gt;
* lmce-launch-manager - (298,299) - ?&lt;br /&gt;
&lt;br /&gt;
== Update 31087 ==&lt;br /&gt;
* lmce-weather (838,839) - Fix a serious bug in getconfig where incorrect configuration device data would crash program. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 31083 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes #2422, advanced zwave page broken in chrome&lt;br /&gt;
* pluto-system-database (211) - thumbnail screen fixes&lt;br /&gt;
&lt;br /&gt;
== Update 31074 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** setEa2.php - Fix settings for creating entertain area.&lt;br /&gt;
** qOrbiterGenerator.php - Fix erroneous EA creation by removing it.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Fix incorrect setting for enabling / disabling motion.&lt;br /&gt;
&lt;br /&gt;
== Update 31069 ==&lt;br /&gt;
* pluto-website-admin (220) - setEa2.php Fix settings for creating entertain area.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Initial build.&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (881) - Large update of skins and internals.&lt;br /&gt;
&lt;br /&gt;
== Update 31061 ==&lt;br /&gt;
* lmce-squeezeslave (762) - Add configuration DD to command line&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DB package updates&lt;br /&gt;
** restore previous video remote layout with Options button to select subtitles/audio tracks/video tracks from a datagrid list.&lt;br /&gt;
* pluto-website-admin (220) - firewall.php edit rules for non advanced firewall and some other small fixes.&lt;br /&gt;
* lmce-asterisk (replacement) - sip config modules to avoid autoload.&lt;br /&gt;
&lt;br /&gt;
== Update 31051 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** firewall.php not adding rules now fixet.&lt;br /&gt;
** Test buttons for Hue lights&lt;br /&gt;
** Security outsideAccess page now works nicely with the new firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 31044 ==&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
&lt;br /&gt;
== Update 31031 ==&lt;br /&gt;
* pluto-website-admin (220) - firewall.php after a strange fault and some layout fixes.&lt;br /&gt;
* lmce-mediatomb (702) - don&#039;t assume mediatomb is already running.&lt;br /&gt;
&lt;br /&gt;
== Update 31013 ==&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* pluto-boot-scripts (234) - Network Parameter count for more interfaces set and Network firewall accepting postrouting Masquerade  for other network interfaces.&lt;br /&gt;
&lt;br /&gt;
== Update 30985 ==&lt;br /&gt;
* pluto-website-admin (220) - #2268 fail2ban integration logging failed user login attempt.&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** #2268 fail2ban script not insert existing rules to our db.&lt;br /&gt;
** Support for audio output select on rpi via web admin&lt;br /&gt;
* lmce-diskless-tools (627,628) - update syslinux depends to syslinux-common&lt;br /&gt;
* lmce-omx-player (829,830) - Honour audio output selection of rpiMD&lt;br /&gt;
* lmce-squeezeslave (762) - Fix detection for squeezelite&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - further fixes&lt;br /&gt;
* lmce-usb-gamepad (795,796) - rewrite the whole main loop to suck less. hold-down repeats work, input handling more sane.&lt;br /&gt;
&lt;br /&gt;
== Update 30926 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Fix for #2368 insert firewall rules en #2064 edit and delete chains (except some system chains).&lt;br /&gt;
** Support for brightness based events.&lt;br /&gt;
* pluto-std-plugins (116,135) - Support for brightness based events&lt;br /&gt;
* lmce-omx-plugin (831,832) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** Database additions for XBOX 360 Gamepad (device templates, package)&lt;br /&gt;
** Modification of OMX Plugin to allow priority to be changed.&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - the XBOX 360 Gamepad driver, uses xboxdrv userspace driver.&lt;br /&gt;
* lmce-usb-gamepad (795,796) - additions here for above XBOX 360 Gamepad support.&lt;br /&gt;
&lt;br /&gt;
== Update 30862 ==&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress can now read latest files per linuxmce user.&lt;br /&gt;
&lt;br /&gt;
== Update 30860 ==&lt;br /&gt;
* lmce-weather (838,839) - some fixes by cfernandes&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress.&lt;br /&gt;
* pluto-boot-scripts (234) - more mail fixes&lt;br /&gt;
&lt;br /&gt;
== Update 30855 ==&lt;br /&gt;
* pluto-vdr, pluto-vdr-plugin - remove hardcoding of core IP and network address, but depend on the pluto.conf entries for DCERouter.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location (again)&lt;br /&gt;
* lmce-diskless-tools - stop copying apt configs from the core&lt;br /&gt;
* pluto-boot-scripts - fix postfix setup #2393&lt;br /&gt;
&lt;br /&gt;
== Update 30841 ==&lt;br /&gt;
* lmce-avwizard-sounds - fix replaces/conflicts data&lt;br /&gt;
* lmce-skins-basic - fix replaces/conflicts data&lt;br /&gt;
* lmce-avwizard-skin-basic - fix replaces/conflicts data&lt;br /&gt;
&lt;br /&gt;
== Update 30383 ==&lt;br /&gt;
* pluto-website-admin (220) - Add Hue lights related test button.&lt;br /&gt;
* pluto-boot-scripts - Add another option --autobackup to PlutoRestorePoint.sh to allow backup of pluto_main only&lt;br /&gt;
&lt;br /&gt;
== Update 30814 ==&lt;br /&gt;
* pluto-Boot-scripts - Firewall order by place and PK_Firewall to let rules stay on top on the middle or on the bottom.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location&lt;br /&gt;
* lmce-hue-controller (862,863) - Fix bug in adding new lights, now adds serial number.&lt;br /&gt;
* pluto-website-admin (220) - Fix oops relating the missing &#039;.&#039; which caused operations/login.php not to work.&lt;br /&gt;
&lt;br /&gt;
== Update 30783 ==&lt;br /&gt;
* lmce-nbd-client-wrapper - new pkg to hold common script&lt;br /&gt;
* pluto-xine-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* lmce-vlc-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* pluto-boot-scripts - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
* pluto-storage-devices - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30777 ==&lt;br /&gt;
* lmce-core - depend on openswan&lt;br /&gt;
* pluto-system-database - pkg updates&lt;br /&gt;
* pluto-boot-scripts - remove check for openswan from bootscript&lt;br /&gt;
* pluto-generic-serial-device - update to ruby 1.9.1&lt;br /&gt;
&lt;br /&gt;
== Update 30773==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller internals to now include polling, so as to make sure floorplan data is accurate. Changes underlying mechanisms for how lights are handled in preparation for extending additional support for Cree lights and sensors devices.&lt;br /&gt;
&lt;br /&gt;
== Update 30767 ==&lt;br /&gt;
* lmce-diskless-tools - update diskless archive name to reflect current compression method xz.&lt;br /&gt;
* pluto-website-admin (220) - updates to internet radio, moves add channels to a seperate page.  Thanks Dap-P!&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
* pluto-vdr - adds missing depends on vdr in trusty&lt;br /&gt;
* lmce-core - update depends to new pkg name lmce-avwizard-sounds&lt;br /&gt;
* pluto-avwizard - update depends to new pkg name lmce-avwizard-skins-basic&lt;br /&gt;
* lmce-clock-screen-saver - make the clock screen saver use the WMController/wmctrl methods for setting window visibility to be compatible with Orbiter. (TSCHAK) (Trusty only)&lt;br /&gt;
* pluto-storage-devices - Make sure that smbpasswd is used to create or update sambahelper&#039;s password (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30726 ==&lt;br /&gt;
* pluto-vdr - VDR player&#039;s package assumed a correctly installed vdr package which includes an entry in /etc/default for vdr. We no longer fail on a missing file.&lt;br /&gt;
&lt;br /&gt;
== Update 30724 ==&lt;br /&gt;
* lmce-weather - updates to weather sources, add OpenWM source.  Thanks SBCC and cfernandes!&lt;br /&gt;
* lmce-skins-* - adds missing telecom icons, updates/adds weather icons&lt;br /&gt;
* lmce-avwizard-sounds - remove extraneous stuff from pkg, reduce pkg size back to normal.  Proper replaces/conflicts/data...&lt;br /&gt;
* lmce-avwizard-skin-basic - Proper replaces/conflicts/data...&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
&lt;br /&gt;
== Update 30718 ==&lt;br /&gt;
* lmce-core - new depends on lmce-skins*&lt;br /&gt;
* lmce-md-meta - add depends on pnp-detection scripts&lt;br /&gt;
* lmce-hybrid - new depends on lmce-skins*&lt;br /&gt;
* pluto-avwizard (556,555) - add pciutils as a depends, still need to deal with multiarch stuff so this will break armhf, we will not update armhf for now, it doesn&#039;t use avwizard but does install it.&lt;br /&gt;
* lmce-diskless-tools - minor diskless create fixups&lt;br /&gt;
* pluto-orbiter - missing depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio script&lt;br /&gt;
* pluto-website-admin (220) - recognize MIDs as top level devices&lt;br /&gt;
* pluto-mythtv-player - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 30628 ==&lt;br /&gt;
* *-database - fix install issues&lt;br /&gt;
&lt;br /&gt;
== Update 30622 ==&lt;br /&gt;
* pluto-orbiterinstallers - fix depends issue&lt;br /&gt;
* pluto-system-database - lots of compat updates&lt;br /&gt;
* lmce-* - lots of compat updates&lt;br /&gt;
* pluto-* - lots of compat updates&lt;br /&gt;
&lt;br /&gt;
== Update 30618 ==&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio scripts&lt;br /&gt;
* pluto-website-admin (220) - updated internet radio page&lt;br /&gt;
&lt;br /&gt;
== Update 30571 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - send &amp;quot;Device is turned on or off&amp;quot; event when appropriate so the corresponding event works as expected&lt;br /&gt;
* lmce-squeezeslave (762) - set to pnp create without prompting&lt;br /&gt;
* lmce-runtime-dependencies (903) - pkg to help consolidate runtime depends.&lt;br /&gt;
* lmce-core (888) - updated depends&lt;br /&gt;
* lmce-md-meta (450)- updated depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated depends&lt;br /&gt;
* pluto-createdevice (303,304) - updated depends&lt;br /&gt;
* lmce-weather(838,839) - fix potential segfault&lt;br /&gt;
* pluto-website-admin (220) - add &amp;quot;replace node&amp;quot; button to advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 30549 ==&lt;br /&gt;
* pluto-mythtv-player - fix misaligned data values during mythtv.txt creation.&lt;br /&gt;
&lt;br /&gt;
== Update 30526 ==&lt;br /&gt;
* lmce-core - new pkg&lt;br /&gt;
* lmce-hybrid - pkg depends changes&lt;br /&gt;
* lmce-md-meta - pkg depends changes&lt;br /&gt;
* pluto-dcerouter - pkg depends changes&lt;br /&gt;
* pluto-photo-screen-saver - pkg depends changes&lt;br /&gt;
* pluto-boot-scripts - pkg depends changes&lt;br /&gt;
* pluto-orbiter - pkg depends changes&lt;br /&gt;
* pluto-simplephone - pkg depends changes&lt;br /&gt;
* pluto-website-admin - pkg depends changes&lt;br /&gt;
* lmce-mythtv-scripts - pkg depends changes&lt;br /&gt;
* pluto-system-database - pkg depends changes&lt;br /&gt;
* lmce-squeezeslave (762) - fix launch script, automatically create associated squeezebox player on the core.&lt;br /&gt;
* pluto-std-plugins - run New_PnP_MD.sh for new MID devices as well.&lt;br /&gt;
* lmce-diskless-tools - don&#039;t fail on invoke-rc.d during diskless create, exit gracefully and continue.&lt;br /&gt;
* pluto-mythtv-player - fix diskless create failures due to old hacks.  more work is needed here overall on mythtv integration.&lt;br /&gt;
&lt;br /&gt;
== Update 30419 ==&lt;br /&gt;
* pluto-slim-server - Make sure to turn off all Squeeze* devices when Slim Server Streamer starts or restarts (so that squeezelite does not hog sound cards.)&lt;br /&gt;
* pluto-hald (529,530) - add device node path to pnpqueue with v4l devices during detection&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - update for new lib version&lt;br /&gt;
&lt;br /&gt;
== Update 30384 ==&lt;br /&gt;
* pluto-confirm-dependencies - depend on pluto-install-scripts.&lt;br /&gt;
* pluto-disk-drive (122,141) - remove hal bits that dealt with old jukebox bugs.&lt;br /&gt;
* pluto-capture-card-scripts (580) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-pnp-detection (562) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-storage-devices (533) - convert autofs from hal to udev.&lt;br /&gt;
* pluto-bootscripts (234) - disable starting the hald since we&#039;re using udev now, remove false &#039;fail&#039; messages during reboot/shutdown&lt;br /&gt;
* pluto-slim-server-streamer - make one tweak (do not delete m_mapStreamsToPlayers entry in CMD_Stop). Streaming now works consistently, properly, with squeezebox devices and their clones. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30354 ==&lt;br /&gt;
* pluto-hald (529,530) - fix attempt to fire event for child device of usb-dongle.&lt;br /&gt;
* pluto-slim-server-streamer - Implement FF/REW (transport) trick-play control for Squeeze* devices. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30341 ==&lt;br /&gt;
* pluto-bootscripst - fixes for PPPoE users to not autostart the external interface.&lt;br /&gt;
* pluto-slim-server-streamer - Fix to power off squeezebox player when stream is not in use. This allows softsqueeze/squeezeslave/squeezelite players to let go of a sound device, when not in use (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30332 ==&lt;br /&gt;
* pluto-orbiter (118,139) - disable old hid device functionality.  Anyone who needs it can request a special build which will be provided at no extra charge. ;)&lt;br /&gt;
* pluto-bootscripts (234) - disable Gamepad Radar, functionality now in hal through udev&lt;br /&gt;
* pluto-avwizard (556,555) - fixes mangling of RemoteCmd when &amp;gt;1 remote is detected.&lt;br /&gt;
* pluto-hal-device-finder (535,536) - update to use udev rather than hal.&lt;br /&gt;
* pluto-hald (529,530) - update to use udev rather than hal.&lt;br /&gt;
* pluto-system-database (211) - updates for new detection method (joystick, cec-adaptor), update dependency data for hal pks to reflect dropping hald and add depends on udev now.&lt;br /&gt;
&lt;br /&gt;
== Update 30219 ==&lt;br /&gt;
* pluto-bootscripts (234) - Fail2ban firewall update script, and missing radioscript.sh.&lt;br /&gt;
* pluto-website-admin - Place set for rules on the firewall and bantime for fail2ban integration.&lt;br /&gt;
* pluto-std-plugins (116,135) - adds heirloom-mailx for &#039;mailx -r&#039; functionality, fixes e-mail in general info plugin&lt;br /&gt;
&lt;br /&gt;
== Update 30068 ==&lt;br /&gt;
* lmce-advanced-ip-camera(813,812) - Fixed high cpu usage if connection to camera can not be made&lt;br /&gt;
&lt;br /&gt;
== Update 30052 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - fix android pkg meta data, need to rebuild all together&lt;br /&gt;
&lt;br /&gt;
== Update 30051 ==&lt;br /&gt;
* pluto-updateentarea (341,342) - use DAY/NIGHT in watching/stopped watching events to make them smarter&lt;br /&gt;
* pluto-std-plugins (116,135) - Implement Get Device Status in General Info Plugin&lt;br /&gt;
* pluto-bootscripts (234) - fix VPN ip up/down&lt;br /&gt;
&lt;br /&gt;
== Update 30025 ==&lt;br /&gt;
* pluto-system-database (211) - column def updates&lt;br /&gt;
* pluto-local-database (214) - new Firewall columns and new VPN columns for Users table.&lt;br /&gt;
&lt;br /&gt;
== Update 30014 ==&lt;br /&gt;
* lmce-transmission-client (852) - fix postinst issue.  (Thanks SBCC)&lt;br /&gt;
== Update 29994 ==&lt;br /&gt;
More VLC Player changes to make it at least somewhat usable, there were some ugly bugs that came to light once i plopped it onto my production system. Right now sound device is plughw:0,3, if you need a different one, change it in the code.  (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* lmce-vlc-player - many little fixes to make it suck less.&lt;br /&gt;
&lt;br /&gt;
== Update 29990 ==&lt;br /&gt;
I am working on the VLC player, and it is breathing enough for basic testing. Please do not use in production environment. There is still a lot of code to write (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - updates for VLC player (TSCHAK)&lt;br /&gt;
* vlc-player (882,884) - Very early alpha developer test of the VLC player. (TSCHAK)&lt;br /&gt;
* vlc-plugin (874,875) - Very alpha developer test of the VLC plugin. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 29984 ==&lt;br /&gt;
* pluto-system-database (211) - fix bad repos in pkgs&lt;br /&gt;
* pluto-website-admin - just because I think it is necessary :-)&lt;br /&gt;
&lt;br /&gt;
== Update 29983 ==&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36936</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36936"/>
		<updated>2017-04-02T06:57:44Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: /* Upcoming fixes... */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the 1204 changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo much easier.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please include the pkg #s to facilitate building on 3x i386 targets in addition to 2x amd64 and 3x armhf targets where full builds are not always practical.  Keep in mind that most packages are referred to by two (2) package numbers from the database, a source package and a binary package.  &amp;quot;Thank you for your co-operation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
* pluto-bootscripts (234) - Typo fix for insert rule to the db. /ppp/ip-up.d/lmce-vpn-up and /ppp/ip-down.d/lmce-vpn-down works now niceley togheter with the new firewall.&lt;br /&gt;
* pluto-system-database (211) - sqlCVS commit to add Imagemagick as dependency to VLC Player, finally squashing that #($#@( start bug! (TSCHAK)&lt;br /&gt;
** Also added ir-keytable depedency to pluto-lirc-wrapper&lt;br /&gt;
* pluto-lirc-wrapper (340,421) - Ensure that ir-keytable is cleared before lircd starts to avoid unusual behavior with remotes that use kernel event subsystem (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201703301804+358c1c45 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fixes Bug #2726 - Media details now work, again.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 - 201703272335+efdf6de9 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Issue #2730 - Media Plugin changes to add support for FIFO capture card playback to VLC Player (route messages to VLC Player if it exists) -TSCHAK&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue #2729, #2730 - Implement FIFO device playback for local devices similar to file playback. (TBD: recompile VLC with PVR functionality), also multi-room playback. VLC Player is now in beta. -TSCHAK&lt;br /&gt;
* lmce-vlc-plugin (874,875) - Issue #2729 - Implement multi-room playback, VLC sync listener on core, etc. VLC functionality is now beta. -TSCHAK&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201702201438+325cc736 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix for multiple cameras and Get Image command&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue 2727, Issue 2728 - Trick play overhaul and fix audio glitches when trick play is used. &lt;br /&gt;
* pluto-boot-scripts (234) - SetupAudioVideo.sh - slight change to libvlc.conf so that trick play OSD works.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1204-1404-1604/amd64 c20633ff ==&lt;br /&gt;
* pluto-website-admin (220) - Added the case for section energyGraph and sipConf, fixed permissions for mysql asteriskuser, add sql credentials for myth, change MYSQL_NUM to MYSQLI_NUM&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1404/amd64 a7c10426 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add backports so 1204 diskless create works&lt;br /&gt;
* lmce-oauth2-server (668) - initial build of lmce oauth2 server for cloud interfacing&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404/1604 i386 - 1404x64 - 201611190055+fee90f43 ==&lt;br /&gt;
* pluto-boot-scripts (234) - database upgrades&lt;br /&gt;
* pluto-orbitergen (226,227) - database upgrades&lt;br /&gt;
* pluto-pluto-main-db (201,237) - database upgrades&lt;br /&gt;
* pluto-pluto-security-db (278,277) - database upgrades&lt;br /&gt;
* lmce-asterisk (replacement) - database upgrades&lt;br /&gt;
* pluto-system-database (211) - database upgrades&lt;br /&gt;
* pluto-local-database (214) - database upgrades&lt;br /&gt;
* pluto-security-database (256) - database upgrades&lt;br /&gt;
* pluto-telecom-database (472) - database upgrades&lt;br /&gt;
* pluto-media-database (233) - database upgrades&lt;br /&gt;
* pluto-database-settings (407) - database upgrades&lt;br /&gt;
* pluto-sqlcvs (212,213) - database upgrades&lt;br /&gt;
* pluto-std-plugins (116,135) - database upgrades&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609281853+9638f5bc ==&lt;br /&gt;
* pluto-website-admin (220) - #2705 fixed syntax error.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609271106+39103855 ==&lt;br /&gt;
* pluto-website-admin (220) - Update firewall.php GUI change some fields where reset to the default values. now the db data is honored.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** don&#039;t create initramfs for Raspbian Jessie diskless filesystems.&lt;br /&gt;
** ensure firstboot runs on diskless Jessie RPis.&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** stop/start rather than restart dhcp server, it&#039;s like nuking the site from orbit... only way to be sure.&lt;br /&gt;
** Firewall blocks udp 1900 UpNP traffic from externalinterface.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609172308+325de35d ==&lt;br /&gt;
* lmce-autotag (780, 781) linuxmceTag - fix comparison issue with media type.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609131230+5eaa4671/201609131753+5eaa4671 ==&lt;br /&gt;
* pluto-boot-scripts (234) - send dhcp vendor specific options only to wired raspberry pis.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 201609102226+fda3da63 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** rpi native pxe additions/updates&lt;br /&gt;
** extend startup timeout when booting under systemd&lt;br /&gt;
* lmce-diskless-tools (627,628) - rpi native pxe additions/updates&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DT updates for rpi native pxe&lt;br /&gt;
** add Serial Number Device Data to RPi DTs&lt;br /&gt;
** sets default PK_Distro to 22 (jessie) for RPi DTs&lt;br /&gt;
** new device data for &amp;quot;Standard Energy Meter&amp;quot;&lt;br /&gt;
* pluto-std-plugins (116,135)&lt;br /&gt;
** stores energy reading in state field for Standard Energy Meter&lt;br /&gt;
** fixes dcerouter crash when searching media&lt;br /&gt;
* pluto-updatemedia (405,406) - fix segfault when a dir is attempting to be tagged directly (without a .id3)&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - don&#039;t fail pkg install if simplephone is not running.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-i386 - 1404-i386/amd64 201607240235+899786ab ==&lt;br /&gt;
* pluto-website-admin (220) - Mysqli_real_escape_string did not work. a start with ipv6 firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/i386 201607202218+14cba09a ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) - Stream Bouncing, Additional settings for location, removed debug output, queue functionality.&lt;br /&gt;
&lt;br /&gt;
== Update 201607181902+d4cec1a0 1404-i386/amd64 - 1204-i386 ==&lt;br /&gt;
* pluto-website-admin - Update to qOrbiterGenerator.php for newer PHP version&lt;br /&gt;
&lt;br /&gt;
== Update 201607161239+6d72c3f9 1404-i386/amd64 1204-i386 ==&lt;br /&gt;
* pluto-website-admin (220) - #2678 fix Warning: Invalid argument supplied for foreach() in /var/www/lmce-admin/include/dhcpd-tools/DHCPd-parse.php on line 113&lt;br /&gt;
* pluto-boot-script&lt;br /&gt;
&lt;br /&gt;
== Update 201607151016+5b5adba3 1404/i386 &amp;amp; amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule use another escape method.&lt;br /&gt;
&lt;br /&gt;
== Update 201607122332+f0fc9c6b 1404/i386 ==&lt;br /&gt;
* pluto-boot-scripts (234) - fix #2684 clients cannot access internet when firewall is disabled. &lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule.&lt;br /&gt;
&lt;br /&gt;
== Update 201607050613+601c67da 1404-i386/amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - more fixes to the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update trusty i386/amd64 201606301955+614dfa7b ==&lt;br /&gt;
* pluto-website-admin (220) - fix for outside access port 443 not uncheckable.&lt;br /&gt;
* pluto-boot-scripts (234) - fix for not dele rules from iptables from outsideAccess.php&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201606201908+31b25c52 ==&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** unicode reading/writing working properly&lt;br /&gt;
** coverart writing to tags working properly&lt;br /&gt;
** .id3 files handled by taglib instead of id3lib.&lt;br /&gt;
** General Object Frame (GEOB) reading/writing working properly (all lmce attributes are stored in id3v2 GEOB tags for .id3/.mp3 files)&lt;br /&gt;
* pluto-website-admin (220) - more updates for mysql -&amp;gt; mysqli conversion&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201605312323+08fb8202 ==&lt;br /&gt;
* pluto-website-admin (220) - fix Text Command button to honor parameters from Screen_CommandParameter&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller to fix spamming of logs with constant updates of device data.&lt;br /&gt;
&lt;br /&gt;
== Update trusty-i386/amd64 201605310531+04df53f5 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - get the stream uri from onvif camera and save it in a device data for use by other devices&lt;br /&gt;
* pluto-website-admin (220) - adate to adodb 5.20.4 and change db driver from mysql to mysqli&lt;br /&gt;
* pluto-updatemedia (405,406) - tag writing/deletion of values update&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201605261039+410242d2 ==&lt;br /&gt;
* pluto-media-database (233) - remove FatGroupBy query as it is massive and no longer required&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** FIX UpdateMedia not detecting changes in files on disk.  Fixes: UpdateMedia not reading modification times properly.&lt;br /&gt;
** improve image reading/writing for mp3/mp4 files, add image handling for asf/wma, improve track art-&amp;gt;performer/album artist matching.&lt;br /&gt;
** don&#039;t add network shares to inotify watch list&lt;br /&gt;
* pluto-system-database (211) - new qml-* pkg definitions for qorbiter&lt;br /&gt;
* pluto-plutoutils (196,197) - add fn&#039; to determine filesystem type of a file&lt;br /&gt;
* lmce-disked-interactor (897,898) - make sure we see the core and have an IP prior to attempting contact&lt;br /&gt;
* pluto-bootscripts (234) - make sure we see the core prior to continuing to boot an MD&lt;br /&gt;
* pluto-website-admin (220) - various fixes in the media page&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 - 201605171740 c6d63dc6 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3, ogg, flac, mp4, wv, wav, oga, mpc, spx, opus, tta, m4a, m4r, m4p, 3g2, m4v, wma, asf, aif, aiff, afc, aifc, ape, s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64  201605131052+2542a526 ==&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - udev rule to ignore usbhid portion of device, permits orbiter to enter screensaver&lt;br /&gt;
* pluto-bootscripts (234) - permit devices that have died 50 times to attempt to restart after a router reload. Firewall fix for manual defined chains.&lt;br /&gt;
* pluto-sound-card-scripts (579) - don&#039;t assume cardid=1, determine phoenix cardid from aplay.&lt;br /&gt;
* pluto-media-database (233) - additional AttributeType &amp;quot;Album Artist&amp;quot;&lt;br /&gt;
* lmce-media-identifier (931,932) - updates for Album Artist tag.&lt;br /&gt;
* pluto-orbiter (119,138) - updates for Album Artist tag.&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** updates for Album Artist tag&lt;br /&gt;
** fix mainMediaFileSync.php. OutsideAccess page showing the options (again). &lt;br /&gt;
** And typo fixes for issue #2643. &lt;br /&gt;
** Firewall page reload issue 2636#. Firewall gui do not show &amp;quot;NULL&amp;quot;.&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3:ogg:flac:mp4:wv:wav::oga:mpc:spx:opus:tta:m4a:m4r:m4p:3g2:m4v:wma:asf:aif:aiff:afc:aifc:ape:s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update jessie 20160427 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for RPi&lt;br /&gt;
* lmce-disked-md-rpi2 (889) - +x firstboot_md_rpi2 to ensure it&#039;s picked up properly&lt;br /&gt;
&lt;br /&gt;
== Update jessie 201604130947+0083d387 ==&lt;br /&gt;
== Update 1204/1404-i386/amd64 201604101031-0b47a986 ==&lt;br /&gt;
* pluto-website-admin, pluto-boot-scripts (220,234) - Firewall Fixes for GUI and inner working of the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603251155+a1c0f6ea ==&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - File view implemented. Fixed not being able to leave resume menu.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603222119+336464d8 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller  to fix floorplan / status being improperly updated.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t mount optical discs as HDDs&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201603220706+c3c4b899 ==&lt;br /&gt;
* lmce-md-meta (450) - for some reason this is not in the main repo&lt;br /&gt;
* lmce-media-identifier - fixed for libcdio&lt;br /&gt;
&lt;br /&gt;
== Update jessie-rpi 60faa181 ==&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - adds video resizing so UI1 can be exposed while video is playing.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 armhf 31c5d994 ==&lt;br /&gt;
== Update 1404 i386 52e39875 ==&lt;br /&gt;
* pluto-storage-devices (533) - fix ntfs detection&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 - 49a8cbf1 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - a little better device to device template mapping&lt;br /&gt;
* pluto-website-admin (220) - fix adv.zwave page and adding secure devices&lt;br /&gt;
* lmce-disked-* - update the disked md/mid meta/base/device pkgs, specific fixes for 1404 joggler&lt;br /&gt;
* lmce-json-plugin (876,877) - first time addition to the main repo&lt;br /&gt;
* libdvdid0 (replacement) - first time addition to the repo, for use by Media Identifier&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - enable disabling internal volume control, similar to how logitechmediaserver does&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1404(armhf)/jessie(rpi)-a84db86f ==&lt;br /&gt;
* lmce-launch-manager (298,299) - only update squeeze devices when running on the core, redundant elsewhere.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404-87954508 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t fail if dvdcss2 cannot be automatically installed.&lt;br /&gt;
* pluto-hald (529,530) - reinstate tty detection, seperate from usb-serial, use direct parent for udi naming.&lt;br /&gt;
* pluto-boot-scripts (234) - disable buildall, the script doesn&#039;t run so why waste time creating it.&lt;br /&gt;
* lmce-launch-manager (298,299)&lt;br /&gt;
** update squeezebox players on router reloads from Launch_Manager&lt;br /&gt;
** call Config_Device_Changes in startCoreServices to ensure everything gets its&#039; Need Configure flag reset.&lt;br /&gt;
&lt;br /&gt;
== Update a332f49a ==&lt;br /&gt;
* lmce-install-scripts (391) - fix missing quote in MD installation.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix missing &#039;fi&#039; in BootMessage.sh&lt;br /&gt;
** fix usb.1 system serial port listing/translating&lt;br /&gt;
* lmce-media-identifier (931,932) - fix segfault, CDs are identified, cd-ripping functional again&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** prioritize new conf dir over old conf dir, fix install on systems upgraded from 1204-&amp;gt;1404&lt;br /&gt;
** redirect mythweb to html/mythweb&lt;br /&gt;
* pluto-hald (529,530) - updates to serial port naming, specifically for odroid.&lt;br /&gt;
* pluto-storage-devices (533) - fix mounted drive detection and add detection for drives mounted in /proc/cmdline like rpi.&lt;br /&gt;
&lt;br /&gt;
== Update 1204=201602080446+2028f850 &amp;lt;br&amp;gt; 1404=201602071815+c31bc44f ==&lt;br /&gt;
* lmce-install-scripts (391)&lt;br /&gt;
** enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
* lmce-core (888) - enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
* pluto-storage-devices (533) - redo StorageDevices_Radar using blkid for internal HDD identification.  /dev/disk/by-path/ is not present anymore.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
** new VerifyDistro.sh script and call the script on boot.&lt;br /&gt;
*** Preventative mostly.  Intended to ease pain for those that upgrade distros.&lt;br /&gt;
*** Ensure child devices, onscreen orbiter, have the proper PK_Distro set.&lt;br /&gt;
&lt;br /&gt;
== Update 296fdcd3 ==&lt;br /&gt;
* pluto-website-admin (220) - fix depends versioning&lt;br /&gt;
* pluto-hald (529,530) - fix depends versioning&lt;br /&gt;
* pluto-boot-scripts (234) - fix depends versioning&lt;br /&gt;
* pluto-system-database (211) - fix depends versioning&lt;br /&gt;
* pluto-orbitergen (226,227) - fix depends versioning&lt;br /&gt;
* lmce-disked-md-base (801) - fix depends versioning&lt;br /&gt;
* lmce-install-scripts (391) - fix depends versioning&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix depends versioning&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix depends versioning&lt;br /&gt;
* lmce-datalogger-plugin (686,687) - fix depends versioning &lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix depends versioning&lt;br /&gt;
&lt;br /&gt;
== Update f3a444c0 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** use newer .sh script rather than obsolete .pl script for dialplan creation&lt;br /&gt;
** fix Directory listing on cisco phones&lt;br /&gt;
** fix delete buttons on internet radio page.&lt;br /&gt;
* pluto-hald (529,530)&lt;br /&gt;
** add &#039;usb&#039; to &#039;pci&#039; and &#039;platform&#039; as valid bus addresses&lt;br /&gt;
** permit adding of usb devices with usb_serial or tty children&lt;br /&gt;
* pluto-boot-scripts (234) - update SetupAudioVideo.sh to more reliably address nvidia hdmi audio outputs&lt;br /&gt;
* lmce-asterisk (replacement) - live_dangerously for now to get all the necessary Voicemail modules to load&lt;br /&gt;
* pluto-system-database (211) - new DD Number of jobs for orbiter plug-in/orbitergen&lt;br /&gt;
* pluto-boot-scripts (234) - updates to RegenOrbiter scripts for parallel job queued orbiter generation.&lt;br /&gt;
* pluto-orbitergen (226,227) - new depends on GNU parallel&lt;br /&gt;
* lmce-disked-md-base (801) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* lmce-install-scripts (391) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - remove hardcoded ip address, get from db instead.&lt;br /&gt;
* lmce-diskless-tools (627,628) - only run UpdateDebCache.sh if it is executable&lt;br /&gt;
* lmce-datalog-plugin(686,687) - fix pear install command in postinst&lt;br /&gt;
* lmce-advanced-ip-camera(812,813) - add basic onvif support (snapshot,PTZ)&lt;br /&gt;
&lt;br /&gt;
== Update 31792 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of new External_Media_Identifier, testing CDDB ids&lt;br /&gt;
&lt;br /&gt;
== Update 31783 ==&lt;br /&gt;
* pluto-libserial (190,191) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-dcecommon (192,193) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-irbase (194,195) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-plutoutils (196,197) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-vipshared (199,200) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-serializeclass (198,238) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-libbd (239,240) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-ra (247,248) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-main-db (201,237) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-media-db (254,255) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-security-db (278,277) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-sdl-helpers (346,347) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-messagetrans (398,401) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-game-db (675,676) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-windowutils (677,678) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-datalog-db (688,689) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
&lt;br /&gt;
== Update 31782 ==&lt;br /&gt;
* pluto-std-plugins - fix FK_File search inside Attribute in Media_Plugin&lt;br /&gt;
&lt;br /&gt;
== Update 31774 ==&lt;br /&gt;
* lmce-disked-mid-base (899) - fix error in postinst&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come (this should be in but apt-get is getting 404 errors)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add &amp;quot;remove failed node&amp;quot; command&lt;br /&gt;
* pluto-website-admin - add &amp;quot;remove failed node&amp;quot; command for zwave advanced page&lt;br /&gt;
&lt;br /&gt;
== Update 31760 ==&lt;br /&gt;
* lmce-disked-md-base (801) - fix another error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31757 ==&lt;br /&gt;
* lmce-core (888) - overwrite AutostartCore conf value&lt;br /&gt;
* lmce-md-meta (450) - overwrite AutostartMedia conf value&lt;br /&gt;
* lmce-mid-meta (962) - missing deb&lt;br /&gt;
* lmce-hybrid (769) - exit 0 in postinst, just to be sure&lt;br /&gt;
* lmce-disked-md-base (801) - fix error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31754 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - reconnect before send&lt;br /&gt;
&lt;br /&gt;
== Update 31752 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - remove hard coded caller id &#039;Cherryhomes, Tho&#039;, use incoming caller id.&lt;br /&gt;
&lt;br /&gt;
== Update 31750 ==&lt;br /&gt;
* pluto-website-admin (220) - fix postinst error notice on precise.&lt;br /&gt;
* pluto-boot-scripts (234) - (re)start asterisk, otherwise configuration doesn&#039;t occur and sip phones cannot register&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - force-reload apache2 after disabling mythbuntu sites&lt;br /&gt;
* lmce-md-meta (450) - don&#039;t overwrite conf values that are already set&lt;br /&gt;
* *openzwave* (replacement) - version bump, upgrade fixes to upstream files&lt;br /&gt;
&lt;br /&gt;
== Update 31744 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come&lt;br /&gt;
&lt;br /&gt;
== Update 31742 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Gui changes to not confuse people. &lt;br /&gt;
** outsideaccess works together with the firewall. &lt;br /&gt;
** phonelines note on protocol for meaning of &amp;quot;SPA&amp;quot; and a status for this protocol setting, port can be changed if needed else it will be the default (5060).&lt;br /&gt;
&lt;br /&gt;
== Update 31739 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix absolute timed events&lt;br /&gt;
&lt;br /&gt;
== Update 31723 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix nfs-premount script in default diskless image.&lt;br /&gt;
* lmce-dlna(842,843) - compatibility fixes&lt;br /&gt;
* lmce-install-scripts (391) - generate ssh keys so openssh-server can accept connections&lt;br /&gt;
* pluto-createdevice (303,304) - hide errors, specifically during initial package postinst&lt;br /&gt;
* lmce-cec-adaptor (871,872) - fix cec remotes not getting to lmce&lt;br /&gt;
&lt;br /&gt;
== Update 31693 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - Fixes #2530 - fix errors in mythtvdb synchronization scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31686 ==&lt;br /&gt;
* lmce-install-scripts (391) - deal with firstboot stuffenz&lt;br /&gt;
* pluto-system-database (211) - add proxy orbiter DT depends for generic web device&lt;br /&gt;
* pluto-website-admin (220) - order by photo file name in screen saver/photo browser&lt;br /&gt;
* pluto-boot-scripts (234) - try ubiquity before anything else, and reboot after the normal firstboot - breaks live boot on dvd atm&lt;br /&gt;
* lmce-diskless-tools (627,628) - permit i386 diskless image building on amd64 cores, ensure processes are killed in chroot before unmounting (deals with systemd for now)&lt;br /&gt;
&lt;br /&gt;
== Update 31660 ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) &lt;br /&gt;
**PS3 control screen, fix layout issue. adds seperate button group (triangle, circle, etc) and navigation arrows. Also adds power off button to properly exit screen&lt;br /&gt;
* pluto-website-admin (220) - prevent creation of extra &#039;blank&#039; network interfaces&lt;br /&gt;
&lt;br /&gt;
== Update 31655 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - close connection after use&lt;br /&gt;
* pluto-website-admin (220) - fill ServerName var if it is unset, not if it is set.&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - unify service control&lt;br /&gt;
* pluto-boot-scripts (234) - unify service control&lt;br /&gt;
* pluto-dhcpd-plugin (302) - unify service control&lt;br /&gt;
* pluto-disk-monitor (554) - unify service control&lt;br /&gt;
* pluto-mythtv-player (133,152) - unify service control&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - unify service control&lt;br /&gt;
* pluto-raid-tools (617) - unify service control&lt;br /&gt;
* pluto-storage-devices (533) - unify service control&lt;br /&gt;
* lmce-update-system (650,651) - unify service control&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - unify service control&lt;br /&gt;
* pluto-vdr-plugin (466,467) - unify service control&lt;br /&gt;
* pluto-vdr (468,469) - unify service control&lt;br /&gt;
* pluto-database-settings (407) - unify service control&lt;br /&gt;
* lmce-asterisk (replacement) - unify service control&lt;br /&gt;
* lmce-diskless-tools (627,628) - unify service control&lt;br /&gt;
* lmce-install-scripts (391) - unify service control&lt;br /&gt;
* pluto-updatemedia (405,406) - unify service control&lt;br /&gt;
* pluto-newmdinteractor (538,539) - unify service control&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - Fix size issues, floorplan popups.&lt;br /&gt;
&lt;br /&gt;
== Update 31621 ==&lt;br /&gt;
* pluto-mythtv-player (133,152) - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 31618 ==&lt;br /&gt;
* lmce-asterisk (replacement) - update db for chan_sccp-v4.2 and fix bug requiring manual asterisk reload on boot&lt;br /&gt;
&lt;br /&gt;
== Update 31615 ==&lt;br /&gt;
* pluto-* - rebuild with new libraries&lt;br /&gt;
* lmce-* - rebuild with new libraries&lt;br /&gt;
&lt;br /&gt;
== Update 31606 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix EPG data on orbiters, myth stores everything in UTC now.&lt;br /&gt;
* pluto-pluto-main-db (201,237) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-media-db (254,255) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-security-db (277,278) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-datalog-db (688,689) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-game-db (675,676) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-updateentarea (341,342) - don&#039;t send empty play command when resetting alarm&lt;br /&gt;
&lt;br /&gt;
== Update 31580 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - use bypass-event to avoid watching media events when playing alerts&lt;br /&gt;
* pluto-updateentarea (341,342) - send bypass-event with security event commands&lt;br /&gt;
* libcec3 debs (replacement) - removes conflict data with libcec2&lt;br /&gt;
&lt;br /&gt;
== Update 31575 ==&lt;br /&gt;
* lmce-asterisk (replacement) - play back alert notification file&lt;br /&gt;
* pluto-std-plugins (116,135) - create alert notification file with correct format&lt;br /&gt;
* pluto-boot-scripts (234) - fixes for nvidia drivers on precise, upgrades to nvidia-340&lt;br /&gt;
* lmce-avwizard-sounds (replacement) - don&#039;t copy fakeroot files (it is redundant it is)&lt;br /&gt;
* video-wizard-videos (replacement) - deb is back to normal size, not 2x&lt;br /&gt;
&lt;br /&gt;
== Update 31553 ==&lt;br /&gt;
* pluto-website-admin (220) - fix error that wipes out the apache2.conf&lt;br /&gt;
* pluto-hald (529,530) - fix segfaults with firewire hardware&lt;br /&gt;
&lt;br /&gt;
== Update 31547 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some API changes in OZW 1.3, more device template mappings&lt;br /&gt;
* pluto-boot-scripts (234) - typo fix for nvidia drivers&lt;br /&gt;
* lmce-disked-md-base (801) - set hostname on disked MDs, set timezone on disked MDs&lt;br /&gt;
* lmce-install-scripts (391) - set hostname on disked MDs, set timezone on disked MDs &lt;br /&gt;
* pluto-website-admin was generated---&amp;gt; lmce-website-admin (220) - set apache2 ServerName to silence error on boot&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates, revert to ruby 1.8&lt;br /&gt;
* pluto-generic-serial-device (307,335) - admit defeat for now, revert to ruby 1.8&lt;br /&gt;
&lt;br /&gt;
== Update 31533 ==&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31520 ==&lt;br /&gt;
* chan-sccp_v4.2 (replacement) - Upgrad asterisk SCCP channel driver to newest version&lt;br /&gt;
* pluto-vdr-plugin (466,467) - implement background loading of EPG from VDR to avoid crashes due to commands not completing on time&lt;br /&gt;
* pluto-boot-scripts (234) - some logic changes and added messages for video driver install debugging&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - link new channels dir to old channels dir for backwards compatibility&lt;br /&gt;
&lt;br /&gt;
== Update 31503 ==&lt;br /&gt;
* *zwave* (replacement) - new upstream openzwave version 1.3.1224&lt;br /&gt;
* lmce-zwave-ozw(505,506) - build against new libopenzwave1.3&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates&lt;br /&gt;
* lmce-disked-interactor (897,898) - make disked interactor aware of wheezy and jessie.&lt;br /&gt;
&lt;br /&gt;
== Update 31500 ==&lt;br /&gt;
* *myth* (replacement) - fix depends on non-existent packages&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst - verified installing now&lt;br /&gt;
* pluto-std-plugins (116,135) - Use integer comparison for brightness state&lt;br /&gt;
&lt;br /&gt;
== Update 31491 ==&lt;br /&gt;
* lmce-avwizard-skin-basic (replacement) - fix packaging of avwizard skin&lt;br /&gt;
* *myth* (replacement) - mythtv 0.27.5+fixes with Schedules Direct fix included&lt;br /&gt;
* *asterisk* (replacement) - asterisk 11.7 backport from trusty&lt;br /&gt;
* libical* (replacement) - for asterisk 11.7&lt;br /&gt;
* *cec* (replacement) - libcec3&lt;br /&gt;
* libplatform* (replacement) for libcec3&lt;br /&gt;
* lmce-cec-adaptor (871,872) - build against libcec3&lt;br /&gt;
* lmce-mediatomb (702) - fix pkg installation&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - update protocol version and secret word (shhh) for 0.27.5+fixes&lt;br /&gt;
* lmce-diskless-tools (627,628) - remove call to obsolete script in Diskless_Setup.sh&lt;br /&gt;
* pluto-vdr-plugin (466,467) - return full EPG (used in qOrbiter EPG Grid), improve communication speed with SVDRP&lt;br /&gt;
* pluto-slim-server-streamer (289,290) - emit time code event, fix duration parsing&lt;br /&gt;
* pluto-boot-scripts (234) - fix headless booting, update 1404 nvidia driver&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* lmce-md-meta (450) - add depends on alsa-utils&lt;br /&gt;
* pluto-website-admin (220) - Fix cdrviewer (Call Details Records) to accept SSL conections as well, firewall gui change to set Offline rules in red as they are not executed.&lt;br /&gt;
* pluto-app-server (126,145)- new poweroff mode I for ignore, since N is already in use&lt;br /&gt;
&lt;br /&gt;
== Update 31420 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add depends on pluto-boot-scripts for deb cache script&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31411 == &lt;br /&gt;
* pluto-avwizard (555,556) - fix depends on avwizard skins basic, should no longer care about version&lt;br /&gt;
* pluto-boot-scripts (234) - more explicity logic for core only booting, fix startup script db errors&lt;br /&gt;
* lmce-update-system (650,651) - remove and disable old init.d script from /etc/init.d&lt;br /&gt;
* pluto-plutodhcp (330,491) - depends on apparmor&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-dhcpd-plugin (302) - remove hardcoded IP addresses from configure scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31387 ==&lt;br /&gt;
* lmce-weather-plugin - make change to allow for tonight&#039;s forecast data (TSCHAK)&lt;br /&gt;
* lmce-asterisk (replacement) - remove obsolete phonetic engines and replace with espeak, voices remain the same&lt;br /&gt;
* mbrola (replacement) - base mbrola pkg for mbrola voices (add armhf binary)&lt;br /&gt;
* pluto-asterisk (270,271) - generate fr and de voicemail menus with espeak now&lt;br /&gt;
* lmce-core (888) - add depends on iptables&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31378 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Start_KDE.sh ownership fix, AV config updates&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-avwizard (555,556) - update pkgs &amp;amp; depends &amp;amp; config scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - do not run update deb_cache during dvd creation&lt;br /&gt;
* pluto-x-scripts (520) - fixups to Xconfigure.sh&lt;br /&gt;
&lt;br /&gt;
== Update 31356 ==&lt;br /&gt;
* pluto-system-database (211) - update depends&lt;br /&gt;
* pluto-orbiter (119,138) - update depends&lt;br /&gt;
* lmce-diskless-tools (627,628) - speedup dpkg in diskless create, fix missing quotes&lt;br /&gt;
&lt;br /&gt;
== Update 31352 ==&lt;br /&gt;
* pluto-motion-wrapper - more config file location fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 31351 ==&lt;br /&gt;
* pluto-boot-scripts (234) - change service &#039;nis&#039; to &#039;ypserv&#039;, nis is no longer a service name&lt;br /&gt;
* pluto-website-admin (220) - remove &#039;idiot&#039; text, let&#039;s be nice to people.&lt;br /&gt;
* lmce-core (888) - do not create and config under ubiquity&lt;br /&gt;
* lmce-md-meta (450) - do not create and config under ubiquity&lt;br /&gt;
* motion (replacement) - fix bad config file setting in rules&lt;br /&gt;
&lt;br /&gt;
== Update 31337 ==&lt;br /&gt;
* motion (replacement) - new version of motion to match new configuration values generated by linuxmce&lt;br /&gt;
&lt;br /&gt;
== Update 31331 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix for brightness events&lt;br /&gt;
* pluto-boot-scripts (234) - fix kdm disabling, start ubiquity after network config&lt;br /&gt;
* lmce-diskless-tools (627,628) - add upstart overrides for kdm&lt;br /&gt;
* lmce-install-scripts (391) - start ubiquity after network config&lt;br /&gt;
&lt;br /&gt;
== Update 31314 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add missing depends&lt;br /&gt;
&lt;br /&gt;
== Update 31292 ==&lt;br /&gt;
* lmce-core-locator (replacement) - (1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-system-database (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* All .debs created by MakeRelease - removal of all Pre-Depends, everything is now a Depends entry (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
== Update 31228 ==&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-local-database&lt;br /&gt;
&lt;br /&gt;
== Update 31214 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package (not in repo, need build-replacements.sh svn up&#039;d?)&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - preinst/postinst updates&lt;br /&gt;
* pluto-boot-scripts (234) - preinst/postinst updates&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-disked-md-base (801) - firstboot updates&lt;br /&gt;
&lt;br /&gt;
== Update 31187 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package&lt;br /&gt;
* pluto-confirm-dependencies (281,272) - new depends on lmce-install-scripts (fixes unable to apt-get dist-upgrade)&lt;br /&gt;
* lmce-md-meta (450) - new depends on nfs-common, openssh-server and pastebinit&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - update depends, preinst/postinst&lt;br /&gt;
* pluto-boot-scripts (234) - depends &amp;amp; preinst/postinst updates&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - add override mythweb defaults in pkg preinst&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - update depends&lt;br /&gt;
&lt;br /&gt;
== Update 31133 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** enable WakeMDs.sh to wake any halted MDs.&lt;br /&gt;
** consolidate all boot script launching to /etc/init.d/linuxmce&lt;br /&gt;
* pluto-avwizard (555,556) - moves start script to /usr/pluto/bin, called by /etc/init.d/linuxmce now&lt;br /&gt;
* lmce-update-system (650,651) - removes init.d script, called by /etc/init.d/linuxmce now&lt;br /&gt;
* pluto-website-admin (220) - GUI changes on network settings if an bridge is configured on the db.&lt;br /&gt;
* lmce-core (888) - depend on pluto-asterisk, lmce-asterisk, lmce-install-scripts&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* pluto-generic-serial-device (307,335) - wildshot attempt at fixing segfaults&lt;br /&gt;
&lt;br /&gt;
== Update 31103 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** Network bridging now possible  for wifi AP to have the same network as the local lan. &lt;br /&gt;
** ipv6 on/off for network interfaces. Read multiple ipv6 interfaces from the db.&lt;br /&gt;
** re-enable HaltMDs.&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* libqhttpserver (912) needed for linuxmce nvr&lt;br /&gt;
* lmce-launch-manager - (298,299) - ?&lt;br /&gt;
&lt;br /&gt;
== Update 31087 ==&lt;br /&gt;
* lmce-weather (838,839) - Fix a serious bug in getconfig where incorrect configuration device data would crash program. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 31083 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes #2422, advanced zwave page broken in chrome&lt;br /&gt;
* pluto-system-database (211) - thumbnail screen fixes&lt;br /&gt;
&lt;br /&gt;
== Update 31074 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** setEa2.php - Fix settings for creating entertain area.&lt;br /&gt;
** qOrbiterGenerator.php - Fix erroneous EA creation by removing it.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Fix incorrect setting for enabling / disabling motion.&lt;br /&gt;
&lt;br /&gt;
== Update 31069 ==&lt;br /&gt;
* pluto-website-admin (220) - setEa2.php Fix settings for creating entertain area.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Initial build.&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (881) - Large update of skins and internals.&lt;br /&gt;
&lt;br /&gt;
== Update 31061 ==&lt;br /&gt;
* lmce-squeezeslave (762) - Add configuration DD to command line&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DB package updates&lt;br /&gt;
** restore previous video remote layout with Options button to select subtitles/audio tracks/video tracks from a datagrid list.&lt;br /&gt;
* pluto-website-admin (220) - firewall.php edit rules for non advanced firewall and some other small fixes.&lt;br /&gt;
* lmce-asterisk (replacement) - sip config modules to avoid autoload.&lt;br /&gt;
&lt;br /&gt;
== Update 31051 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** firewall.php not adding rules now fixet.&lt;br /&gt;
** Test buttons for Hue lights&lt;br /&gt;
** Security outsideAccess page now works nicely with the new firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 31044 ==&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
&lt;br /&gt;
== Update 31031 ==&lt;br /&gt;
* pluto-website-admin (220) - firewall.php after a strange fault and some layout fixes.&lt;br /&gt;
* lmce-mediatomb (702) - don&#039;t assume mediatomb is already running.&lt;br /&gt;
&lt;br /&gt;
== Update 31013 ==&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* pluto-boot-scripts (234) - Network Parameter count for more interfaces set and Network firewall accepting postrouting Masquerade  for other network interfaces.&lt;br /&gt;
&lt;br /&gt;
== Update 30985 ==&lt;br /&gt;
* pluto-website-admin (220) - #2268 fail2ban integration logging failed user login attempt.&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** #2268 fail2ban script not insert existing rules to our db.&lt;br /&gt;
** Support for audio output select on rpi via web admin&lt;br /&gt;
* lmce-diskless-tools (627,628) - update syslinux depends to syslinux-common&lt;br /&gt;
* lmce-omx-player (829,830) - Honour audio output selection of rpiMD&lt;br /&gt;
* lmce-squeezeslave (762) - Fix detection for squeezelite&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - further fixes&lt;br /&gt;
* lmce-usb-gamepad (795,796) - rewrite the whole main loop to suck less. hold-down repeats work, input handling more sane.&lt;br /&gt;
&lt;br /&gt;
== Update 30926 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Fix for #2368 insert firewall rules en #2064 edit and delete chains (except some system chains).&lt;br /&gt;
** Support for brightness based events.&lt;br /&gt;
* pluto-std-plugins (116,135) - Support for brightness based events&lt;br /&gt;
* lmce-omx-plugin (831,832) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** Database additions for XBOX 360 Gamepad (device templates, package)&lt;br /&gt;
** Modification of OMX Plugin to allow priority to be changed.&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - the XBOX 360 Gamepad driver, uses xboxdrv userspace driver.&lt;br /&gt;
* lmce-usb-gamepad (795,796) - additions here for above XBOX 360 Gamepad support.&lt;br /&gt;
&lt;br /&gt;
== Update 30862 ==&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress can now read latest files per linuxmce user.&lt;br /&gt;
&lt;br /&gt;
== Update 30860 ==&lt;br /&gt;
* lmce-weather (838,839) - some fixes by cfernandes&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress.&lt;br /&gt;
* pluto-boot-scripts (234) - more mail fixes&lt;br /&gt;
&lt;br /&gt;
== Update 30855 ==&lt;br /&gt;
* pluto-vdr, pluto-vdr-plugin - remove hardcoding of core IP and network address, but depend on the pluto.conf entries for DCERouter.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location (again)&lt;br /&gt;
* lmce-diskless-tools - stop copying apt configs from the core&lt;br /&gt;
* pluto-boot-scripts - fix postfix setup #2393&lt;br /&gt;
&lt;br /&gt;
== Update 30841 ==&lt;br /&gt;
* lmce-avwizard-sounds - fix replaces/conflicts data&lt;br /&gt;
* lmce-skins-basic - fix replaces/conflicts data&lt;br /&gt;
* lmce-avwizard-skin-basic - fix replaces/conflicts data&lt;br /&gt;
&lt;br /&gt;
== Update 30383 ==&lt;br /&gt;
* pluto-website-admin (220) - Add Hue lights related test button.&lt;br /&gt;
* pluto-boot-scripts - Add another option --autobackup to PlutoRestorePoint.sh to allow backup of pluto_main only&lt;br /&gt;
&lt;br /&gt;
== Update 30814 ==&lt;br /&gt;
* pluto-Boot-scripts - Firewall order by place and PK_Firewall to let rules stay on top on the middle or on the bottom.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location&lt;br /&gt;
* lmce-hue-controller (862,863) - Fix bug in adding new lights, now adds serial number.&lt;br /&gt;
* pluto-website-admin (220) - Fix oops relating the missing &#039;.&#039; which caused operations/login.php not to work.&lt;br /&gt;
&lt;br /&gt;
== Update 30783 ==&lt;br /&gt;
* lmce-nbd-client-wrapper - new pkg to hold common script&lt;br /&gt;
* pluto-xine-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* lmce-vlc-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* pluto-boot-scripts - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
* pluto-storage-devices - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30777 ==&lt;br /&gt;
* lmce-core - depend on openswan&lt;br /&gt;
* pluto-system-database - pkg updates&lt;br /&gt;
* pluto-boot-scripts - remove check for openswan from bootscript&lt;br /&gt;
* pluto-generic-serial-device - update to ruby 1.9.1&lt;br /&gt;
&lt;br /&gt;
== Update 30773==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller internals to now include polling, so as to make sure floorplan data is accurate. Changes underlying mechanisms for how lights are handled in preparation for extending additional support for Cree lights and sensors devices.&lt;br /&gt;
&lt;br /&gt;
== Update 30767 ==&lt;br /&gt;
* lmce-diskless-tools - update diskless archive name to reflect current compression method xz.&lt;br /&gt;
* pluto-website-admin (220) - updates to internet radio, moves add channels to a seperate page.  Thanks Dap-P!&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
* pluto-vdr - adds missing depends on vdr in trusty&lt;br /&gt;
* lmce-core - update depends to new pkg name lmce-avwizard-sounds&lt;br /&gt;
* pluto-avwizard - update depends to new pkg name lmce-avwizard-skins-basic&lt;br /&gt;
* lmce-clock-screen-saver - make the clock screen saver use the WMController/wmctrl methods for setting window visibility to be compatible with Orbiter. (TSCHAK) (Trusty only)&lt;br /&gt;
* pluto-storage-devices - Make sure that smbpasswd is used to create or update sambahelper&#039;s password (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30726 ==&lt;br /&gt;
* pluto-vdr - VDR player&#039;s package assumed a correctly installed vdr package which includes an entry in /etc/default for vdr. We no longer fail on a missing file.&lt;br /&gt;
&lt;br /&gt;
== Update 30724 ==&lt;br /&gt;
* lmce-weather - updates to weather sources, add OpenWM source.  Thanks SBCC and cfernandes!&lt;br /&gt;
* lmce-skins-* - adds missing telecom icons, updates/adds weather icons&lt;br /&gt;
* lmce-avwizard-sounds - remove extraneous stuff from pkg, reduce pkg size back to normal.  Proper replaces/conflicts/data...&lt;br /&gt;
* lmce-avwizard-skin-basic - Proper replaces/conflicts/data...&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
&lt;br /&gt;
== Update 30718 ==&lt;br /&gt;
* lmce-core - new depends on lmce-skins*&lt;br /&gt;
* lmce-md-meta - add depends on pnp-detection scripts&lt;br /&gt;
* lmce-hybrid - new depends on lmce-skins*&lt;br /&gt;
* pluto-avwizard (556,555) - add pciutils as a depends, still need to deal with multiarch stuff so this will break armhf, we will not update armhf for now, it doesn&#039;t use avwizard but does install it.&lt;br /&gt;
* lmce-diskless-tools - minor diskless create fixups&lt;br /&gt;
* pluto-orbiter - missing depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio script&lt;br /&gt;
* pluto-website-admin (220) - recognize MIDs as top level devices&lt;br /&gt;
* pluto-mythtv-player - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 30628 ==&lt;br /&gt;
* *-database - fix install issues&lt;br /&gt;
&lt;br /&gt;
== Update 30622 ==&lt;br /&gt;
* pluto-orbiterinstallers - fix depends issue&lt;br /&gt;
* pluto-system-database - lots of compat updates&lt;br /&gt;
* lmce-* - lots of compat updates&lt;br /&gt;
* pluto-* - lots of compat updates&lt;br /&gt;
&lt;br /&gt;
== Update 30618 ==&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio scripts&lt;br /&gt;
* pluto-website-admin (220) - updated internet radio page&lt;br /&gt;
&lt;br /&gt;
== Update 30571 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - send &amp;quot;Device is turned on or off&amp;quot; event when appropriate so the corresponding event works as expected&lt;br /&gt;
* lmce-squeezeslave (762) - set to pnp create without prompting&lt;br /&gt;
* lmce-runtime-dependencies (903) - pkg to help consolidate runtime depends.&lt;br /&gt;
* lmce-core (888) - updated depends&lt;br /&gt;
* lmce-md-meta (450)- updated depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated depends&lt;br /&gt;
* pluto-createdevice (303,304) - updated depends&lt;br /&gt;
* lmce-weather(838,839) - fix potential segfault&lt;br /&gt;
* pluto-website-admin (220) - add &amp;quot;replace node&amp;quot; button to advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 30549 ==&lt;br /&gt;
* pluto-mythtv-player - fix misaligned data values during mythtv.txt creation.&lt;br /&gt;
&lt;br /&gt;
== Update 30526 ==&lt;br /&gt;
* lmce-core - new pkg&lt;br /&gt;
* lmce-hybrid - pkg depends changes&lt;br /&gt;
* lmce-md-meta - pkg depends changes&lt;br /&gt;
* pluto-dcerouter - pkg depends changes&lt;br /&gt;
* pluto-photo-screen-saver - pkg depends changes&lt;br /&gt;
* pluto-boot-scripts - pkg depends changes&lt;br /&gt;
* pluto-orbiter - pkg depends changes&lt;br /&gt;
* pluto-simplephone - pkg depends changes&lt;br /&gt;
* pluto-website-admin - pkg depends changes&lt;br /&gt;
* lmce-mythtv-scripts - pkg depends changes&lt;br /&gt;
* pluto-system-database - pkg depends changes&lt;br /&gt;
* lmce-squeezeslave (762) - fix launch script, automatically create associated squeezebox player on the core.&lt;br /&gt;
* pluto-std-plugins - run New_PnP_MD.sh for new MID devices as well.&lt;br /&gt;
* lmce-diskless-tools - don&#039;t fail on invoke-rc.d during diskless create, exit gracefully and continue.&lt;br /&gt;
* pluto-mythtv-player - fix diskless create failures due to old hacks.  more work is needed here overall on mythtv integration.&lt;br /&gt;
&lt;br /&gt;
== Update 30419 ==&lt;br /&gt;
* pluto-slim-server - Make sure to turn off all Squeeze* devices when Slim Server Streamer starts or restarts (so that squeezelite does not hog sound cards.)&lt;br /&gt;
* pluto-hald (529,530) - add device node path to pnpqueue with v4l devices during detection&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - update for new lib version&lt;br /&gt;
&lt;br /&gt;
== Update 30384 ==&lt;br /&gt;
* pluto-confirm-dependencies - depend on pluto-install-scripts.&lt;br /&gt;
* pluto-disk-drive (122,141) - remove hal bits that dealt with old jukebox bugs.&lt;br /&gt;
* pluto-capture-card-scripts (580) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-pnp-detection (562) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-storage-devices (533) - convert autofs from hal to udev.&lt;br /&gt;
* pluto-bootscripts (234) - disable starting the hald since we&#039;re using udev now, remove false &#039;fail&#039; messages during reboot/shutdown&lt;br /&gt;
* pluto-slim-server-streamer - make one tweak (do not delete m_mapStreamsToPlayers entry in CMD_Stop). Streaming now works consistently, properly, with squeezebox devices and their clones. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30354 ==&lt;br /&gt;
* pluto-hald (529,530) - fix attempt to fire event for child device of usb-dongle.&lt;br /&gt;
* pluto-slim-server-streamer - Implement FF/REW (transport) trick-play control for Squeeze* devices. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30341 ==&lt;br /&gt;
* pluto-bootscripst - fixes for PPPoE users to not autostart the external interface.&lt;br /&gt;
* pluto-slim-server-streamer - Fix to power off squeezebox player when stream is not in use. This allows softsqueeze/squeezeslave/squeezelite players to let go of a sound device, when not in use (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30332 ==&lt;br /&gt;
* pluto-orbiter (118,139) - disable old hid device functionality.  Anyone who needs it can request a special build which will be provided at no extra charge. ;)&lt;br /&gt;
* pluto-bootscripts (234) - disable Gamepad Radar, functionality now in hal through udev&lt;br /&gt;
* pluto-avwizard (556,555) - fixes mangling of RemoteCmd when &amp;gt;1 remote is detected.&lt;br /&gt;
* pluto-hal-device-finder (535,536) - update to use udev rather than hal.&lt;br /&gt;
* pluto-hald (529,530) - update to use udev rather than hal.&lt;br /&gt;
* pluto-system-database (211) - updates for new detection method (joystick, cec-adaptor), update dependency data for hal pks to reflect dropping hald and add depends on udev now.&lt;br /&gt;
&lt;br /&gt;
== Update 30219 ==&lt;br /&gt;
* pluto-bootscripts (234) - Fail2ban firewall update script, and missing radioscript.sh.&lt;br /&gt;
* pluto-website-admin - Place set for rules on the firewall and bantime for fail2ban integration.&lt;br /&gt;
* pluto-std-plugins (116,135) - adds heirloom-mailx for &#039;mailx -r&#039; functionality, fixes e-mail in general info plugin&lt;br /&gt;
&lt;br /&gt;
== Update 30068 ==&lt;br /&gt;
* lmce-advanced-ip-camera(813,812) - Fixed high cpu usage if connection to camera can not be made&lt;br /&gt;
&lt;br /&gt;
== Update 30052 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - fix android pkg meta data, need to rebuild all together&lt;br /&gt;
&lt;br /&gt;
== Update 30051 ==&lt;br /&gt;
* pluto-updateentarea (341,342) - use DAY/NIGHT in watching/stopped watching events to make them smarter&lt;br /&gt;
* pluto-std-plugins (116,135) - Implement Get Device Status in General Info Plugin&lt;br /&gt;
* pluto-bootscripts (234) - fix VPN ip up/down&lt;br /&gt;
&lt;br /&gt;
== Update 30025 ==&lt;br /&gt;
* pluto-system-database (211) - column def updates&lt;br /&gt;
* pluto-local-database (214) - new Firewall columns and new VPN columns for Users table.&lt;br /&gt;
&lt;br /&gt;
== Update 30014 ==&lt;br /&gt;
* lmce-transmission-client (852) - fix postinst issue.  (Thanks SBCC)&lt;br /&gt;
== Update 29994 ==&lt;br /&gt;
More VLC Player changes to make it at least somewhat usable, there were some ugly bugs that came to light once i plopped it onto my production system. Right now sound device is plughw:0,3, if you need a different one, change it in the code.  (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* lmce-vlc-player - many little fixes to make it suck less.&lt;br /&gt;
&lt;br /&gt;
== Update 29990 ==&lt;br /&gt;
I am working on the VLC player, and it is breathing enough for basic testing. Please do not use in production environment. There is still a lot of code to write (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - updates for VLC player (TSCHAK)&lt;br /&gt;
* vlc-player (882,884) - Very early alpha developer test of the VLC player. (TSCHAK)&lt;br /&gt;
* vlc-plugin (874,875) - Very alpha developer test of the VLC plugin. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 29984 ==&lt;br /&gt;
* pluto-system-database (211) - fix bad repos in pkgs&lt;br /&gt;
* pluto-website-admin - just because I think it is necessary :-)&lt;br /&gt;
&lt;br /&gt;
== Update 29983 ==&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Intel_NUC&amp;diff=36935</id>
		<title>Intel NUC</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Intel_NUC&amp;diff=36935"/>
		<updated>2017-04-02T06:51:56Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: Initial NUC content.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Intel NUC ==&lt;br /&gt;
&lt;br /&gt;
The Intel NUC are a line of mini-ITX computers intended to be used in embedded applications, such as small desktops, kiosks, media center PCs, and various other use cases. They consist of a single board, containing an embedded CPU (ranging from an N series celeron, to an Intel i7), two SO-DIMM slots for memory, mobile PCI-E slots for inserting SSD devices, and a variety of the usual suspects of I/O connectors. The NUC can either come in board form, or complete with a cube-like enclosure.&lt;br /&gt;
&lt;br /&gt;
LinuxMCE supports various NUC incarnations, and notes for different models are below.&lt;br /&gt;
&lt;br /&gt;
=== NUC 54250WYK ===&lt;br /&gt;
&lt;br /&gt;
This NUC is an i5 based model, and works great with LinuxMCE, with the following tweaks:&lt;br /&gt;
&lt;br /&gt;
==== /tftpboot/pxelinux.cfg/default ====&lt;br /&gt;
&lt;br /&gt;
On the core, make the following changes to the &#039;default&#039; boot file, after you&#039;ve generated the diskless image with /usr/pluto/bin/Diskless_CreateTBZ.sh&lt;br /&gt;
&lt;br /&gt;
* remove &#039;&#039;&#039;acpi=off&#039;&#039;&#039; from the kernel options line, as ACPI is required to enumerate and initialize the e1000 the network card correctly.&lt;br /&gt;
&lt;br /&gt;
==== Enabling the IR remote control support ====&lt;br /&gt;
&lt;br /&gt;
* Inside the BIOS, ensure that the nuvoton-cir IR receiver is enabled, and that RC6 remote control support is enabled if you want to use a Windows media center remote.&lt;br /&gt;
* Inside the web admin, go to Wizard &amp;gt; Media Directors, and scroll to your NUC media director.&lt;br /&gt;
** Select &amp;quot;default&amp;quot; from Infra-red receivers&lt;br /&gt;
** Press Add Remote&lt;br /&gt;
** Select Template #1622 (Windows XP MC Remote) or a suitable remote from the LIRC Remotes category.&lt;br /&gt;
** Press Update&lt;br /&gt;
** Quick reload router&lt;br /&gt;
&lt;br /&gt;
Your remote should now be ready for use.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36934</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36934"/>
		<updated>2017-04-02T02:41:25Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: /* Upcoming fixes... */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the 1204 changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo much easier.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please include the pkg #s to facilitate building on 3x i386 targets in addition to 2x amd64 and 3x armhf targets where full builds are not always practical.  Keep in mind that most packages are referred to by two (2) package numbers from the database, a source package and a binary package.  &amp;quot;Thank you for your co-operation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
* pluto-bootscripts (234) - Typo fix for insert rule to the db. /ppp/ip-up.d/lmce-vpn-up and /ppp/ip-down.d/lmce-vpn-down works now niceley togheter with the new firewall.&lt;br /&gt;
* pluto-system-database (211) - sqlCVS commit to add Imagemagick as dependency to VLC Player, finally squashing that #($#@( start bug! (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201703301804+358c1c45 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fixes Bug #2726 - Media details now work, again.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 - 201703272335+efdf6de9 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Issue #2730 - Media Plugin changes to add support for FIFO capture card playback to VLC Player (route messages to VLC Player if it exists) -TSCHAK&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue #2729, #2730 - Implement FIFO device playback for local devices similar to file playback. (TBD: recompile VLC with PVR functionality), also multi-room playback. VLC Player is now in beta. -TSCHAK&lt;br /&gt;
* lmce-vlc-plugin (874,875) - Issue #2729 - Implement multi-room playback, VLC sync listener on core, etc. VLC functionality is now beta. -TSCHAK&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201702201438+325cc736 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix for multiple cameras and Get Image command&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue 2727, Issue 2728 - Trick play overhaul and fix audio glitches when trick play is used. &lt;br /&gt;
* pluto-boot-scripts (234) - SetupAudioVideo.sh - slight change to libvlc.conf so that trick play OSD works.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1204-1404-1604/amd64 c20633ff ==&lt;br /&gt;
* pluto-website-admin (220) - Added the case for section energyGraph and sipConf, fixed permissions for mysql asteriskuser, add sql credentials for myth, change MYSQL_NUM to MYSQLI_NUM&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1404/amd64 a7c10426 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add backports so 1204 diskless create works&lt;br /&gt;
* lmce-oauth2-server (668) - initial build of lmce oauth2 server for cloud interfacing&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404/1604 i386 - 1404x64 - 201611190055+fee90f43 ==&lt;br /&gt;
* pluto-boot-scripts (234) - database upgrades&lt;br /&gt;
* pluto-orbitergen (226,227) - database upgrades&lt;br /&gt;
* pluto-pluto-main-db (201,237) - database upgrades&lt;br /&gt;
* pluto-pluto-security-db (278,277) - database upgrades&lt;br /&gt;
* lmce-asterisk (replacement) - database upgrades&lt;br /&gt;
* pluto-system-database (211) - database upgrades&lt;br /&gt;
* pluto-local-database (214) - database upgrades&lt;br /&gt;
* pluto-security-database (256) - database upgrades&lt;br /&gt;
* pluto-telecom-database (472) - database upgrades&lt;br /&gt;
* pluto-media-database (233) - database upgrades&lt;br /&gt;
* pluto-database-settings (407) - database upgrades&lt;br /&gt;
* pluto-sqlcvs (212,213) - database upgrades&lt;br /&gt;
* pluto-std-plugins (116,135) - database upgrades&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609281853+9638f5bc ==&lt;br /&gt;
* pluto-website-admin (220) - #2705 fixed syntax error.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609271106+39103855 ==&lt;br /&gt;
* pluto-website-admin (220) - Update firewall.php GUI change some fields where reset to the default values. now the db data is honored.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** don&#039;t create initramfs for Raspbian Jessie diskless filesystems.&lt;br /&gt;
** ensure firstboot runs on diskless Jessie RPis.&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** stop/start rather than restart dhcp server, it&#039;s like nuking the site from orbit... only way to be sure.&lt;br /&gt;
** Firewall blocks udp 1900 UpNP traffic from externalinterface.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609172308+325de35d ==&lt;br /&gt;
* lmce-autotag (780, 781) linuxmceTag - fix comparison issue with media type.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609131230+5eaa4671/201609131753+5eaa4671 ==&lt;br /&gt;
* pluto-boot-scripts (234) - send dhcp vendor specific options only to wired raspberry pis.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 201609102226+fda3da63 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** rpi native pxe additions/updates&lt;br /&gt;
** extend startup timeout when booting under systemd&lt;br /&gt;
* lmce-diskless-tools (627,628) - rpi native pxe additions/updates&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DT updates for rpi native pxe&lt;br /&gt;
** add Serial Number Device Data to RPi DTs&lt;br /&gt;
** sets default PK_Distro to 22 (jessie) for RPi DTs&lt;br /&gt;
** new device data for &amp;quot;Standard Energy Meter&amp;quot;&lt;br /&gt;
* pluto-std-plugins (116,135)&lt;br /&gt;
** stores energy reading in state field for Standard Energy Meter&lt;br /&gt;
** fixes dcerouter crash when searching media&lt;br /&gt;
* pluto-updatemedia (405,406) - fix segfault when a dir is attempting to be tagged directly (without a .id3)&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - don&#039;t fail pkg install if simplephone is not running.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-i386 - 1404-i386/amd64 201607240235+899786ab ==&lt;br /&gt;
* pluto-website-admin (220) - Mysqli_real_escape_string did not work. a start with ipv6 firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/i386 201607202218+14cba09a ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) - Stream Bouncing, Additional settings for location, removed debug output, queue functionality.&lt;br /&gt;
&lt;br /&gt;
== Update 201607181902+d4cec1a0 1404-i386/amd64 - 1204-i386 ==&lt;br /&gt;
* pluto-website-admin - Update to qOrbiterGenerator.php for newer PHP version&lt;br /&gt;
&lt;br /&gt;
== Update 201607161239+6d72c3f9 1404-i386/amd64 1204-i386 ==&lt;br /&gt;
* pluto-website-admin (220) - #2678 fix Warning: Invalid argument supplied for foreach() in /var/www/lmce-admin/include/dhcpd-tools/DHCPd-parse.php on line 113&lt;br /&gt;
* pluto-boot-script&lt;br /&gt;
&lt;br /&gt;
== Update 201607151016+5b5adba3 1404/i386 &amp;amp; amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule use another escape method.&lt;br /&gt;
&lt;br /&gt;
== Update 201607122332+f0fc9c6b 1404/i386 ==&lt;br /&gt;
* pluto-boot-scripts (234) - fix #2684 clients cannot access internet when firewall is disabled. &lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule.&lt;br /&gt;
&lt;br /&gt;
== Update 201607050613+601c67da 1404-i386/amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - more fixes to the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update trusty i386/amd64 201606301955+614dfa7b ==&lt;br /&gt;
* pluto-website-admin (220) - fix for outside access port 443 not uncheckable.&lt;br /&gt;
* pluto-boot-scripts (234) - fix for not dele rules from iptables from outsideAccess.php&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201606201908+31b25c52 ==&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** unicode reading/writing working properly&lt;br /&gt;
** coverart writing to tags working properly&lt;br /&gt;
** .id3 files handled by taglib instead of id3lib.&lt;br /&gt;
** General Object Frame (GEOB) reading/writing working properly (all lmce attributes are stored in id3v2 GEOB tags for .id3/.mp3 files)&lt;br /&gt;
* pluto-website-admin (220) - more updates for mysql -&amp;gt; mysqli conversion&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201605312323+08fb8202 ==&lt;br /&gt;
* pluto-website-admin (220) - fix Text Command button to honor parameters from Screen_CommandParameter&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller to fix spamming of logs with constant updates of device data.&lt;br /&gt;
&lt;br /&gt;
== Update trusty-i386/amd64 201605310531+04df53f5 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - get the stream uri from onvif camera and save it in a device data for use by other devices&lt;br /&gt;
* pluto-website-admin (220) - adate to adodb 5.20.4 and change db driver from mysql to mysqli&lt;br /&gt;
* pluto-updatemedia (405,406) - tag writing/deletion of values update&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201605261039+410242d2 ==&lt;br /&gt;
* pluto-media-database (233) - remove FatGroupBy query as it is massive and no longer required&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** FIX UpdateMedia not detecting changes in files on disk.  Fixes: UpdateMedia not reading modification times properly.&lt;br /&gt;
** improve image reading/writing for mp3/mp4 files, add image handling for asf/wma, improve track art-&amp;gt;performer/album artist matching.&lt;br /&gt;
** don&#039;t add network shares to inotify watch list&lt;br /&gt;
* pluto-system-database (211) - new qml-* pkg definitions for qorbiter&lt;br /&gt;
* pluto-plutoutils (196,197) - add fn&#039; to determine filesystem type of a file&lt;br /&gt;
* lmce-disked-interactor (897,898) - make sure we see the core and have an IP prior to attempting contact&lt;br /&gt;
* pluto-bootscripts (234) - make sure we see the core prior to continuing to boot an MD&lt;br /&gt;
* pluto-website-admin (220) - various fixes in the media page&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 - 201605171740 c6d63dc6 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3, ogg, flac, mp4, wv, wav, oga, mpc, spx, opus, tta, m4a, m4r, m4p, 3g2, m4v, wma, asf, aif, aiff, afc, aifc, ape, s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64  201605131052+2542a526 ==&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - udev rule to ignore usbhid portion of device, permits orbiter to enter screensaver&lt;br /&gt;
* pluto-bootscripts (234) - permit devices that have died 50 times to attempt to restart after a router reload. Firewall fix for manual defined chains.&lt;br /&gt;
* pluto-sound-card-scripts (579) - don&#039;t assume cardid=1, determine phoenix cardid from aplay.&lt;br /&gt;
* pluto-media-database (233) - additional AttributeType &amp;quot;Album Artist&amp;quot;&lt;br /&gt;
* lmce-media-identifier (931,932) - updates for Album Artist tag.&lt;br /&gt;
* pluto-orbiter (119,138) - updates for Album Artist tag.&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** updates for Album Artist tag&lt;br /&gt;
** fix mainMediaFileSync.php. OutsideAccess page showing the options (again). &lt;br /&gt;
** And typo fixes for issue #2643. &lt;br /&gt;
** Firewall page reload issue 2636#. Firewall gui do not show &amp;quot;NULL&amp;quot;.&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3:ogg:flac:mp4:wv:wav::oga:mpc:spx:opus:tta:m4a:m4r:m4p:3g2:m4v:wma:asf:aif:aiff:afc:aifc:ape:s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update jessie 20160427 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for RPi&lt;br /&gt;
* lmce-disked-md-rpi2 (889) - +x firstboot_md_rpi2 to ensure it&#039;s picked up properly&lt;br /&gt;
&lt;br /&gt;
== Update jessie 201604130947+0083d387 ==&lt;br /&gt;
== Update 1204/1404-i386/amd64 201604101031-0b47a986 ==&lt;br /&gt;
* pluto-website-admin, pluto-boot-scripts (220,234) - Firewall Fixes for GUI and inner working of the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603251155+a1c0f6ea ==&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - File view implemented. Fixed not being able to leave resume menu.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603222119+336464d8 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller  to fix floorplan / status being improperly updated.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t mount optical discs as HDDs&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201603220706+c3c4b899 ==&lt;br /&gt;
* lmce-md-meta (450) - for some reason this is not in the main repo&lt;br /&gt;
* lmce-media-identifier - fixed for libcdio&lt;br /&gt;
&lt;br /&gt;
== Update jessie-rpi 60faa181 ==&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - adds video resizing so UI1 can be exposed while video is playing.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 armhf 31c5d994 ==&lt;br /&gt;
== Update 1404 i386 52e39875 ==&lt;br /&gt;
* pluto-storage-devices (533) - fix ntfs detection&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 - 49a8cbf1 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - a little better device to device template mapping&lt;br /&gt;
* pluto-website-admin (220) - fix adv.zwave page and adding secure devices&lt;br /&gt;
* lmce-disked-* - update the disked md/mid meta/base/device pkgs, specific fixes for 1404 joggler&lt;br /&gt;
* lmce-json-plugin (876,877) - first time addition to the main repo&lt;br /&gt;
* libdvdid0 (replacement) - first time addition to the repo, for use by Media Identifier&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - enable disabling internal volume control, similar to how logitechmediaserver does&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1404(armhf)/jessie(rpi)-a84db86f ==&lt;br /&gt;
* lmce-launch-manager (298,299) - only update squeeze devices when running on the core, redundant elsewhere.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404-87954508 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t fail if dvdcss2 cannot be automatically installed.&lt;br /&gt;
* pluto-hald (529,530) - reinstate tty detection, seperate from usb-serial, use direct parent for udi naming.&lt;br /&gt;
* pluto-boot-scripts (234) - disable buildall, the script doesn&#039;t run so why waste time creating it.&lt;br /&gt;
* lmce-launch-manager (298,299)&lt;br /&gt;
** update squeezebox players on router reloads from Launch_Manager&lt;br /&gt;
** call Config_Device_Changes in startCoreServices to ensure everything gets its&#039; Need Configure flag reset.&lt;br /&gt;
&lt;br /&gt;
== Update a332f49a ==&lt;br /&gt;
* lmce-install-scripts (391) - fix missing quote in MD installation.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix missing &#039;fi&#039; in BootMessage.sh&lt;br /&gt;
** fix usb.1 system serial port listing/translating&lt;br /&gt;
* lmce-media-identifier (931,932) - fix segfault, CDs are identified, cd-ripping functional again&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** prioritize new conf dir over old conf dir, fix install on systems upgraded from 1204-&amp;gt;1404&lt;br /&gt;
** redirect mythweb to html/mythweb&lt;br /&gt;
* pluto-hald (529,530) - updates to serial port naming, specifically for odroid.&lt;br /&gt;
* pluto-storage-devices (533) - fix mounted drive detection and add detection for drives mounted in /proc/cmdline like rpi.&lt;br /&gt;
&lt;br /&gt;
== Update 1204=201602080446+2028f850 &amp;lt;br&amp;gt; 1404=201602071815+c31bc44f ==&lt;br /&gt;
* lmce-install-scripts (391)&lt;br /&gt;
** enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
* lmce-core (888) - enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
* pluto-storage-devices (533) - redo StorageDevices_Radar using blkid for internal HDD identification.  /dev/disk/by-path/ is not present anymore.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
** new VerifyDistro.sh script and call the script on boot.&lt;br /&gt;
*** Preventative mostly.  Intended to ease pain for those that upgrade distros.&lt;br /&gt;
*** Ensure child devices, onscreen orbiter, have the proper PK_Distro set.&lt;br /&gt;
&lt;br /&gt;
== Update 296fdcd3 ==&lt;br /&gt;
* pluto-website-admin (220) - fix depends versioning&lt;br /&gt;
* pluto-hald (529,530) - fix depends versioning&lt;br /&gt;
* pluto-boot-scripts (234) - fix depends versioning&lt;br /&gt;
* pluto-system-database (211) - fix depends versioning&lt;br /&gt;
* pluto-orbitergen (226,227) - fix depends versioning&lt;br /&gt;
* lmce-disked-md-base (801) - fix depends versioning&lt;br /&gt;
* lmce-install-scripts (391) - fix depends versioning&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix depends versioning&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix depends versioning&lt;br /&gt;
* lmce-datalogger-plugin (686,687) - fix depends versioning &lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix depends versioning&lt;br /&gt;
&lt;br /&gt;
== Update f3a444c0 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** use newer .sh script rather than obsolete .pl script for dialplan creation&lt;br /&gt;
** fix Directory listing on cisco phones&lt;br /&gt;
** fix delete buttons on internet radio page.&lt;br /&gt;
* pluto-hald (529,530)&lt;br /&gt;
** add &#039;usb&#039; to &#039;pci&#039; and &#039;platform&#039; as valid bus addresses&lt;br /&gt;
** permit adding of usb devices with usb_serial or tty children&lt;br /&gt;
* pluto-boot-scripts (234) - update SetupAudioVideo.sh to more reliably address nvidia hdmi audio outputs&lt;br /&gt;
* lmce-asterisk (replacement) - live_dangerously for now to get all the necessary Voicemail modules to load&lt;br /&gt;
* pluto-system-database (211) - new DD Number of jobs for orbiter plug-in/orbitergen&lt;br /&gt;
* pluto-boot-scripts (234) - updates to RegenOrbiter scripts for parallel job queued orbiter generation.&lt;br /&gt;
* pluto-orbitergen (226,227) - new depends on GNU parallel&lt;br /&gt;
* lmce-disked-md-base (801) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* lmce-install-scripts (391) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - remove hardcoded ip address, get from db instead.&lt;br /&gt;
* lmce-diskless-tools (627,628) - only run UpdateDebCache.sh if it is executable&lt;br /&gt;
* lmce-datalog-plugin(686,687) - fix pear install command in postinst&lt;br /&gt;
* lmce-advanced-ip-camera(812,813) - add basic onvif support (snapshot,PTZ)&lt;br /&gt;
&lt;br /&gt;
== Update 31792 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of new External_Media_Identifier, testing CDDB ids&lt;br /&gt;
&lt;br /&gt;
== Update 31783 ==&lt;br /&gt;
* pluto-libserial (190,191) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-dcecommon (192,193) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-irbase (194,195) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-plutoutils (196,197) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-vipshared (199,200) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-serializeclass (198,238) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-libbd (239,240) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-ra (247,248) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-main-db (201,237) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-media-db (254,255) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-security-db (278,277) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-sdl-helpers (346,347) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-messagetrans (398,401) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-game-db (675,676) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-windowutils (677,678) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-datalog-db (688,689) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
&lt;br /&gt;
== Update 31782 ==&lt;br /&gt;
* pluto-std-plugins - fix FK_File search inside Attribute in Media_Plugin&lt;br /&gt;
&lt;br /&gt;
== Update 31774 ==&lt;br /&gt;
* lmce-disked-mid-base (899) - fix error in postinst&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come (this should be in but apt-get is getting 404 errors)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add &amp;quot;remove failed node&amp;quot; command&lt;br /&gt;
* pluto-website-admin - add &amp;quot;remove failed node&amp;quot; command for zwave advanced page&lt;br /&gt;
&lt;br /&gt;
== Update 31760 ==&lt;br /&gt;
* lmce-disked-md-base (801) - fix another error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31757 ==&lt;br /&gt;
* lmce-core (888) - overwrite AutostartCore conf value&lt;br /&gt;
* lmce-md-meta (450) - overwrite AutostartMedia conf value&lt;br /&gt;
* lmce-mid-meta (962) - missing deb&lt;br /&gt;
* lmce-hybrid (769) - exit 0 in postinst, just to be sure&lt;br /&gt;
* lmce-disked-md-base (801) - fix error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31754 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - reconnect before send&lt;br /&gt;
&lt;br /&gt;
== Update 31752 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - remove hard coded caller id &#039;Cherryhomes, Tho&#039;, use incoming caller id.&lt;br /&gt;
&lt;br /&gt;
== Update 31750 ==&lt;br /&gt;
* pluto-website-admin (220) - fix postinst error notice on precise.&lt;br /&gt;
* pluto-boot-scripts (234) - (re)start asterisk, otherwise configuration doesn&#039;t occur and sip phones cannot register&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - force-reload apache2 after disabling mythbuntu sites&lt;br /&gt;
* lmce-md-meta (450) - don&#039;t overwrite conf values that are already set&lt;br /&gt;
* *openzwave* (replacement) - version bump, upgrade fixes to upstream files&lt;br /&gt;
&lt;br /&gt;
== Update 31744 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come&lt;br /&gt;
&lt;br /&gt;
== Update 31742 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Gui changes to not confuse people. &lt;br /&gt;
** outsideaccess works together with the firewall. &lt;br /&gt;
** phonelines note on protocol for meaning of &amp;quot;SPA&amp;quot; and a status for this protocol setting, port can be changed if needed else it will be the default (5060).&lt;br /&gt;
&lt;br /&gt;
== Update 31739 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix absolute timed events&lt;br /&gt;
&lt;br /&gt;
== Update 31723 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix nfs-premount script in default diskless image.&lt;br /&gt;
* lmce-dlna(842,843) - compatibility fixes&lt;br /&gt;
* lmce-install-scripts (391) - generate ssh keys so openssh-server can accept connections&lt;br /&gt;
* pluto-createdevice (303,304) - hide errors, specifically during initial package postinst&lt;br /&gt;
* lmce-cec-adaptor (871,872) - fix cec remotes not getting to lmce&lt;br /&gt;
&lt;br /&gt;
== Update 31693 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - Fixes #2530 - fix errors in mythtvdb synchronization scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31686 ==&lt;br /&gt;
* lmce-install-scripts (391) - deal with firstboot stuffenz&lt;br /&gt;
* pluto-system-database (211) - add proxy orbiter DT depends for generic web device&lt;br /&gt;
* pluto-website-admin (220) - order by photo file name in screen saver/photo browser&lt;br /&gt;
* pluto-boot-scripts (234) - try ubiquity before anything else, and reboot after the normal firstboot - breaks live boot on dvd atm&lt;br /&gt;
* lmce-diskless-tools (627,628) - permit i386 diskless image building on amd64 cores, ensure processes are killed in chroot before unmounting (deals with systemd for now)&lt;br /&gt;
&lt;br /&gt;
== Update 31660 ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) &lt;br /&gt;
**PS3 control screen, fix layout issue. adds seperate button group (triangle, circle, etc) and navigation arrows. Also adds power off button to properly exit screen&lt;br /&gt;
* pluto-website-admin (220) - prevent creation of extra &#039;blank&#039; network interfaces&lt;br /&gt;
&lt;br /&gt;
== Update 31655 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - close connection after use&lt;br /&gt;
* pluto-website-admin (220) - fill ServerName var if it is unset, not if it is set.&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - unify service control&lt;br /&gt;
* pluto-boot-scripts (234) - unify service control&lt;br /&gt;
* pluto-dhcpd-plugin (302) - unify service control&lt;br /&gt;
* pluto-disk-monitor (554) - unify service control&lt;br /&gt;
* pluto-mythtv-player (133,152) - unify service control&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - unify service control&lt;br /&gt;
* pluto-raid-tools (617) - unify service control&lt;br /&gt;
* pluto-storage-devices (533) - unify service control&lt;br /&gt;
* lmce-update-system (650,651) - unify service control&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - unify service control&lt;br /&gt;
* pluto-vdr-plugin (466,467) - unify service control&lt;br /&gt;
* pluto-vdr (468,469) - unify service control&lt;br /&gt;
* pluto-database-settings (407) - unify service control&lt;br /&gt;
* lmce-asterisk (replacement) - unify service control&lt;br /&gt;
* lmce-diskless-tools (627,628) - unify service control&lt;br /&gt;
* lmce-install-scripts (391) - unify service control&lt;br /&gt;
* pluto-updatemedia (405,406) - unify service control&lt;br /&gt;
* pluto-newmdinteractor (538,539) - unify service control&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - Fix size issues, floorplan popups.&lt;br /&gt;
&lt;br /&gt;
== Update 31621 ==&lt;br /&gt;
* pluto-mythtv-player (133,152) - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 31618 ==&lt;br /&gt;
* lmce-asterisk (replacement) - update db for chan_sccp-v4.2 and fix bug requiring manual asterisk reload on boot&lt;br /&gt;
&lt;br /&gt;
== Update 31615 ==&lt;br /&gt;
* pluto-* - rebuild with new libraries&lt;br /&gt;
* lmce-* - rebuild with new libraries&lt;br /&gt;
&lt;br /&gt;
== Update 31606 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix EPG data on orbiters, myth stores everything in UTC now.&lt;br /&gt;
* pluto-pluto-main-db (201,237) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-media-db (254,255) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-security-db (277,278) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-datalog-db (688,689) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-game-db (675,676) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-updateentarea (341,342) - don&#039;t send empty play command when resetting alarm&lt;br /&gt;
&lt;br /&gt;
== Update 31580 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - use bypass-event to avoid watching media events when playing alerts&lt;br /&gt;
* pluto-updateentarea (341,342) - send bypass-event with security event commands&lt;br /&gt;
* libcec3 debs (replacement) - removes conflict data with libcec2&lt;br /&gt;
&lt;br /&gt;
== Update 31575 ==&lt;br /&gt;
* lmce-asterisk (replacement) - play back alert notification file&lt;br /&gt;
* pluto-std-plugins (116,135) - create alert notification file with correct format&lt;br /&gt;
* pluto-boot-scripts (234) - fixes for nvidia drivers on precise, upgrades to nvidia-340&lt;br /&gt;
* lmce-avwizard-sounds (replacement) - don&#039;t copy fakeroot files (it is redundant it is)&lt;br /&gt;
* video-wizard-videos (replacement) - deb is back to normal size, not 2x&lt;br /&gt;
&lt;br /&gt;
== Update 31553 ==&lt;br /&gt;
* pluto-website-admin (220) - fix error that wipes out the apache2.conf&lt;br /&gt;
* pluto-hald (529,530) - fix segfaults with firewire hardware&lt;br /&gt;
&lt;br /&gt;
== Update 31547 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some API changes in OZW 1.3, more device template mappings&lt;br /&gt;
* pluto-boot-scripts (234) - typo fix for nvidia drivers&lt;br /&gt;
* lmce-disked-md-base (801) - set hostname on disked MDs, set timezone on disked MDs&lt;br /&gt;
* lmce-install-scripts (391) - set hostname on disked MDs, set timezone on disked MDs &lt;br /&gt;
* pluto-website-admin was generated---&amp;gt; lmce-website-admin (220) - set apache2 ServerName to silence error on boot&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates, revert to ruby 1.8&lt;br /&gt;
* pluto-generic-serial-device (307,335) - admit defeat for now, revert to ruby 1.8&lt;br /&gt;
&lt;br /&gt;
== Update 31533 ==&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31520 ==&lt;br /&gt;
* chan-sccp_v4.2 (replacement) - Upgrad asterisk SCCP channel driver to newest version&lt;br /&gt;
* pluto-vdr-plugin (466,467) - implement background loading of EPG from VDR to avoid crashes due to commands not completing on time&lt;br /&gt;
* pluto-boot-scripts (234) - some logic changes and added messages for video driver install debugging&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - link new channels dir to old channels dir for backwards compatibility&lt;br /&gt;
&lt;br /&gt;
== Update 31503 ==&lt;br /&gt;
* *zwave* (replacement) - new upstream openzwave version 1.3.1224&lt;br /&gt;
* lmce-zwave-ozw(505,506) - build against new libopenzwave1.3&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates&lt;br /&gt;
* lmce-disked-interactor (897,898) - make disked interactor aware of wheezy and jessie.&lt;br /&gt;
&lt;br /&gt;
== Update 31500 ==&lt;br /&gt;
* *myth* (replacement) - fix depends on non-existent packages&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst - verified installing now&lt;br /&gt;
* pluto-std-plugins (116,135) - Use integer comparison for brightness state&lt;br /&gt;
&lt;br /&gt;
== Update 31491 ==&lt;br /&gt;
* lmce-avwizard-skin-basic (replacement) - fix packaging of avwizard skin&lt;br /&gt;
* *myth* (replacement) - mythtv 0.27.5+fixes with Schedules Direct fix included&lt;br /&gt;
* *asterisk* (replacement) - asterisk 11.7 backport from trusty&lt;br /&gt;
* libical* (replacement) - for asterisk 11.7&lt;br /&gt;
* *cec* (replacement) - libcec3&lt;br /&gt;
* libplatform* (replacement) for libcec3&lt;br /&gt;
* lmce-cec-adaptor (871,872) - build against libcec3&lt;br /&gt;
* lmce-mediatomb (702) - fix pkg installation&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - update protocol version and secret word (shhh) for 0.27.5+fixes&lt;br /&gt;
* lmce-diskless-tools (627,628) - remove call to obsolete script in Diskless_Setup.sh&lt;br /&gt;
* pluto-vdr-plugin (466,467) - return full EPG (used in qOrbiter EPG Grid), improve communication speed with SVDRP&lt;br /&gt;
* pluto-slim-server-streamer (289,290) - emit time code event, fix duration parsing&lt;br /&gt;
* pluto-boot-scripts (234) - fix headless booting, update 1404 nvidia driver&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* lmce-md-meta (450) - add depends on alsa-utils&lt;br /&gt;
* pluto-website-admin (220) - Fix cdrviewer (Call Details Records) to accept SSL conections as well, firewall gui change to set Offline rules in red as they are not executed.&lt;br /&gt;
* pluto-app-server (126,145)- new poweroff mode I for ignore, since N is already in use&lt;br /&gt;
&lt;br /&gt;
== Update 31420 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add depends on pluto-boot-scripts for deb cache script&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31411 == &lt;br /&gt;
* pluto-avwizard (555,556) - fix depends on avwizard skins basic, should no longer care about version&lt;br /&gt;
* pluto-boot-scripts (234) - more explicity logic for core only booting, fix startup script db errors&lt;br /&gt;
* lmce-update-system (650,651) - remove and disable old init.d script from /etc/init.d&lt;br /&gt;
* pluto-plutodhcp (330,491) - depends on apparmor&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-dhcpd-plugin (302) - remove hardcoded IP addresses from configure scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31387 ==&lt;br /&gt;
* lmce-weather-plugin - make change to allow for tonight&#039;s forecast data (TSCHAK)&lt;br /&gt;
* lmce-asterisk (replacement) - remove obsolete phonetic engines and replace with espeak, voices remain the same&lt;br /&gt;
* mbrola (replacement) - base mbrola pkg for mbrola voices (add armhf binary)&lt;br /&gt;
* pluto-asterisk (270,271) - generate fr and de voicemail menus with espeak now&lt;br /&gt;
* lmce-core (888) - add depends on iptables&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31378 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Start_KDE.sh ownership fix, AV config updates&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-avwizard (555,556) - update pkgs &amp;amp; depends &amp;amp; config scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - do not run update deb_cache during dvd creation&lt;br /&gt;
* pluto-x-scripts (520) - fixups to Xconfigure.sh&lt;br /&gt;
&lt;br /&gt;
== Update 31356 ==&lt;br /&gt;
* pluto-system-database (211) - update depends&lt;br /&gt;
* pluto-orbiter (119,138) - update depends&lt;br /&gt;
* lmce-diskless-tools (627,628) - speedup dpkg in diskless create, fix missing quotes&lt;br /&gt;
&lt;br /&gt;
== Update 31352 ==&lt;br /&gt;
* pluto-motion-wrapper - more config file location fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 31351 ==&lt;br /&gt;
* pluto-boot-scripts (234) - change service &#039;nis&#039; to &#039;ypserv&#039;, nis is no longer a service name&lt;br /&gt;
* pluto-website-admin (220) - remove &#039;idiot&#039; text, let&#039;s be nice to people.&lt;br /&gt;
* lmce-core (888) - do not create and config under ubiquity&lt;br /&gt;
* lmce-md-meta (450) - do not create and config under ubiquity&lt;br /&gt;
* motion (replacement) - fix bad config file setting in rules&lt;br /&gt;
&lt;br /&gt;
== Update 31337 ==&lt;br /&gt;
* motion (replacement) - new version of motion to match new configuration values generated by linuxmce&lt;br /&gt;
&lt;br /&gt;
== Update 31331 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix for brightness events&lt;br /&gt;
* pluto-boot-scripts (234) - fix kdm disabling, start ubiquity after network config&lt;br /&gt;
* lmce-diskless-tools (627,628) - add upstart overrides for kdm&lt;br /&gt;
* lmce-install-scripts (391) - start ubiquity after network config&lt;br /&gt;
&lt;br /&gt;
== Update 31314 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add missing depends&lt;br /&gt;
&lt;br /&gt;
== Update 31292 ==&lt;br /&gt;
* lmce-core-locator (replacement) - (1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-system-database (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* All .debs created by MakeRelease - removal of all Pre-Depends, everything is now a Depends entry (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
== Update 31228 ==&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-local-database&lt;br /&gt;
&lt;br /&gt;
== Update 31214 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package (not in repo, need build-replacements.sh svn up&#039;d?)&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - preinst/postinst updates&lt;br /&gt;
* pluto-boot-scripts (234) - preinst/postinst updates&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-disked-md-base (801) - firstboot updates&lt;br /&gt;
&lt;br /&gt;
== Update 31187 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package&lt;br /&gt;
* pluto-confirm-dependencies (281,272) - new depends on lmce-install-scripts (fixes unable to apt-get dist-upgrade)&lt;br /&gt;
* lmce-md-meta (450) - new depends on nfs-common, openssh-server and pastebinit&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - update depends, preinst/postinst&lt;br /&gt;
* pluto-boot-scripts (234) - depends &amp;amp; preinst/postinst updates&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - add override mythweb defaults in pkg preinst&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - update depends&lt;br /&gt;
&lt;br /&gt;
== Update 31133 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** enable WakeMDs.sh to wake any halted MDs.&lt;br /&gt;
** consolidate all boot script launching to /etc/init.d/linuxmce&lt;br /&gt;
* pluto-avwizard (555,556) - moves start script to /usr/pluto/bin, called by /etc/init.d/linuxmce now&lt;br /&gt;
* lmce-update-system (650,651) - removes init.d script, called by /etc/init.d/linuxmce now&lt;br /&gt;
* pluto-website-admin (220) - GUI changes on network settings if an bridge is configured on the db.&lt;br /&gt;
* lmce-core (888) - depend on pluto-asterisk, lmce-asterisk, lmce-install-scripts&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* pluto-generic-serial-device (307,335) - wildshot attempt at fixing segfaults&lt;br /&gt;
&lt;br /&gt;
== Update 31103 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** Network bridging now possible  for wifi AP to have the same network as the local lan. &lt;br /&gt;
** ipv6 on/off for network interfaces. Read multiple ipv6 interfaces from the db.&lt;br /&gt;
** re-enable HaltMDs.&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* libqhttpserver (912) needed for linuxmce nvr&lt;br /&gt;
* lmce-launch-manager - (298,299) - ?&lt;br /&gt;
&lt;br /&gt;
== Update 31087 ==&lt;br /&gt;
* lmce-weather (838,839) - Fix a serious bug in getconfig where incorrect configuration device data would crash program. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 31083 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes #2422, advanced zwave page broken in chrome&lt;br /&gt;
* pluto-system-database (211) - thumbnail screen fixes&lt;br /&gt;
&lt;br /&gt;
== Update 31074 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** setEa2.php - Fix settings for creating entertain area.&lt;br /&gt;
** qOrbiterGenerator.php - Fix erroneous EA creation by removing it.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Fix incorrect setting for enabling / disabling motion.&lt;br /&gt;
&lt;br /&gt;
== Update 31069 ==&lt;br /&gt;
* pluto-website-admin (220) - setEa2.php Fix settings for creating entertain area.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Initial build.&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (881) - Large update of skins and internals.&lt;br /&gt;
&lt;br /&gt;
== Update 31061 ==&lt;br /&gt;
* lmce-squeezeslave (762) - Add configuration DD to command line&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DB package updates&lt;br /&gt;
** restore previous video remote layout with Options button to select subtitles/audio tracks/video tracks from a datagrid list.&lt;br /&gt;
* pluto-website-admin (220) - firewall.php edit rules for non advanced firewall and some other small fixes.&lt;br /&gt;
* lmce-asterisk (replacement) - sip config modules to avoid autoload.&lt;br /&gt;
&lt;br /&gt;
== Update 31051 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** firewall.php not adding rules now fixet.&lt;br /&gt;
** Test buttons for Hue lights&lt;br /&gt;
** Security outsideAccess page now works nicely with the new firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 31044 ==&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
&lt;br /&gt;
== Update 31031 ==&lt;br /&gt;
* pluto-website-admin (220) - firewall.php after a strange fault and some layout fixes.&lt;br /&gt;
* lmce-mediatomb (702) - don&#039;t assume mediatomb is already running.&lt;br /&gt;
&lt;br /&gt;
== Update 31013 ==&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* pluto-boot-scripts (234) - Network Parameter count for more interfaces set and Network firewall accepting postrouting Masquerade  for other network interfaces.&lt;br /&gt;
&lt;br /&gt;
== Update 30985 ==&lt;br /&gt;
* pluto-website-admin (220) - #2268 fail2ban integration logging failed user login attempt.&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** #2268 fail2ban script not insert existing rules to our db.&lt;br /&gt;
** Support for audio output select on rpi via web admin&lt;br /&gt;
* lmce-diskless-tools (627,628) - update syslinux depends to syslinux-common&lt;br /&gt;
* lmce-omx-player (829,830) - Honour audio output selection of rpiMD&lt;br /&gt;
* lmce-squeezeslave (762) - Fix detection for squeezelite&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - further fixes&lt;br /&gt;
* lmce-usb-gamepad (795,796) - rewrite the whole main loop to suck less. hold-down repeats work, input handling more sane.&lt;br /&gt;
&lt;br /&gt;
== Update 30926 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Fix for #2368 insert firewall rules en #2064 edit and delete chains (except some system chains).&lt;br /&gt;
** Support for brightness based events.&lt;br /&gt;
* pluto-std-plugins (116,135) - Support for brightness based events&lt;br /&gt;
* lmce-omx-plugin (831,832) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** Database additions for XBOX 360 Gamepad (device templates, package)&lt;br /&gt;
** Modification of OMX Plugin to allow priority to be changed.&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - the XBOX 360 Gamepad driver, uses xboxdrv userspace driver.&lt;br /&gt;
* lmce-usb-gamepad (795,796) - additions here for above XBOX 360 Gamepad support.&lt;br /&gt;
&lt;br /&gt;
== Update 30862 ==&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress can now read latest files per linuxmce user.&lt;br /&gt;
&lt;br /&gt;
== Update 30860 ==&lt;br /&gt;
* lmce-weather (838,839) - some fixes by cfernandes&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress.&lt;br /&gt;
* pluto-boot-scripts (234) - more mail fixes&lt;br /&gt;
&lt;br /&gt;
== Update 30855 ==&lt;br /&gt;
* pluto-vdr, pluto-vdr-plugin - remove hardcoding of core IP and network address, but depend on the pluto.conf entries for DCERouter.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location (again)&lt;br /&gt;
* lmce-diskless-tools - stop copying apt configs from the core&lt;br /&gt;
* pluto-boot-scripts - fix postfix setup #2393&lt;br /&gt;
&lt;br /&gt;
== Update 30841 ==&lt;br /&gt;
* lmce-avwizard-sounds - fix replaces/conflicts data&lt;br /&gt;
* lmce-skins-basic - fix replaces/conflicts data&lt;br /&gt;
* lmce-avwizard-skin-basic - fix replaces/conflicts data&lt;br /&gt;
&lt;br /&gt;
== Update 30383 ==&lt;br /&gt;
* pluto-website-admin (220) - Add Hue lights related test button.&lt;br /&gt;
* pluto-boot-scripts - Add another option --autobackup to PlutoRestorePoint.sh to allow backup of pluto_main only&lt;br /&gt;
&lt;br /&gt;
== Update 30814 ==&lt;br /&gt;
* pluto-Boot-scripts - Firewall order by place and PK_Firewall to let rules stay on top on the middle or on the bottom.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location&lt;br /&gt;
* lmce-hue-controller (862,863) - Fix bug in adding new lights, now adds serial number.&lt;br /&gt;
* pluto-website-admin (220) - Fix oops relating the missing &#039;.&#039; which caused operations/login.php not to work.&lt;br /&gt;
&lt;br /&gt;
== Update 30783 ==&lt;br /&gt;
* lmce-nbd-client-wrapper - new pkg to hold common script&lt;br /&gt;
* pluto-xine-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* lmce-vlc-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* pluto-boot-scripts - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
* pluto-storage-devices - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30777 ==&lt;br /&gt;
* lmce-core - depend on openswan&lt;br /&gt;
* pluto-system-database - pkg updates&lt;br /&gt;
* pluto-boot-scripts - remove check for openswan from bootscript&lt;br /&gt;
* pluto-generic-serial-device - update to ruby 1.9.1&lt;br /&gt;
&lt;br /&gt;
== Update 30773==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller internals to now include polling, so as to make sure floorplan data is accurate. Changes underlying mechanisms for how lights are handled in preparation for extending additional support for Cree lights and sensors devices.&lt;br /&gt;
&lt;br /&gt;
== Update 30767 ==&lt;br /&gt;
* lmce-diskless-tools - update diskless archive name to reflect current compression method xz.&lt;br /&gt;
* pluto-website-admin (220) - updates to internet radio, moves add channels to a seperate page.  Thanks Dap-P!&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
* pluto-vdr - adds missing depends on vdr in trusty&lt;br /&gt;
* lmce-core - update depends to new pkg name lmce-avwizard-sounds&lt;br /&gt;
* pluto-avwizard - update depends to new pkg name lmce-avwizard-skins-basic&lt;br /&gt;
* lmce-clock-screen-saver - make the clock screen saver use the WMController/wmctrl methods for setting window visibility to be compatible with Orbiter. (TSCHAK) (Trusty only)&lt;br /&gt;
* pluto-storage-devices - Make sure that smbpasswd is used to create or update sambahelper&#039;s password (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30726 ==&lt;br /&gt;
* pluto-vdr - VDR player&#039;s package assumed a correctly installed vdr package which includes an entry in /etc/default for vdr. We no longer fail on a missing file.&lt;br /&gt;
&lt;br /&gt;
== Update 30724 ==&lt;br /&gt;
* lmce-weather - updates to weather sources, add OpenWM source.  Thanks SBCC and cfernandes!&lt;br /&gt;
* lmce-skins-* - adds missing telecom icons, updates/adds weather icons&lt;br /&gt;
* lmce-avwizard-sounds - remove extraneous stuff from pkg, reduce pkg size back to normal.  Proper replaces/conflicts/data...&lt;br /&gt;
* lmce-avwizard-skin-basic - Proper replaces/conflicts/data...&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
&lt;br /&gt;
== Update 30718 ==&lt;br /&gt;
* lmce-core - new depends on lmce-skins*&lt;br /&gt;
* lmce-md-meta - add depends on pnp-detection scripts&lt;br /&gt;
* lmce-hybrid - new depends on lmce-skins*&lt;br /&gt;
* pluto-avwizard (556,555) - add pciutils as a depends, still need to deal with multiarch stuff so this will break armhf, we will not update armhf for now, it doesn&#039;t use avwizard but does install it.&lt;br /&gt;
* lmce-diskless-tools - minor diskless create fixups&lt;br /&gt;
* pluto-orbiter - missing depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio script&lt;br /&gt;
* pluto-website-admin (220) - recognize MIDs as top level devices&lt;br /&gt;
* pluto-mythtv-player - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 30628 ==&lt;br /&gt;
* *-database - fix install issues&lt;br /&gt;
&lt;br /&gt;
== Update 30622 ==&lt;br /&gt;
* pluto-orbiterinstallers - fix depends issue&lt;br /&gt;
* pluto-system-database - lots of compat updates&lt;br /&gt;
* lmce-* - lots of compat updates&lt;br /&gt;
* pluto-* - lots of compat updates&lt;br /&gt;
&lt;br /&gt;
== Update 30618 ==&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio scripts&lt;br /&gt;
* pluto-website-admin (220) - updated internet radio page&lt;br /&gt;
&lt;br /&gt;
== Update 30571 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - send &amp;quot;Device is turned on or off&amp;quot; event when appropriate so the corresponding event works as expected&lt;br /&gt;
* lmce-squeezeslave (762) - set to pnp create without prompting&lt;br /&gt;
* lmce-runtime-dependencies (903) - pkg to help consolidate runtime depends.&lt;br /&gt;
* lmce-core (888) - updated depends&lt;br /&gt;
* lmce-md-meta (450)- updated depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated depends&lt;br /&gt;
* pluto-createdevice (303,304) - updated depends&lt;br /&gt;
* lmce-weather(838,839) - fix potential segfault&lt;br /&gt;
* pluto-website-admin (220) - add &amp;quot;replace node&amp;quot; button to advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 30549 ==&lt;br /&gt;
* pluto-mythtv-player - fix misaligned data values during mythtv.txt creation.&lt;br /&gt;
&lt;br /&gt;
== Update 30526 ==&lt;br /&gt;
* lmce-core - new pkg&lt;br /&gt;
* lmce-hybrid - pkg depends changes&lt;br /&gt;
* lmce-md-meta - pkg depends changes&lt;br /&gt;
* pluto-dcerouter - pkg depends changes&lt;br /&gt;
* pluto-photo-screen-saver - pkg depends changes&lt;br /&gt;
* pluto-boot-scripts - pkg depends changes&lt;br /&gt;
* pluto-orbiter - pkg depends changes&lt;br /&gt;
* pluto-simplephone - pkg depends changes&lt;br /&gt;
* pluto-website-admin - pkg depends changes&lt;br /&gt;
* lmce-mythtv-scripts - pkg depends changes&lt;br /&gt;
* pluto-system-database - pkg depends changes&lt;br /&gt;
* lmce-squeezeslave (762) - fix launch script, automatically create associated squeezebox player on the core.&lt;br /&gt;
* pluto-std-plugins - run New_PnP_MD.sh for new MID devices as well.&lt;br /&gt;
* lmce-diskless-tools - don&#039;t fail on invoke-rc.d during diskless create, exit gracefully and continue.&lt;br /&gt;
* pluto-mythtv-player - fix diskless create failures due to old hacks.  more work is needed here overall on mythtv integration.&lt;br /&gt;
&lt;br /&gt;
== Update 30419 ==&lt;br /&gt;
* pluto-slim-server - Make sure to turn off all Squeeze* devices when Slim Server Streamer starts or restarts (so that squeezelite does not hog sound cards.)&lt;br /&gt;
* pluto-hald (529,530) - add device node path to pnpqueue with v4l devices during detection&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - update for new lib version&lt;br /&gt;
&lt;br /&gt;
== Update 30384 ==&lt;br /&gt;
* pluto-confirm-dependencies - depend on pluto-install-scripts.&lt;br /&gt;
* pluto-disk-drive (122,141) - remove hal bits that dealt with old jukebox bugs.&lt;br /&gt;
* pluto-capture-card-scripts (580) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-pnp-detection (562) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-storage-devices (533) - convert autofs from hal to udev.&lt;br /&gt;
* pluto-bootscripts (234) - disable starting the hald since we&#039;re using udev now, remove false &#039;fail&#039; messages during reboot/shutdown&lt;br /&gt;
* pluto-slim-server-streamer - make one tweak (do not delete m_mapStreamsToPlayers entry in CMD_Stop). Streaming now works consistently, properly, with squeezebox devices and their clones. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30354 ==&lt;br /&gt;
* pluto-hald (529,530) - fix attempt to fire event for child device of usb-dongle.&lt;br /&gt;
* pluto-slim-server-streamer - Implement FF/REW (transport) trick-play control for Squeeze* devices. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30341 ==&lt;br /&gt;
* pluto-bootscripst - fixes for PPPoE users to not autostart the external interface.&lt;br /&gt;
* pluto-slim-server-streamer - Fix to power off squeezebox player when stream is not in use. This allows softsqueeze/squeezeslave/squeezelite players to let go of a sound device, when not in use (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30332 ==&lt;br /&gt;
* pluto-orbiter (118,139) - disable old hid device functionality.  Anyone who needs it can request a special build which will be provided at no extra charge. ;)&lt;br /&gt;
* pluto-bootscripts (234) - disable Gamepad Radar, functionality now in hal through udev&lt;br /&gt;
* pluto-avwizard (556,555) - fixes mangling of RemoteCmd when &amp;gt;1 remote is detected.&lt;br /&gt;
* pluto-hal-device-finder (535,536) - update to use udev rather than hal.&lt;br /&gt;
* pluto-hald (529,530) - update to use udev rather than hal.&lt;br /&gt;
* pluto-system-database (211) - updates for new detection method (joystick, cec-adaptor), update dependency data for hal pks to reflect dropping hald and add depends on udev now.&lt;br /&gt;
&lt;br /&gt;
== Update 30219 ==&lt;br /&gt;
* pluto-bootscripts (234) - Fail2ban firewall update script, and missing radioscript.sh.&lt;br /&gt;
* pluto-website-admin - Place set for rules on the firewall and bantime for fail2ban integration.&lt;br /&gt;
* pluto-std-plugins (116,135) - adds heirloom-mailx for &#039;mailx -r&#039; functionality, fixes e-mail in general info plugin&lt;br /&gt;
&lt;br /&gt;
== Update 30068 ==&lt;br /&gt;
* lmce-advanced-ip-camera(813,812) - Fixed high cpu usage if connection to camera can not be made&lt;br /&gt;
&lt;br /&gt;
== Update 30052 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - fix android pkg meta data, need to rebuild all together&lt;br /&gt;
&lt;br /&gt;
== Update 30051 ==&lt;br /&gt;
* pluto-updateentarea (341,342) - use DAY/NIGHT in watching/stopped watching events to make them smarter&lt;br /&gt;
* pluto-std-plugins (116,135) - Implement Get Device Status in General Info Plugin&lt;br /&gt;
* pluto-bootscripts (234) - fix VPN ip up/down&lt;br /&gt;
&lt;br /&gt;
== Update 30025 ==&lt;br /&gt;
* pluto-system-database (211) - column def updates&lt;br /&gt;
* pluto-local-database (214) - new Firewall columns and new VPN columns for Users table.&lt;br /&gt;
&lt;br /&gt;
== Update 30014 ==&lt;br /&gt;
* lmce-transmission-client (852) - fix postinst issue.  (Thanks SBCC)&lt;br /&gt;
== Update 29994 ==&lt;br /&gt;
More VLC Player changes to make it at least somewhat usable, there were some ugly bugs that came to light once i plopped it onto my production system. Right now sound device is plughw:0,3, if you need a different one, change it in the code.  (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* lmce-vlc-player - many little fixes to make it suck less.&lt;br /&gt;
&lt;br /&gt;
== Update 29990 ==&lt;br /&gt;
I am working on the VLC player, and it is breathing enough for basic testing. Please do not use in production environment. There is still a lot of code to write (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - updates for VLC player (TSCHAK)&lt;br /&gt;
* vlc-player (882,884) - Very early alpha developer test of the VLC player. (TSCHAK)&lt;br /&gt;
* vlc-plugin (874,875) - Very alpha developer test of the VLC plugin. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 29984 ==&lt;br /&gt;
* pluto-system-database (211) - fix bad repos in pkgs&lt;br /&gt;
* pluto-website-admin - just because I think it is necessary :-)&lt;br /&gt;
&lt;br /&gt;
== Update 29983 ==&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36929</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36929"/>
		<updated>2017-03-29T16:35:51Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: /* Upcoming fixes... */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the 1204 changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo much easier.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please include the pkg #s to facilitate building on 3x i386 targets in addition to 2x amd64 and 3x armhf targets where full builds are not always practical.  Keep in mind that most packages are referred to by two (2) package numbers from the database, a source package and a binary package.  &amp;quot;Thank you for your co-operation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
&lt;br /&gt;
* pluto-std-plugins (116,135) - Fixes Bug #2726 - Media details now work, again.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 - 201703272335+efdf6de9 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Issue #2730 - Media Plugin changes to add support for FIFO capture card playback to VLC Player (route messages to VLC Player if it exists) -TSCHAK&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue #2729, #2730 - Implement FIFO device playback for local devices similar to file playback. (TBD: recompile VLC with PVR functionality), also multi-room playback. VLC Player is now in beta. -TSCHAK&lt;br /&gt;
* lmce-vlc-plugin (874,875) - Issue #2729 - Implement multi-room playback, VLC sync listener on core, etc. VLC functionality is now beta. -TSCHAK&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201702201438+325cc736 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix for multiple cameras and Get Image command&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue 2727, Issue 2728 - Trick play overhaul and fix audio glitches when trick play is used. &lt;br /&gt;
* pluto-boot-scripts (234) - SetupAudioVideo.sh - slight change to libvlc.conf so that trick play OSD works.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1204-1404-1604/amd64 c20633ff ==&lt;br /&gt;
* pluto-website-admin (220) - Added the case for section energyGraph and sipConf, fixed permissions for mysql asteriskuser, add sql credentials for myth, change MYSQL_NUM to MYSQLI_NUM&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1404/amd64 a7c10426 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add backports so 1204 diskless create works&lt;br /&gt;
* lmce-oauth2-server (668) - initial build of lmce oauth2 server for cloud interfacing&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404/1604 i386 - 1404x64 - 201611190055+fee90f43 ==&lt;br /&gt;
* pluto-boot-scripts (234) - database upgrades&lt;br /&gt;
* pluto-orbitergen (226,227) - database upgrades&lt;br /&gt;
* pluto-pluto-main-db (201,237) - database upgrades&lt;br /&gt;
* pluto-pluto-security-db (278,277) - database upgrades&lt;br /&gt;
* lmce-asterisk (replacement) - database upgrades&lt;br /&gt;
* pluto-system-database (211) - database upgrades&lt;br /&gt;
* pluto-local-database (214) - database upgrades&lt;br /&gt;
* pluto-security-database (256) - database upgrades&lt;br /&gt;
* pluto-telecom-database (472) - database upgrades&lt;br /&gt;
* pluto-media-database (233) - database upgrades&lt;br /&gt;
* pluto-database-settings (407) - database upgrades&lt;br /&gt;
* pluto-sqlcvs (212,213) - database upgrades&lt;br /&gt;
* pluto-std-plugins (116,135) - database upgrades&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609281853+9638f5bc ==&lt;br /&gt;
* pluto-website-admin (220) - #2705 fixed syntax error.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609271106+39103855 ==&lt;br /&gt;
* pluto-website-admin (220) - Update firewall.php GUI change some fields where reset to the default values. now the db data is honored.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** don&#039;t create initramfs for Raspbian Jessie diskless filesystems.&lt;br /&gt;
** ensure firstboot runs on diskless Jessie RPis.&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** stop/start rather than restart dhcp server, it&#039;s like nuking the site from orbit... only way to be sure.&lt;br /&gt;
** Firewall blocks udp 1900 UpNP traffic from externalinterface.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609172308+325de35d ==&lt;br /&gt;
* lmce-autotag (780, 781) linuxmceTag - fix comparison issue with media type.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609131230+5eaa4671/201609131753+5eaa4671 ==&lt;br /&gt;
* pluto-boot-scripts (234) - send dhcp vendor specific options only to wired raspberry pis.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 201609102226+fda3da63 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** rpi native pxe additions/updates&lt;br /&gt;
** extend startup timeout when booting under systemd&lt;br /&gt;
* lmce-diskless-tools (627,628) - rpi native pxe additions/updates&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DT updates for rpi native pxe&lt;br /&gt;
** add Serial Number Device Data to RPi DTs&lt;br /&gt;
** sets default PK_Distro to 22 (jessie) for RPi DTs&lt;br /&gt;
** new device data for &amp;quot;Standard Energy Meter&amp;quot;&lt;br /&gt;
* pluto-std-plugins (116,135)&lt;br /&gt;
** stores energy reading in state field for Standard Energy Meter&lt;br /&gt;
** fixes dcerouter crash when searching media&lt;br /&gt;
* pluto-updatemedia (405,406) - fix segfault when a dir is attempting to be tagged directly (without a .id3)&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - don&#039;t fail pkg install if simplephone is not running.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-i386 - 1404-i386/amd64 201607240235+899786ab ==&lt;br /&gt;
* pluto-website-admin (220) - Mysqli_real_escape_string did not work. a start with ipv6 firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/i386 201607202218+14cba09a ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) - Stream Bouncing, Additional settings for location, removed debug output, queue functionality.&lt;br /&gt;
&lt;br /&gt;
== Update 201607181902+d4cec1a0 1404-i386/amd64 - 1204-i386 ==&lt;br /&gt;
* pluto-website-admin - Update to qOrbiterGenerator.php for newer PHP version&lt;br /&gt;
&lt;br /&gt;
== Update 201607161239+6d72c3f9 1404-i386/amd64 1204-i386 ==&lt;br /&gt;
* pluto-website-admin (220) - #2678 fix Warning: Invalid argument supplied for foreach() in /var/www/lmce-admin/include/dhcpd-tools/DHCPd-parse.php on line 113&lt;br /&gt;
* pluto-boot-script&lt;br /&gt;
&lt;br /&gt;
== Update 201607151016+5b5adba3 1404/i386 &amp;amp; amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule use another escape method.&lt;br /&gt;
&lt;br /&gt;
== Update 201607122332+f0fc9c6b 1404/i386 ==&lt;br /&gt;
* pluto-boot-scripts (234) - fix #2684 clients cannot access internet when firewall is disabled. &lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule.&lt;br /&gt;
&lt;br /&gt;
== Update 201607050613+601c67da 1404-i386/amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - more fixes to the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update trusty i386/amd64 201606301955+614dfa7b ==&lt;br /&gt;
* pluto-website-admin (220) - fix for outside access port 443 not uncheckable.&lt;br /&gt;
* pluto-boot-scripts (234) - fix for not dele rules from iptables from outsideAccess.php&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201606201908+31b25c52 ==&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** unicode reading/writing working properly&lt;br /&gt;
** coverart writing to tags working properly&lt;br /&gt;
** .id3 files handled by taglib instead of id3lib.&lt;br /&gt;
** General Object Frame (GEOB) reading/writing working properly (all lmce attributes are stored in id3v2 GEOB tags for .id3/.mp3 files)&lt;br /&gt;
* pluto-website-admin (220) - more updates for mysql -&amp;gt; mysqli conversion&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201605312323+08fb8202 ==&lt;br /&gt;
* pluto-website-admin (220) - fix Text Command button to honor parameters from Screen_CommandParameter&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller to fix spamming of logs with constant updates of device data.&lt;br /&gt;
&lt;br /&gt;
== Update trusty-i386/amd64 201605310531+04df53f5 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - get the stream uri from onvif camera and save it in a device data for use by other devices&lt;br /&gt;
* pluto-website-admin (220) - adate to adodb 5.20.4 and change db driver from mysql to mysqli&lt;br /&gt;
* pluto-updatemedia (405,406) - tag writing/deletion of values update&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201605261039+410242d2 ==&lt;br /&gt;
* pluto-media-database (233) - remove FatGroupBy query as it is massive and no longer required&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** FIX UpdateMedia not detecting changes in files on disk.  Fixes: UpdateMedia not reading modification times properly.&lt;br /&gt;
** improve image reading/writing for mp3/mp4 files, add image handling for asf/wma, improve track art-&amp;gt;performer/album artist matching.&lt;br /&gt;
** don&#039;t add network shares to inotify watch list&lt;br /&gt;
* pluto-system-database (211) - new qml-* pkg definitions for qorbiter&lt;br /&gt;
* pluto-plutoutils (196,197) - add fn&#039; to determine filesystem type of a file&lt;br /&gt;
* lmce-disked-interactor (897,898) - make sure we see the core and have an IP prior to attempting contact&lt;br /&gt;
* pluto-bootscripts (234) - make sure we see the core prior to continuing to boot an MD&lt;br /&gt;
* pluto-website-admin (220) - various fixes in the media page&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 - 201605171740 c6d63dc6 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3, ogg, flac, mp4, wv, wav, oga, mpc, spx, opus, tta, m4a, m4r, m4p, 3g2, m4v, wma, asf, aif, aiff, afc, aifc, ape, s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64  201605131052+2542a526 ==&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - udev rule to ignore usbhid portion of device, permits orbiter to enter screensaver&lt;br /&gt;
* pluto-bootscripts (234) - permit devices that have died 50 times to attempt to restart after a router reload. Firewall fix for manual defined chains.&lt;br /&gt;
* pluto-sound-card-scripts (579) - don&#039;t assume cardid=1, determine phoenix cardid from aplay.&lt;br /&gt;
* pluto-media-database (233) - additional AttributeType &amp;quot;Album Artist&amp;quot;&lt;br /&gt;
* lmce-media-identifier (931,932) - updates for Album Artist tag.&lt;br /&gt;
* pluto-orbiter (119,138) - updates for Album Artist tag.&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** updates for Album Artist tag&lt;br /&gt;
** fix mainMediaFileSync.php. OutsideAccess page showing the options (again). &lt;br /&gt;
** And typo fixes for issue #2643. &lt;br /&gt;
** Firewall page reload issue 2636#. Firewall gui do not show &amp;quot;NULL&amp;quot;.&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3:ogg:flac:mp4:wv:wav::oga:mpc:spx:opus:tta:m4a:m4r:m4p:3g2:m4v:wma:asf:aif:aiff:afc:aifc:ape:s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update jessie 20160427 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for RPi&lt;br /&gt;
* lmce-disked-md-rpi2 (889) - +x firstboot_md_rpi2 to ensure it&#039;s picked up properly&lt;br /&gt;
&lt;br /&gt;
== Update jessie 201604130947+0083d387 ==&lt;br /&gt;
== Update 1204/1404-i386/amd64 201604101031-0b47a986 ==&lt;br /&gt;
* pluto-website-admin, pluto-boot-scripts (220,234) - Firewall Fixes for GUI and inner working of the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603251155+a1c0f6ea ==&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - File view implemented. Fixed not being able to leave resume menu.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603222119+336464d8 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller  to fix floorplan / status being improperly updated.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t mount optical discs as HDDs&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201603220706+c3c4b899 ==&lt;br /&gt;
* lmce-md-meta (450) - for some reason this is not in the main repo&lt;br /&gt;
* lmce-media-identifier - fixed for libcdio&lt;br /&gt;
&lt;br /&gt;
== Update jessie-rpi 60faa181 ==&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - adds video resizing so UI1 can be exposed while video is playing.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 armhf 31c5d994 ==&lt;br /&gt;
== Update 1404 i386 52e39875 ==&lt;br /&gt;
* pluto-storage-devices (533) - fix ntfs detection&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 - 49a8cbf1 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - a little better device to device template mapping&lt;br /&gt;
* pluto-website-admin (220) - fix adv.zwave page and adding secure devices&lt;br /&gt;
* lmce-disked-* - update the disked md/mid meta/base/device pkgs, specific fixes for 1404 joggler&lt;br /&gt;
* lmce-json-plugin (876,877) - first time addition to the main repo&lt;br /&gt;
* libdvdid0 (replacement) - first time addition to the repo, for use by Media Identifier&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - enable disabling internal volume control, similar to how logitechmediaserver does&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1404(armhf)/jessie(rpi)-a84db86f ==&lt;br /&gt;
* lmce-launch-manager (298,299) - only update squeeze devices when running on the core, redundant elsewhere.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404-87954508 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t fail if dvdcss2 cannot be automatically installed.&lt;br /&gt;
* pluto-hald (529,530) - reinstate tty detection, seperate from usb-serial, use direct parent for udi naming.&lt;br /&gt;
* pluto-boot-scripts (234) - disable buildall, the script doesn&#039;t run so why waste time creating it.&lt;br /&gt;
* lmce-launch-manager (298,299)&lt;br /&gt;
** update squeezebox players on router reloads from Launch_Manager&lt;br /&gt;
** call Config_Device_Changes in startCoreServices to ensure everything gets its&#039; Need Configure flag reset.&lt;br /&gt;
&lt;br /&gt;
== Update a332f49a ==&lt;br /&gt;
* lmce-install-scripts (391) - fix missing quote in MD installation.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix missing &#039;fi&#039; in BootMessage.sh&lt;br /&gt;
** fix usb.1 system serial port listing/translating&lt;br /&gt;
* lmce-media-identifier (931,932) - fix segfault, CDs are identified, cd-ripping functional again&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** prioritize new conf dir over old conf dir, fix install on systems upgraded from 1204-&amp;gt;1404&lt;br /&gt;
** redirect mythweb to html/mythweb&lt;br /&gt;
* pluto-hald (529,530) - updates to serial port naming, specifically for odroid.&lt;br /&gt;
* pluto-storage-devices (533) - fix mounted drive detection and add detection for drives mounted in /proc/cmdline like rpi.&lt;br /&gt;
&lt;br /&gt;
== Update 1204=201602080446+2028f850 &amp;lt;br&amp;gt; 1404=201602071815+c31bc44f ==&lt;br /&gt;
* lmce-install-scripts (391)&lt;br /&gt;
** enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
* lmce-core (888) - enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
* pluto-storage-devices (533) - redo StorageDevices_Radar using blkid for internal HDD identification.  /dev/disk/by-path/ is not present anymore.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
** new VerifyDistro.sh script and call the script on boot.&lt;br /&gt;
*** Preventative mostly.  Intended to ease pain for those that upgrade distros.&lt;br /&gt;
*** Ensure child devices, onscreen orbiter, have the proper PK_Distro set.&lt;br /&gt;
&lt;br /&gt;
== Update 296fdcd3 ==&lt;br /&gt;
* pluto-website-admin (220) - fix depends versioning&lt;br /&gt;
* pluto-hald (529,530) - fix depends versioning&lt;br /&gt;
* pluto-boot-scripts (234) - fix depends versioning&lt;br /&gt;
* pluto-system-database (211) - fix depends versioning&lt;br /&gt;
* pluto-orbitergen (226,227) - fix depends versioning&lt;br /&gt;
* lmce-disked-md-base (801) - fix depends versioning&lt;br /&gt;
* lmce-install-scripts (391) - fix depends versioning&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix depends versioning&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix depends versioning&lt;br /&gt;
* lmce-datalogger-plugin (686,687) - fix depends versioning &lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix depends versioning&lt;br /&gt;
&lt;br /&gt;
== Update f3a444c0 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** use newer .sh script rather than obsolete .pl script for dialplan creation&lt;br /&gt;
** fix Directory listing on cisco phones&lt;br /&gt;
** fix delete buttons on internet radio page.&lt;br /&gt;
* pluto-hald (529,530)&lt;br /&gt;
** add &#039;usb&#039; to &#039;pci&#039; and &#039;platform&#039; as valid bus addresses&lt;br /&gt;
** permit adding of usb devices with usb_serial or tty children&lt;br /&gt;
* pluto-boot-scripts (234) - update SetupAudioVideo.sh to more reliably address nvidia hdmi audio outputs&lt;br /&gt;
* lmce-asterisk (replacement) - live_dangerously for now to get all the necessary Voicemail modules to load&lt;br /&gt;
* pluto-system-database (211) - new DD Number of jobs for orbiter plug-in/orbitergen&lt;br /&gt;
* pluto-boot-scripts (234) - updates to RegenOrbiter scripts for parallel job queued orbiter generation.&lt;br /&gt;
* pluto-orbitergen (226,227) - new depends on GNU parallel&lt;br /&gt;
* lmce-disked-md-base (801) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* lmce-install-scripts (391) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - remove hardcoded ip address, get from db instead.&lt;br /&gt;
* lmce-diskless-tools (627,628) - only run UpdateDebCache.sh if it is executable&lt;br /&gt;
* lmce-datalog-plugin(686,687) - fix pear install command in postinst&lt;br /&gt;
* lmce-advanced-ip-camera(812,813) - add basic onvif support (snapshot,PTZ)&lt;br /&gt;
&lt;br /&gt;
== Update 31792 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of new External_Media_Identifier, testing CDDB ids&lt;br /&gt;
&lt;br /&gt;
== Update 31783 ==&lt;br /&gt;
* pluto-libserial (190,191) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-dcecommon (192,193) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-irbase (194,195) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-plutoutils (196,197) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-vipshared (199,200) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-serializeclass (198,238) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-libbd (239,240) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-ra (247,248) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-main-db (201,237) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-media-db (254,255) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-security-db (278,277) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-sdl-helpers (346,347) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-messagetrans (398,401) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-game-db (675,676) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-windowutils (677,678) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-datalog-db (688,689) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
&lt;br /&gt;
== Update 31782 ==&lt;br /&gt;
* pluto-std-plugins - fix FK_File search inside Attribute in Media_Plugin&lt;br /&gt;
&lt;br /&gt;
== Update 31774 ==&lt;br /&gt;
* lmce-disked-mid-base (899) - fix error in postinst&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come (this should be in but apt-get is getting 404 errors)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add &amp;quot;remove failed node&amp;quot; command&lt;br /&gt;
* pluto-website-admin - add &amp;quot;remove failed node&amp;quot; command for zwave advanced page&lt;br /&gt;
&lt;br /&gt;
== Update 31760 ==&lt;br /&gt;
* lmce-disked-md-base (801) - fix another error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31757 ==&lt;br /&gt;
* lmce-core (888) - overwrite AutostartCore conf value&lt;br /&gt;
* lmce-md-meta (450) - overwrite AutostartMedia conf value&lt;br /&gt;
* lmce-mid-meta (962) - missing deb&lt;br /&gt;
* lmce-hybrid (769) - exit 0 in postinst, just to be sure&lt;br /&gt;
* lmce-disked-md-base (801) - fix error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31754 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - reconnect before send&lt;br /&gt;
&lt;br /&gt;
== Update 31752 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - remove hard coded caller id &#039;Cherryhomes, Tho&#039;, use incoming caller id.&lt;br /&gt;
&lt;br /&gt;
== Update 31750 ==&lt;br /&gt;
* pluto-website-admin (220) - fix postinst error notice on precise.&lt;br /&gt;
* pluto-boot-scripts (234) - (re)start asterisk, otherwise configuration doesn&#039;t occur and sip phones cannot register&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - force-reload apache2 after disabling mythbuntu sites&lt;br /&gt;
* lmce-md-meta (450) - don&#039;t overwrite conf values that are already set&lt;br /&gt;
* *openzwave* (replacement) - version bump, upgrade fixes to upstream files&lt;br /&gt;
&lt;br /&gt;
== Update 31744 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come&lt;br /&gt;
&lt;br /&gt;
== Update 31742 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Gui changes to not confuse people. &lt;br /&gt;
** outsideaccess works together with the firewall. &lt;br /&gt;
** phonelines note on protocol for meaning of &amp;quot;SPA&amp;quot; and a status for this protocol setting, port can be changed if needed else it will be the default (5060).&lt;br /&gt;
&lt;br /&gt;
== Update 31739 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix absolute timed events&lt;br /&gt;
&lt;br /&gt;
== Update 31723 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix nfs-premount script in default diskless image.&lt;br /&gt;
* lmce-dlna(842,843) - compatibility fixes&lt;br /&gt;
* lmce-install-scripts (391) - generate ssh keys so openssh-server can accept connections&lt;br /&gt;
* pluto-createdevice (303,304) - hide errors, specifically during initial package postinst&lt;br /&gt;
* lmce-cec-adaptor (871,872) - fix cec remotes not getting to lmce&lt;br /&gt;
&lt;br /&gt;
== Update 31693 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - Fixes #2530 - fix errors in mythtvdb synchronization scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31686 ==&lt;br /&gt;
* lmce-install-scripts (391) - deal with firstboot stuffenz&lt;br /&gt;
* pluto-system-database (211) - add proxy orbiter DT depends for generic web device&lt;br /&gt;
* pluto-website-admin (220) - order by photo file name in screen saver/photo browser&lt;br /&gt;
* pluto-boot-scripts (234) - try ubiquity before anything else, and reboot after the normal firstboot - breaks live boot on dvd atm&lt;br /&gt;
* lmce-diskless-tools (627,628) - permit i386 diskless image building on amd64 cores, ensure processes are killed in chroot before unmounting (deals with systemd for now)&lt;br /&gt;
&lt;br /&gt;
== Update 31660 ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) &lt;br /&gt;
**PS3 control screen, fix layout issue. adds seperate button group (triangle, circle, etc) and navigation arrows. Also adds power off button to properly exit screen&lt;br /&gt;
* pluto-website-admin (220) - prevent creation of extra &#039;blank&#039; network interfaces&lt;br /&gt;
&lt;br /&gt;
== Update 31655 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - close connection after use&lt;br /&gt;
* pluto-website-admin (220) - fill ServerName var if it is unset, not if it is set.&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - unify service control&lt;br /&gt;
* pluto-boot-scripts (234) - unify service control&lt;br /&gt;
* pluto-dhcpd-plugin (302) - unify service control&lt;br /&gt;
* pluto-disk-monitor (554) - unify service control&lt;br /&gt;
* pluto-mythtv-player (133,152) - unify service control&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - unify service control&lt;br /&gt;
* pluto-raid-tools (617) - unify service control&lt;br /&gt;
* pluto-storage-devices (533) - unify service control&lt;br /&gt;
* lmce-update-system (650,651) - unify service control&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - unify service control&lt;br /&gt;
* pluto-vdr-plugin (466,467) - unify service control&lt;br /&gt;
* pluto-vdr (468,469) - unify service control&lt;br /&gt;
* pluto-database-settings (407) - unify service control&lt;br /&gt;
* lmce-asterisk (replacement) - unify service control&lt;br /&gt;
* lmce-diskless-tools (627,628) - unify service control&lt;br /&gt;
* lmce-install-scripts (391) - unify service control&lt;br /&gt;
* pluto-updatemedia (405,406) - unify service control&lt;br /&gt;
* pluto-newmdinteractor (538,539) - unify service control&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - Fix size issues, floorplan popups.&lt;br /&gt;
&lt;br /&gt;
== Update 31621 ==&lt;br /&gt;
* pluto-mythtv-player (133,152) - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 31618 ==&lt;br /&gt;
* lmce-asterisk (replacement) - update db for chan_sccp-v4.2 and fix bug requiring manual asterisk reload on boot&lt;br /&gt;
&lt;br /&gt;
== Update 31615 ==&lt;br /&gt;
* pluto-* - rebuild with new libraries&lt;br /&gt;
* lmce-* - rebuild with new libraries&lt;br /&gt;
&lt;br /&gt;
== Update 31606 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix EPG data on orbiters, myth stores everything in UTC now.&lt;br /&gt;
* pluto-pluto-main-db (201,237) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-media-db (254,255) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-security-db (277,278) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-datalog-db (688,689) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-game-db (675,676) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-updateentarea (341,342) - don&#039;t send empty play command when resetting alarm&lt;br /&gt;
&lt;br /&gt;
== Update 31580 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - use bypass-event to avoid watching media events when playing alerts&lt;br /&gt;
* pluto-updateentarea (341,342) - send bypass-event with security event commands&lt;br /&gt;
* libcec3 debs (replacement) - removes conflict data with libcec2&lt;br /&gt;
&lt;br /&gt;
== Update 31575 ==&lt;br /&gt;
* lmce-asterisk (replacement) - play back alert notification file&lt;br /&gt;
* pluto-std-plugins (116,135) - create alert notification file with correct format&lt;br /&gt;
* pluto-boot-scripts (234) - fixes for nvidia drivers on precise, upgrades to nvidia-340&lt;br /&gt;
* lmce-avwizard-sounds (replacement) - don&#039;t copy fakeroot files (it is redundant it is)&lt;br /&gt;
* video-wizard-videos (replacement) - deb is back to normal size, not 2x&lt;br /&gt;
&lt;br /&gt;
== Update 31553 ==&lt;br /&gt;
* pluto-website-admin (220) - fix error that wipes out the apache2.conf&lt;br /&gt;
* pluto-hald (529,530) - fix segfaults with firewire hardware&lt;br /&gt;
&lt;br /&gt;
== Update 31547 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some API changes in OZW 1.3, more device template mappings&lt;br /&gt;
* pluto-boot-scripts (234) - typo fix for nvidia drivers&lt;br /&gt;
* lmce-disked-md-base (801) - set hostname on disked MDs, set timezone on disked MDs&lt;br /&gt;
* lmce-install-scripts (391) - set hostname on disked MDs, set timezone on disked MDs &lt;br /&gt;
* pluto-website-admin was generated---&amp;gt; lmce-website-admin (220) - set apache2 ServerName to silence error on boot&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates, revert to ruby 1.8&lt;br /&gt;
* pluto-generic-serial-device (307,335) - admit defeat for now, revert to ruby 1.8&lt;br /&gt;
&lt;br /&gt;
== Update 31533 ==&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31520 ==&lt;br /&gt;
* chan-sccp_v4.2 (replacement) - Upgrad asterisk SCCP channel driver to newest version&lt;br /&gt;
* pluto-vdr-plugin (466,467) - implement background loading of EPG from VDR to avoid crashes due to commands not completing on time&lt;br /&gt;
* pluto-boot-scripts (234) - some logic changes and added messages for video driver install debugging&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - link new channels dir to old channels dir for backwards compatibility&lt;br /&gt;
&lt;br /&gt;
== Update 31503 ==&lt;br /&gt;
* *zwave* (replacement) - new upstream openzwave version 1.3.1224&lt;br /&gt;
* lmce-zwave-ozw(505,506) - build against new libopenzwave1.3&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates&lt;br /&gt;
* lmce-disked-interactor (897,898) - make disked interactor aware of wheezy and jessie.&lt;br /&gt;
&lt;br /&gt;
== Update 31500 ==&lt;br /&gt;
* *myth* (replacement) - fix depends on non-existent packages&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst - verified installing now&lt;br /&gt;
* pluto-std-plugins (116,135) - Use integer comparison for brightness state&lt;br /&gt;
&lt;br /&gt;
== Update 31491 ==&lt;br /&gt;
* lmce-avwizard-skin-basic (replacement) - fix packaging of avwizard skin&lt;br /&gt;
* *myth* (replacement) - mythtv 0.27.5+fixes with Schedules Direct fix included&lt;br /&gt;
* *asterisk* (replacement) - asterisk 11.7 backport from trusty&lt;br /&gt;
* libical* (replacement) - for asterisk 11.7&lt;br /&gt;
* *cec* (replacement) - libcec3&lt;br /&gt;
* libplatform* (replacement) for libcec3&lt;br /&gt;
* lmce-cec-adaptor (871,872) - build against libcec3&lt;br /&gt;
* lmce-mediatomb (702) - fix pkg installation&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - update protocol version and secret word (shhh) for 0.27.5+fixes&lt;br /&gt;
* lmce-diskless-tools (627,628) - remove call to obsolete script in Diskless_Setup.sh&lt;br /&gt;
* pluto-vdr-plugin (466,467) - return full EPG (used in qOrbiter EPG Grid), improve communication speed with SVDRP&lt;br /&gt;
* pluto-slim-server-streamer (289,290) - emit time code event, fix duration parsing&lt;br /&gt;
* pluto-boot-scripts (234) - fix headless booting, update 1404 nvidia driver&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* lmce-md-meta (450) - add depends on alsa-utils&lt;br /&gt;
* pluto-website-admin (220) - Fix cdrviewer (Call Details Records) to accept SSL conections as well, firewall gui change to set Offline rules in red as they are not executed.&lt;br /&gt;
* pluto-app-server (126,145)- new poweroff mode I for ignore, since N is already in use&lt;br /&gt;
&lt;br /&gt;
== Update 31420 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add depends on pluto-boot-scripts for deb cache script&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31411 == &lt;br /&gt;
* pluto-avwizard (555,556) - fix depends on avwizard skins basic, should no longer care about version&lt;br /&gt;
* pluto-boot-scripts (234) - more explicity logic for core only booting, fix startup script db errors&lt;br /&gt;
* lmce-update-system (650,651) - remove and disable old init.d script from /etc/init.d&lt;br /&gt;
* pluto-plutodhcp (330,491) - depends on apparmor&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-dhcpd-plugin (302) - remove hardcoded IP addresses from configure scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31387 ==&lt;br /&gt;
* lmce-weather-plugin - make change to allow for tonight&#039;s forecast data (TSCHAK)&lt;br /&gt;
* lmce-asterisk (replacement) - remove obsolete phonetic engines and replace with espeak, voices remain the same&lt;br /&gt;
* mbrola (replacement) - base mbrola pkg for mbrola voices (add armhf binary)&lt;br /&gt;
* pluto-asterisk (270,271) - generate fr and de voicemail menus with espeak now&lt;br /&gt;
* lmce-core (888) - add depends on iptables&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31378 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Start_KDE.sh ownership fix, AV config updates&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-avwizard (555,556) - update pkgs &amp;amp; depends &amp;amp; config scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - do not run update deb_cache during dvd creation&lt;br /&gt;
* pluto-x-scripts (520) - fixups to Xconfigure.sh&lt;br /&gt;
&lt;br /&gt;
== Update 31356 ==&lt;br /&gt;
* pluto-system-database (211) - update depends&lt;br /&gt;
* pluto-orbiter (119,138) - update depends&lt;br /&gt;
* lmce-diskless-tools (627,628) - speedup dpkg in diskless create, fix missing quotes&lt;br /&gt;
&lt;br /&gt;
== Update 31352 ==&lt;br /&gt;
* pluto-motion-wrapper - more config file location fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 31351 ==&lt;br /&gt;
* pluto-boot-scripts (234) - change service &#039;nis&#039; to &#039;ypserv&#039;, nis is no longer a service name&lt;br /&gt;
* pluto-website-admin (220) - remove &#039;idiot&#039; text, let&#039;s be nice to people.&lt;br /&gt;
* lmce-core (888) - do not create and config under ubiquity&lt;br /&gt;
* lmce-md-meta (450) - do not create and config under ubiquity&lt;br /&gt;
* motion (replacement) - fix bad config file setting in rules&lt;br /&gt;
&lt;br /&gt;
== Update 31337 ==&lt;br /&gt;
* motion (replacement) - new version of motion to match new configuration values generated by linuxmce&lt;br /&gt;
&lt;br /&gt;
== Update 31331 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix for brightness events&lt;br /&gt;
* pluto-boot-scripts (234) - fix kdm disabling, start ubiquity after network config&lt;br /&gt;
* lmce-diskless-tools (627,628) - add upstart overrides for kdm&lt;br /&gt;
* lmce-install-scripts (391) - start ubiquity after network config&lt;br /&gt;
&lt;br /&gt;
== Update 31314 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add missing depends&lt;br /&gt;
&lt;br /&gt;
== Update 31292 ==&lt;br /&gt;
* lmce-core-locator (replacement) - (1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-system-database (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* All .debs created by MakeRelease - removal of all Pre-Depends, everything is now a Depends entry (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
== Update 31228 ==&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-local-database&lt;br /&gt;
&lt;br /&gt;
== Update 31214 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package (not in repo, need build-replacements.sh svn up&#039;d?)&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - preinst/postinst updates&lt;br /&gt;
* pluto-boot-scripts (234) - preinst/postinst updates&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-disked-md-base (801) - firstboot updates&lt;br /&gt;
&lt;br /&gt;
== Update 31187 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package&lt;br /&gt;
* pluto-confirm-dependencies (281,272) - new depends on lmce-install-scripts (fixes unable to apt-get dist-upgrade)&lt;br /&gt;
* lmce-md-meta (450) - new depends on nfs-common, openssh-server and pastebinit&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - update depends, preinst/postinst&lt;br /&gt;
* pluto-boot-scripts (234) - depends &amp;amp; preinst/postinst updates&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - add override mythweb defaults in pkg preinst&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - update depends&lt;br /&gt;
&lt;br /&gt;
== Update 31133 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** enable WakeMDs.sh to wake any halted MDs.&lt;br /&gt;
** consolidate all boot script launching to /etc/init.d/linuxmce&lt;br /&gt;
* pluto-avwizard (555,556) - moves start script to /usr/pluto/bin, called by /etc/init.d/linuxmce now&lt;br /&gt;
* lmce-update-system (650,651) - removes init.d script, called by /etc/init.d/linuxmce now&lt;br /&gt;
* pluto-website-admin (220) - GUI changes on network settings if an bridge is configured on the db.&lt;br /&gt;
* lmce-core (888) - depend on pluto-asterisk, lmce-asterisk, lmce-install-scripts&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* pluto-generic-serial-device (307,335) - wildshot attempt at fixing segfaults&lt;br /&gt;
&lt;br /&gt;
== Update 31103 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** Network bridging now possible  for wifi AP to have the same network as the local lan. &lt;br /&gt;
** ipv6 on/off for network interfaces. Read multiple ipv6 interfaces from the db.&lt;br /&gt;
** re-enable HaltMDs.&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* libqhttpserver (912) needed for linuxmce nvr&lt;br /&gt;
* lmce-launch-manager - (298,299) - ?&lt;br /&gt;
&lt;br /&gt;
== Update 31087 ==&lt;br /&gt;
* lmce-weather (838,839) - Fix a serious bug in getconfig where incorrect configuration device data would crash program. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 31083 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes #2422, advanced zwave page broken in chrome&lt;br /&gt;
* pluto-system-database (211) - thumbnail screen fixes&lt;br /&gt;
&lt;br /&gt;
== Update 31074 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** setEa2.php - Fix settings for creating entertain area.&lt;br /&gt;
** qOrbiterGenerator.php - Fix erroneous EA creation by removing it.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Fix incorrect setting for enabling / disabling motion.&lt;br /&gt;
&lt;br /&gt;
== Update 31069 ==&lt;br /&gt;
* pluto-website-admin (220) - setEa2.php Fix settings for creating entertain area.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Initial build.&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (881) - Large update of skins and internals.&lt;br /&gt;
&lt;br /&gt;
== Update 31061 ==&lt;br /&gt;
* lmce-squeezeslave (762) - Add configuration DD to command line&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DB package updates&lt;br /&gt;
** restore previous video remote layout with Options button to select subtitles/audio tracks/video tracks from a datagrid list.&lt;br /&gt;
* pluto-website-admin (220) - firewall.php edit rules for non advanced firewall and some other small fixes.&lt;br /&gt;
* lmce-asterisk (replacement) - sip config modules to avoid autoload.&lt;br /&gt;
&lt;br /&gt;
== Update 31051 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** firewall.php not adding rules now fixet.&lt;br /&gt;
** Test buttons for Hue lights&lt;br /&gt;
** Security outsideAccess page now works nicely with the new firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 31044 ==&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
&lt;br /&gt;
== Update 31031 ==&lt;br /&gt;
* pluto-website-admin (220) - firewall.php after a strange fault and some layout fixes.&lt;br /&gt;
* lmce-mediatomb (702) - don&#039;t assume mediatomb is already running.&lt;br /&gt;
&lt;br /&gt;
== Update 31013 ==&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* pluto-boot-scripts (234) - Network Parameter count for more interfaces set and Network firewall accepting postrouting Masquerade  for other network interfaces.&lt;br /&gt;
&lt;br /&gt;
== Update 30985 ==&lt;br /&gt;
* pluto-website-admin (220) - #2268 fail2ban integration logging failed user login attempt.&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** #2268 fail2ban script not insert existing rules to our db.&lt;br /&gt;
** Support for audio output select on rpi via web admin&lt;br /&gt;
* lmce-diskless-tools (627,628) - update syslinux depends to syslinux-common&lt;br /&gt;
* lmce-omx-player (829,830) - Honour audio output selection of rpiMD&lt;br /&gt;
* lmce-squeezeslave (762) - Fix detection for squeezelite&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - further fixes&lt;br /&gt;
* lmce-usb-gamepad (795,796) - rewrite the whole main loop to suck less. hold-down repeats work, input handling more sane.&lt;br /&gt;
&lt;br /&gt;
== Update 30926 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Fix for #2368 insert firewall rules en #2064 edit and delete chains (except some system chains).&lt;br /&gt;
** Support for brightness based events.&lt;br /&gt;
* pluto-std-plugins (116,135) - Support for brightness based events&lt;br /&gt;
* lmce-omx-plugin (831,832) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** Database additions for XBOX 360 Gamepad (device templates, package)&lt;br /&gt;
** Modification of OMX Plugin to allow priority to be changed.&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - the XBOX 360 Gamepad driver, uses xboxdrv userspace driver.&lt;br /&gt;
* lmce-usb-gamepad (795,796) - additions here for above XBOX 360 Gamepad support.&lt;br /&gt;
&lt;br /&gt;
== Update 30862 ==&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress can now read latest files per linuxmce user.&lt;br /&gt;
&lt;br /&gt;
== Update 30860 ==&lt;br /&gt;
* lmce-weather (838,839) - some fixes by cfernandes&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress.&lt;br /&gt;
* pluto-boot-scripts (234) - more mail fixes&lt;br /&gt;
&lt;br /&gt;
== Update 30855 ==&lt;br /&gt;
* pluto-vdr, pluto-vdr-plugin - remove hardcoding of core IP and network address, but depend on the pluto.conf entries for DCERouter.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location (again)&lt;br /&gt;
* lmce-diskless-tools - stop copying apt configs from the core&lt;br /&gt;
* pluto-boot-scripts - fix postfix setup #2393&lt;br /&gt;
&lt;br /&gt;
== Update 30841 ==&lt;br /&gt;
* lmce-avwizard-sounds - fix replaces/conflicts data&lt;br /&gt;
* lmce-skins-basic - fix replaces/conflicts data&lt;br /&gt;
* lmce-avwizard-skin-basic - fix replaces/conflicts data&lt;br /&gt;
&lt;br /&gt;
== Update 30383 ==&lt;br /&gt;
* pluto-website-admin (220) - Add Hue lights related test button.&lt;br /&gt;
* pluto-boot-scripts - Add another option --autobackup to PlutoRestorePoint.sh to allow backup of pluto_main only&lt;br /&gt;
&lt;br /&gt;
== Update 30814 ==&lt;br /&gt;
* pluto-Boot-scripts - Firewall order by place and PK_Firewall to let rules stay on top on the middle or on the bottom.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location&lt;br /&gt;
* lmce-hue-controller (862,863) - Fix bug in adding new lights, now adds serial number.&lt;br /&gt;
* pluto-website-admin (220) - Fix oops relating the missing &#039;.&#039; which caused operations/login.php not to work.&lt;br /&gt;
&lt;br /&gt;
== Update 30783 ==&lt;br /&gt;
* lmce-nbd-client-wrapper - new pkg to hold common script&lt;br /&gt;
* pluto-xine-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* lmce-vlc-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* pluto-boot-scripts - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
* pluto-storage-devices - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30777 ==&lt;br /&gt;
* lmce-core - depend on openswan&lt;br /&gt;
* pluto-system-database - pkg updates&lt;br /&gt;
* pluto-boot-scripts - remove check for openswan from bootscript&lt;br /&gt;
* pluto-generic-serial-device - update to ruby 1.9.1&lt;br /&gt;
&lt;br /&gt;
== Update 30773==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller internals to now include polling, so as to make sure floorplan data is accurate. Changes underlying mechanisms for how lights are handled in preparation for extending additional support for Cree lights and sensors devices.&lt;br /&gt;
&lt;br /&gt;
== Update 30767 ==&lt;br /&gt;
* lmce-diskless-tools - update diskless archive name to reflect current compression method xz.&lt;br /&gt;
* pluto-website-admin (220) - updates to internet radio, moves add channels to a seperate page.  Thanks Dap-P!&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
* pluto-vdr - adds missing depends on vdr in trusty&lt;br /&gt;
* lmce-core - update depends to new pkg name lmce-avwizard-sounds&lt;br /&gt;
* pluto-avwizard - update depends to new pkg name lmce-avwizard-skins-basic&lt;br /&gt;
* lmce-clock-screen-saver - make the clock screen saver use the WMController/wmctrl methods for setting window visibility to be compatible with Orbiter. (TSCHAK) (Trusty only)&lt;br /&gt;
* pluto-storage-devices - Make sure that smbpasswd is used to create or update sambahelper&#039;s password (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30726 ==&lt;br /&gt;
* pluto-vdr - VDR player&#039;s package assumed a correctly installed vdr package which includes an entry in /etc/default for vdr. We no longer fail on a missing file.&lt;br /&gt;
&lt;br /&gt;
== Update 30724 ==&lt;br /&gt;
* lmce-weather - updates to weather sources, add OpenWM source.  Thanks SBCC and cfernandes!&lt;br /&gt;
* lmce-skins-* - adds missing telecom icons, updates/adds weather icons&lt;br /&gt;
* lmce-avwizard-sounds - remove extraneous stuff from pkg, reduce pkg size back to normal.  Proper replaces/conflicts/data...&lt;br /&gt;
* lmce-avwizard-skin-basic - Proper replaces/conflicts/data...&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
&lt;br /&gt;
== Update 30718 ==&lt;br /&gt;
* lmce-core - new depends on lmce-skins*&lt;br /&gt;
* lmce-md-meta - add depends on pnp-detection scripts&lt;br /&gt;
* lmce-hybrid - new depends on lmce-skins*&lt;br /&gt;
* pluto-avwizard (556,555) - add pciutils as a depends, still need to deal with multiarch stuff so this will break armhf, we will not update armhf for now, it doesn&#039;t use avwizard but does install it.&lt;br /&gt;
* lmce-diskless-tools - minor diskless create fixups&lt;br /&gt;
* pluto-orbiter - missing depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio script&lt;br /&gt;
* pluto-website-admin (220) - recognize MIDs as top level devices&lt;br /&gt;
* pluto-mythtv-player - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 30628 ==&lt;br /&gt;
* *-database - fix install issues&lt;br /&gt;
&lt;br /&gt;
== Update 30622 ==&lt;br /&gt;
* pluto-orbiterinstallers - fix depends issue&lt;br /&gt;
* pluto-system-database - lots of compat updates&lt;br /&gt;
* lmce-* - lots of compat updates&lt;br /&gt;
* pluto-* - lots of compat updates&lt;br /&gt;
&lt;br /&gt;
== Update 30618 ==&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio scripts&lt;br /&gt;
* pluto-website-admin (220) - updated internet radio page&lt;br /&gt;
&lt;br /&gt;
== Update 30571 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - send &amp;quot;Device is turned on or off&amp;quot; event when appropriate so the corresponding event works as expected&lt;br /&gt;
* lmce-squeezeslave (762) - set to pnp create without prompting&lt;br /&gt;
* lmce-runtime-dependencies (903) - pkg to help consolidate runtime depends.&lt;br /&gt;
* lmce-core (888) - updated depends&lt;br /&gt;
* lmce-md-meta (450)- updated depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated depends&lt;br /&gt;
* pluto-createdevice (303,304) - updated depends&lt;br /&gt;
* lmce-weather(838,839) - fix potential segfault&lt;br /&gt;
* pluto-website-admin (220) - add &amp;quot;replace node&amp;quot; button to advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 30549 ==&lt;br /&gt;
* pluto-mythtv-player - fix misaligned data values during mythtv.txt creation.&lt;br /&gt;
&lt;br /&gt;
== Update 30526 ==&lt;br /&gt;
* lmce-core - new pkg&lt;br /&gt;
* lmce-hybrid - pkg depends changes&lt;br /&gt;
* lmce-md-meta - pkg depends changes&lt;br /&gt;
* pluto-dcerouter - pkg depends changes&lt;br /&gt;
* pluto-photo-screen-saver - pkg depends changes&lt;br /&gt;
* pluto-boot-scripts - pkg depends changes&lt;br /&gt;
* pluto-orbiter - pkg depends changes&lt;br /&gt;
* pluto-simplephone - pkg depends changes&lt;br /&gt;
* pluto-website-admin - pkg depends changes&lt;br /&gt;
* lmce-mythtv-scripts - pkg depends changes&lt;br /&gt;
* pluto-system-database - pkg depends changes&lt;br /&gt;
* lmce-squeezeslave (762) - fix launch script, automatically create associated squeezebox player on the core.&lt;br /&gt;
* pluto-std-plugins - run New_PnP_MD.sh for new MID devices as well.&lt;br /&gt;
* lmce-diskless-tools - don&#039;t fail on invoke-rc.d during diskless create, exit gracefully and continue.&lt;br /&gt;
* pluto-mythtv-player - fix diskless create failures due to old hacks.  more work is needed here overall on mythtv integration.&lt;br /&gt;
&lt;br /&gt;
== Update 30419 ==&lt;br /&gt;
* pluto-slim-server - Make sure to turn off all Squeeze* devices when Slim Server Streamer starts or restarts (so that squeezelite does not hog sound cards.)&lt;br /&gt;
* pluto-hald (529,530) - add device node path to pnpqueue with v4l devices during detection&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - update for new lib version&lt;br /&gt;
&lt;br /&gt;
== Update 30384 ==&lt;br /&gt;
* pluto-confirm-dependencies - depend on pluto-install-scripts.&lt;br /&gt;
* pluto-disk-drive (122,141) - remove hal bits that dealt with old jukebox bugs.&lt;br /&gt;
* pluto-capture-card-scripts (580) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-pnp-detection (562) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-storage-devices (533) - convert autofs from hal to udev.&lt;br /&gt;
* pluto-bootscripts (234) - disable starting the hald since we&#039;re using udev now, remove false &#039;fail&#039; messages during reboot/shutdown&lt;br /&gt;
* pluto-slim-server-streamer - make one tweak (do not delete m_mapStreamsToPlayers entry in CMD_Stop). Streaming now works consistently, properly, with squeezebox devices and their clones. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30354 ==&lt;br /&gt;
* pluto-hald (529,530) - fix attempt to fire event for child device of usb-dongle.&lt;br /&gt;
* pluto-slim-server-streamer - Implement FF/REW (transport) trick-play control for Squeeze* devices. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30341 ==&lt;br /&gt;
* pluto-bootscripst - fixes for PPPoE users to not autostart the external interface.&lt;br /&gt;
* pluto-slim-server-streamer - Fix to power off squeezebox player when stream is not in use. This allows softsqueeze/squeezeslave/squeezelite players to let go of a sound device, when not in use (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30332 ==&lt;br /&gt;
* pluto-orbiter (118,139) - disable old hid device functionality.  Anyone who needs it can request a special build which will be provided at no extra charge. ;)&lt;br /&gt;
* pluto-bootscripts (234) - disable Gamepad Radar, functionality now in hal through udev&lt;br /&gt;
* pluto-avwizard (556,555) - fixes mangling of RemoteCmd when &amp;gt;1 remote is detected.&lt;br /&gt;
* pluto-hal-device-finder (535,536) - update to use udev rather than hal.&lt;br /&gt;
* pluto-hald (529,530) - update to use udev rather than hal.&lt;br /&gt;
* pluto-system-database (211) - updates for new detection method (joystick, cec-adaptor), update dependency data for hal pks to reflect dropping hald and add depends on udev now.&lt;br /&gt;
&lt;br /&gt;
== Update 30219 ==&lt;br /&gt;
* pluto-bootscripts (234) - Fail2ban firewall update script, and missing radioscript.sh.&lt;br /&gt;
* pluto-website-admin - Place set for rules on the firewall and bantime for fail2ban integration.&lt;br /&gt;
* pluto-std-plugins (116,135) - adds heirloom-mailx for &#039;mailx -r&#039; functionality, fixes e-mail in general info plugin&lt;br /&gt;
&lt;br /&gt;
== Update 30068 ==&lt;br /&gt;
* lmce-advanced-ip-camera(813,812) - Fixed high cpu usage if connection to camera can not be made&lt;br /&gt;
&lt;br /&gt;
== Update 30052 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - fix android pkg meta data, need to rebuild all together&lt;br /&gt;
&lt;br /&gt;
== Update 30051 ==&lt;br /&gt;
* pluto-updateentarea (341,342) - use DAY/NIGHT in watching/stopped watching events to make them smarter&lt;br /&gt;
* pluto-std-plugins (116,135) - Implement Get Device Status in General Info Plugin&lt;br /&gt;
* pluto-bootscripts (234) - fix VPN ip up/down&lt;br /&gt;
&lt;br /&gt;
== Update 30025 ==&lt;br /&gt;
* pluto-system-database (211) - column def updates&lt;br /&gt;
* pluto-local-database (214) - new Firewall columns and new VPN columns for Users table.&lt;br /&gt;
&lt;br /&gt;
== Update 30014 ==&lt;br /&gt;
* lmce-transmission-client (852) - fix postinst issue.  (Thanks SBCC)&lt;br /&gt;
== Update 29994 ==&lt;br /&gt;
More VLC Player changes to make it at least somewhat usable, there were some ugly bugs that came to light once i plopped it onto my production system. Right now sound device is plughw:0,3, if you need a different one, change it in the code.  (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* lmce-vlc-player - many little fixes to make it suck less.&lt;br /&gt;
&lt;br /&gt;
== Update 29990 ==&lt;br /&gt;
I am working on the VLC player, and it is breathing enough for basic testing. Please do not use in production environment. There is still a lot of code to write (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - updates for VLC player (TSCHAK)&lt;br /&gt;
* vlc-player (882,884) - Very early alpha developer test of the VLC player. (TSCHAK)&lt;br /&gt;
* vlc-plugin (874,875) - Very alpha developer test of the VLC plugin. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 29984 ==&lt;br /&gt;
* pluto-system-database (211) - fix bad repos in pkgs&lt;br /&gt;
* pluto-website-admin - just because I think it is necessary :-)&lt;br /&gt;
&lt;br /&gt;
== Update 29983 ==&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36927</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36927"/>
		<updated>2017-03-27T20:36:51Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: /* Upcoming fixes... */ VLC Player&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the 1204 changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo much easier.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please include the pkg #s to facilitate building on 3x i386 targets in addition to 2x amd64 and 3x armhf targets where full builds are not always practical.  Keep in mind that most packages are referred to by two (2) package numbers from the database, a source package and a binary package.  &amp;quot;Thank you for your co-operation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
&lt;br /&gt;
* pluto-std-plugins (116,135) - Issue #2730 - Media Plugin changes to add support for FIFO capture card playback to VLC Player (route messages to VLC Player if it exists) -TSCHAK&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue #2729, #2730 - Implement FIFO device playback for local devices similar to file playback. (TBD: recompile VLC with PVR functionality), also multi-room playback. VLC Player is now in beta. -TSCHAK&lt;br /&gt;
* lmce-vlc-plugin (874,875) - Issue #2729 - Implement multi-room playback, VLC sync listener on core, etc. VLC functionality is now beta. -TSCHAK&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201702201438+325cc736 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix for multiple cameras and Get Image command&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue 2727, Issue 2728 - Trick play overhaul and fix audio glitches when trick play is used. &lt;br /&gt;
* pluto-boot-scripts (234) - SetupAudioVideo.sh - slight change to libvlc.conf so that trick play OSD works.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1204-1404-1604/amd64 c20633ff ==&lt;br /&gt;
* pluto-website-admin (220) - Added the case for section energyGraph and sipConf, fixed permissions for mysql asteriskuser, add sql credentials for myth, change MYSQL_NUM to MYSQLI_NUM&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1404/amd64 a7c10426 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add backports so 1204 diskless create works&lt;br /&gt;
* lmce-oauth2-server (668) - initial build of lmce oauth2 server for cloud interfacing&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404/1604 i386 - 1404x64 - 201611190055+fee90f43 ==&lt;br /&gt;
* pluto-boot-scripts (234) - database upgrades&lt;br /&gt;
* pluto-orbitergen (226,227) - database upgrades&lt;br /&gt;
* pluto-pluto-main-db (201,237) - database upgrades&lt;br /&gt;
* pluto-pluto-security-db (278,277) - database upgrades&lt;br /&gt;
* lmce-asterisk (replacement) - database upgrades&lt;br /&gt;
* pluto-system-database (211) - database upgrades&lt;br /&gt;
* pluto-local-database (214) - database upgrades&lt;br /&gt;
* pluto-security-database (256) - database upgrades&lt;br /&gt;
* pluto-telecom-database (472) - database upgrades&lt;br /&gt;
* pluto-media-database (233) - database upgrades&lt;br /&gt;
* pluto-database-settings (407) - database upgrades&lt;br /&gt;
* pluto-sqlcvs (212,213) - database upgrades&lt;br /&gt;
* pluto-std-plugins (116,135) - database upgrades&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609281853+9638f5bc ==&lt;br /&gt;
* pluto-website-admin (220) - #2705 fixed syntax error.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609271106+39103855 ==&lt;br /&gt;
* pluto-website-admin (220) - Update firewall.php GUI change some fields where reset to the default values. now the db data is honored.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** don&#039;t create initramfs for Raspbian Jessie diskless filesystems.&lt;br /&gt;
** ensure firstboot runs on diskless Jessie RPis.&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** stop/start rather than restart dhcp server, it&#039;s like nuking the site from orbit... only way to be sure.&lt;br /&gt;
** Firewall blocks udp 1900 UpNP traffic from externalinterface.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609172308+325de35d ==&lt;br /&gt;
* lmce-autotag (780, 781) linuxmceTag - fix comparison issue with media type.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609131230+5eaa4671/201609131753+5eaa4671 ==&lt;br /&gt;
* pluto-boot-scripts (234) - send dhcp vendor specific options only to wired raspberry pis.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 201609102226+fda3da63 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** rpi native pxe additions/updates&lt;br /&gt;
** extend startup timeout when booting under systemd&lt;br /&gt;
* lmce-diskless-tools (627,628) - rpi native pxe additions/updates&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DT updates for rpi native pxe&lt;br /&gt;
** add Serial Number Device Data to RPi DTs&lt;br /&gt;
** sets default PK_Distro to 22 (jessie) for RPi DTs&lt;br /&gt;
** new device data for &amp;quot;Standard Energy Meter&amp;quot;&lt;br /&gt;
* pluto-std-plugins (116,135)&lt;br /&gt;
** stores energy reading in state field for Standard Energy Meter&lt;br /&gt;
** fixes dcerouter crash when searching media&lt;br /&gt;
* pluto-updatemedia (405,406) - fix segfault when a dir is attempting to be tagged directly (without a .id3)&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - don&#039;t fail pkg install if simplephone is not running.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-i386 - 1404-i386/amd64 201607240235+899786ab ==&lt;br /&gt;
* pluto-website-admin (220) - Mysqli_real_escape_string did not work. a start with ipv6 firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/i386 201607202218+14cba09a ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) - Stream Bouncing, Additional settings for location, removed debug output, queue functionality.&lt;br /&gt;
&lt;br /&gt;
== Update 201607181902+d4cec1a0 1404-i386/amd64 - 1204-i386 ==&lt;br /&gt;
* pluto-website-admin - Update to qOrbiterGenerator.php for newer PHP version&lt;br /&gt;
&lt;br /&gt;
== Update 201607161239+6d72c3f9 1404-i386/amd64 1204-i386 ==&lt;br /&gt;
* pluto-website-admin (220) - #2678 fix Warning: Invalid argument supplied for foreach() in /var/www/lmce-admin/include/dhcpd-tools/DHCPd-parse.php on line 113&lt;br /&gt;
* pluto-boot-script&lt;br /&gt;
&lt;br /&gt;
== Update 201607151016+5b5adba3 1404/i386 &amp;amp; amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule use another escape method.&lt;br /&gt;
&lt;br /&gt;
== Update 201607122332+f0fc9c6b 1404/i386 ==&lt;br /&gt;
* pluto-boot-scripts (234) - fix #2684 clients cannot access internet when firewall is disabled. &lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule.&lt;br /&gt;
&lt;br /&gt;
== Update 201607050613+601c67da 1404-i386/amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - more fixes to the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update trusty i386/amd64 201606301955+614dfa7b ==&lt;br /&gt;
* pluto-website-admin (220) - fix for outside access port 443 not uncheckable.&lt;br /&gt;
* pluto-boot-scripts (234) - fix for not dele rules from iptables from outsideAccess.php&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201606201908+31b25c52 ==&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** unicode reading/writing working properly&lt;br /&gt;
** coverart writing to tags working properly&lt;br /&gt;
** .id3 files handled by taglib instead of id3lib.&lt;br /&gt;
** General Object Frame (GEOB) reading/writing working properly (all lmce attributes are stored in id3v2 GEOB tags for .id3/.mp3 files)&lt;br /&gt;
* pluto-website-admin (220) - more updates for mysql -&amp;gt; mysqli conversion&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201605312323+08fb8202 ==&lt;br /&gt;
* pluto-website-admin (220) - fix Text Command button to honor parameters from Screen_CommandParameter&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller to fix spamming of logs with constant updates of device data.&lt;br /&gt;
&lt;br /&gt;
== Update trusty-i386/amd64 201605310531+04df53f5 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - get the stream uri from onvif camera and save it in a device data for use by other devices&lt;br /&gt;
* pluto-website-admin (220) - adate to adodb 5.20.4 and change db driver from mysql to mysqli&lt;br /&gt;
* pluto-updatemedia (405,406) - tag writing/deletion of values update&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201605261039+410242d2 ==&lt;br /&gt;
* pluto-media-database (233) - remove FatGroupBy query as it is massive and no longer required&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** FIX UpdateMedia not detecting changes in files on disk.  Fixes: UpdateMedia not reading modification times properly.&lt;br /&gt;
** improve image reading/writing for mp3/mp4 files, add image handling for asf/wma, improve track art-&amp;gt;performer/album artist matching.&lt;br /&gt;
** don&#039;t add network shares to inotify watch list&lt;br /&gt;
* pluto-system-database (211) - new qml-* pkg definitions for qorbiter&lt;br /&gt;
* pluto-plutoutils (196,197) - add fn&#039; to determine filesystem type of a file&lt;br /&gt;
* lmce-disked-interactor (897,898) - make sure we see the core and have an IP prior to attempting contact&lt;br /&gt;
* pluto-bootscripts (234) - make sure we see the core prior to continuing to boot an MD&lt;br /&gt;
* pluto-website-admin (220) - various fixes in the media page&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 - 201605171740 c6d63dc6 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3, ogg, flac, mp4, wv, wav, oga, mpc, spx, opus, tta, m4a, m4r, m4p, 3g2, m4v, wma, asf, aif, aiff, afc, aifc, ape, s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64  201605131052+2542a526 ==&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - udev rule to ignore usbhid portion of device, permits orbiter to enter screensaver&lt;br /&gt;
* pluto-bootscripts (234) - permit devices that have died 50 times to attempt to restart after a router reload. Firewall fix for manual defined chains.&lt;br /&gt;
* pluto-sound-card-scripts (579) - don&#039;t assume cardid=1, determine phoenix cardid from aplay.&lt;br /&gt;
* pluto-media-database (233) - additional AttributeType &amp;quot;Album Artist&amp;quot;&lt;br /&gt;
* lmce-media-identifier (931,932) - updates for Album Artist tag.&lt;br /&gt;
* pluto-orbiter (119,138) - updates for Album Artist tag.&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** updates for Album Artist tag&lt;br /&gt;
** fix mainMediaFileSync.php. OutsideAccess page showing the options (again). &lt;br /&gt;
** And typo fixes for issue #2643. &lt;br /&gt;
** Firewall page reload issue 2636#. Firewall gui do not show &amp;quot;NULL&amp;quot;.&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3:ogg:flac:mp4:wv:wav::oga:mpc:spx:opus:tta:m4a:m4r:m4p:3g2:m4v:wma:asf:aif:aiff:afc:aifc:ape:s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update jessie 20160427 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for RPi&lt;br /&gt;
* lmce-disked-md-rpi2 (889) - +x firstboot_md_rpi2 to ensure it&#039;s picked up properly&lt;br /&gt;
&lt;br /&gt;
== Update jessie 201604130947+0083d387 ==&lt;br /&gt;
== Update 1204/1404-i386/amd64 201604101031-0b47a986 ==&lt;br /&gt;
* pluto-website-admin, pluto-boot-scripts (220,234) - Firewall Fixes for GUI and inner working of the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603251155+a1c0f6ea ==&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - File view implemented. Fixed not being able to leave resume menu.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603222119+336464d8 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller  to fix floorplan / status being improperly updated.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t mount optical discs as HDDs&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201603220706+c3c4b899 ==&lt;br /&gt;
* lmce-md-meta (450) - for some reason this is not in the main repo&lt;br /&gt;
* lmce-media-identifier - fixed for libcdio&lt;br /&gt;
&lt;br /&gt;
== Update jessie-rpi 60faa181 ==&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - adds video resizing so UI1 can be exposed while video is playing.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 armhf 31c5d994 ==&lt;br /&gt;
== Update 1404 i386 52e39875 ==&lt;br /&gt;
* pluto-storage-devices (533) - fix ntfs detection&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 - 49a8cbf1 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - a little better device to device template mapping&lt;br /&gt;
* pluto-website-admin (220) - fix adv.zwave page and adding secure devices&lt;br /&gt;
* lmce-disked-* - update the disked md/mid meta/base/device pkgs, specific fixes for 1404 joggler&lt;br /&gt;
* lmce-json-plugin (876,877) - first time addition to the main repo&lt;br /&gt;
* libdvdid0 (replacement) - first time addition to the repo, for use by Media Identifier&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - enable disabling internal volume control, similar to how logitechmediaserver does&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1404(armhf)/jessie(rpi)-a84db86f ==&lt;br /&gt;
* lmce-launch-manager (298,299) - only update squeeze devices when running on the core, redundant elsewhere.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404-87954508 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t fail if dvdcss2 cannot be automatically installed.&lt;br /&gt;
* pluto-hald (529,530) - reinstate tty detection, seperate from usb-serial, use direct parent for udi naming.&lt;br /&gt;
* pluto-boot-scripts (234) - disable buildall, the script doesn&#039;t run so why waste time creating it.&lt;br /&gt;
* lmce-launch-manager (298,299)&lt;br /&gt;
** update squeezebox players on router reloads from Launch_Manager&lt;br /&gt;
** call Config_Device_Changes in startCoreServices to ensure everything gets its&#039; Need Configure flag reset.&lt;br /&gt;
&lt;br /&gt;
== Update a332f49a ==&lt;br /&gt;
* lmce-install-scripts (391) - fix missing quote in MD installation.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix missing &#039;fi&#039; in BootMessage.sh&lt;br /&gt;
** fix usb.1 system serial port listing/translating&lt;br /&gt;
* lmce-media-identifier (931,932) - fix segfault, CDs are identified, cd-ripping functional again&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** prioritize new conf dir over old conf dir, fix install on systems upgraded from 1204-&amp;gt;1404&lt;br /&gt;
** redirect mythweb to html/mythweb&lt;br /&gt;
* pluto-hald (529,530) - updates to serial port naming, specifically for odroid.&lt;br /&gt;
* pluto-storage-devices (533) - fix mounted drive detection and add detection for drives mounted in /proc/cmdline like rpi.&lt;br /&gt;
&lt;br /&gt;
== Update 1204=201602080446+2028f850 &amp;lt;br&amp;gt; 1404=201602071815+c31bc44f ==&lt;br /&gt;
* lmce-install-scripts (391)&lt;br /&gt;
** enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
* lmce-core (888) - enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
* pluto-storage-devices (533) - redo StorageDevices_Radar using blkid for internal HDD identification.  /dev/disk/by-path/ is not present anymore.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
** new VerifyDistro.sh script and call the script on boot.&lt;br /&gt;
*** Preventative mostly.  Intended to ease pain for those that upgrade distros.&lt;br /&gt;
*** Ensure child devices, onscreen orbiter, have the proper PK_Distro set.&lt;br /&gt;
&lt;br /&gt;
== Update 296fdcd3 ==&lt;br /&gt;
* pluto-website-admin (220) - fix depends versioning&lt;br /&gt;
* pluto-hald (529,530) - fix depends versioning&lt;br /&gt;
* pluto-boot-scripts (234) - fix depends versioning&lt;br /&gt;
* pluto-system-database (211) - fix depends versioning&lt;br /&gt;
* pluto-orbitergen (226,227) - fix depends versioning&lt;br /&gt;
* lmce-disked-md-base (801) - fix depends versioning&lt;br /&gt;
* lmce-install-scripts (391) - fix depends versioning&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix depends versioning&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix depends versioning&lt;br /&gt;
* lmce-datalogger-plugin (686,687) - fix depends versioning &lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix depends versioning&lt;br /&gt;
&lt;br /&gt;
== Update f3a444c0 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** use newer .sh script rather than obsolete .pl script for dialplan creation&lt;br /&gt;
** fix Directory listing on cisco phones&lt;br /&gt;
** fix delete buttons on internet radio page.&lt;br /&gt;
* pluto-hald (529,530)&lt;br /&gt;
** add &#039;usb&#039; to &#039;pci&#039; and &#039;platform&#039; as valid bus addresses&lt;br /&gt;
** permit adding of usb devices with usb_serial or tty children&lt;br /&gt;
* pluto-boot-scripts (234) - update SetupAudioVideo.sh to more reliably address nvidia hdmi audio outputs&lt;br /&gt;
* lmce-asterisk (replacement) - live_dangerously for now to get all the necessary Voicemail modules to load&lt;br /&gt;
* pluto-system-database (211) - new DD Number of jobs for orbiter plug-in/orbitergen&lt;br /&gt;
* pluto-boot-scripts (234) - updates to RegenOrbiter scripts for parallel job queued orbiter generation.&lt;br /&gt;
* pluto-orbitergen (226,227) - new depends on GNU parallel&lt;br /&gt;
* lmce-disked-md-base (801) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* lmce-install-scripts (391) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - remove hardcoded ip address, get from db instead.&lt;br /&gt;
* lmce-diskless-tools (627,628) - only run UpdateDebCache.sh if it is executable&lt;br /&gt;
* lmce-datalog-plugin(686,687) - fix pear install command in postinst&lt;br /&gt;
* lmce-advanced-ip-camera(812,813) - add basic onvif support (snapshot,PTZ)&lt;br /&gt;
&lt;br /&gt;
== Update 31792 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of new External_Media_Identifier, testing CDDB ids&lt;br /&gt;
&lt;br /&gt;
== Update 31783 ==&lt;br /&gt;
* pluto-libserial (190,191) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-dcecommon (192,193) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-irbase (194,195) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-plutoutils (196,197) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-vipshared (199,200) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-serializeclass (198,238) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-libbd (239,240) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-ra (247,248) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-main-db (201,237) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-media-db (254,255) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-security-db (278,277) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-sdl-helpers (346,347) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-messagetrans (398,401) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-game-db (675,676) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-windowutils (677,678) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-datalog-db (688,689) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
&lt;br /&gt;
== Update 31782 ==&lt;br /&gt;
* pluto-std-plugins - fix FK_File search inside Attribute in Media_Plugin&lt;br /&gt;
&lt;br /&gt;
== Update 31774 ==&lt;br /&gt;
* lmce-disked-mid-base (899) - fix error in postinst&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come (this should be in but apt-get is getting 404 errors)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add &amp;quot;remove failed node&amp;quot; command&lt;br /&gt;
* pluto-website-admin - add &amp;quot;remove failed node&amp;quot; command for zwave advanced page&lt;br /&gt;
&lt;br /&gt;
== Update 31760 ==&lt;br /&gt;
* lmce-disked-md-base (801) - fix another error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31757 ==&lt;br /&gt;
* lmce-core (888) - overwrite AutostartCore conf value&lt;br /&gt;
* lmce-md-meta (450) - overwrite AutostartMedia conf value&lt;br /&gt;
* lmce-mid-meta (962) - missing deb&lt;br /&gt;
* lmce-hybrid (769) - exit 0 in postinst, just to be sure&lt;br /&gt;
* lmce-disked-md-base (801) - fix error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31754 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - reconnect before send&lt;br /&gt;
&lt;br /&gt;
== Update 31752 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - remove hard coded caller id &#039;Cherryhomes, Tho&#039;, use incoming caller id.&lt;br /&gt;
&lt;br /&gt;
== Update 31750 ==&lt;br /&gt;
* pluto-website-admin (220) - fix postinst error notice on precise.&lt;br /&gt;
* pluto-boot-scripts (234) - (re)start asterisk, otherwise configuration doesn&#039;t occur and sip phones cannot register&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - force-reload apache2 after disabling mythbuntu sites&lt;br /&gt;
* lmce-md-meta (450) - don&#039;t overwrite conf values that are already set&lt;br /&gt;
* *openzwave* (replacement) - version bump, upgrade fixes to upstream files&lt;br /&gt;
&lt;br /&gt;
== Update 31744 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come&lt;br /&gt;
&lt;br /&gt;
== Update 31742 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Gui changes to not confuse people. &lt;br /&gt;
** outsideaccess works together with the firewall. &lt;br /&gt;
** phonelines note on protocol for meaning of &amp;quot;SPA&amp;quot; and a status for this protocol setting, port can be changed if needed else it will be the default (5060).&lt;br /&gt;
&lt;br /&gt;
== Update 31739 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix absolute timed events&lt;br /&gt;
&lt;br /&gt;
== Update 31723 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix nfs-premount script in default diskless image.&lt;br /&gt;
* lmce-dlna(842,843) - compatibility fixes&lt;br /&gt;
* lmce-install-scripts (391) - generate ssh keys so openssh-server can accept connections&lt;br /&gt;
* pluto-createdevice (303,304) - hide errors, specifically during initial package postinst&lt;br /&gt;
* lmce-cec-adaptor (871,872) - fix cec remotes not getting to lmce&lt;br /&gt;
&lt;br /&gt;
== Update 31693 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - Fixes #2530 - fix errors in mythtvdb synchronization scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31686 ==&lt;br /&gt;
* lmce-install-scripts (391) - deal with firstboot stuffenz&lt;br /&gt;
* pluto-system-database (211) - add proxy orbiter DT depends for generic web device&lt;br /&gt;
* pluto-website-admin (220) - order by photo file name in screen saver/photo browser&lt;br /&gt;
* pluto-boot-scripts (234) - try ubiquity before anything else, and reboot after the normal firstboot - breaks live boot on dvd atm&lt;br /&gt;
* lmce-diskless-tools (627,628) - permit i386 diskless image building on amd64 cores, ensure processes are killed in chroot before unmounting (deals with systemd for now)&lt;br /&gt;
&lt;br /&gt;
== Update 31660 ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) &lt;br /&gt;
**PS3 control screen, fix layout issue. adds seperate button group (triangle, circle, etc) and navigation arrows. Also adds power off button to properly exit screen&lt;br /&gt;
* pluto-website-admin (220) - prevent creation of extra &#039;blank&#039; network interfaces&lt;br /&gt;
&lt;br /&gt;
== Update 31655 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - close connection after use&lt;br /&gt;
* pluto-website-admin (220) - fill ServerName var if it is unset, not if it is set.&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - unify service control&lt;br /&gt;
* pluto-boot-scripts (234) - unify service control&lt;br /&gt;
* pluto-dhcpd-plugin (302) - unify service control&lt;br /&gt;
* pluto-disk-monitor (554) - unify service control&lt;br /&gt;
* pluto-mythtv-player (133,152) - unify service control&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - unify service control&lt;br /&gt;
* pluto-raid-tools (617) - unify service control&lt;br /&gt;
* pluto-storage-devices (533) - unify service control&lt;br /&gt;
* lmce-update-system (650,651) - unify service control&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - unify service control&lt;br /&gt;
* pluto-vdr-plugin (466,467) - unify service control&lt;br /&gt;
* pluto-vdr (468,469) - unify service control&lt;br /&gt;
* pluto-database-settings (407) - unify service control&lt;br /&gt;
* lmce-asterisk (replacement) - unify service control&lt;br /&gt;
* lmce-diskless-tools (627,628) - unify service control&lt;br /&gt;
* lmce-install-scripts (391) - unify service control&lt;br /&gt;
* pluto-updatemedia (405,406) - unify service control&lt;br /&gt;
* pluto-newmdinteractor (538,539) - unify service control&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - Fix size issues, floorplan popups.&lt;br /&gt;
&lt;br /&gt;
== Update 31621 ==&lt;br /&gt;
* pluto-mythtv-player (133,152) - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 31618 ==&lt;br /&gt;
* lmce-asterisk (replacement) - update db for chan_sccp-v4.2 and fix bug requiring manual asterisk reload on boot&lt;br /&gt;
&lt;br /&gt;
== Update 31615 ==&lt;br /&gt;
* pluto-* - rebuild with new libraries&lt;br /&gt;
* lmce-* - rebuild with new libraries&lt;br /&gt;
&lt;br /&gt;
== Update 31606 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix EPG data on orbiters, myth stores everything in UTC now.&lt;br /&gt;
* pluto-pluto-main-db (201,237) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-media-db (254,255) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-security-db (277,278) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-datalog-db (688,689) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-game-db (675,676) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-updateentarea (341,342) - don&#039;t send empty play command when resetting alarm&lt;br /&gt;
&lt;br /&gt;
== Update 31580 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - use bypass-event to avoid watching media events when playing alerts&lt;br /&gt;
* pluto-updateentarea (341,342) - send bypass-event with security event commands&lt;br /&gt;
* libcec3 debs (replacement) - removes conflict data with libcec2&lt;br /&gt;
&lt;br /&gt;
== Update 31575 ==&lt;br /&gt;
* lmce-asterisk (replacement) - play back alert notification file&lt;br /&gt;
* pluto-std-plugins (116,135) - create alert notification file with correct format&lt;br /&gt;
* pluto-boot-scripts (234) - fixes for nvidia drivers on precise, upgrades to nvidia-340&lt;br /&gt;
* lmce-avwizard-sounds (replacement) - don&#039;t copy fakeroot files (it is redundant it is)&lt;br /&gt;
* video-wizard-videos (replacement) - deb is back to normal size, not 2x&lt;br /&gt;
&lt;br /&gt;
== Update 31553 ==&lt;br /&gt;
* pluto-website-admin (220) - fix error that wipes out the apache2.conf&lt;br /&gt;
* pluto-hald (529,530) - fix segfaults with firewire hardware&lt;br /&gt;
&lt;br /&gt;
== Update 31547 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some API changes in OZW 1.3, more device template mappings&lt;br /&gt;
* pluto-boot-scripts (234) - typo fix for nvidia drivers&lt;br /&gt;
* lmce-disked-md-base (801) - set hostname on disked MDs, set timezone on disked MDs&lt;br /&gt;
* lmce-install-scripts (391) - set hostname on disked MDs, set timezone on disked MDs &lt;br /&gt;
* pluto-website-admin was generated---&amp;gt; lmce-website-admin (220) - set apache2 ServerName to silence error on boot&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates, revert to ruby 1.8&lt;br /&gt;
* pluto-generic-serial-device (307,335) - admit defeat for now, revert to ruby 1.8&lt;br /&gt;
&lt;br /&gt;
== Update 31533 ==&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31520 ==&lt;br /&gt;
* chan-sccp_v4.2 (replacement) - Upgrad asterisk SCCP channel driver to newest version&lt;br /&gt;
* pluto-vdr-plugin (466,467) - implement background loading of EPG from VDR to avoid crashes due to commands not completing on time&lt;br /&gt;
* pluto-boot-scripts (234) - some logic changes and added messages for video driver install debugging&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - link new channels dir to old channels dir for backwards compatibility&lt;br /&gt;
&lt;br /&gt;
== Update 31503 ==&lt;br /&gt;
* *zwave* (replacement) - new upstream openzwave version 1.3.1224&lt;br /&gt;
* lmce-zwave-ozw(505,506) - build against new libopenzwave1.3&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates&lt;br /&gt;
* lmce-disked-interactor (897,898) - make disked interactor aware of wheezy and jessie.&lt;br /&gt;
&lt;br /&gt;
== Update 31500 ==&lt;br /&gt;
* *myth* (replacement) - fix depends on non-existent packages&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst - verified installing now&lt;br /&gt;
* pluto-std-plugins (116,135) - Use integer comparison for brightness state&lt;br /&gt;
&lt;br /&gt;
== Update 31491 ==&lt;br /&gt;
* lmce-avwizard-skin-basic (replacement) - fix packaging of avwizard skin&lt;br /&gt;
* *myth* (replacement) - mythtv 0.27.5+fixes with Schedules Direct fix included&lt;br /&gt;
* *asterisk* (replacement) - asterisk 11.7 backport from trusty&lt;br /&gt;
* libical* (replacement) - for asterisk 11.7&lt;br /&gt;
* *cec* (replacement) - libcec3&lt;br /&gt;
* libplatform* (replacement) for libcec3&lt;br /&gt;
* lmce-cec-adaptor (871,872) - build against libcec3&lt;br /&gt;
* lmce-mediatomb (702) - fix pkg installation&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - update protocol version and secret word (shhh) for 0.27.5+fixes&lt;br /&gt;
* lmce-diskless-tools (627,628) - remove call to obsolete script in Diskless_Setup.sh&lt;br /&gt;
* pluto-vdr-plugin (466,467) - return full EPG (used in qOrbiter EPG Grid), improve communication speed with SVDRP&lt;br /&gt;
* pluto-slim-server-streamer (289,290) - emit time code event, fix duration parsing&lt;br /&gt;
* pluto-boot-scripts (234) - fix headless booting, update 1404 nvidia driver&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* lmce-md-meta (450) - add depends on alsa-utils&lt;br /&gt;
* pluto-website-admin (220) - Fix cdrviewer (Call Details Records) to accept SSL conections as well, firewall gui change to set Offline rules in red as they are not executed.&lt;br /&gt;
* pluto-app-server (126,145)- new poweroff mode I for ignore, since N is already in use&lt;br /&gt;
&lt;br /&gt;
== Update 31420 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add depends on pluto-boot-scripts for deb cache script&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31411 == &lt;br /&gt;
* pluto-avwizard (555,556) - fix depends on avwizard skins basic, should no longer care about version&lt;br /&gt;
* pluto-boot-scripts (234) - more explicity logic for core only booting, fix startup script db errors&lt;br /&gt;
* lmce-update-system (650,651) - remove and disable old init.d script from /etc/init.d&lt;br /&gt;
* pluto-plutodhcp (330,491) - depends on apparmor&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-dhcpd-plugin (302) - remove hardcoded IP addresses from configure scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31387 ==&lt;br /&gt;
* lmce-weather-plugin - make change to allow for tonight&#039;s forecast data (TSCHAK)&lt;br /&gt;
* lmce-asterisk (replacement) - remove obsolete phonetic engines and replace with espeak, voices remain the same&lt;br /&gt;
* mbrola (replacement) - base mbrola pkg for mbrola voices (add armhf binary)&lt;br /&gt;
* pluto-asterisk (270,271) - generate fr and de voicemail menus with espeak now&lt;br /&gt;
* lmce-core (888) - add depends on iptables&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31378 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Start_KDE.sh ownership fix, AV config updates&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-avwizard (555,556) - update pkgs &amp;amp; depends &amp;amp; config scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - do not run update deb_cache during dvd creation&lt;br /&gt;
* pluto-x-scripts (520) - fixups to Xconfigure.sh&lt;br /&gt;
&lt;br /&gt;
== Update 31356 ==&lt;br /&gt;
* pluto-system-database (211) - update depends&lt;br /&gt;
* pluto-orbiter (119,138) - update depends&lt;br /&gt;
* lmce-diskless-tools (627,628) - speedup dpkg in diskless create, fix missing quotes&lt;br /&gt;
&lt;br /&gt;
== Update 31352 ==&lt;br /&gt;
* pluto-motion-wrapper - more config file location fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 31351 ==&lt;br /&gt;
* pluto-boot-scripts (234) - change service &#039;nis&#039; to &#039;ypserv&#039;, nis is no longer a service name&lt;br /&gt;
* pluto-website-admin (220) - remove &#039;idiot&#039; text, let&#039;s be nice to people.&lt;br /&gt;
* lmce-core (888) - do not create and config under ubiquity&lt;br /&gt;
* lmce-md-meta (450) - do not create and config under ubiquity&lt;br /&gt;
* motion (replacement) - fix bad config file setting in rules&lt;br /&gt;
&lt;br /&gt;
== Update 31337 ==&lt;br /&gt;
* motion (replacement) - new version of motion to match new configuration values generated by linuxmce&lt;br /&gt;
&lt;br /&gt;
== Update 31331 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix for brightness events&lt;br /&gt;
* pluto-boot-scripts (234) - fix kdm disabling, start ubiquity after network config&lt;br /&gt;
* lmce-diskless-tools (627,628) - add upstart overrides for kdm&lt;br /&gt;
* lmce-install-scripts (391) - start ubiquity after network config&lt;br /&gt;
&lt;br /&gt;
== Update 31314 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add missing depends&lt;br /&gt;
&lt;br /&gt;
== Update 31292 ==&lt;br /&gt;
* lmce-core-locator (replacement) - (1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-system-database (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* All .debs created by MakeRelease - removal of all Pre-Depends, everything is now a Depends entry (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
== Update 31228 ==&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-local-database&lt;br /&gt;
&lt;br /&gt;
== Update 31214 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package (not in repo, need build-replacements.sh svn up&#039;d?)&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - preinst/postinst updates&lt;br /&gt;
* pluto-boot-scripts (234) - preinst/postinst updates&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-disked-md-base (801) - firstboot updates&lt;br /&gt;
&lt;br /&gt;
== Update 31187 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package&lt;br /&gt;
* pluto-confirm-dependencies (281,272) - new depends on lmce-install-scripts (fixes unable to apt-get dist-upgrade)&lt;br /&gt;
* lmce-md-meta (450) - new depends on nfs-common, openssh-server and pastebinit&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - update depends, preinst/postinst&lt;br /&gt;
* pluto-boot-scripts (234) - depends &amp;amp; preinst/postinst updates&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - add override mythweb defaults in pkg preinst&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - update depends&lt;br /&gt;
&lt;br /&gt;
== Update 31133 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** enable WakeMDs.sh to wake any halted MDs.&lt;br /&gt;
** consolidate all boot script launching to /etc/init.d/linuxmce&lt;br /&gt;
* pluto-avwizard (555,556) - moves start script to /usr/pluto/bin, called by /etc/init.d/linuxmce now&lt;br /&gt;
* lmce-update-system (650,651) - removes init.d script, called by /etc/init.d/linuxmce now&lt;br /&gt;
* pluto-website-admin (220) - GUI changes on network settings if an bridge is configured on the db.&lt;br /&gt;
* lmce-core (888) - depend on pluto-asterisk, lmce-asterisk, lmce-install-scripts&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* pluto-generic-serial-device (307,335) - wildshot attempt at fixing segfaults&lt;br /&gt;
&lt;br /&gt;
== Update 31103 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** Network bridging now possible  for wifi AP to have the same network as the local lan. &lt;br /&gt;
** ipv6 on/off for network interfaces. Read multiple ipv6 interfaces from the db.&lt;br /&gt;
** re-enable HaltMDs.&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* libqhttpserver (912) needed for linuxmce nvr&lt;br /&gt;
* lmce-launch-manager - (298,299) - ?&lt;br /&gt;
&lt;br /&gt;
== Update 31087 ==&lt;br /&gt;
* lmce-weather (838,839) - Fix a serious bug in getconfig where incorrect configuration device data would crash program. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 31083 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes #2422, advanced zwave page broken in chrome&lt;br /&gt;
* pluto-system-database (211) - thumbnail screen fixes&lt;br /&gt;
&lt;br /&gt;
== Update 31074 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** setEa2.php - Fix settings for creating entertain area.&lt;br /&gt;
** qOrbiterGenerator.php - Fix erroneous EA creation by removing it.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Fix incorrect setting for enabling / disabling motion.&lt;br /&gt;
&lt;br /&gt;
== Update 31069 ==&lt;br /&gt;
* pluto-website-admin (220) - setEa2.php Fix settings for creating entertain area.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Initial build.&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (881) - Large update of skins and internals.&lt;br /&gt;
&lt;br /&gt;
== Update 31061 ==&lt;br /&gt;
* lmce-squeezeslave (762) - Add configuration DD to command line&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DB package updates&lt;br /&gt;
** restore previous video remote layout with Options button to select subtitles/audio tracks/video tracks from a datagrid list.&lt;br /&gt;
* pluto-website-admin (220) - firewall.php edit rules for non advanced firewall and some other small fixes.&lt;br /&gt;
* lmce-asterisk (replacement) - sip config modules to avoid autoload.&lt;br /&gt;
&lt;br /&gt;
== Update 31051 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** firewall.php not adding rules now fixet.&lt;br /&gt;
** Test buttons for Hue lights&lt;br /&gt;
** Security outsideAccess page now works nicely with the new firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 31044 ==&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
&lt;br /&gt;
== Update 31031 ==&lt;br /&gt;
* pluto-website-admin (220) - firewall.php after a strange fault and some layout fixes.&lt;br /&gt;
* lmce-mediatomb (702) - don&#039;t assume mediatomb is already running.&lt;br /&gt;
&lt;br /&gt;
== Update 31013 ==&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* pluto-boot-scripts (234) - Network Parameter count for more interfaces set and Network firewall accepting postrouting Masquerade  for other network interfaces.&lt;br /&gt;
&lt;br /&gt;
== Update 30985 ==&lt;br /&gt;
* pluto-website-admin (220) - #2268 fail2ban integration logging failed user login attempt.&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** #2268 fail2ban script not insert existing rules to our db.&lt;br /&gt;
** Support for audio output select on rpi via web admin&lt;br /&gt;
* lmce-diskless-tools (627,628) - update syslinux depends to syslinux-common&lt;br /&gt;
* lmce-omx-player (829,830) - Honour audio output selection of rpiMD&lt;br /&gt;
* lmce-squeezeslave (762) - Fix detection for squeezelite&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - further fixes&lt;br /&gt;
* lmce-usb-gamepad (795,796) - rewrite the whole main loop to suck less. hold-down repeats work, input handling more sane.&lt;br /&gt;
&lt;br /&gt;
== Update 30926 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Fix for #2368 insert firewall rules en #2064 edit and delete chains (except some system chains).&lt;br /&gt;
** Support for brightness based events.&lt;br /&gt;
* pluto-std-plugins (116,135) - Support for brightness based events&lt;br /&gt;
* lmce-omx-plugin (831,832) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** Database additions for XBOX 360 Gamepad (device templates, package)&lt;br /&gt;
** Modification of OMX Plugin to allow priority to be changed.&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - the XBOX 360 Gamepad driver, uses xboxdrv userspace driver.&lt;br /&gt;
* lmce-usb-gamepad (795,796) - additions here for above XBOX 360 Gamepad support.&lt;br /&gt;
&lt;br /&gt;
== Update 30862 ==&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress can now read latest files per linuxmce user.&lt;br /&gt;
&lt;br /&gt;
== Update 30860 ==&lt;br /&gt;
* lmce-weather (838,839) - some fixes by cfernandes&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress.&lt;br /&gt;
* pluto-boot-scripts (234) - more mail fixes&lt;br /&gt;
&lt;br /&gt;
== Update 30855 ==&lt;br /&gt;
* pluto-vdr, pluto-vdr-plugin - remove hardcoding of core IP and network address, but depend on the pluto.conf entries for DCERouter.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location (again)&lt;br /&gt;
* lmce-diskless-tools - stop copying apt configs from the core&lt;br /&gt;
* pluto-boot-scripts - fix postfix setup #2393&lt;br /&gt;
&lt;br /&gt;
== Update 30841 ==&lt;br /&gt;
* lmce-avwizard-sounds - fix replaces/conflicts data&lt;br /&gt;
* lmce-skins-basic - fix replaces/conflicts data&lt;br /&gt;
* lmce-avwizard-skin-basic - fix replaces/conflicts data&lt;br /&gt;
&lt;br /&gt;
== Update 30383 ==&lt;br /&gt;
* pluto-website-admin (220) - Add Hue lights related test button.&lt;br /&gt;
* pluto-boot-scripts - Add another option --autobackup to PlutoRestorePoint.sh to allow backup of pluto_main only&lt;br /&gt;
&lt;br /&gt;
== Update 30814 ==&lt;br /&gt;
* pluto-Boot-scripts - Firewall order by place and PK_Firewall to let rules stay on top on the middle or on the bottom.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location&lt;br /&gt;
* lmce-hue-controller (862,863) - Fix bug in adding new lights, now adds serial number.&lt;br /&gt;
* pluto-website-admin (220) - Fix oops relating the missing &#039;.&#039; which caused operations/login.php not to work.&lt;br /&gt;
&lt;br /&gt;
== Update 30783 ==&lt;br /&gt;
* lmce-nbd-client-wrapper - new pkg to hold common script&lt;br /&gt;
* pluto-xine-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* lmce-vlc-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* pluto-boot-scripts - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
* pluto-storage-devices - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30777 ==&lt;br /&gt;
* lmce-core - depend on openswan&lt;br /&gt;
* pluto-system-database - pkg updates&lt;br /&gt;
* pluto-boot-scripts - remove check for openswan from bootscript&lt;br /&gt;
* pluto-generic-serial-device - update to ruby 1.9.1&lt;br /&gt;
&lt;br /&gt;
== Update 30773==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller internals to now include polling, so as to make sure floorplan data is accurate. Changes underlying mechanisms for how lights are handled in preparation for extending additional support for Cree lights and sensors devices.&lt;br /&gt;
&lt;br /&gt;
== Update 30767 ==&lt;br /&gt;
* lmce-diskless-tools - update diskless archive name to reflect current compression method xz.&lt;br /&gt;
* pluto-website-admin (220) - updates to internet radio, moves add channels to a seperate page.  Thanks Dap-P!&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
* pluto-vdr - adds missing depends on vdr in trusty&lt;br /&gt;
* lmce-core - update depends to new pkg name lmce-avwizard-sounds&lt;br /&gt;
* pluto-avwizard - update depends to new pkg name lmce-avwizard-skins-basic&lt;br /&gt;
* lmce-clock-screen-saver - make the clock screen saver use the WMController/wmctrl methods for setting window visibility to be compatible with Orbiter. (TSCHAK) (Trusty only)&lt;br /&gt;
* pluto-storage-devices - Make sure that smbpasswd is used to create or update sambahelper&#039;s password (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30726 ==&lt;br /&gt;
* pluto-vdr - VDR player&#039;s package assumed a correctly installed vdr package which includes an entry in /etc/default for vdr. We no longer fail on a missing file.&lt;br /&gt;
&lt;br /&gt;
== Update 30724 ==&lt;br /&gt;
* lmce-weather - updates to weather sources, add OpenWM source.  Thanks SBCC and cfernandes!&lt;br /&gt;
* lmce-skins-* - adds missing telecom icons, updates/adds weather icons&lt;br /&gt;
* lmce-avwizard-sounds - remove extraneous stuff from pkg, reduce pkg size back to normal.  Proper replaces/conflicts/data...&lt;br /&gt;
* lmce-avwizard-skin-basic - Proper replaces/conflicts/data...&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
&lt;br /&gt;
== Update 30718 ==&lt;br /&gt;
* lmce-core - new depends on lmce-skins*&lt;br /&gt;
* lmce-md-meta - add depends on pnp-detection scripts&lt;br /&gt;
* lmce-hybrid - new depends on lmce-skins*&lt;br /&gt;
* pluto-avwizard (556,555) - add pciutils as a depends, still need to deal with multiarch stuff so this will break armhf, we will not update armhf for now, it doesn&#039;t use avwizard but does install it.&lt;br /&gt;
* lmce-diskless-tools - minor diskless create fixups&lt;br /&gt;
* pluto-orbiter - missing depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio script&lt;br /&gt;
* pluto-website-admin (220) - recognize MIDs as top level devices&lt;br /&gt;
* pluto-mythtv-player - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 30628 ==&lt;br /&gt;
* *-database - fix install issues&lt;br /&gt;
&lt;br /&gt;
== Update 30622 ==&lt;br /&gt;
* pluto-orbiterinstallers - fix depends issue&lt;br /&gt;
* pluto-system-database - lots of compat updates&lt;br /&gt;
* lmce-* - lots of compat updates&lt;br /&gt;
* pluto-* - lots of compat updates&lt;br /&gt;
&lt;br /&gt;
== Update 30618 ==&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio scripts&lt;br /&gt;
* pluto-website-admin (220) - updated internet radio page&lt;br /&gt;
&lt;br /&gt;
== Update 30571 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - send &amp;quot;Device is turned on or off&amp;quot; event when appropriate so the corresponding event works as expected&lt;br /&gt;
* lmce-squeezeslave (762) - set to pnp create without prompting&lt;br /&gt;
* lmce-runtime-dependencies (903) - pkg to help consolidate runtime depends.&lt;br /&gt;
* lmce-core (888) - updated depends&lt;br /&gt;
* lmce-md-meta (450)- updated depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated depends&lt;br /&gt;
* pluto-createdevice (303,304) - updated depends&lt;br /&gt;
* lmce-weather(838,839) - fix potential segfault&lt;br /&gt;
* pluto-website-admin (220) - add &amp;quot;replace node&amp;quot; button to advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 30549 ==&lt;br /&gt;
* pluto-mythtv-player - fix misaligned data values during mythtv.txt creation.&lt;br /&gt;
&lt;br /&gt;
== Update 30526 ==&lt;br /&gt;
* lmce-core - new pkg&lt;br /&gt;
* lmce-hybrid - pkg depends changes&lt;br /&gt;
* lmce-md-meta - pkg depends changes&lt;br /&gt;
* pluto-dcerouter - pkg depends changes&lt;br /&gt;
* pluto-photo-screen-saver - pkg depends changes&lt;br /&gt;
* pluto-boot-scripts - pkg depends changes&lt;br /&gt;
* pluto-orbiter - pkg depends changes&lt;br /&gt;
* pluto-simplephone - pkg depends changes&lt;br /&gt;
* pluto-website-admin - pkg depends changes&lt;br /&gt;
* lmce-mythtv-scripts - pkg depends changes&lt;br /&gt;
* pluto-system-database - pkg depends changes&lt;br /&gt;
* lmce-squeezeslave (762) - fix launch script, automatically create associated squeezebox player on the core.&lt;br /&gt;
* pluto-std-plugins - run New_PnP_MD.sh for new MID devices as well.&lt;br /&gt;
* lmce-diskless-tools - don&#039;t fail on invoke-rc.d during diskless create, exit gracefully and continue.&lt;br /&gt;
* pluto-mythtv-player - fix diskless create failures due to old hacks.  more work is needed here overall on mythtv integration.&lt;br /&gt;
&lt;br /&gt;
== Update 30419 ==&lt;br /&gt;
* pluto-slim-server - Make sure to turn off all Squeeze* devices when Slim Server Streamer starts or restarts (so that squeezelite does not hog sound cards.)&lt;br /&gt;
* pluto-hald (529,530) - add device node path to pnpqueue with v4l devices during detection&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - update for new lib version&lt;br /&gt;
&lt;br /&gt;
== Update 30384 ==&lt;br /&gt;
* pluto-confirm-dependencies - depend on pluto-install-scripts.&lt;br /&gt;
* pluto-disk-drive (122,141) - remove hal bits that dealt with old jukebox bugs.&lt;br /&gt;
* pluto-capture-card-scripts (580) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-pnp-detection (562) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-storage-devices (533) - convert autofs from hal to udev.&lt;br /&gt;
* pluto-bootscripts (234) - disable starting the hald since we&#039;re using udev now, remove false &#039;fail&#039; messages during reboot/shutdown&lt;br /&gt;
* pluto-slim-server-streamer - make one tweak (do not delete m_mapStreamsToPlayers entry in CMD_Stop). Streaming now works consistently, properly, with squeezebox devices and their clones. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30354 ==&lt;br /&gt;
* pluto-hald (529,530) - fix attempt to fire event for child device of usb-dongle.&lt;br /&gt;
* pluto-slim-server-streamer - Implement FF/REW (transport) trick-play control for Squeeze* devices. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30341 ==&lt;br /&gt;
* pluto-bootscripst - fixes for PPPoE users to not autostart the external interface.&lt;br /&gt;
* pluto-slim-server-streamer - Fix to power off squeezebox player when stream is not in use. This allows softsqueeze/squeezeslave/squeezelite players to let go of a sound device, when not in use (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30332 ==&lt;br /&gt;
* pluto-orbiter (118,139) - disable old hid device functionality.  Anyone who needs it can request a special build which will be provided at no extra charge. ;)&lt;br /&gt;
* pluto-bootscripts (234) - disable Gamepad Radar, functionality now in hal through udev&lt;br /&gt;
* pluto-avwizard (556,555) - fixes mangling of RemoteCmd when &amp;gt;1 remote is detected.&lt;br /&gt;
* pluto-hal-device-finder (535,536) - update to use udev rather than hal.&lt;br /&gt;
* pluto-hald (529,530) - update to use udev rather than hal.&lt;br /&gt;
* pluto-system-database (211) - updates for new detection method (joystick, cec-adaptor), update dependency data for hal pks to reflect dropping hald and add depends on udev now.&lt;br /&gt;
&lt;br /&gt;
== Update 30219 ==&lt;br /&gt;
* pluto-bootscripts (234) - Fail2ban firewall update script, and missing radioscript.sh.&lt;br /&gt;
* pluto-website-admin - Place set for rules on the firewall and bantime for fail2ban integration.&lt;br /&gt;
* pluto-std-plugins (116,135) - adds heirloom-mailx for &#039;mailx -r&#039; functionality, fixes e-mail in general info plugin&lt;br /&gt;
&lt;br /&gt;
== Update 30068 ==&lt;br /&gt;
* lmce-advanced-ip-camera(813,812) - Fixed high cpu usage if connection to camera can not be made&lt;br /&gt;
&lt;br /&gt;
== Update 30052 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - fix android pkg meta data, need to rebuild all together&lt;br /&gt;
&lt;br /&gt;
== Update 30051 ==&lt;br /&gt;
* pluto-updateentarea (341,342) - use DAY/NIGHT in watching/stopped watching events to make them smarter&lt;br /&gt;
* pluto-std-plugins (116,135) - Implement Get Device Status in General Info Plugin&lt;br /&gt;
* pluto-bootscripts (234) - fix VPN ip up/down&lt;br /&gt;
&lt;br /&gt;
== Update 30025 ==&lt;br /&gt;
* pluto-system-database (211) - column def updates&lt;br /&gt;
* pluto-local-database (214) - new Firewall columns and new VPN columns for Users table.&lt;br /&gt;
&lt;br /&gt;
== Update 30014 ==&lt;br /&gt;
* lmce-transmission-client (852) - fix postinst issue.  (Thanks SBCC)&lt;br /&gt;
== Update 29994 ==&lt;br /&gt;
More VLC Player changes to make it at least somewhat usable, there were some ugly bugs that came to light once i plopped it onto my production system. Right now sound device is plughw:0,3, if you need a different one, change it in the code.  (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* lmce-vlc-player - many little fixes to make it suck less.&lt;br /&gt;
&lt;br /&gt;
== Update 29990 ==&lt;br /&gt;
I am working on the VLC player, and it is breathing enough for basic testing. Please do not use in production environment. There is still a lot of code to write (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - updates for VLC player (TSCHAK)&lt;br /&gt;
* vlc-player (882,884) - Very early alpha developer test of the VLC player. (TSCHAK)&lt;br /&gt;
* vlc-plugin (874,875) - Very alpha developer test of the VLC plugin. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 29984 ==&lt;br /&gt;
* pluto-system-database (211) - fix bad repos in pkgs&lt;br /&gt;
* pluto-website-admin - just because I think it is necessary :-)&lt;br /&gt;
&lt;br /&gt;
== Update 29983 ==&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36919</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36919"/>
		<updated>2017-02-23T08:07:29Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: /* Upcoming fixes... */ formatting correction.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the 1204 changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo much easier.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please include the pkg #s to facilitate building on 3x i386 targets in addition to 2x amd64 and 3x armhf targets where full builds are not always practical.  Keep in mind that most packages are referred to by two (2) package numbers from the database, a source package and a binary package.  &amp;quot;Thank you for your co-operation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
&lt;br /&gt;
* pluto-std-plugins (116,135) - Issue #2730 - Media Plugin changes to add support for FIFO capture card playback to VLC Player (route messages to VLC Player if it exists) -TSCHAK&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue #2730 - Implement FIFO device playback for local devices similar to file playback. (TBD: recompile VLC with PVR functionality) -TSCHAK&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201702201438+325cc736 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix for multiple cameras and Get Image command&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue 2727, Issue 2728 - Trick play overhaul and fix audio glitches when trick play is used. &lt;br /&gt;
* pluto-boot-scripts (234) - SetupAudioVideo.sh - slight change to libvlc.conf so that trick play OSD works.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1204-1404-1604/amd64 c20633ff ==&lt;br /&gt;
* pluto-website-admin (220) - Added the case for section energyGraph and sipConf, fixed permissions for mysql asteriskuser, add sql credentials for myth, change MYSQL_NUM to MYSQLI_NUM&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1404/amd64 a7c10426 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add backports so 1204 diskless create works&lt;br /&gt;
* lmce-oauth2-server (668) - initial build of lmce oauth2 server for cloud interfacing&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404/1604 i386 - 1404x64 - 201611190055+fee90f43 ==&lt;br /&gt;
* pluto-boot-scripts (234) - database upgrades&lt;br /&gt;
* pluto-orbitergen (226,227) - database upgrades&lt;br /&gt;
* pluto-pluto-main-db (201,237) - database upgrades&lt;br /&gt;
* pluto-pluto-security-db (278,277) - database upgrades&lt;br /&gt;
* lmce-asterisk (replacement) - database upgrades&lt;br /&gt;
* pluto-system-database (211) - database upgrades&lt;br /&gt;
* pluto-local-database (214) - database upgrades&lt;br /&gt;
* pluto-security-database (256) - database upgrades&lt;br /&gt;
* pluto-telecom-database (472) - database upgrades&lt;br /&gt;
* pluto-media-database (233) - database upgrades&lt;br /&gt;
* pluto-database-settings (407) - database upgrades&lt;br /&gt;
* pluto-sqlcvs (212,213) - database upgrades&lt;br /&gt;
* pluto-std-plugins (116,135) - database upgrades&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609281853+9638f5bc ==&lt;br /&gt;
* pluto-website-admin (220) - #2705 fixed syntax error.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609271106+39103855 ==&lt;br /&gt;
* pluto-website-admin (220) - Update firewall.php GUI change some fields where reset to the default values. now the db data is honored.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** don&#039;t create initramfs for Raspbian Jessie diskless filesystems.&lt;br /&gt;
** ensure firstboot runs on diskless Jessie RPis.&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** stop/start rather than restart dhcp server, it&#039;s like nuking the site from orbit... only way to be sure.&lt;br /&gt;
** Firewall blocks udp 1900 UpNP traffic from externalinterface.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609172308+325de35d ==&lt;br /&gt;
* lmce-autotag (780, 781) linuxmceTag - fix comparison issue with media type.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609131230+5eaa4671/201609131753+5eaa4671 ==&lt;br /&gt;
* pluto-boot-scripts (234) - send dhcp vendor specific options only to wired raspberry pis.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 201609102226+fda3da63 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** rpi native pxe additions/updates&lt;br /&gt;
** extend startup timeout when booting under systemd&lt;br /&gt;
* lmce-diskless-tools (627,628) - rpi native pxe additions/updates&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DT updates for rpi native pxe&lt;br /&gt;
** add Serial Number Device Data to RPi DTs&lt;br /&gt;
** sets default PK_Distro to 22 (jessie) for RPi DTs&lt;br /&gt;
** new device data for &amp;quot;Standard Energy Meter&amp;quot;&lt;br /&gt;
* pluto-std-plugins (116,135)&lt;br /&gt;
** stores energy reading in state field for Standard Energy Meter&lt;br /&gt;
** fixes dcerouter crash when searching media&lt;br /&gt;
* pluto-updatemedia (405,406) - fix segfault when a dir is attempting to be tagged directly (without a .id3)&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - don&#039;t fail pkg install if simplephone is not running.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-i386 - 1404-i386/amd64 201607240235+899786ab ==&lt;br /&gt;
* pluto-website-admin (220) - Mysqli_real_escape_string did not work. a start with ipv6 firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/i386 201607202218+14cba09a ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) - Stream Bouncing, Additional settings for location, removed debug output, queue functionality.&lt;br /&gt;
&lt;br /&gt;
== Update 201607181902+d4cec1a0 1404-i386/amd64 - 1204-i386 ==&lt;br /&gt;
* pluto-website-admin - Update to qOrbiterGenerator.php for newer PHP version&lt;br /&gt;
&lt;br /&gt;
== Update 201607161239+6d72c3f9 1404-i386/amd64 1204-i386 ==&lt;br /&gt;
* pluto-website-admin (220) - #2678 fix Warning: Invalid argument supplied for foreach() in /var/www/lmce-admin/include/dhcpd-tools/DHCPd-parse.php on line 113&lt;br /&gt;
* pluto-boot-script&lt;br /&gt;
&lt;br /&gt;
== Update 201607151016+5b5adba3 1404/i386 &amp;amp; amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule use another escape method.&lt;br /&gt;
&lt;br /&gt;
== Update 201607122332+f0fc9c6b 1404/i386 ==&lt;br /&gt;
* pluto-boot-scripts (234) - fix #2684 clients cannot access internet when firewall is disabled. &lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule.&lt;br /&gt;
&lt;br /&gt;
== Update 201607050613+601c67da 1404-i386/amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - more fixes to the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update trusty i386/amd64 201606301955+614dfa7b ==&lt;br /&gt;
* pluto-website-admin (220) - fix for outside access port 443 not uncheckable.&lt;br /&gt;
* pluto-boot-scripts (234) - fix for not dele rules from iptables from outsideAccess.php&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201606201908+31b25c52 ==&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** unicode reading/writing working properly&lt;br /&gt;
** coverart writing to tags working properly&lt;br /&gt;
** .id3 files handled by taglib instead of id3lib.&lt;br /&gt;
** General Object Frame (GEOB) reading/writing working properly (all lmce attributes are stored in id3v2 GEOB tags for .id3/.mp3 files)&lt;br /&gt;
* pluto-website-admin (220) - more updates for mysql -&amp;gt; mysqli conversion&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201605312323+08fb8202 ==&lt;br /&gt;
* pluto-website-admin (220) - fix Text Command button to honor parameters from Screen_CommandParameter&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller to fix spamming of logs with constant updates of device data.&lt;br /&gt;
&lt;br /&gt;
== Update trusty-i386/amd64 201605310531+04df53f5 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - get the stream uri from onvif camera and save it in a device data for use by other devices&lt;br /&gt;
* pluto-website-admin (220) - adate to adodb 5.20.4 and change db driver from mysql to mysqli&lt;br /&gt;
* pluto-updatemedia (405,406) - tag writing/deletion of values update&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201605261039+410242d2 ==&lt;br /&gt;
* pluto-media-database (233) - remove FatGroupBy query as it is massive and no longer required&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** FIX UpdateMedia not detecting changes in files on disk.  Fixes: UpdateMedia not reading modification times properly.&lt;br /&gt;
** improve image reading/writing for mp3/mp4 files, add image handling for asf/wma, improve track art-&amp;gt;performer/album artist matching.&lt;br /&gt;
** don&#039;t add network shares to inotify watch list&lt;br /&gt;
* pluto-system-database (211) - new qml-* pkg definitions for qorbiter&lt;br /&gt;
* pluto-plutoutils (196,197) - add fn&#039; to determine filesystem type of a file&lt;br /&gt;
* lmce-disked-interactor (897,898) - make sure we see the core and have an IP prior to attempting contact&lt;br /&gt;
* pluto-bootscripts (234) - make sure we see the core prior to continuing to boot an MD&lt;br /&gt;
* pluto-website-admin (220) - various fixes in the media page&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 - 201605171740 c6d63dc6 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3, ogg, flac, mp4, wv, wav, oga, mpc, spx, opus, tta, m4a, m4r, m4p, 3g2, m4v, wma, asf, aif, aiff, afc, aifc, ape, s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64  201605131052+2542a526 ==&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - udev rule to ignore usbhid portion of device, permits orbiter to enter screensaver&lt;br /&gt;
* pluto-bootscripts (234) - permit devices that have died 50 times to attempt to restart after a router reload. Firewall fix for manual defined chains.&lt;br /&gt;
* pluto-sound-card-scripts (579) - don&#039;t assume cardid=1, determine phoenix cardid from aplay.&lt;br /&gt;
* pluto-media-database (233) - additional AttributeType &amp;quot;Album Artist&amp;quot;&lt;br /&gt;
* lmce-media-identifier (931,932) - updates for Album Artist tag.&lt;br /&gt;
* pluto-orbiter (119,138) - updates for Album Artist tag.&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** updates for Album Artist tag&lt;br /&gt;
** fix mainMediaFileSync.php. OutsideAccess page showing the options (again). &lt;br /&gt;
** And typo fixes for issue #2643. &lt;br /&gt;
** Firewall page reload issue 2636#. Firewall gui do not show &amp;quot;NULL&amp;quot;.&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3:ogg:flac:mp4:wv:wav::oga:mpc:spx:opus:tta:m4a:m4r:m4p:3g2:m4v:wma:asf:aif:aiff:afc:aifc:ape:s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update jessie 20160427 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for RPi&lt;br /&gt;
* lmce-disked-md-rpi2 (889) - +x firstboot_md_rpi2 to ensure it&#039;s picked up properly&lt;br /&gt;
&lt;br /&gt;
== Update jessie 201604130947+0083d387 ==&lt;br /&gt;
== Update 1204/1404-i386/amd64 201604101031-0b47a986 ==&lt;br /&gt;
* pluto-website-admin, pluto-boot-scripts (220,234) - Firewall Fixes for GUI and inner working of the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603251155+a1c0f6ea ==&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - File view implemented. Fixed not being able to leave resume menu.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603222119+336464d8 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller  to fix floorplan / status being improperly updated.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t mount optical discs as HDDs&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201603220706+c3c4b899 ==&lt;br /&gt;
* lmce-md-meta (450) - for some reason this is not in the main repo&lt;br /&gt;
* lmce-media-identifier - fixed for libcdio&lt;br /&gt;
&lt;br /&gt;
== Update jessie-rpi 60faa181 ==&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - adds video resizing so UI1 can be exposed while video is playing.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 armhf 31c5d994 ==&lt;br /&gt;
== Update 1404 i386 52e39875 ==&lt;br /&gt;
* pluto-storage-devices (533) - fix ntfs detection&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 - 49a8cbf1 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - a little better device to device template mapping&lt;br /&gt;
* pluto-website-admin (220) - fix adv.zwave page and adding secure devices&lt;br /&gt;
* lmce-disked-* - update the disked md/mid meta/base/device pkgs, specific fixes for 1404 joggler&lt;br /&gt;
* lmce-json-plugin (876,877) - first time addition to the main repo&lt;br /&gt;
* libdvdid0 (replacement) - first time addition to the repo, for use by Media Identifier&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - enable disabling internal volume control, similar to how logitechmediaserver does&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1404(armhf)/jessie(rpi)-a84db86f ==&lt;br /&gt;
* lmce-launch-manager (298,299) - only update squeeze devices when running on the core, redundant elsewhere.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404-87954508 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t fail if dvdcss2 cannot be automatically installed.&lt;br /&gt;
* pluto-hald (529,530) - reinstate tty detection, seperate from usb-serial, use direct parent for udi naming.&lt;br /&gt;
* pluto-boot-scripts (234) - disable buildall, the script doesn&#039;t run so why waste time creating it.&lt;br /&gt;
* lmce-launch-manager (298,299)&lt;br /&gt;
** update squeezebox players on router reloads from Launch_Manager&lt;br /&gt;
** call Config_Device_Changes in startCoreServices to ensure everything gets its&#039; Need Configure flag reset.&lt;br /&gt;
&lt;br /&gt;
== Update a332f49a ==&lt;br /&gt;
* lmce-install-scripts (391) - fix missing quote in MD installation.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix missing &#039;fi&#039; in BootMessage.sh&lt;br /&gt;
** fix usb.1 system serial port listing/translating&lt;br /&gt;
* lmce-media-identifier (931,932) - fix segfault, CDs are identified, cd-ripping functional again&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** prioritize new conf dir over old conf dir, fix install on systems upgraded from 1204-&amp;gt;1404&lt;br /&gt;
** redirect mythweb to html/mythweb&lt;br /&gt;
* pluto-hald (529,530) - updates to serial port naming, specifically for odroid.&lt;br /&gt;
* pluto-storage-devices (533) - fix mounted drive detection and add detection for drives mounted in /proc/cmdline like rpi.&lt;br /&gt;
&lt;br /&gt;
== Update 1204=201602080446+2028f850 &amp;lt;br&amp;gt; 1404=201602071815+c31bc44f ==&lt;br /&gt;
* lmce-install-scripts (391)&lt;br /&gt;
** enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
* lmce-core (888) - enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
* pluto-storage-devices (533) - redo StorageDevices_Radar using blkid for internal HDD identification.  /dev/disk/by-path/ is not present anymore.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
** new VerifyDistro.sh script and call the script on boot.&lt;br /&gt;
*** Preventative mostly.  Intended to ease pain for those that upgrade distros.&lt;br /&gt;
*** Ensure child devices, onscreen orbiter, have the proper PK_Distro set.&lt;br /&gt;
&lt;br /&gt;
== Update 296fdcd3 ==&lt;br /&gt;
* pluto-website-admin (220) - fix depends versioning&lt;br /&gt;
* pluto-hald (529,530) - fix depends versioning&lt;br /&gt;
* pluto-boot-scripts (234) - fix depends versioning&lt;br /&gt;
* pluto-system-database (211) - fix depends versioning&lt;br /&gt;
* pluto-orbitergen (226,227) - fix depends versioning&lt;br /&gt;
* lmce-disked-md-base (801) - fix depends versioning&lt;br /&gt;
* lmce-install-scripts (391) - fix depends versioning&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix depends versioning&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix depends versioning&lt;br /&gt;
* lmce-datalogger-plugin (686,687) - fix depends versioning &lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix depends versioning&lt;br /&gt;
&lt;br /&gt;
== Update f3a444c0 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** use newer .sh script rather than obsolete .pl script for dialplan creation&lt;br /&gt;
** fix Directory listing on cisco phones&lt;br /&gt;
** fix delete buttons on internet radio page.&lt;br /&gt;
* pluto-hald (529,530)&lt;br /&gt;
** add &#039;usb&#039; to &#039;pci&#039; and &#039;platform&#039; as valid bus addresses&lt;br /&gt;
** permit adding of usb devices with usb_serial or tty children&lt;br /&gt;
* pluto-boot-scripts (234) - update SetupAudioVideo.sh to more reliably address nvidia hdmi audio outputs&lt;br /&gt;
* lmce-asterisk (replacement) - live_dangerously for now to get all the necessary Voicemail modules to load&lt;br /&gt;
* pluto-system-database (211) - new DD Number of jobs for orbiter plug-in/orbitergen&lt;br /&gt;
* pluto-boot-scripts (234) - updates to RegenOrbiter scripts for parallel job queued orbiter generation.&lt;br /&gt;
* pluto-orbitergen (226,227) - new depends on GNU parallel&lt;br /&gt;
* lmce-disked-md-base (801) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* lmce-install-scripts (391) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - remove hardcoded ip address, get from db instead.&lt;br /&gt;
* lmce-diskless-tools (627,628) - only run UpdateDebCache.sh if it is executable&lt;br /&gt;
* lmce-datalog-plugin(686,687) - fix pear install command in postinst&lt;br /&gt;
* lmce-advanced-ip-camera(812,813) - add basic onvif support (snapshot,PTZ)&lt;br /&gt;
&lt;br /&gt;
== Update 31792 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of new External_Media_Identifier, testing CDDB ids&lt;br /&gt;
&lt;br /&gt;
== Update 31783 ==&lt;br /&gt;
* pluto-libserial (190,191) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-dcecommon (192,193) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-irbase (194,195) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-plutoutils (196,197) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-vipshared (199,200) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-serializeclass (198,238) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-libbd (239,240) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-ra (247,248) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-main-db (201,237) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-media-db (254,255) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-security-db (278,277) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-sdl-helpers (346,347) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-messagetrans (398,401) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-game-db (675,676) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-windowutils (677,678) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-datalog-db (688,689) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
&lt;br /&gt;
== Update 31782 ==&lt;br /&gt;
* pluto-std-plugins - fix FK_File search inside Attribute in Media_Plugin&lt;br /&gt;
&lt;br /&gt;
== Update 31774 ==&lt;br /&gt;
* lmce-disked-mid-base (899) - fix error in postinst&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come (this should be in but apt-get is getting 404 errors)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add &amp;quot;remove failed node&amp;quot; command&lt;br /&gt;
* pluto-website-admin - add &amp;quot;remove failed node&amp;quot; command for zwave advanced page&lt;br /&gt;
&lt;br /&gt;
== Update 31760 ==&lt;br /&gt;
* lmce-disked-md-base (801) - fix another error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31757 ==&lt;br /&gt;
* lmce-core (888) - overwrite AutostartCore conf value&lt;br /&gt;
* lmce-md-meta (450) - overwrite AutostartMedia conf value&lt;br /&gt;
* lmce-mid-meta (962) - missing deb&lt;br /&gt;
* lmce-hybrid (769) - exit 0 in postinst, just to be sure&lt;br /&gt;
* lmce-disked-md-base (801) - fix error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31754 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - reconnect before send&lt;br /&gt;
&lt;br /&gt;
== Update 31752 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - remove hard coded caller id &#039;Cherryhomes, Tho&#039;, use incoming caller id.&lt;br /&gt;
&lt;br /&gt;
== Update 31750 ==&lt;br /&gt;
* pluto-website-admin (220) - fix postinst error notice on precise.&lt;br /&gt;
* pluto-boot-scripts (234) - (re)start asterisk, otherwise configuration doesn&#039;t occur and sip phones cannot register&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - force-reload apache2 after disabling mythbuntu sites&lt;br /&gt;
* lmce-md-meta (450) - don&#039;t overwrite conf values that are already set&lt;br /&gt;
* *openzwave* (replacement) - version bump, upgrade fixes to upstream files&lt;br /&gt;
&lt;br /&gt;
== Update 31744 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come&lt;br /&gt;
&lt;br /&gt;
== Update 31742 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Gui changes to not confuse people. &lt;br /&gt;
** outsideaccess works together with the firewall. &lt;br /&gt;
** phonelines note on protocol for meaning of &amp;quot;SPA&amp;quot; and a status for this protocol setting, port can be changed if needed else it will be the default (5060).&lt;br /&gt;
&lt;br /&gt;
== Update 31739 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix absolute timed events&lt;br /&gt;
&lt;br /&gt;
== Update 31723 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix nfs-premount script in default diskless image.&lt;br /&gt;
* lmce-dlna(842,843) - compatibility fixes&lt;br /&gt;
* lmce-install-scripts (391) - generate ssh keys so openssh-server can accept connections&lt;br /&gt;
* pluto-createdevice (303,304) - hide errors, specifically during initial package postinst&lt;br /&gt;
* lmce-cec-adaptor (871,872) - fix cec remotes not getting to lmce&lt;br /&gt;
&lt;br /&gt;
== Update 31693 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - Fixes #2530 - fix errors in mythtvdb synchronization scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31686 ==&lt;br /&gt;
* lmce-install-scripts (391) - deal with firstboot stuffenz&lt;br /&gt;
* pluto-system-database (211) - add proxy orbiter DT depends for generic web device&lt;br /&gt;
* pluto-website-admin (220) - order by photo file name in screen saver/photo browser&lt;br /&gt;
* pluto-boot-scripts (234) - try ubiquity before anything else, and reboot after the normal firstboot - breaks live boot on dvd atm&lt;br /&gt;
* lmce-diskless-tools (627,628) - permit i386 diskless image building on amd64 cores, ensure processes are killed in chroot before unmounting (deals with systemd for now)&lt;br /&gt;
&lt;br /&gt;
== Update 31660 ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) &lt;br /&gt;
**PS3 control screen, fix layout issue. adds seperate button group (triangle, circle, etc) and navigation arrows. Also adds power off button to properly exit screen&lt;br /&gt;
* pluto-website-admin (220) - prevent creation of extra &#039;blank&#039; network interfaces&lt;br /&gt;
&lt;br /&gt;
== Update 31655 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - close connection after use&lt;br /&gt;
* pluto-website-admin (220) - fill ServerName var if it is unset, not if it is set.&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - unify service control&lt;br /&gt;
* pluto-boot-scripts (234) - unify service control&lt;br /&gt;
* pluto-dhcpd-plugin (302) - unify service control&lt;br /&gt;
* pluto-disk-monitor (554) - unify service control&lt;br /&gt;
* pluto-mythtv-player (133,152) - unify service control&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - unify service control&lt;br /&gt;
* pluto-raid-tools (617) - unify service control&lt;br /&gt;
* pluto-storage-devices (533) - unify service control&lt;br /&gt;
* lmce-update-system (650,651) - unify service control&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - unify service control&lt;br /&gt;
* pluto-vdr-plugin (466,467) - unify service control&lt;br /&gt;
* pluto-vdr (468,469) - unify service control&lt;br /&gt;
* pluto-database-settings (407) - unify service control&lt;br /&gt;
* lmce-asterisk (replacement) - unify service control&lt;br /&gt;
* lmce-diskless-tools (627,628) - unify service control&lt;br /&gt;
* lmce-install-scripts (391) - unify service control&lt;br /&gt;
* pluto-updatemedia (405,406) - unify service control&lt;br /&gt;
* pluto-newmdinteractor (538,539) - unify service control&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - Fix size issues, floorplan popups.&lt;br /&gt;
&lt;br /&gt;
== Update 31621 ==&lt;br /&gt;
* pluto-mythtv-player (133,152) - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 31618 ==&lt;br /&gt;
* lmce-asterisk (replacement) - update db for chan_sccp-v4.2 and fix bug requiring manual asterisk reload on boot&lt;br /&gt;
&lt;br /&gt;
== Update 31615 ==&lt;br /&gt;
* pluto-* - rebuild with new libraries&lt;br /&gt;
* lmce-* - rebuild with new libraries&lt;br /&gt;
&lt;br /&gt;
== Update 31606 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix EPG data on orbiters, myth stores everything in UTC now.&lt;br /&gt;
* pluto-pluto-main-db (201,237) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-media-db (254,255) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-security-db (277,278) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-datalog-db (688,689) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-game-db (675,676) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-updateentarea (341,342) - don&#039;t send empty play command when resetting alarm&lt;br /&gt;
&lt;br /&gt;
== Update 31580 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - use bypass-event to avoid watching media events when playing alerts&lt;br /&gt;
* pluto-updateentarea (341,342) - send bypass-event with security event commands&lt;br /&gt;
* libcec3 debs (replacement) - removes conflict data with libcec2&lt;br /&gt;
&lt;br /&gt;
== Update 31575 ==&lt;br /&gt;
* lmce-asterisk (replacement) - play back alert notification file&lt;br /&gt;
* pluto-std-plugins (116,135) - create alert notification file with correct format&lt;br /&gt;
* pluto-boot-scripts (234) - fixes for nvidia drivers on precise, upgrades to nvidia-340&lt;br /&gt;
* lmce-avwizard-sounds (replacement) - don&#039;t copy fakeroot files (it is redundant it is)&lt;br /&gt;
* video-wizard-videos (replacement) - deb is back to normal size, not 2x&lt;br /&gt;
&lt;br /&gt;
== Update 31553 ==&lt;br /&gt;
* pluto-website-admin (220) - fix error that wipes out the apache2.conf&lt;br /&gt;
* pluto-hald (529,530) - fix segfaults with firewire hardware&lt;br /&gt;
&lt;br /&gt;
== Update 31547 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some API changes in OZW 1.3, more device template mappings&lt;br /&gt;
* pluto-boot-scripts (234) - typo fix for nvidia drivers&lt;br /&gt;
* lmce-disked-md-base (801) - set hostname on disked MDs, set timezone on disked MDs&lt;br /&gt;
* lmce-install-scripts (391) - set hostname on disked MDs, set timezone on disked MDs &lt;br /&gt;
* pluto-website-admin was generated---&amp;gt; lmce-website-admin (220) - set apache2 ServerName to silence error on boot&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates, revert to ruby 1.8&lt;br /&gt;
* pluto-generic-serial-device (307,335) - admit defeat for now, revert to ruby 1.8&lt;br /&gt;
&lt;br /&gt;
== Update 31533 ==&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31520 ==&lt;br /&gt;
* chan-sccp_v4.2 (replacement) - Upgrad asterisk SCCP channel driver to newest version&lt;br /&gt;
* pluto-vdr-plugin (466,467) - implement background loading of EPG from VDR to avoid crashes due to commands not completing on time&lt;br /&gt;
* pluto-boot-scripts (234) - some logic changes and added messages for video driver install debugging&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - link new channels dir to old channels dir for backwards compatibility&lt;br /&gt;
&lt;br /&gt;
== Update 31503 ==&lt;br /&gt;
* *zwave* (replacement) - new upstream openzwave version 1.3.1224&lt;br /&gt;
* lmce-zwave-ozw(505,506) - build against new libopenzwave1.3&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates&lt;br /&gt;
* lmce-disked-interactor (897,898) - make disked interactor aware of wheezy and jessie.&lt;br /&gt;
&lt;br /&gt;
== Update 31500 ==&lt;br /&gt;
* *myth* (replacement) - fix depends on non-existent packages&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst - verified installing now&lt;br /&gt;
* pluto-std-plugins (116,135) - Use integer comparison for brightness state&lt;br /&gt;
&lt;br /&gt;
== Update 31491 ==&lt;br /&gt;
* lmce-avwizard-skin-basic (replacement) - fix packaging of avwizard skin&lt;br /&gt;
* *myth* (replacement) - mythtv 0.27.5+fixes with Schedules Direct fix included&lt;br /&gt;
* *asterisk* (replacement) - asterisk 11.7 backport from trusty&lt;br /&gt;
* libical* (replacement) - for asterisk 11.7&lt;br /&gt;
* *cec* (replacement) - libcec3&lt;br /&gt;
* libplatform* (replacement) for libcec3&lt;br /&gt;
* lmce-cec-adaptor (871,872) - build against libcec3&lt;br /&gt;
* lmce-mediatomb (702) - fix pkg installation&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - update protocol version and secret word (shhh) for 0.27.5+fixes&lt;br /&gt;
* lmce-diskless-tools (627,628) - remove call to obsolete script in Diskless_Setup.sh&lt;br /&gt;
* pluto-vdr-plugin (466,467) - return full EPG (used in qOrbiter EPG Grid), improve communication speed with SVDRP&lt;br /&gt;
* pluto-slim-server-streamer (289,290) - emit time code event, fix duration parsing&lt;br /&gt;
* pluto-boot-scripts (234) - fix headless booting, update 1404 nvidia driver&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* lmce-md-meta (450) - add depends on alsa-utils&lt;br /&gt;
* pluto-website-admin (220) - Fix cdrviewer (Call Details Records) to accept SSL conections as well, firewall gui change to set Offline rules in red as they are not executed.&lt;br /&gt;
* pluto-app-server (126,145)- new poweroff mode I for ignore, since N is already in use&lt;br /&gt;
&lt;br /&gt;
== Update 31420 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add depends on pluto-boot-scripts for deb cache script&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31411 == &lt;br /&gt;
* pluto-avwizard (555,556) - fix depends on avwizard skins basic, should no longer care about version&lt;br /&gt;
* pluto-boot-scripts (234) - more explicity logic for core only booting, fix startup script db errors&lt;br /&gt;
* lmce-update-system (650,651) - remove and disable old init.d script from /etc/init.d&lt;br /&gt;
* pluto-plutodhcp (330,491) - depends on apparmor&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-dhcpd-plugin (302) - remove hardcoded IP addresses from configure scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31387 ==&lt;br /&gt;
* lmce-weather-plugin - make change to allow for tonight&#039;s forecast data (TSCHAK)&lt;br /&gt;
* lmce-asterisk (replacement) - remove obsolete phonetic engines and replace with espeak, voices remain the same&lt;br /&gt;
* mbrola (replacement) - base mbrola pkg for mbrola voices (add armhf binary)&lt;br /&gt;
* pluto-asterisk (270,271) - generate fr and de voicemail menus with espeak now&lt;br /&gt;
* lmce-core (888) - add depends on iptables&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31378 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Start_KDE.sh ownership fix, AV config updates&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-avwizard (555,556) - update pkgs &amp;amp; depends &amp;amp; config scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - do not run update deb_cache during dvd creation&lt;br /&gt;
* pluto-x-scripts (520) - fixups to Xconfigure.sh&lt;br /&gt;
&lt;br /&gt;
== Update 31356 ==&lt;br /&gt;
* pluto-system-database (211) - update depends&lt;br /&gt;
* pluto-orbiter (119,138) - update depends&lt;br /&gt;
* lmce-diskless-tools (627,628) - speedup dpkg in diskless create, fix missing quotes&lt;br /&gt;
&lt;br /&gt;
== Update 31352 ==&lt;br /&gt;
* pluto-motion-wrapper - more config file location fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 31351 ==&lt;br /&gt;
* pluto-boot-scripts (234) - change service &#039;nis&#039; to &#039;ypserv&#039;, nis is no longer a service name&lt;br /&gt;
* pluto-website-admin (220) - remove &#039;idiot&#039; text, let&#039;s be nice to people.&lt;br /&gt;
* lmce-core (888) - do not create and config under ubiquity&lt;br /&gt;
* lmce-md-meta (450) - do not create and config under ubiquity&lt;br /&gt;
* motion (replacement) - fix bad config file setting in rules&lt;br /&gt;
&lt;br /&gt;
== Update 31337 ==&lt;br /&gt;
* motion (replacement) - new version of motion to match new configuration values generated by linuxmce&lt;br /&gt;
&lt;br /&gt;
== Update 31331 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix for brightness events&lt;br /&gt;
* pluto-boot-scripts (234) - fix kdm disabling, start ubiquity after network config&lt;br /&gt;
* lmce-diskless-tools (627,628) - add upstart overrides for kdm&lt;br /&gt;
* lmce-install-scripts (391) - start ubiquity after network config&lt;br /&gt;
&lt;br /&gt;
== Update 31314 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add missing depends&lt;br /&gt;
&lt;br /&gt;
== Update 31292 ==&lt;br /&gt;
* lmce-core-locator (replacement) - (1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-system-database (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* All .debs created by MakeRelease - removal of all Pre-Depends, everything is now a Depends entry (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
== Update 31228 ==&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-local-database&lt;br /&gt;
&lt;br /&gt;
== Update 31214 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package (not in repo, need build-replacements.sh svn up&#039;d?)&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - preinst/postinst updates&lt;br /&gt;
* pluto-boot-scripts (234) - preinst/postinst updates&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-disked-md-base (801) - firstboot updates&lt;br /&gt;
&lt;br /&gt;
== Update 31187 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package&lt;br /&gt;
* pluto-confirm-dependencies (281,272) - new depends on lmce-install-scripts (fixes unable to apt-get dist-upgrade)&lt;br /&gt;
* lmce-md-meta (450) - new depends on nfs-common, openssh-server and pastebinit&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - update depends, preinst/postinst&lt;br /&gt;
* pluto-boot-scripts (234) - depends &amp;amp; preinst/postinst updates&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - add override mythweb defaults in pkg preinst&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - update depends&lt;br /&gt;
&lt;br /&gt;
== Update 31133 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** enable WakeMDs.sh to wake any halted MDs.&lt;br /&gt;
** consolidate all boot script launching to /etc/init.d/linuxmce&lt;br /&gt;
* pluto-avwizard (555,556) - moves start script to /usr/pluto/bin, called by /etc/init.d/linuxmce now&lt;br /&gt;
* lmce-update-system (650,651) - removes init.d script, called by /etc/init.d/linuxmce now&lt;br /&gt;
* pluto-website-admin (220) - GUI changes on network settings if an bridge is configured on the db.&lt;br /&gt;
* lmce-core (888) - depend on pluto-asterisk, lmce-asterisk, lmce-install-scripts&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* pluto-generic-serial-device (307,335) - wildshot attempt at fixing segfaults&lt;br /&gt;
&lt;br /&gt;
== Update 31103 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** Network bridging now possible  for wifi AP to have the same network as the local lan. &lt;br /&gt;
** ipv6 on/off for network interfaces. Read multiple ipv6 interfaces from the db.&lt;br /&gt;
** re-enable HaltMDs.&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* libqhttpserver (912) needed for linuxmce nvr&lt;br /&gt;
* lmce-launch-manager - (298,299) - ?&lt;br /&gt;
&lt;br /&gt;
== Update 31087 ==&lt;br /&gt;
* lmce-weather (838,839) - Fix a serious bug in getconfig where incorrect configuration device data would crash program. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 31083 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes #2422, advanced zwave page broken in chrome&lt;br /&gt;
* pluto-system-database (211) - thumbnail screen fixes&lt;br /&gt;
&lt;br /&gt;
== Update 31074 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** setEa2.php - Fix settings for creating entertain area.&lt;br /&gt;
** qOrbiterGenerator.php - Fix erroneous EA creation by removing it.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Fix incorrect setting for enabling / disabling motion.&lt;br /&gt;
&lt;br /&gt;
== Update 31069 ==&lt;br /&gt;
* pluto-website-admin (220) - setEa2.php Fix settings for creating entertain area.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Initial build.&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (881) - Large update of skins and internals.&lt;br /&gt;
&lt;br /&gt;
== Update 31061 ==&lt;br /&gt;
* lmce-squeezeslave (762) - Add configuration DD to command line&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DB package updates&lt;br /&gt;
** restore previous video remote layout with Options button to select subtitles/audio tracks/video tracks from a datagrid list.&lt;br /&gt;
* pluto-website-admin (220) - firewall.php edit rules for non advanced firewall and some other small fixes.&lt;br /&gt;
* lmce-asterisk (replacement) - sip config modules to avoid autoload.&lt;br /&gt;
&lt;br /&gt;
== Update 31051 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** firewall.php not adding rules now fixet.&lt;br /&gt;
** Test buttons for Hue lights&lt;br /&gt;
** Security outsideAccess page now works nicely with the new firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 31044 ==&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
&lt;br /&gt;
== Update 31031 ==&lt;br /&gt;
* pluto-website-admin (220) - firewall.php after a strange fault and some layout fixes.&lt;br /&gt;
* lmce-mediatomb (702) - don&#039;t assume mediatomb is already running.&lt;br /&gt;
&lt;br /&gt;
== Update 31013 ==&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* pluto-boot-scripts (234) - Network Parameter count for more interfaces set and Network firewall accepting postrouting Masquerade  for other network interfaces.&lt;br /&gt;
&lt;br /&gt;
== Update 30985 ==&lt;br /&gt;
* pluto-website-admin (220) - #2268 fail2ban integration logging failed user login attempt.&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** #2268 fail2ban script not insert existing rules to our db.&lt;br /&gt;
** Support for audio output select on rpi via web admin&lt;br /&gt;
* lmce-diskless-tools (627,628) - update syslinux depends to syslinux-common&lt;br /&gt;
* lmce-omx-player (829,830) - Honour audio output selection of rpiMD&lt;br /&gt;
* lmce-squeezeslave (762) - Fix detection for squeezelite&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - further fixes&lt;br /&gt;
* lmce-usb-gamepad (795,796) - rewrite the whole main loop to suck less. hold-down repeats work, input handling more sane.&lt;br /&gt;
&lt;br /&gt;
== Update 30926 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Fix for #2368 insert firewall rules en #2064 edit and delete chains (except some system chains).&lt;br /&gt;
** Support for brightness based events.&lt;br /&gt;
* pluto-std-plugins (116,135) - Support for brightness based events&lt;br /&gt;
* lmce-omx-plugin (831,832) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** Database additions for XBOX 360 Gamepad (device templates, package)&lt;br /&gt;
** Modification of OMX Plugin to allow priority to be changed.&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - the XBOX 360 Gamepad driver, uses xboxdrv userspace driver.&lt;br /&gt;
* lmce-usb-gamepad (795,796) - additions here for above XBOX 360 Gamepad support.&lt;br /&gt;
&lt;br /&gt;
== Update 30862 ==&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress can now read latest files per linuxmce user.&lt;br /&gt;
&lt;br /&gt;
== Update 30860 ==&lt;br /&gt;
* lmce-weather (838,839) - some fixes by cfernandes&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress.&lt;br /&gt;
* pluto-boot-scripts (234) - more mail fixes&lt;br /&gt;
&lt;br /&gt;
== Update 30855 ==&lt;br /&gt;
* pluto-vdr, pluto-vdr-plugin - remove hardcoding of core IP and network address, but depend on the pluto.conf entries for DCERouter.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location (again)&lt;br /&gt;
* lmce-diskless-tools - stop copying apt configs from the core&lt;br /&gt;
* pluto-boot-scripts - fix postfix setup #2393&lt;br /&gt;
&lt;br /&gt;
== Update 30841 ==&lt;br /&gt;
* lmce-avwizard-sounds - fix replaces/conflicts data&lt;br /&gt;
* lmce-skins-basic - fix replaces/conflicts data&lt;br /&gt;
* lmce-avwizard-skin-basic - fix replaces/conflicts data&lt;br /&gt;
&lt;br /&gt;
== Update 30383 ==&lt;br /&gt;
* pluto-website-admin (220) - Add Hue lights related test button.&lt;br /&gt;
* pluto-boot-scripts - Add another option --autobackup to PlutoRestorePoint.sh to allow backup of pluto_main only&lt;br /&gt;
&lt;br /&gt;
== Update 30814 ==&lt;br /&gt;
* pluto-Boot-scripts - Firewall order by place and PK_Firewall to let rules stay on top on the middle or on the bottom.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location&lt;br /&gt;
* lmce-hue-controller (862,863) - Fix bug in adding new lights, now adds serial number.&lt;br /&gt;
* pluto-website-admin (220) - Fix oops relating the missing &#039;.&#039; which caused operations/login.php not to work.&lt;br /&gt;
&lt;br /&gt;
== Update 30783 ==&lt;br /&gt;
* lmce-nbd-client-wrapper - new pkg to hold common script&lt;br /&gt;
* pluto-xine-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* lmce-vlc-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* pluto-boot-scripts - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
* pluto-storage-devices - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30777 ==&lt;br /&gt;
* lmce-core - depend on openswan&lt;br /&gt;
* pluto-system-database - pkg updates&lt;br /&gt;
* pluto-boot-scripts - remove check for openswan from bootscript&lt;br /&gt;
* pluto-generic-serial-device - update to ruby 1.9.1&lt;br /&gt;
&lt;br /&gt;
== Update 30773==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller internals to now include polling, so as to make sure floorplan data is accurate. Changes underlying mechanisms for how lights are handled in preparation for extending additional support for Cree lights and sensors devices.&lt;br /&gt;
&lt;br /&gt;
== Update 30767 ==&lt;br /&gt;
* lmce-diskless-tools - update diskless archive name to reflect current compression method xz.&lt;br /&gt;
* pluto-website-admin (220) - updates to internet radio, moves add channels to a seperate page.  Thanks Dap-P!&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
* pluto-vdr - adds missing depends on vdr in trusty&lt;br /&gt;
* lmce-core - update depends to new pkg name lmce-avwizard-sounds&lt;br /&gt;
* pluto-avwizard - update depends to new pkg name lmce-avwizard-skins-basic&lt;br /&gt;
* lmce-clock-screen-saver - make the clock screen saver use the WMController/wmctrl methods for setting window visibility to be compatible with Orbiter. (TSCHAK) (Trusty only)&lt;br /&gt;
* pluto-storage-devices - Make sure that smbpasswd is used to create or update sambahelper&#039;s password (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30726 ==&lt;br /&gt;
* pluto-vdr - VDR player&#039;s package assumed a correctly installed vdr package which includes an entry in /etc/default for vdr. We no longer fail on a missing file.&lt;br /&gt;
&lt;br /&gt;
== Update 30724 ==&lt;br /&gt;
* lmce-weather - updates to weather sources, add OpenWM source.  Thanks SBCC and cfernandes!&lt;br /&gt;
* lmce-skins-* - adds missing telecom icons, updates/adds weather icons&lt;br /&gt;
* lmce-avwizard-sounds - remove extraneous stuff from pkg, reduce pkg size back to normal.  Proper replaces/conflicts/data...&lt;br /&gt;
* lmce-avwizard-skin-basic - Proper replaces/conflicts/data...&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
&lt;br /&gt;
== Update 30718 ==&lt;br /&gt;
* lmce-core - new depends on lmce-skins*&lt;br /&gt;
* lmce-md-meta - add depends on pnp-detection scripts&lt;br /&gt;
* lmce-hybrid - new depends on lmce-skins*&lt;br /&gt;
* pluto-avwizard (556,555) - add pciutils as a depends, still need to deal with multiarch stuff so this will break armhf, we will not update armhf for now, it doesn&#039;t use avwizard but does install it.&lt;br /&gt;
* lmce-diskless-tools - minor diskless create fixups&lt;br /&gt;
* pluto-orbiter - missing depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio script&lt;br /&gt;
* pluto-website-admin (220) - recognize MIDs as top level devices&lt;br /&gt;
* pluto-mythtv-player - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 30628 ==&lt;br /&gt;
* *-database - fix install issues&lt;br /&gt;
&lt;br /&gt;
== Update 30622 ==&lt;br /&gt;
* pluto-orbiterinstallers - fix depends issue&lt;br /&gt;
* pluto-system-database - lots of compat updates&lt;br /&gt;
* lmce-* - lots of compat updates&lt;br /&gt;
* pluto-* - lots of compat updates&lt;br /&gt;
&lt;br /&gt;
== Update 30618 ==&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio scripts&lt;br /&gt;
* pluto-website-admin (220) - updated internet radio page&lt;br /&gt;
&lt;br /&gt;
== Update 30571 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - send &amp;quot;Device is turned on or off&amp;quot; event when appropriate so the corresponding event works as expected&lt;br /&gt;
* lmce-squeezeslave (762) - set to pnp create without prompting&lt;br /&gt;
* lmce-runtime-dependencies (903) - pkg to help consolidate runtime depends.&lt;br /&gt;
* lmce-core (888) - updated depends&lt;br /&gt;
* lmce-md-meta (450)- updated depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated depends&lt;br /&gt;
* pluto-createdevice (303,304) - updated depends&lt;br /&gt;
* lmce-weather(838,839) - fix potential segfault&lt;br /&gt;
* pluto-website-admin (220) - add &amp;quot;replace node&amp;quot; button to advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 30549 ==&lt;br /&gt;
* pluto-mythtv-player - fix misaligned data values during mythtv.txt creation.&lt;br /&gt;
&lt;br /&gt;
== Update 30526 ==&lt;br /&gt;
* lmce-core - new pkg&lt;br /&gt;
* lmce-hybrid - pkg depends changes&lt;br /&gt;
* lmce-md-meta - pkg depends changes&lt;br /&gt;
* pluto-dcerouter - pkg depends changes&lt;br /&gt;
* pluto-photo-screen-saver - pkg depends changes&lt;br /&gt;
* pluto-boot-scripts - pkg depends changes&lt;br /&gt;
* pluto-orbiter - pkg depends changes&lt;br /&gt;
* pluto-simplephone - pkg depends changes&lt;br /&gt;
* pluto-website-admin - pkg depends changes&lt;br /&gt;
* lmce-mythtv-scripts - pkg depends changes&lt;br /&gt;
* pluto-system-database - pkg depends changes&lt;br /&gt;
* lmce-squeezeslave (762) - fix launch script, automatically create associated squeezebox player on the core.&lt;br /&gt;
* pluto-std-plugins - run New_PnP_MD.sh for new MID devices as well.&lt;br /&gt;
* lmce-diskless-tools - don&#039;t fail on invoke-rc.d during diskless create, exit gracefully and continue.&lt;br /&gt;
* pluto-mythtv-player - fix diskless create failures due to old hacks.  more work is needed here overall on mythtv integration.&lt;br /&gt;
&lt;br /&gt;
== Update 30419 ==&lt;br /&gt;
* pluto-slim-server - Make sure to turn off all Squeeze* devices when Slim Server Streamer starts or restarts (so that squeezelite does not hog sound cards.)&lt;br /&gt;
* pluto-hald (529,530) - add device node path to pnpqueue with v4l devices during detection&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - update for new lib version&lt;br /&gt;
&lt;br /&gt;
== Update 30384 ==&lt;br /&gt;
* pluto-confirm-dependencies - depend on pluto-install-scripts.&lt;br /&gt;
* pluto-disk-drive (122,141) - remove hal bits that dealt with old jukebox bugs.&lt;br /&gt;
* pluto-capture-card-scripts (580) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-pnp-detection (562) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-storage-devices (533) - convert autofs from hal to udev.&lt;br /&gt;
* pluto-bootscripts (234) - disable starting the hald since we&#039;re using udev now, remove false &#039;fail&#039; messages during reboot/shutdown&lt;br /&gt;
* pluto-slim-server-streamer - make one tweak (do not delete m_mapStreamsToPlayers entry in CMD_Stop). Streaming now works consistently, properly, with squeezebox devices and their clones. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30354 ==&lt;br /&gt;
* pluto-hald (529,530) - fix attempt to fire event for child device of usb-dongle.&lt;br /&gt;
* pluto-slim-server-streamer - Implement FF/REW (transport) trick-play control for Squeeze* devices. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30341 ==&lt;br /&gt;
* pluto-bootscripst - fixes for PPPoE users to not autostart the external interface.&lt;br /&gt;
* pluto-slim-server-streamer - Fix to power off squeezebox player when stream is not in use. This allows softsqueeze/squeezeslave/squeezelite players to let go of a sound device, when not in use (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30332 ==&lt;br /&gt;
* pluto-orbiter (118,139) - disable old hid device functionality.  Anyone who needs it can request a special build which will be provided at no extra charge. ;)&lt;br /&gt;
* pluto-bootscripts (234) - disable Gamepad Radar, functionality now in hal through udev&lt;br /&gt;
* pluto-avwizard (556,555) - fixes mangling of RemoteCmd when &amp;gt;1 remote is detected.&lt;br /&gt;
* pluto-hal-device-finder (535,536) - update to use udev rather than hal.&lt;br /&gt;
* pluto-hald (529,530) - update to use udev rather than hal.&lt;br /&gt;
* pluto-system-database (211) - updates for new detection method (joystick, cec-adaptor), update dependency data for hal pks to reflect dropping hald and add depends on udev now.&lt;br /&gt;
&lt;br /&gt;
== Update 30219 ==&lt;br /&gt;
* pluto-bootscripts (234) - Fail2ban firewall update script, and missing radioscript.sh.&lt;br /&gt;
* pluto-website-admin - Place set for rules on the firewall and bantime for fail2ban integration.&lt;br /&gt;
* pluto-std-plugins (116,135) - adds heirloom-mailx for &#039;mailx -r&#039; functionality, fixes e-mail in general info plugin&lt;br /&gt;
&lt;br /&gt;
== Update 30068 ==&lt;br /&gt;
* lmce-advanced-ip-camera(813,812) - Fixed high cpu usage if connection to camera can not be made&lt;br /&gt;
&lt;br /&gt;
== Update 30052 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - fix android pkg meta data, need to rebuild all together&lt;br /&gt;
&lt;br /&gt;
== Update 30051 ==&lt;br /&gt;
* pluto-updateentarea (341,342) - use DAY/NIGHT in watching/stopped watching events to make them smarter&lt;br /&gt;
* pluto-std-plugins (116,135) - Implement Get Device Status in General Info Plugin&lt;br /&gt;
* pluto-bootscripts (234) - fix VPN ip up/down&lt;br /&gt;
&lt;br /&gt;
== Update 30025 ==&lt;br /&gt;
* pluto-system-database (211) - column def updates&lt;br /&gt;
* pluto-local-database (214) - new Firewall columns and new VPN columns for Users table.&lt;br /&gt;
&lt;br /&gt;
== Update 30014 ==&lt;br /&gt;
* lmce-transmission-client (852) - fix postinst issue.  (Thanks SBCC)&lt;br /&gt;
== Update 29994 ==&lt;br /&gt;
More VLC Player changes to make it at least somewhat usable, there were some ugly bugs that came to light once i plopped it onto my production system. Right now sound device is plughw:0,3, if you need a different one, change it in the code.  (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* lmce-vlc-player - many little fixes to make it suck less.&lt;br /&gt;
&lt;br /&gt;
== Update 29990 ==&lt;br /&gt;
I am working on the VLC player, and it is breathing enough for basic testing. Please do not use in production environment. There is still a lot of code to write (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - updates for VLC player (TSCHAK)&lt;br /&gt;
* vlc-player (882,884) - Very early alpha developer test of the VLC player. (TSCHAK)&lt;br /&gt;
* vlc-plugin (874,875) - Very alpha developer test of the VLC plugin. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 29984 ==&lt;br /&gt;
* pluto-system-database (211) - fix bad repos in pkgs&lt;br /&gt;
* pluto-website-admin - just because I think it is necessary :-)&lt;br /&gt;
&lt;br /&gt;
== Update 29983 ==&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36918</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36918"/>
		<updated>2017-02-23T08:07:01Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: /* Upcoming fixes... */ Issue #2730&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the 1204 changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo much easier.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please include the pkg #s to facilitate building on 3x i386 targets in addition to 2x amd64 and 3x armhf targets where full builds are not always practical.  Keep in mind that most packages are referred to by two (2) package numbers from the database, a source package and a binary package.  &amp;quot;Thank you for your co-operation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
pluto-std-plugins (116,135) - Issue #2730 - Media Plugin changes to add support for FIFO capture card playback to VLC Player (route messages to VLC Player if it exists) -TSCHAK&lt;br /&gt;
lmce-vlc-player (884,882) - Issue #2730 - Implement FIFO device playback for local devices similar to file playback. (TBD: recompile VLC with PVR functionality) -TSCHAK&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1604 i386/amd64 201702201438+325cc736 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix for multiple cameras and Get Image command&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue 2727, Issue 2728 - Trick play overhaul and fix audio glitches when trick play is used. &lt;br /&gt;
* pluto-boot-scripts (234) - SetupAudioVideo.sh - slight change to libvlc.conf so that trick play OSD works.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1204-1404-1604/amd64 c20633ff ==&lt;br /&gt;
* pluto-website-admin (220) - Added the case for section energyGraph and sipConf, fixed permissions for mysql asteriskuser, add sql credentials for myth, change MYSQL_NUM to MYSQLI_NUM&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1404/amd64 a7c10426 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add backports so 1204 diskless create works&lt;br /&gt;
* lmce-oauth2-server (668) - initial build of lmce oauth2 server for cloud interfacing&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404/1604 i386 - 1404x64 - 201611190055+fee90f43 ==&lt;br /&gt;
* pluto-boot-scripts (234) - database upgrades&lt;br /&gt;
* pluto-orbitergen (226,227) - database upgrades&lt;br /&gt;
* pluto-pluto-main-db (201,237) - database upgrades&lt;br /&gt;
* pluto-pluto-security-db (278,277) - database upgrades&lt;br /&gt;
* lmce-asterisk (replacement) - database upgrades&lt;br /&gt;
* pluto-system-database (211) - database upgrades&lt;br /&gt;
* pluto-local-database (214) - database upgrades&lt;br /&gt;
* pluto-security-database (256) - database upgrades&lt;br /&gt;
* pluto-telecom-database (472) - database upgrades&lt;br /&gt;
* pluto-media-database (233) - database upgrades&lt;br /&gt;
* pluto-database-settings (407) - database upgrades&lt;br /&gt;
* pluto-sqlcvs (212,213) - database upgrades&lt;br /&gt;
* pluto-std-plugins (116,135) - database upgrades&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609281853+9638f5bc ==&lt;br /&gt;
* pluto-website-admin (220) - #2705 fixed syntax error.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609271106+39103855 ==&lt;br /&gt;
* pluto-website-admin (220) - Update firewall.php GUI change some fields where reset to the default values. now the db data is honored.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** don&#039;t create initramfs for Raspbian Jessie diskless filesystems.&lt;br /&gt;
** ensure firstboot runs on diskless Jessie RPis.&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** stop/start rather than restart dhcp server, it&#039;s like nuking the site from orbit... only way to be sure.&lt;br /&gt;
** Firewall blocks udp 1900 UpNP traffic from externalinterface.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609172308+325de35d ==&lt;br /&gt;
* lmce-autotag (780, 781) linuxmceTag - fix comparison issue with media type.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609131230+5eaa4671/201609131753+5eaa4671 ==&lt;br /&gt;
* pluto-boot-scripts (234) - send dhcp vendor specific options only to wired raspberry pis.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 201609102226+fda3da63 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** rpi native pxe additions/updates&lt;br /&gt;
** extend startup timeout when booting under systemd&lt;br /&gt;
* lmce-diskless-tools (627,628) - rpi native pxe additions/updates&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DT updates for rpi native pxe&lt;br /&gt;
** add Serial Number Device Data to RPi DTs&lt;br /&gt;
** sets default PK_Distro to 22 (jessie) for RPi DTs&lt;br /&gt;
** new device data for &amp;quot;Standard Energy Meter&amp;quot;&lt;br /&gt;
* pluto-std-plugins (116,135)&lt;br /&gt;
** stores energy reading in state field for Standard Energy Meter&lt;br /&gt;
** fixes dcerouter crash when searching media&lt;br /&gt;
* pluto-updatemedia (405,406) - fix segfault when a dir is attempting to be tagged directly (without a .id3)&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - don&#039;t fail pkg install if simplephone is not running.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-i386 - 1404-i386/amd64 201607240235+899786ab ==&lt;br /&gt;
* pluto-website-admin (220) - Mysqli_real_escape_string did not work. a start with ipv6 firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/i386 201607202218+14cba09a ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) - Stream Bouncing, Additional settings for location, removed debug output, queue functionality.&lt;br /&gt;
&lt;br /&gt;
== Update 201607181902+d4cec1a0 1404-i386/amd64 - 1204-i386 ==&lt;br /&gt;
* pluto-website-admin - Update to qOrbiterGenerator.php for newer PHP version&lt;br /&gt;
&lt;br /&gt;
== Update 201607161239+6d72c3f9 1404-i386/amd64 1204-i386 ==&lt;br /&gt;
* pluto-website-admin (220) - #2678 fix Warning: Invalid argument supplied for foreach() in /var/www/lmce-admin/include/dhcpd-tools/DHCPd-parse.php on line 113&lt;br /&gt;
* pluto-boot-script&lt;br /&gt;
&lt;br /&gt;
== Update 201607151016+5b5adba3 1404/i386 &amp;amp; amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule use another escape method.&lt;br /&gt;
&lt;br /&gt;
== Update 201607122332+f0fc9c6b 1404/i386 ==&lt;br /&gt;
* pluto-boot-scripts (234) - fix #2684 clients cannot access internet when firewall is disabled. &lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule.&lt;br /&gt;
&lt;br /&gt;
== Update 201607050613+601c67da 1404-i386/amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - more fixes to the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update trusty i386/amd64 201606301955+614dfa7b ==&lt;br /&gt;
* pluto-website-admin (220) - fix for outside access port 443 not uncheckable.&lt;br /&gt;
* pluto-boot-scripts (234) - fix for not dele rules from iptables from outsideAccess.php&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201606201908+31b25c52 ==&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** unicode reading/writing working properly&lt;br /&gt;
** coverart writing to tags working properly&lt;br /&gt;
** .id3 files handled by taglib instead of id3lib.&lt;br /&gt;
** General Object Frame (GEOB) reading/writing working properly (all lmce attributes are stored in id3v2 GEOB tags for .id3/.mp3 files)&lt;br /&gt;
* pluto-website-admin (220) - more updates for mysql -&amp;gt; mysqli conversion&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201605312323+08fb8202 ==&lt;br /&gt;
* pluto-website-admin (220) - fix Text Command button to honor parameters from Screen_CommandParameter&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller to fix spamming of logs with constant updates of device data.&lt;br /&gt;
&lt;br /&gt;
== Update trusty-i386/amd64 201605310531+04df53f5 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - get the stream uri from onvif camera and save it in a device data for use by other devices&lt;br /&gt;
* pluto-website-admin (220) - adate to adodb 5.20.4 and change db driver from mysql to mysqli&lt;br /&gt;
* pluto-updatemedia (405,406) - tag writing/deletion of values update&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201605261039+410242d2 ==&lt;br /&gt;
* pluto-media-database (233) - remove FatGroupBy query as it is massive and no longer required&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** FIX UpdateMedia not detecting changes in files on disk.  Fixes: UpdateMedia not reading modification times properly.&lt;br /&gt;
** improve image reading/writing for mp3/mp4 files, add image handling for asf/wma, improve track art-&amp;gt;performer/album artist matching.&lt;br /&gt;
** don&#039;t add network shares to inotify watch list&lt;br /&gt;
* pluto-system-database (211) - new qml-* pkg definitions for qorbiter&lt;br /&gt;
* pluto-plutoutils (196,197) - add fn&#039; to determine filesystem type of a file&lt;br /&gt;
* lmce-disked-interactor (897,898) - make sure we see the core and have an IP prior to attempting contact&lt;br /&gt;
* pluto-bootscripts (234) - make sure we see the core prior to continuing to boot an MD&lt;br /&gt;
* pluto-website-admin (220) - various fixes in the media page&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 - 201605171740 c6d63dc6 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3, ogg, flac, mp4, wv, wav, oga, mpc, spx, opus, tta, m4a, m4r, m4p, 3g2, m4v, wma, asf, aif, aiff, afc, aifc, ape, s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64  201605131052+2542a526 ==&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - udev rule to ignore usbhid portion of device, permits orbiter to enter screensaver&lt;br /&gt;
* pluto-bootscripts (234) - permit devices that have died 50 times to attempt to restart after a router reload. Firewall fix for manual defined chains.&lt;br /&gt;
* pluto-sound-card-scripts (579) - don&#039;t assume cardid=1, determine phoenix cardid from aplay.&lt;br /&gt;
* pluto-media-database (233) - additional AttributeType &amp;quot;Album Artist&amp;quot;&lt;br /&gt;
* lmce-media-identifier (931,932) - updates for Album Artist tag.&lt;br /&gt;
* pluto-orbiter (119,138) - updates for Album Artist tag.&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** updates for Album Artist tag&lt;br /&gt;
** fix mainMediaFileSync.php. OutsideAccess page showing the options (again). &lt;br /&gt;
** And typo fixes for issue #2643. &lt;br /&gt;
** Firewall page reload issue 2636#. Firewall gui do not show &amp;quot;NULL&amp;quot;.&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3:ogg:flac:mp4:wv:wav::oga:mpc:spx:opus:tta:m4a:m4r:m4p:3g2:m4v:wma:asf:aif:aiff:afc:aifc:ape:s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update jessie 20160427 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for RPi&lt;br /&gt;
* lmce-disked-md-rpi2 (889) - +x firstboot_md_rpi2 to ensure it&#039;s picked up properly&lt;br /&gt;
&lt;br /&gt;
== Update jessie 201604130947+0083d387 ==&lt;br /&gt;
== Update 1204/1404-i386/amd64 201604101031-0b47a986 ==&lt;br /&gt;
* pluto-website-admin, pluto-boot-scripts (220,234) - Firewall Fixes for GUI and inner working of the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603251155+a1c0f6ea ==&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - File view implemented. Fixed not being able to leave resume menu.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603222119+336464d8 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller  to fix floorplan / status being improperly updated.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t mount optical discs as HDDs&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201603220706+c3c4b899 ==&lt;br /&gt;
* lmce-md-meta (450) - for some reason this is not in the main repo&lt;br /&gt;
* lmce-media-identifier - fixed for libcdio&lt;br /&gt;
&lt;br /&gt;
== Update jessie-rpi 60faa181 ==&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - adds video resizing so UI1 can be exposed while video is playing.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 armhf 31c5d994 ==&lt;br /&gt;
== Update 1404 i386 52e39875 ==&lt;br /&gt;
* pluto-storage-devices (533) - fix ntfs detection&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 - 49a8cbf1 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - a little better device to device template mapping&lt;br /&gt;
* pluto-website-admin (220) - fix adv.zwave page and adding secure devices&lt;br /&gt;
* lmce-disked-* - update the disked md/mid meta/base/device pkgs, specific fixes for 1404 joggler&lt;br /&gt;
* lmce-json-plugin (876,877) - first time addition to the main repo&lt;br /&gt;
* libdvdid0 (replacement) - first time addition to the repo, for use by Media Identifier&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - enable disabling internal volume control, similar to how logitechmediaserver does&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1404(armhf)/jessie(rpi)-a84db86f ==&lt;br /&gt;
* lmce-launch-manager (298,299) - only update squeeze devices when running on the core, redundant elsewhere.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404-87954508 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t fail if dvdcss2 cannot be automatically installed.&lt;br /&gt;
* pluto-hald (529,530) - reinstate tty detection, seperate from usb-serial, use direct parent for udi naming.&lt;br /&gt;
* pluto-boot-scripts (234) - disable buildall, the script doesn&#039;t run so why waste time creating it.&lt;br /&gt;
* lmce-launch-manager (298,299)&lt;br /&gt;
** update squeezebox players on router reloads from Launch_Manager&lt;br /&gt;
** call Config_Device_Changes in startCoreServices to ensure everything gets its&#039; Need Configure flag reset.&lt;br /&gt;
&lt;br /&gt;
== Update a332f49a ==&lt;br /&gt;
* lmce-install-scripts (391) - fix missing quote in MD installation.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix missing &#039;fi&#039; in BootMessage.sh&lt;br /&gt;
** fix usb.1 system serial port listing/translating&lt;br /&gt;
* lmce-media-identifier (931,932) - fix segfault, CDs are identified, cd-ripping functional again&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** prioritize new conf dir over old conf dir, fix install on systems upgraded from 1204-&amp;gt;1404&lt;br /&gt;
** redirect mythweb to html/mythweb&lt;br /&gt;
* pluto-hald (529,530) - updates to serial port naming, specifically for odroid.&lt;br /&gt;
* pluto-storage-devices (533) - fix mounted drive detection and add detection for drives mounted in /proc/cmdline like rpi.&lt;br /&gt;
&lt;br /&gt;
== Update 1204=201602080446+2028f850 &amp;lt;br&amp;gt; 1404=201602071815+c31bc44f ==&lt;br /&gt;
* lmce-install-scripts (391)&lt;br /&gt;
** enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
* lmce-core (888) - enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
* pluto-storage-devices (533) - redo StorageDevices_Radar using blkid for internal HDD identification.  /dev/disk/by-path/ is not present anymore.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
** new VerifyDistro.sh script and call the script on boot.&lt;br /&gt;
*** Preventative mostly.  Intended to ease pain for those that upgrade distros.&lt;br /&gt;
*** Ensure child devices, onscreen orbiter, have the proper PK_Distro set.&lt;br /&gt;
&lt;br /&gt;
== Update 296fdcd3 ==&lt;br /&gt;
* pluto-website-admin (220) - fix depends versioning&lt;br /&gt;
* pluto-hald (529,530) - fix depends versioning&lt;br /&gt;
* pluto-boot-scripts (234) - fix depends versioning&lt;br /&gt;
* pluto-system-database (211) - fix depends versioning&lt;br /&gt;
* pluto-orbitergen (226,227) - fix depends versioning&lt;br /&gt;
* lmce-disked-md-base (801) - fix depends versioning&lt;br /&gt;
* lmce-install-scripts (391) - fix depends versioning&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix depends versioning&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix depends versioning&lt;br /&gt;
* lmce-datalogger-plugin (686,687) - fix depends versioning &lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix depends versioning&lt;br /&gt;
&lt;br /&gt;
== Update f3a444c0 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** use newer .sh script rather than obsolete .pl script for dialplan creation&lt;br /&gt;
** fix Directory listing on cisco phones&lt;br /&gt;
** fix delete buttons on internet radio page.&lt;br /&gt;
* pluto-hald (529,530)&lt;br /&gt;
** add &#039;usb&#039; to &#039;pci&#039; and &#039;platform&#039; as valid bus addresses&lt;br /&gt;
** permit adding of usb devices with usb_serial or tty children&lt;br /&gt;
* pluto-boot-scripts (234) - update SetupAudioVideo.sh to more reliably address nvidia hdmi audio outputs&lt;br /&gt;
* lmce-asterisk (replacement) - live_dangerously for now to get all the necessary Voicemail modules to load&lt;br /&gt;
* pluto-system-database (211) - new DD Number of jobs for orbiter plug-in/orbitergen&lt;br /&gt;
* pluto-boot-scripts (234) - updates to RegenOrbiter scripts for parallel job queued orbiter generation.&lt;br /&gt;
* pluto-orbitergen (226,227) - new depends on GNU parallel&lt;br /&gt;
* lmce-disked-md-base (801) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* lmce-install-scripts (391) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - remove hardcoded ip address, get from db instead.&lt;br /&gt;
* lmce-diskless-tools (627,628) - only run UpdateDebCache.sh if it is executable&lt;br /&gt;
* lmce-datalog-plugin(686,687) - fix pear install command in postinst&lt;br /&gt;
* lmce-advanced-ip-camera(812,813) - add basic onvif support (snapshot,PTZ)&lt;br /&gt;
&lt;br /&gt;
== Update 31792 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of new External_Media_Identifier, testing CDDB ids&lt;br /&gt;
&lt;br /&gt;
== Update 31783 ==&lt;br /&gt;
* pluto-libserial (190,191) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-dcecommon (192,193) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-irbase (194,195) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-plutoutils (196,197) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-vipshared (199,200) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-serializeclass (198,238) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-libbd (239,240) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-ra (247,248) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-main-db (201,237) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-media-db (254,255) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-security-db (278,277) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-sdl-helpers (346,347) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-messagetrans (398,401) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-game-db (675,676) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-windowutils (677,678) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-datalog-db (688,689) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
&lt;br /&gt;
== Update 31782 ==&lt;br /&gt;
* pluto-std-plugins - fix FK_File search inside Attribute in Media_Plugin&lt;br /&gt;
&lt;br /&gt;
== Update 31774 ==&lt;br /&gt;
* lmce-disked-mid-base (899) - fix error in postinst&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come (this should be in but apt-get is getting 404 errors)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add &amp;quot;remove failed node&amp;quot; command&lt;br /&gt;
* pluto-website-admin - add &amp;quot;remove failed node&amp;quot; command for zwave advanced page&lt;br /&gt;
&lt;br /&gt;
== Update 31760 ==&lt;br /&gt;
* lmce-disked-md-base (801) - fix another error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31757 ==&lt;br /&gt;
* lmce-core (888) - overwrite AutostartCore conf value&lt;br /&gt;
* lmce-md-meta (450) - overwrite AutostartMedia conf value&lt;br /&gt;
* lmce-mid-meta (962) - missing deb&lt;br /&gt;
* lmce-hybrid (769) - exit 0 in postinst, just to be sure&lt;br /&gt;
* lmce-disked-md-base (801) - fix error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31754 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - reconnect before send&lt;br /&gt;
&lt;br /&gt;
== Update 31752 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - remove hard coded caller id &#039;Cherryhomes, Tho&#039;, use incoming caller id.&lt;br /&gt;
&lt;br /&gt;
== Update 31750 ==&lt;br /&gt;
* pluto-website-admin (220) - fix postinst error notice on precise.&lt;br /&gt;
* pluto-boot-scripts (234) - (re)start asterisk, otherwise configuration doesn&#039;t occur and sip phones cannot register&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - force-reload apache2 after disabling mythbuntu sites&lt;br /&gt;
* lmce-md-meta (450) - don&#039;t overwrite conf values that are already set&lt;br /&gt;
* *openzwave* (replacement) - version bump, upgrade fixes to upstream files&lt;br /&gt;
&lt;br /&gt;
== Update 31744 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come&lt;br /&gt;
&lt;br /&gt;
== Update 31742 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Gui changes to not confuse people. &lt;br /&gt;
** outsideaccess works together with the firewall. &lt;br /&gt;
** phonelines note on protocol for meaning of &amp;quot;SPA&amp;quot; and a status for this protocol setting, port can be changed if needed else it will be the default (5060).&lt;br /&gt;
&lt;br /&gt;
== Update 31739 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix absolute timed events&lt;br /&gt;
&lt;br /&gt;
== Update 31723 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix nfs-premount script in default diskless image.&lt;br /&gt;
* lmce-dlna(842,843) - compatibility fixes&lt;br /&gt;
* lmce-install-scripts (391) - generate ssh keys so openssh-server can accept connections&lt;br /&gt;
* pluto-createdevice (303,304) - hide errors, specifically during initial package postinst&lt;br /&gt;
* lmce-cec-adaptor (871,872) - fix cec remotes not getting to lmce&lt;br /&gt;
&lt;br /&gt;
== Update 31693 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - Fixes #2530 - fix errors in mythtvdb synchronization scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31686 ==&lt;br /&gt;
* lmce-install-scripts (391) - deal with firstboot stuffenz&lt;br /&gt;
* pluto-system-database (211) - add proxy orbiter DT depends for generic web device&lt;br /&gt;
* pluto-website-admin (220) - order by photo file name in screen saver/photo browser&lt;br /&gt;
* pluto-boot-scripts (234) - try ubiquity before anything else, and reboot after the normal firstboot - breaks live boot on dvd atm&lt;br /&gt;
* lmce-diskless-tools (627,628) - permit i386 diskless image building on amd64 cores, ensure processes are killed in chroot before unmounting (deals with systemd for now)&lt;br /&gt;
&lt;br /&gt;
== Update 31660 ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) &lt;br /&gt;
**PS3 control screen, fix layout issue. adds seperate button group (triangle, circle, etc) and navigation arrows. Also adds power off button to properly exit screen&lt;br /&gt;
* pluto-website-admin (220) - prevent creation of extra &#039;blank&#039; network interfaces&lt;br /&gt;
&lt;br /&gt;
== Update 31655 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - close connection after use&lt;br /&gt;
* pluto-website-admin (220) - fill ServerName var if it is unset, not if it is set.&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - unify service control&lt;br /&gt;
* pluto-boot-scripts (234) - unify service control&lt;br /&gt;
* pluto-dhcpd-plugin (302) - unify service control&lt;br /&gt;
* pluto-disk-monitor (554) - unify service control&lt;br /&gt;
* pluto-mythtv-player (133,152) - unify service control&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - unify service control&lt;br /&gt;
* pluto-raid-tools (617) - unify service control&lt;br /&gt;
* pluto-storage-devices (533) - unify service control&lt;br /&gt;
* lmce-update-system (650,651) - unify service control&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - unify service control&lt;br /&gt;
* pluto-vdr-plugin (466,467) - unify service control&lt;br /&gt;
* pluto-vdr (468,469) - unify service control&lt;br /&gt;
* pluto-database-settings (407) - unify service control&lt;br /&gt;
* lmce-asterisk (replacement) - unify service control&lt;br /&gt;
* lmce-diskless-tools (627,628) - unify service control&lt;br /&gt;
* lmce-install-scripts (391) - unify service control&lt;br /&gt;
* pluto-updatemedia (405,406) - unify service control&lt;br /&gt;
* pluto-newmdinteractor (538,539) - unify service control&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - Fix size issues, floorplan popups.&lt;br /&gt;
&lt;br /&gt;
== Update 31621 ==&lt;br /&gt;
* pluto-mythtv-player (133,152) - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 31618 ==&lt;br /&gt;
* lmce-asterisk (replacement) - update db for chan_sccp-v4.2 and fix bug requiring manual asterisk reload on boot&lt;br /&gt;
&lt;br /&gt;
== Update 31615 ==&lt;br /&gt;
* pluto-* - rebuild with new libraries&lt;br /&gt;
* lmce-* - rebuild with new libraries&lt;br /&gt;
&lt;br /&gt;
== Update 31606 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix EPG data on orbiters, myth stores everything in UTC now.&lt;br /&gt;
* pluto-pluto-main-db (201,237) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-media-db (254,255) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-security-db (277,278) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-datalog-db (688,689) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-game-db (675,676) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-updateentarea (341,342) - don&#039;t send empty play command when resetting alarm&lt;br /&gt;
&lt;br /&gt;
== Update 31580 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - use bypass-event to avoid watching media events when playing alerts&lt;br /&gt;
* pluto-updateentarea (341,342) - send bypass-event with security event commands&lt;br /&gt;
* libcec3 debs (replacement) - removes conflict data with libcec2&lt;br /&gt;
&lt;br /&gt;
== Update 31575 ==&lt;br /&gt;
* lmce-asterisk (replacement) - play back alert notification file&lt;br /&gt;
* pluto-std-plugins (116,135) - create alert notification file with correct format&lt;br /&gt;
* pluto-boot-scripts (234) - fixes for nvidia drivers on precise, upgrades to nvidia-340&lt;br /&gt;
* lmce-avwizard-sounds (replacement) - don&#039;t copy fakeroot files (it is redundant it is)&lt;br /&gt;
* video-wizard-videos (replacement) - deb is back to normal size, not 2x&lt;br /&gt;
&lt;br /&gt;
== Update 31553 ==&lt;br /&gt;
* pluto-website-admin (220) - fix error that wipes out the apache2.conf&lt;br /&gt;
* pluto-hald (529,530) - fix segfaults with firewire hardware&lt;br /&gt;
&lt;br /&gt;
== Update 31547 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some API changes in OZW 1.3, more device template mappings&lt;br /&gt;
* pluto-boot-scripts (234) - typo fix for nvidia drivers&lt;br /&gt;
* lmce-disked-md-base (801) - set hostname on disked MDs, set timezone on disked MDs&lt;br /&gt;
* lmce-install-scripts (391) - set hostname on disked MDs, set timezone on disked MDs &lt;br /&gt;
* pluto-website-admin was generated---&amp;gt; lmce-website-admin (220) - set apache2 ServerName to silence error on boot&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates, revert to ruby 1.8&lt;br /&gt;
* pluto-generic-serial-device (307,335) - admit defeat for now, revert to ruby 1.8&lt;br /&gt;
&lt;br /&gt;
== Update 31533 ==&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31520 ==&lt;br /&gt;
* chan-sccp_v4.2 (replacement) - Upgrad asterisk SCCP channel driver to newest version&lt;br /&gt;
* pluto-vdr-plugin (466,467) - implement background loading of EPG from VDR to avoid crashes due to commands not completing on time&lt;br /&gt;
* pluto-boot-scripts (234) - some logic changes and added messages for video driver install debugging&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - link new channels dir to old channels dir for backwards compatibility&lt;br /&gt;
&lt;br /&gt;
== Update 31503 ==&lt;br /&gt;
* *zwave* (replacement) - new upstream openzwave version 1.3.1224&lt;br /&gt;
* lmce-zwave-ozw(505,506) - build against new libopenzwave1.3&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates&lt;br /&gt;
* lmce-disked-interactor (897,898) - make disked interactor aware of wheezy and jessie.&lt;br /&gt;
&lt;br /&gt;
== Update 31500 ==&lt;br /&gt;
* *myth* (replacement) - fix depends on non-existent packages&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst - verified installing now&lt;br /&gt;
* pluto-std-plugins (116,135) - Use integer comparison for brightness state&lt;br /&gt;
&lt;br /&gt;
== Update 31491 ==&lt;br /&gt;
* lmce-avwizard-skin-basic (replacement) - fix packaging of avwizard skin&lt;br /&gt;
* *myth* (replacement) - mythtv 0.27.5+fixes with Schedules Direct fix included&lt;br /&gt;
* *asterisk* (replacement) - asterisk 11.7 backport from trusty&lt;br /&gt;
* libical* (replacement) - for asterisk 11.7&lt;br /&gt;
* *cec* (replacement) - libcec3&lt;br /&gt;
* libplatform* (replacement) for libcec3&lt;br /&gt;
* lmce-cec-adaptor (871,872) - build against libcec3&lt;br /&gt;
* lmce-mediatomb (702) - fix pkg installation&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - update protocol version and secret word (shhh) for 0.27.5+fixes&lt;br /&gt;
* lmce-diskless-tools (627,628) - remove call to obsolete script in Diskless_Setup.sh&lt;br /&gt;
* pluto-vdr-plugin (466,467) - return full EPG (used in qOrbiter EPG Grid), improve communication speed with SVDRP&lt;br /&gt;
* pluto-slim-server-streamer (289,290) - emit time code event, fix duration parsing&lt;br /&gt;
* pluto-boot-scripts (234) - fix headless booting, update 1404 nvidia driver&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* lmce-md-meta (450) - add depends on alsa-utils&lt;br /&gt;
* pluto-website-admin (220) - Fix cdrviewer (Call Details Records) to accept SSL conections as well, firewall gui change to set Offline rules in red as they are not executed.&lt;br /&gt;
* pluto-app-server (126,145)- new poweroff mode I for ignore, since N is already in use&lt;br /&gt;
&lt;br /&gt;
== Update 31420 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add depends on pluto-boot-scripts for deb cache script&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31411 == &lt;br /&gt;
* pluto-avwizard (555,556) - fix depends on avwizard skins basic, should no longer care about version&lt;br /&gt;
* pluto-boot-scripts (234) - more explicity logic for core only booting, fix startup script db errors&lt;br /&gt;
* lmce-update-system (650,651) - remove and disable old init.d script from /etc/init.d&lt;br /&gt;
* pluto-plutodhcp (330,491) - depends on apparmor&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-dhcpd-plugin (302) - remove hardcoded IP addresses from configure scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31387 ==&lt;br /&gt;
* lmce-weather-plugin - make change to allow for tonight&#039;s forecast data (TSCHAK)&lt;br /&gt;
* lmce-asterisk (replacement) - remove obsolete phonetic engines and replace with espeak, voices remain the same&lt;br /&gt;
* mbrola (replacement) - base mbrola pkg for mbrola voices (add armhf binary)&lt;br /&gt;
* pluto-asterisk (270,271) - generate fr and de voicemail menus with espeak now&lt;br /&gt;
* lmce-core (888) - add depends on iptables&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31378 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Start_KDE.sh ownership fix, AV config updates&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-avwizard (555,556) - update pkgs &amp;amp; depends &amp;amp; config scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - do not run update deb_cache during dvd creation&lt;br /&gt;
* pluto-x-scripts (520) - fixups to Xconfigure.sh&lt;br /&gt;
&lt;br /&gt;
== Update 31356 ==&lt;br /&gt;
* pluto-system-database (211) - update depends&lt;br /&gt;
* pluto-orbiter (119,138) - update depends&lt;br /&gt;
* lmce-diskless-tools (627,628) - speedup dpkg in diskless create, fix missing quotes&lt;br /&gt;
&lt;br /&gt;
== Update 31352 ==&lt;br /&gt;
* pluto-motion-wrapper - more config file location fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 31351 ==&lt;br /&gt;
* pluto-boot-scripts (234) - change service &#039;nis&#039; to &#039;ypserv&#039;, nis is no longer a service name&lt;br /&gt;
* pluto-website-admin (220) - remove &#039;idiot&#039; text, let&#039;s be nice to people.&lt;br /&gt;
* lmce-core (888) - do not create and config under ubiquity&lt;br /&gt;
* lmce-md-meta (450) - do not create and config under ubiquity&lt;br /&gt;
* motion (replacement) - fix bad config file setting in rules&lt;br /&gt;
&lt;br /&gt;
== Update 31337 ==&lt;br /&gt;
* motion (replacement) - new version of motion to match new configuration values generated by linuxmce&lt;br /&gt;
&lt;br /&gt;
== Update 31331 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix for brightness events&lt;br /&gt;
* pluto-boot-scripts (234) - fix kdm disabling, start ubiquity after network config&lt;br /&gt;
* lmce-diskless-tools (627,628) - add upstart overrides for kdm&lt;br /&gt;
* lmce-install-scripts (391) - start ubiquity after network config&lt;br /&gt;
&lt;br /&gt;
== Update 31314 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add missing depends&lt;br /&gt;
&lt;br /&gt;
== Update 31292 ==&lt;br /&gt;
* lmce-core-locator (replacement) - (1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-system-database (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* All .debs created by MakeRelease - removal of all Pre-Depends, everything is now a Depends entry (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
== Update 31228 ==&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-local-database&lt;br /&gt;
&lt;br /&gt;
== Update 31214 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package (not in repo, need build-replacements.sh svn up&#039;d?)&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - preinst/postinst updates&lt;br /&gt;
* pluto-boot-scripts (234) - preinst/postinst updates&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-disked-md-base (801) - firstboot updates&lt;br /&gt;
&lt;br /&gt;
== Update 31187 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package&lt;br /&gt;
* pluto-confirm-dependencies (281,272) - new depends on lmce-install-scripts (fixes unable to apt-get dist-upgrade)&lt;br /&gt;
* lmce-md-meta (450) - new depends on nfs-common, openssh-server and pastebinit&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - update depends, preinst/postinst&lt;br /&gt;
* pluto-boot-scripts (234) - depends &amp;amp; preinst/postinst updates&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - add override mythweb defaults in pkg preinst&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - update depends&lt;br /&gt;
&lt;br /&gt;
== Update 31133 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** enable WakeMDs.sh to wake any halted MDs.&lt;br /&gt;
** consolidate all boot script launching to /etc/init.d/linuxmce&lt;br /&gt;
* pluto-avwizard (555,556) - moves start script to /usr/pluto/bin, called by /etc/init.d/linuxmce now&lt;br /&gt;
* lmce-update-system (650,651) - removes init.d script, called by /etc/init.d/linuxmce now&lt;br /&gt;
* pluto-website-admin (220) - GUI changes on network settings if an bridge is configured on the db.&lt;br /&gt;
* lmce-core (888) - depend on pluto-asterisk, lmce-asterisk, lmce-install-scripts&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* pluto-generic-serial-device (307,335) - wildshot attempt at fixing segfaults&lt;br /&gt;
&lt;br /&gt;
== Update 31103 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** Network bridging now possible  for wifi AP to have the same network as the local lan. &lt;br /&gt;
** ipv6 on/off for network interfaces. Read multiple ipv6 interfaces from the db.&lt;br /&gt;
** re-enable HaltMDs.&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* libqhttpserver (912) needed for linuxmce nvr&lt;br /&gt;
* lmce-launch-manager - (298,299) - ?&lt;br /&gt;
&lt;br /&gt;
== Update 31087 ==&lt;br /&gt;
* lmce-weather (838,839) - Fix a serious bug in getconfig where incorrect configuration device data would crash program. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 31083 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes #2422, advanced zwave page broken in chrome&lt;br /&gt;
* pluto-system-database (211) - thumbnail screen fixes&lt;br /&gt;
&lt;br /&gt;
== Update 31074 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** setEa2.php - Fix settings for creating entertain area.&lt;br /&gt;
** qOrbiterGenerator.php - Fix erroneous EA creation by removing it.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Fix incorrect setting for enabling / disabling motion.&lt;br /&gt;
&lt;br /&gt;
== Update 31069 ==&lt;br /&gt;
* pluto-website-admin (220) - setEa2.php Fix settings for creating entertain area.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Initial build.&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (881) - Large update of skins and internals.&lt;br /&gt;
&lt;br /&gt;
== Update 31061 ==&lt;br /&gt;
* lmce-squeezeslave (762) - Add configuration DD to command line&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DB package updates&lt;br /&gt;
** restore previous video remote layout with Options button to select subtitles/audio tracks/video tracks from a datagrid list.&lt;br /&gt;
* pluto-website-admin (220) - firewall.php edit rules for non advanced firewall and some other small fixes.&lt;br /&gt;
* lmce-asterisk (replacement) - sip config modules to avoid autoload.&lt;br /&gt;
&lt;br /&gt;
== Update 31051 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** firewall.php not adding rules now fixet.&lt;br /&gt;
** Test buttons for Hue lights&lt;br /&gt;
** Security outsideAccess page now works nicely with the new firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 31044 ==&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
&lt;br /&gt;
== Update 31031 ==&lt;br /&gt;
* pluto-website-admin (220) - firewall.php after a strange fault and some layout fixes.&lt;br /&gt;
* lmce-mediatomb (702) - don&#039;t assume mediatomb is already running.&lt;br /&gt;
&lt;br /&gt;
== Update 31013 ==&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* pluto-boot-scripts (234) - Network Parameter count for more interfaces set and Network firewall accepting postrouting Masquerade  for other network interfaces.&lt;br /&gt;
&lt;br /&gt;
== Update 30985 ==&lt;br /&gt;
* pluto-website-admin (220) - #2268 fail2ban integration logging failed user login attempt.&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** #2268 fail2ban script not insert existing rules to our db.&lt;br /&gt;
** Support for audio output select on rpi via web admin&lt;br /&gt;
* lmce-diskless-tools (627,628) - update syslinux depends to syslinux-common&lt;br /&gt;
* lmce-omx-player (829,830) - Honour audio output selection of rpiMD&lt;br /&gt;
* lmce-squeezeslave (762) - Fix detection for squeezelite&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - further fixes&lt;br /&gt;
* lmce-usb-gamepad (795,796) - rewrite the whole main loop to suck less. hold-down repeats work, input handling more sane.&lt;br /&gt;
&lt;br /&gt;
== Update 30926 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Fix for #2368 insert firewall rules en #2064 edit and delete chains (except some system chains).&lt;br /&gt;
** Support for brightness based events.&lt;br /&gt;
* pluto-std-plugins (116,135) - Support for brightness based events&lt;br /&gt;
* lmce-omx-plugin (831,832) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** Database additions for XBOX 360 Gamepad (device templates, package)&lt;br /&gt;
** Modification of OMX Plugin to allow priority to be changed.&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - the XBOX 360 Gamepad driver, uses xboxdrv userspace driver.&lt;br /&gt;
* lmce-usb-gamepad (795,796) - additions here for above XBOX 360 Gamepad support.&lt;br /&gt;
&lt;br /&gt;
== Update 30862 ==&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress can now read latest files per linuxmce user.&lt;br /&gt;
&lt;br /&gt;
== Update 30860 ==&lt;br /&gt;
* lmce-weather (838,839) - some fixes by cfernandes&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress.&lt;br /&gt;
* pluto-boot-scripts (234) - more mail fixes&lt;br /&gt;
&lt;br /&gt;
== Update 30855 ==&lt;br /&gt;
* pluto-vdr, pluto-vdr-plugin - remove hardcoding of core IP and network address, but depend on the pluto.conf entries for DCERouter.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location (again)&lt;br /&gt;
* lmce-diskless-tools - stop copying apt configs from the core&lt;br /&gt;
* pluto-boot-scripts - fix postfix setup #2393&lt;br /&gt;
&lt;br /&gt;
== Update 30841 ==&lt;br /&gt;
* lmce-avwizard-sounds - fix replaces/conflicts data&lt;br /&gt;
* lmce-skins-basic - fix replaces/conflicts data&lt;br /&gt;
* lmce-avwizard-skin-basic - fix replaces/conflicts data&lt;br /&gt;
&lt;br /&gt;
== Update 30383 ==&lt;br /&gt;
* pluto-website-admin (220) - Add Hue lights related test button.&lt;br /&gt;
* pluto-boot-scripts - Add another option --autobackup to PlutoRestorePoint.sh to allow backup of pluto_main only&lt;br /&gt;
&lt;br /&gt;
== Update 30814 ==&lt;br /&gt;
* pluto-Boot-scripts - Firewall order by place and PK_Firewall to let rules stay on top on the middle or on the bottom.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location&lt;br /&gt;
* lmce-hue-controller (862,863) - Fix bug in adding new lights, now adds serial number.&lt;br /&gt;
* pluto-website-admin (220) - Fix oops relating the missing &#039;.&#039; which caused operations/login.php not to work.&lt;br /&gt;
&lt;br /&gt;
== Update 30783 ==&lt;br /&gt;
* lmce-nbd-client-wrapper - new pkg to hold common script&lt;br /&gt;
* pluto-xine-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* lmce-vlc-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* pluto-boot-scripts - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
* pluto-storage-devices - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30777 ==&lt;br /&gt;
* lmce-core - depend on openswan&lt;br /&gt;
* pluto-system-database - pkg updates&lt;br /&gt;
* pluto-boot-scripts - remove check for openswan from bootscript&lt;br /&gt;
* pluto-generic-serial-device - update to ruby 1.9.1&lt;br /&gt;
&lt;br /&gt;
== Update 30773==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller internals to now include polling, so as to make sure floorplan data is accurate. Changes underlying mechanisms for how lights are handled in preparation for extending additional support for Cree lights and sensors devices.&lt;br /&gt;
&lt;br /&gt;
== Update 30767 ==&lt;br /&gt;
* lmce-diskless-tools - update diskless archive name to reflect current compression method xz.&lt;br /&gt;
* pluto-website-admin (220) - updates to internet radio, moves add channels to a seperate page.  Thanks Dap-P!&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
* pluto-vdr - adds missing depends on vdr in trusty&lt;br /&gt;
* lmce-core - update depends to new pkg name lmce-avwizard-sounds&lt;br /&gt;
* pluto-avwizard - update depends to new pkg name lmce-avwizard-skins-basic&lt;br /&gt;
* lmce-clock-screen-saver - make the clock screen saver use the WMController/wmctrl methods for setting window visibility to be compatible with Orbiter. (TSCHAK) (Trusty only)&lt;br /&gt;
* pluto-storage-devices - Make sure that smbpasswd is used to create or update sambahelper&#039;s password (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30726 ==&lt;br /&gt;
* pluto-vdr - VDR player&#039;s package assumed a correctly installed vdr package which includes an entry in /etc/default for vdr. We no longer fail on a missing file.&lt;br /&gt;
&lt;br /&gt;
== Update 30724 ==&lt;br /&gt;
* lmce-weather - updates to weather sources, add OpenWM source.  Thanks SBCC and cfernandes!&lt;br /&gt;
* lmce-skins-* - adds missing telecom icons, updates/adds weather icons&lt;br /&gt;
* lmce-avwizard-sounds - remove extraneous stuff from pkg, reduce pkg size back to normal.  Proper replaces/conflicts/data...&lt;br /&gt;
* lmce-avwizard-skin-basic - Proper replaces/conflicts/data...&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
&lt;br /&gt;
== Update 30718 ==&lt;br /&gt;
* lmce-core - new depends on lmce-skins*&lt;br /&gt;
* lmce-md-meta - add depends on pnp-detection scripts&lt;br /&gt;
* lmce-hybrid - new depends on lmce-skins*&lt;br /&gt;
* pluto-avwizard (556,555) - add pciutils as a depends, still need to deal with multiarch stuff so this will break armhf, we will not update armhf for now, it doesn&#039;t use avwizard but does install it.&lt;br /&gt;
* lmce-diskless-tools - minor diskless create fixups&lt;br /&gt;
* pluto-orbiter - missing depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio script&lt;br /&gt;
* pluto-website-admin (220) - recognize MIDs as top level devices&lt;br /&gt;
* pluto-mythtv-player - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 30628 ==&lt;br /&gt;
* *-database - fix install issues&lt;br /&gt;
&lt;br /&gt;
== Update 30622 ==&lt;br /&gt;
* pluto-orbiterinstallers - fix depends issue&lt;br /&gt;
* pluto-system-database - lots of compat updates&lt;br /&gt;
* lmce-* - lots of compat updates&lt;br /&gt;
* pluto-* - lots of compat updates&lt;br /&gt;
&lt;br /&gt;
== Update 30618 ==&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio scripts&lt;br /&gt;
* pluto-website-admin (220) - updated internet radio page&lt;br /&gt;
&lt;br /&gt;
== Update 30571 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - send &amp;quot;Device is turned on or off&amp;quot; event when appropriate so the corresponding event works as expected&lt;br /&gt;
* lmce-squeezeslave (762) - set to pnp create without prompting&lt;br /&gt;
* lmce-runtime-dependencies (903) - pkg to help consolidate runtime depends.&lt;br /&gt;
* lmce-core (888) - updated depends&lt;br /&gt;
* lmce-md-meta (450)- updated depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated depends&lt;br /&gt;
* pluto-createdevice (303,304) - updated depends&lt;br /&gt;
* lmce-weather(838,839) - fix potential segfault&lt;br /&gt;
* pluto-website-admin (220) - add &amp;quot;replace node&amp;quot; button to advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 30549 ==&lt;br /&gt;
* pluto-mythtv-player - fix misaligned data values during mythtv.txt creation.&lt;br /&gt;
&lt;br /&gt;
== Update 30526 ==&lt;br /&gt;
* lmce-core - new pkg&lt;br /&gt;
* lmce-hybrid - pkg depends changes&lt;br /&gt;
* lmce-md-meta - pkg depends changes&lt;br /&gt;
* pluto-dcerouter - pkg depends changes&lt;br /&gt;
* pluto-photo-screen-saver - pkg depends changes&lt;br /&gt;
* pluto-boot-scripts - pkg depends changes&lt;br /&gt;
* pluto-orbiter - pkg depends changes&lt;br /&gt;
* pluto-simplephone - pkg depends changes&lt;br /&gt;
* pluto-website-admin - pkg depends changes&lt;br /&gt;
* lmce-mythtv-scripts - pkg depends changes&lt;br /&gt;
* pluto-system-database - pkg depends changes&lt;br /&gt;
* lmce-squeezeslave (762) - fix launch script, automatically create associated squeezebox player on the core.&lt;br /&gt;
* pluto-std-plugins - run New_PnP_MD.sh for new MID devices as well.&lt;br /&gt;
* lmce-diskless-tools - don&#039;t fail on invoke-rc.d during diskless create, exit gracefully and continue.&lt;br /&gt;
* pluto-mythtv-player - fix diskless create failures due to old hacks.  more work is needed here overall on mythtv integration.&lt;br /&gt;
&lt;br /&gt;
== Update 30419 ==&lt;br /&gt;
* pluto-slim-server - Make sure to turn off all Squeeze* devices when Slim Server Streamer starts or restarts (so that squeezelite does not hog sound cards.)&lt;br /&gt;
* pluto-hald (529,530) - add device node path to pnpqueue with v4l devices during detection&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - update for new lib version&lt;br /&gt;
&lt;br /&gt;
== Update 30384 ==&lt;br /&gt;
* pluto-confirm-dependencies - depend on pluto-install-scripts.&lt;br /&gt;
* pluto-disk-drive (122,141) - remove hal bits that dealt with old jukebox bugs.&lt;br /&gt;
* pluto-capture-card-scripts (580) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-pnp-detection (562) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-storage-devices (533) - convert autofs from hal to udev.&lt;br /&gt;
* pluto-bootscripts (234) - disable starting the hald since we&#039;re using udev now, remove false &#039;fail&#039; messages during reboot/shutdown&lt;br /&gt;
* pluto-slim-server-streamer - make one tweak (do not delete m_mapStreamsToPlayers entry in CMD_Stop). Streaming now works consistently, properly, with squeezebox devices and their clones. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30354 ==&lt;br /&gt;
* pluto-hald (529,530) - fix attempt to fire event for child device of usb-dongle.&lt;br /&gt;
* pluto-slim-server-streamer - Implement FF/REW (transport) trick-play control for Squeeze* devices. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30341 ==&lt;br /&gt;
* pluto-bootscripst - fixes for PPPoE users to not autostart the external interface.&lt;br /&gt;
* pluto-slim-server-streamer - Fix to power off squeezebox player when stream is not in use. This allows softsqueeze/squeezeslave/squeezelite players to let go of a sound device, when not in use (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30332 ==&lt;br /&gt;
* pluto-orbiter (118,139) - disable old hid device functionality.  Anyone who needs it can request a special build which will be provided at no extra charge. ;)&lt;br /&gt;
* pluto-bootscripts (234) - disable Gamepad Radar, functionality now in hal through udev&lt;br /&gt;
* pluto-avwizard (556,555) - fixes mangling of RemoteCmd when &amp;gt;1 remote is detected.&lt;br /&gt;
* pluto-hal-device-finder (535,536) - update to use udev rather than hal.&lt;br /&gt;
* pluto-hald (529,530) - update to use udev rather than hal.&lt;br /&gt;
* pluto-system-database (211) - updates for new detection method (joystick, cec-adaptor), update dependency data for hal pks to reflect dropping hald and add depends on udev now.&lt;br /&gt;
&lt;br /&gt;
== Update 30219 ==&lt;br /&gt;
* pluto-bootscripts (234) - Fail2ban firewall update script, and missing radioscript.sh.&lt;br /&gt;
* pluto-website-admin - Place set for rules on the firewall and bantime for fail2ban integration.&lt;br /&gt;
* pluto-std-plugins (116,135) - adds heirloom-mailx for &#039;mailx -r&#039; functionality, fixes e-mail in general info plugin&lt;br /&gt;
&lt;br /&gt;
== Update 30068 ==&lt;br /&gt;
* lmce-advanced-ip-camera(813,812) - Fixed high cpu usage if connection to camera can not be made&lt;br /&gt;
&lt;br /&gt;
== Update 30052 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - fix android pkg meta data, need to rebuild all together&lt;br /&gt;
&lt;br /&gt;
== Update 30051 ==&lt;br /&gt;
* pluto-updateentarea (341,342) - use DAY/NIGHT in watching/stopped watching events to make them smarter&lt;br /&gt;
* pluto-std-plugins (116,135) - Implement Get Device Status in General Info Plugin&lt;br /&gt;
* pluto-bootscripts (234) - fix VPN ip up/down&lt;br /&gt;
&lt;br /&gt;
== Update 30025 ==&lt;br /&gt;
* pluto-system-database (211) - column def updates&lt;br /&gt;
* pluto-local-database (214) - new Firewall columns and new VPN columns for Users table.&lt;br /&gt;
&lt;br /&gt;
== Update 30014 ==&lt;br /&gt;
* lmce-transmission-client (852) - fix postinst issue.  (Thanks SBCC)&lt;br /&gt;
== Update 29994 ==&lt;br /&gt;
More VLC Player changes to make it at least somewhat usable, there were some ugly bugs that came to light once i plopped it onto my production system. Right now sound device is plughw:0,3, if you need a different one, change it in the code.  (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* lmce-vlc-player - many little fixes to make it suck less.&lt;br /&gt;
&lt;br /&gt;
== Update 29990 ==&lt;br /&gt;
I am working on the VLC player, and it is breathing enough for basic testing. Please do not use in production environment. There is still a lot of code to write (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - updates for VLC player (TSCHAK)&lt;br /&gt;
* vlc-player (882,884) - Very early alpha developer test of the VLC player. (TSCHAK)&lt;br /&gt;
* vlc-plugin (874,875) - Very alpha developer test of the VLC plugin. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 29984 ==&lt;br /&gt;
* pluto-system-database (211) - fix bad repos in pkgs&lt;br /&gt;
* pluto-website-admin - just because I think it is necessary :-)&lt;br /&gt;
&lt;br /&gt;
== Update 29983 ==&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36916</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36916"/>
		<updated>2017-02-20T03:06:03Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: Issues 2727, 2728 update.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the 1204 changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo much easier.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please include the pkg #s to facilitate building on 3x i386 targets in addition to 2x amd64 and 3x armhf targets where full builds are not always practical.  Keep in mind that most packages are referred to by two (2) package numbers from the database, a source package and a binary package.  &amp;quot;Thank you for your co-operation.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix for multiple cameras and Get Image command&lt;br /&gt;
* lmce-vlc-player (884,882) - Issue 2727, Issue 2728 - Trick play overhaul and fix audio glitches when trick play is used. &lt;br /&gt;
* pluto-boot-scripts (234) - SetupAudioVideo.sh - slight change to libvlc.conf so that trick play OSD works.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1204-1404-1604/amd64 c20633ff ==&lt;br /&gt;
* pluto-website-admin (220) - Added the case for section energyGraph and sipConf, fixed permissions for mysql asteriskuser, add sql credentials for myth, change MYSQL_NUM to MYSQLI_NUM&lt;br /&gt;
&lt;br /&gt;
== Update 1204-1404-1604/i386 1404/amd64 a7c10426 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add backports so 1204 diskless create works&lt;br /&gt;
* lmce-oauth2-server (668) - initial build of lmce oauth2 server for cloud interfacing&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404/1604 i386 - 1404x64 - 201611190055+fee90f43 ==&lt;br /&gt;
* pluto-boot-scripts (234) - database upgrades&lt;br /&gt;
* pluto-orbitergen (226,227) - database upgrades&lt;br /&gt;
* pluto-pluto-main-db (201,237) - database upgrades&lt;br /&gt;
* pluto-pluto-security-db (278,277) - database upgrades&lt;br /&gt;
* lmce-asterisk (replacement) - database upgrades&lt;br /&gt;
* pluto-system-database (211) - database upgrades&lt;br /&gt;
* pluto-local-database (214) - database upgrades&lt;br /&gt;
* pluto-security-database (256) - database upgrades&lt;br /&gt;
* pluto-telecom-database (472) - database upgrades&lt;br /&gt;
* pluto-media-database (233) - database upgrades&lt;br /&gt;
* pluto-database-settings (407) - database upgrades&lt;br /&gt;
* pluto-sqlcvs (212,213) - database upgrades&lt;br /&gt;
* pluto-std-plugins (116,135) - database upgrades&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609281853+9638f5bc ==&lt;br /&gt;
* pluto-website-admin (220) - #2705 fixed syntax error.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 - 201609271106+39103855 ==&lt;br /&gt;
* pluto-website-admin (220) - Update firewall.php GUI change some fields where reset to the default values. now the db data is honored.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** don&#039;t create initramfs for Raspbian Jessie diskless filesystems.&lt;br /&gt;
** ensure firstboot runs on diskless Jessie RPis.&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** stop/start rather than restart dhcp server, it&#039;s like nuking the site from orbit... only way to be sure.&lt;br /&gt;
** Firewall blocks udp 1900 UpNP traffic from externalinterface.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609172308+325de35d ==&lt;br /&gt;
* lmce-autotag (780, 781) linuxmceTag - fix comparison issue with media type.&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1204 i386 - 201609131230+5eaa4671/201609131753+5eaa4671 ==&lt;br /&gt;
* pluto-boot-scripts (234) - send dhcp vendor specific options only to wired raspberry pis.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 201609102226+fda3da63 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** rpi native pxe additions/updates&lt;br /&gt;
** extend startup timeout when booting under systemd&lt;br /&gt;
* lmce-diskless-tools (627,628) - rpi native pxe additions/updates&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DT updates for rpi native pxe&lt;br /&gt;
** add Serial Number Device Data to RPi DTs&lt;br /&gt;
** sets default PK_Distro to 22 (jessie) for RPi DTs&lt;br /&gt;
** new device data for &amp;quot;Standard Energy Meter&amp;quot;&lt;br /&gt;
* pluto-std-plugins (116,135)&lt;br /&gt;
** stores energy reading in state field for Standard Energy Meter&lt;br /&gt;
** fixes dcerouter crash when searching media&lt;br /&gt;
* pluto-updatemedia (405,406) - fix segfault when a dir is attempting to be tagged directly (without a .id3)&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - don&#039;t fail pkg install if simplephone is not running.&lt;br /&gt;
&lt;br /&gt;
== Update 1204-i386 - 1404-i386/amd64 201607240235+899786ab ==&lt;br /&gt;
* pluto-website-admin (220) - Mysqli_real_escape_string did not work. a start with ipv6 firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/i386 201607202218+14cba09a ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) - Stream Bouncing, Additional settings for location, removed debug output, queue functionality.&lt;br /&gt;
&lt;br /&gt;
== Update 201607181902+d4cec1a0 1404-i386/amd64 - 1204-i386 ==&lt;br /&gt;
* pluto-website-admin - Update to qOrbiterGenerator.php for newer PHP version&lt;br /&gt;
&lt;br /&gt;
== Update 201607161239+6d72c3f9 1404-i386/amd64 1204-i386 ==&lt;br /&gt;
* pluto-website-admin (220) - #2678 fix Warning: Invalid argument supplied for foreach() in /var/www/lmce-admin/include/dhcpd-tools/DHCPd-parse.php on line 113&lt;br /&gt;
* pluto-boot-script&lt;br /&gt;
&lt;br /&gt;
== Update 201607151016+5b5adba3 1404/i386 &amp;amp; amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule use another escape method.&lt;br /&gt;
&lt;br /&gt;
== Update 201607122332+f0fc9c6b 1404/i386 ==&lt;br /&gt;
* pluto-boot-scripts (234) - fix #2684 clients cannot access internet when firewall is disabled. &lt;br /&gt;
* pluto-website-admin (220) - #2680 fix php errors when trying to add a rule.&lt;br /&gt;
&lt;br /&gt;
== Update 201607050613+601c67da 1404-i386/amd64 ==&lt;br /&gt;
* pluto-website-admin (220) - more fixes to the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update trusty i386/amd64 201606301955+614dfa7b ==&lt;br /&gt;
* pluto-website-admin (220) - fix for outside access port 443 not uncheckable.&lt;br /&gt;
* pluto-boot-scripts (234) - fix for not dele rules from iptables from outsideAccess.php&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201606201908+31b25c52 ==&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** unicode reading/writing working properly&lt;br /&gt;
** coverart writing to tags working properly&lt;br /&gt;
** .id3 files handled by taglib instead of id3lib.&lt;br /&gt;
** General Object Frame (GEOB) reading/writing working properly (all lmce attributes are stored in id3v2 GEOB tags for .id3/.mp3 files)&lt;br /&gt;
* pluto-website-admin (220) - more updates for mysql -&amp;gt; mysqli conversion&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64 201605312323+08fb8202 ==&lt;br /&gt;
* pluto-website-admin (220) - fix Text Command button to honor parameters from Screen_CommandParameter&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller to fix spamming of logs with constant updates of device data.&lt;br /&gt;
&lt;br /&gt;
== Update trusty-i386/amd64 201605310531+04df53f5 ==&lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - get the stream uri from onvif camera and save it in a device data for use by other devices&lt;br /&gt;
* pluto-website-admin (220) - adate to adodb 5.20.4 and change db driver from mysql to mysqli&lt;br /&gt;
* pluto-updatemedia (405,406) - tag writing/deletion of values update&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201605261039+410242d2 ==&lt;br /&gt;
* pluto-media-database (233) - remove FatGroupBy query as it is massive and no longer required&lt;br /&gt;
* pluto-updatemedia (405,406)&lt;br /&gt;
** FIX UpdateMedia not detecting changes in files on disk.  Fixes: UpdateMedia not reading modification times properly.&lt;br /&gt;
** improve image reading/writing for mp3/mp4 files, add image handling for asf/wma, improve track art-&amp;gt;performer/album artist matching.&lt;br /&gt;
** don&#039;t add network shares to inotify watch list&lt;br /&gt;
* pluto-system-database (211) - new qml-* pkg definitions for qorbiter&lt;br /&gt;
* pluto-plutoutils (196,197) - add fn&#039; to determine filesystem type of a file&lt;br /&gt;
* lmce-disked-interactor (897,898) - make sure we see the core and have an IP prior to attempting contact&lt;br /&gt;
* pluto-bootscripts (234) - make sure we see the core prior to continuing to boot an MD&lt;br /&gt;
* pluto-website-admin (220) - various fixes in the media page&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 - 201605171740 c6d63dc6 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3, ogg, flac, mp4, wv, wav, oga, mpc, spx, opus, tta, m4a, m4r, m4p, 3g2, m4v, wma, asf, aif, aiff, afc, aifc, ape, s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update 1404-i386/amd64  201605131052+2542a526 ==&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-phoenix-solo-usb (695) - udev rule to ignore usbhid portion of device, permits orbiter to enter screensaver&lt;br /&gt;
* pluto-bootscripts (234) - permit devices that have died 50 times to attempt to restart after a router reload. Firewall fix for manual defined chains.&lt;br /&gt;
* pluto-sound-card-scripts (579) - don&#039;t assume cardid=1, determine phoenix cardid from aplay.&lt;br /&gt;
* pluto-media-database (233) - additional AttributeType &amp;quot;Album Artist&amp;quot;&lt;br /&gt;
* lmce-media-identifier (931,932) - updates for Album Artist tag.&lt;br /&gt;
* pluto-orbiter (119,138) - updates for Album Artist tag.&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** updates for Album Artist tag&lt;br /&gt;
** fix mainMediaFileSync.php. OutsideAccess page showing the options (again). &lt;br /&gt;
** And typo fixes for issue #2643. &lt;br /&gt;
** Firewall page reload issue 2636#. Firewall gui do not show &amp;quot;NULL&amp;quot;.&lt;br /&gt;
* pluto-updatemedia (405,406) - updates for Album Artist tag, more filetypes (mp3:ogg:flac:mp4:wv:wav::oga:mpc:spx:opus:tta:m4a:m4r:m4p:3g2:m4v:wma:asf:aif:aiff:afc:aifc:ape:s3m) handled by Taglib, Taglib capabilities expanded.  Tag and folder pics importing.&lt;br /&gt;
* pluto-std-plugins (116,135) - updates for data grids, alter display values from &amp;quot;The *&amp;quot; to &amp;quot;*, The&amp;quot; for Title, Performer, Album, Album Artist &amp;amp; Playlist names&lt;br /&gt;
&lt;br /&gt;
== Update jessie 20160427 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for RPi&lt;br /&gt;
* lmce-disked-md-rpi2 (889) - +x firstboot_md_rpi2 to ensure it&#039;s picked up properly&lt;br /&gt;
&lt;br /&gt;
== Update jessie 201604130947+0083d387 ==&lt;br /&gt;
== Update 1204/1404-i386/amd64 201604101031-0b47a986 ==&lt;br /&gt;
* pluto-website-admin, pluto-boot-scripts (220,234) - Firewall Fixes for GUI and inner working of the firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603251155+a1c0f6ea ==&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - File view implemented. Fixed not being able to leave resume menu.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404 i386 201603222119+336464d8 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller  to fix floorplan / status being improperly updated.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t mount optical discs as HDDs&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386/amd64 201603220706+c3c4b899 ==&lt;br /&gt;
* lmce-md-meta (450) - for some reason this is not in the main repo&lt;br /&gt;
* lmce-media-identifier - fixed for libcdio&lt;br /&gt;
&lt;br /&gt;
== Update jessie-rpi 60faa181 ==&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - adds video resizing so UI1 can be exposed while video is playing.&lt;br /&gt;
&lt;br /&gt;
== Update 1404 armhf 31c5d994 ==&lt;br /&gt;
== Update 1404 i386 52e39875 ==&lt;br /&gt;
* pluto-storage-devices (533) - fix ntfs detection&lt;br /&gt;
&lt;br /&gt;
== Update 1404 i386 - 49a8cbf1 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - a little better device to device template mapping&lt;br /&gt;
* pluto-website-admin (220) - fix adv.zwave page and adding secure devices&lt;br /&gt;
* lmce-disked-* - update the disked md/mid meta/base/device pkgs, specific fixes for 1404 joggler&lt;br /&gt;
* lmce-json-plugin (876,877) - first time addition to the main repo&lt;br /&gt;
* libdvdid0 (replacement) - first time addition to the repo, for use by Media Identifier&lt;br /&gt;
* pluto-system-database (211) - updates to some DT and PKG definitions&lt;br /&gt;
* lmce-omx-player (829,830) jessie(rpi) only - enable disabling internal volume control, similar to how logitechmediaserver does&lt;br /&gt;
&lt;br /&gt;
== Update 1404/1404(armhf)/jessie(rpi)-a84db86f ==&lt;br /&gt;
* lmce-launch-manager (298,299) - only update squeeze devices when running on the core, redundant elsewhere.&lt;br /&gt;
&lt;br /&gt;
== Update 1204/1404-87954508 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t fail if dvdcss2 cannot be automatically installed.&lt;br /&gt;
* pluto-hald (529,530) - reinstate tty detection, seperate from usb-serial, use direct parent for udi naming.&lt;br /&gt;
* pluto-boot-scripts (234) - disable buildall, the script doesn&#039;t run so why waste time creating it.&lt;br /&gt;
* lmce-launch-manager (298,299)&lt;br /&gt;
** update squeezebox players on router reloads from Launch_Manager&lt;br /&gt;
** call Config_Device_Changes in startCoreServices to ensure everything gets its&#039; Need Configure flag reset.&lt;br /&gt;
&lt;br /&gt;
== Update a332f49a ==&lt;br /&gt;
* lmce-install-scripts (391) - fix missing quote in MD installation.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix missing &#039;fi&#039; in BootMessage.sh&lt;br /&gt;
** fix usb.1 system serial port listing/translating&lt;br /&gt;
* lmce-media-identifier (931,932) - fix segfault, CDs are identified, cd-ripping functional again&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** prioritize new conf dir over old conf dir, fix install on systems upgraded from 1204-&amp;gt;1404&lt;br /&gt;
** redirect mythweb to html/mythweb&lt;br /&gt;
* pluto-hald (529,530) - updates to serial port naming, specifically for odroid.&lt;br /&gt;
* pluto-storage-devices (533) - fix mounted drive detection and add detection for drives mounted in /proc/cmdline like rpi.&lt;br /&gt;
&lt;br /&gt;
== Update 1204=201602080446+2028f850 &amp;lt;br&amp;gt; 1404=201602071815+c31bc44f ==&lt;br /&gt;
* lmce-install-scripts (391)&lt;br /&gt;
** enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
* lmce-core (888) - enable appropriate ssh ciphers to permit trusty core to ssh to jessie MD.&lt;br /&gt;
* pluto-storage-devices (533) - redo StorageDevices_Radar using blkid for internal HDD identification.  /dev/disk/by-path/ is not present anymore.&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** additional boot information so users are more informed during apparent dead time&lt;br /&gt;
** new VerifyDistro.sh script and call the script on boot.&lt;br /&gt;
*** Preventative mostly.  Intended to ease pain for those that upgrade distros.&lt;br /&gt;
*** Ensure child devices, onscreen orbiter, have the proper PK_Distro set.&lt;br /&gt;
&lt;br /&gt;
== Update 296fdcd3 ==&lt;br /&gt;
* pluto-website-admin (220) - fix depends versioning&lt;br /&gt;
* pluto-hald (529,530) - fix depends versioning&lt;br /&gt;
* pluto-boot-scripts (234) - fix depends versioning&lt;br /&gt;
* pluto-system-database (211) - fix depends versioning&lt;br /&gt;
* pluto-orbitergen (226,227) - fix depends versioning&lt;br /&gt;
* lmce-disked-md-base (801) - fix depends versioning&lt;br /&gt;
* lmce-install-scripts (391) - fix depends versioning&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix depends versioning&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix depends versioning&lt;br /&gt;
* lmce-datalogger-plugin (686,687) - fix depends versioning &lt;br /&gt;
* lmce-advanced-ip-camera (812,813) - fix depends versioning&lt;br /&gt;
&lt;br /&gt;
== Update f3a444c0 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** use newer .sh script rather than obsolete .pl script for dialplan creation&lt;br /&gt;
** fix Directory listing on cisco phones&lt;br /&gt;
** fix delete buttons on internet radio page.&lt;br /&gt;
* pluto-hald (529,530)&lt;br /&gt;
** add &#039;usb&#039; to &#039;pci&#039; and &#039;platform&#039; as valid bus addresses&lt;br /&gt;
** permit adding of usb devices with usb_serial or tty children&lt;br /&gt;
* pluto-boot-scripts (234) - update SetupAudioVideo.sh to more reliably address nvidia hdmi audio outputs&lt;br /&gt;
* lmce-asterisk (replacement) - live_dangerously for now to get all the necessary Voicemail modules to load&lt;br /&gt;
* pluto-system-database (211) - new DD Number of jobs for orbiter plug-in/orbitergen&lt;br /&gt;
* pluto-boot-scripts (234) - updates to RegenOrbiter scripts for parallel job queued orbiter generation.&lt;br /&gt;
* pluto-orbitergen (226,227) - new depends on GNU parallel&lt;br /&gt;
* lmce-disked-md-base (801) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* lmce-install-scripts (391) - clear installed pkgs in the db on firstboot&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - remove hardcoded ip address, get from db instead.&lt;br /&gt;
* lmce-diskless-tools (627,628) - only run UpdateDebCache.sh if it is executable&lt;br /&gt;
* lmce-datalog-plugin(686,687) - fix pear install command in postinst&lt;br /&gt;
* lmce-advanced-ip-camera(812,813) - add basic onvif support (snapshot,PTZ)&lt;br /&gt;
&lt;br /&gt;
== Update 31792 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of new External_Media_Identifier, testing CDDB ids&lt;br /&gt;
&lt;br /&gt;
== Update 31783 ==&lt;br /&gt;
* pluto-libserial (190,191) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-dcecommon (192,193) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-irbase (194,195) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-plutoutils (196,197) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-vipshared (199,200) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-serializeclass (198,238) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-libbd (239,240) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-ra (247,248) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-main-db (201,237) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-media-db (254,255) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-security-db (278,277) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-sdl-helpers (346,347) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-messagetrans (398,401) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-game-db (675,676) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-windowutils (677,678) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
* lmce-datalog-db (688,689) - change in so_postinst for library pkgs, ensure ldconfig is run, fixes installs&lt;br /&gt;
&lt;br /&gt;
== Update 31782 ==&lt;br /&gt;
* pluto-std-plugins - fix FK_File search inside Attribute in Media_Plugin&lt;br /&gt;
&lt;br /&gt;
== Update 31774 ==&lt;br /&gt;
* lmce-disked-mid-base (899) - fix error in postinst&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come (this should be in but apt-get is getting 404 errors)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add &amp;quot;remove failed node&amp;quot; command&lt;br /&gt;
* pluto-website-admin - add &amp;quot;remove failed node&amp;quot; command for zwave advanced page&lt;br /&gt;
&lt;br /&gt;
== Update 31760 ==&lt;br /&gt;
* lmce-disked-md-base (801) - fix another error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31757 ==&lt;br /&gt;
* lmce-core (888) - overwrite AutostartCore conf value&lt;br /&gt;
* lmce-md-meta (450) - overwrite AutostartMedia conf value&lt;br /&gt;
* lmce-mid-meta (962) - missing deb&lt;br /&gt;
* lmce-hybrid (769) - exit 0 in postinst, just to be sure&lt;br /&gt;
* lmce-disked-md-base (801) - fix error in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31754 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - reconnect before send&lt;br /&gt;
&lt;br /&gt;
== Update 31752 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - remove hard coded caller id &#039;Cherryhomes, Tho&#039;, use incoming caller id.&lt;br /&gt;
&lt;br /&gt;
== Update 31750 ==&lt;br /&gt;
* pluto-website-admin (220) - fix postinst error notice on precise.&lt;br /&gt;
* pluto-boot-scripts (234) - (re)start asterisk, otherwise configuration doesn&#039;t occur and sip phones cannot register&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - force-reload apache2 after disabling mythbuntu sites&lt;br /&gt;
* lmce-md-meta (450) - don&#039;t overwrite conf values that are already set&lt;br /&gt;
* *openzwave* (replacement) - version bump, upgrade fixes to upstream files&lt;br /&gt;
&lt;br /&gt;
== Update 31744 ==&lt;br /&gt;
* lmce-media-identifier (931,932) - initial add of media identifier, cds almost there, others to come&lt;br /&gt;
&lt;br /&gt;
== Update 31742 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Gui changes to not confuse people. &lt;br /&gt;
** outsideaccess works together with the firewall. &lt;br /&gt;
** phonelines note on protocol for meaning of &amp;quot;SPA&amp;quot; and a status for this protocol setting, port can be changed if needed else it will be the default (5060).&lt;br /&gt;
&lt;br /&gt;
== Update 31739 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix absolute timed events&lt;br /&gt;
&lt;br /&gt;
== Update 31723 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix nfs-premount script in default diskless image.&lt;br /&gt;
* lmce-dlna(842,843) - compatibility fixes&lt;br /&gt;
* lmce-install-scripts (391) - generate ssh keys so openssh-server can accept connections&lt;br /&gt;
* pluto-createdevice (303,304) - hide errors, specifically during initial package postinst&lt;br /&gt;
* lmce-cec-adaptor (871,872) - fix cec remotes not getting to lmce&lt;br /&gt;
&lt;br /&gt;
== Update 31693 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - Fixes #2530 - fix errors in mythtvdb synchronization scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31686 ==&lt;br /&gt;
* lmce-install-scripts (391) - deal with firstboot stuffenz&lt;br /&gt;
* pluto-system-database (211) - add proxy orbiter DT depends for generic web device&lt;br /&gt;
* pluto-website-admin (220) - order by photo file name in screen saver/photo browser&lt;br /&gt;
* pluto-boot-scripts (234) - try ubiquity before anything else, and reboot after the normal firstboot - breaks live boot on dvd atm&lt;br /&gt;
* lmce-diskless-tools (627,628) - permit i386 diskless image building on amd64 cores, ensure processes are killed in chroot before unmounting (deals with systemd for now)&lt;br /&gt;
&lt;br /&gt;
== Update 31660 ==&lt;br /&gt;
*LinuxMCE qOrbiter Android (Qt5) (879,881) &lt;br /&gt;
**PS3 control screen, fix layout issue. adds seperate button group (triangle, circle, etc) and navigation arrows. Also adds power off button to properly exit screen&lt;br /&gt;
* pluto-website-admin (220) - prevent creation of extra &#039;blank&#039; network interfaces&lt;br /&gt;
&lt;br /&gt;
== Update 31655 ==&lt;br /&gt;
* pluto-vdr-plugin (466,467) - close connection after use&lt;br /&gt;
* pluto-website-admin (220) - fill ServerName var if it is unset, not if it is set.&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - unify service control&lt;br /&gt;
* pluto-boot-scripts (234) - unify service control&lt;br /&gt;
* pluto-dhcpd-plugin (302) - unify service control&lt;br /&gt;
* pluto-disk-monitor (554) - unify service control&lt;br /&gt;
* pluto-mythtv-player (133,152) - unify service control&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - unify service control&lt;br /&gt;
* pluto-raid-tools (617) - unify service control&lt;br /&gt;
* pluto-storage-devices (533) - unify service control&lt;br /&gt;
* lmce-update-system (650,651) - unify service control&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - unify service control&lt;br /&gt;
* pluto-vdr-plugin (466,467) - unify service control&lt;br /&gt;
* pluto-vdr (468,469) - unify service control&lt;br /&gt;
* pluto-database-settings (407) - unify service control&lt;br /&gt;
* lmce-asterisk (replacement) - unify service control&lt;br /&gt;
* lmce-diskless-tools (627,628) - unify service control&lt;br /&gt;
* lmce-install-scripts (391) - unify service control&lt;br /&gt;
* pluto-updatemedia (405,406) - unify service control&lt;br /&gt;
* pluto-newmdinteractor (538,539) - unify service control&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (879,881) - Fix size issues, floorplan popups.&lt;br /&gt;
&lt;br /&gt;
== Update 31621 ==&lt;br /&gt;
* pluto-mythtv-player (133,152) - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 31618 ==&lt;br /&gt;
* lmce-asterisk (replacement) - update db for chan_sccp-v4.2 and fix bug requiring manual asterisk reload on boot&lt;br /&gt;
&lt;br /&gt;
== Update 31615 ==&lt;br /&gt;
* pluto-* - rebuild with new libraries&lt;br /&gt;
* lmce-* - rebuild with new libraries&lt;br /&gt;
&lt;br /&gt;
== Update 31606 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - fix EPG data on orbiters, myth stores everything in UTC now.&lt;br /&gt;
* pluto-pluto-main-db (201,237) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-media-db (254,255) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-pluto-security-db (277,278) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-datalog-db (688,689) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* lmce-game-db (675,676) - update library code to match current db &amp;amp; update to winsock2.h on WIN32&lt;br /&gt;
* pluto-updateentarea (341,342) - don&#039;t send empty play command when resetting alarm&lt;br /&gt;
&lt;br /&gt;
== Update 31580 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - use bypass-event to avoid watching media events when playing alerts&lt;br /&gt;
* pluto-updateentarea (341,342) - send bypass-event with security event commands&lt;br /&gt;
* libcec3 debs (replacement) - removes conflict data with libcec2&lt;br /&gt;
&lt;br /&gt;
== Update 31575 ==&lt;br /&gt;
* lmce-asterisk (replacement) - play back alert notification file&lt;br /&gt;
* pluto-std-plugins (116,135) - create alert notification file with correct format&lt;br /&gt;
* pluto-boot-scripts (234) - fixes for nvidia drivers on precise, upgrades to nvidia-340&lt;br /&gt;
* lmce-avwizard-sounds (replacement) - don&#039;t copy fakeroot files (it is redundant it is)&lt;br /&gt;
* video-wizard-videos (replacement) - deb is back to normal size, not 2x&lt;br /&gt;
&lt;br /&gt;
== Update 31553 ==&lt;br /&gt;
* pluto-website-admin (220) - fix error that wipes out the apache2.conf&lt;br /&gt;
* pluto-hald (529,530) - fix segfaults with firewire hardware&lt;br /&gt;
&lt;br /&gt;
== Update 31547 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some API changes in OZW 1.3, more device template mappings&lt;br /&gt;
* pluto-boot-scripts (234) - typo fix for nvidia drivers&lt;br /&gt;
* lmce-disked-md-base (801) - set hostname on disked MDs, set timezone on disked MDs&lt;br /&gt;
* lmce-install-scripts (391) - set hostname on disked MDs, set timezone on disked MDs &lt;br /&gt;
* pluto-website-admin was generated---&amp;gt; lmce-website-admin (220) - set apache2 ServerName to silence error on boot&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates, revert to ruby 1.8&lt;br /&gt;
* pluto-generic-serial-device (307,335) - admit defeat for now, revert to ruby 1.8&lt;br /&gt;
&lt;br /&gt;
== Update 31533 ==&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst&lt;br /&gt;
&lt;br /&gt;
== Update 31520 ==&lt;br /&gt;
* chan-sccp_v4.2 (replacement) - Upgrad asterisk SCCP channel driver to newest version&lt;br /&gt;
* pluto-vdr-plugin (466,467) - implement background loading of EPG from VDR to avoid crashes due to commands not completing on time&lt;br /&gt;
* pluto-boot-scripts (234) - some logic changes and added messages for video driver install debugging&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - link new channels dir to old channels dir for backwards compatibility&lt;br /&gt;
&lt;br /&gt;
== Update 31503 ==&lt;br /&gt;
* *zwave* (replacement) - new upstream openzwave version 1.3.1224&lt;br /&gt;
* lmce-zwave-ozw(505,506) - build against new libopenzwave1.3&lt;br /&gt;
* pluto-system-database (211) - pkg compat updates&lt;br /&gt;
* lmce-disked-interactor (897,898) - make disked interactor aware of wheezy and jessie.&lt;br /&gt;
&lt;br /&gt;
== Update 31500 ==&lt;br /&gt;
* *myth* (replacement) - fix depends on non-existent packages&lt;br /&gt;
* lmce-mediatomb (702) - fix newly introduced errors in postinst - verified installing now&lt;br /&gt;
* pluto-std-plugins (116,135) - Use integer comparison for brightness state&lt;br /&gt;
&lt;br /&gt;
== Update 31491 ==&lt;br /&gt;
* lmce-avwizard-skin-basic (replacement) - fix packaging of avwizard skin&lt;br /&gt;
* *myth* (replacement) - mythtv 0.27.5+fixes with Schedules Direct fix included&lt;br /&gt;
* *asterisk* (replacement) - asterisk 11.7 backport from trusty&lt;br /&gt;
* libical* (replacement) - for asterisk 11.7&lt;br /&gt;
* *cec* (replacement) - libcec3&lt;br /&gt;
* libplatform* (replacement) for libcec3&lt;br /&gt;
* lmce-cec-adaptor (871,872) - build against libcec3&lt;br /&gt;
* lmce-mediatomb (702) - fix pkg installation&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - update protocol version and secret word (shhh) for 0.27.5+fixes&lt;br /&gt;
* lmce-diskless-tools (627,628) - remove call to obsolete script in Diskless_Setup.sh&lt;br /&gt;
* pluto-vdr-plugin (466,467) - return full EPG (used in qOrbiter EPG Grid), improve communication speed with SVDRP&lt;br /&gt;
* pluto-slim-server-streamer (289,290) - emit time code event, fix duration parsing&lt;br /&gt;
* pluto-boot-scripts (234) - fix headless booting, update 1404 nvidia driver&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* lmce-md-meta (450) - add depends on alsa-utils&lt;br /&gt;
* pluto-website-admin (220) - Fix cdrviewer (Call Details Records) to accept SSL conections as well, firewall gui change to set Offline rules in red as they are not executed.&lt;br /&gt;
* pluto-app-server (126,145)- new poweroff mode I for ignore, since N is already in use&lt;br /&gt;
&lt;br /&gt;
== Update 31420 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - add depends on pluto-boot-scripts for deb cache script&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31411 == &lt;br /&gt;
* pluto-avwizard (555,556) - fix depends on avwizard skins basic, should no longer care about version&lt;br /&gt;
* pluto-boot-scripts (234) - more explicity logic for core only booting, fix startup script db errors&lt;br /&gt;
* lmce-update-system (650,651) - remove and disable old init.d script from /etc/init.d&lt;br /&gt;
* pluto-plutodhcp (330,491) - depends on apparmor&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-dhcpd-plugin (302) - remove hardcoded IP addresses from configure scripts&lt;br /&gt;
&lt;br /&gt;
== Update 31387 ==&lt;br /&gt;
* lmce-weather-plugin - make change to allow for tonight&#039;s forecast data (TSCHAK)&lt;br /&gt;
* lmce-asterisk (replacement) - remove obsolete phonetic engines and replace with espeak, voices remain the same&lt;br /&gt;
* mbrola (replacement) - base mbrola pkg for mbrola voices (add armhf binary)&lt;br /&gt;
* pluto-asterisk (270,271) - generate fr and de voicemail menus with espeak now&lt;br /&gt;
* lmce-core (888) - add depends on iptables&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
&lt;br /&gt;
== Update 31378 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Start_KDE.sh ownership fix, AV config updates&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-avwizard (555,556) - update pkgs &amp;amp; depends &amp;amp; config scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - do not run update deb_cache during dvd creation&lt;br /&gt;
* pluto-x-scripts (520) - fixups to Xconfigure.sh&lt;br /&gt;
&lt;br /&gt;
== Update 31356 ==&lt;br /&gt;
* pluto-system-database (211) - update depends&lt;br /&gt;
* pluto-orbiter (119,138) - update depends&lt;br /&gt;
* lmce-diskless-tools (627,628) - speedup dpkg in diskless create, fix missing quotes&lt;br /&gt;
&lt;br /&gt;
== Update 31352 ==&lt;br /&gt;
* pluto-motion-wrapper - more config file location fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 31351 ==&lt;br /&gt;
* pluto-boot-scripts (234) - change service &#039;nis&#039; to &#039;ypserv&#039;, nis is no longer a service name&lt;br /&gt;
* pluto-website-admin (220) - remove &#039;idiot&#039; text, let&#039;s be nice to people.&lt;br /&gt;
* lmce-core (888) - do not create and config under ubiquity&lt;br /&gt;
* lmce-md-meta (450) - do not create and config under ubiquity&lt;br /&gt;
* motion (replacement) - fix bad config file setting in rules&lt;br /&gt;
&lt;br /&gt;
== Update 31337 ==&lt;br /&gt;
* motion (replacement) - new version of motion to match new configuration values generated by linuxmce&lt;br /&gt;
&lt;br /&gt;
== Update 31331 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix for brightness events&lt;br /&gt;
* pluto-boot-scripts (234) - fix kdm disabling, start ubiquity after network config&lt;br /&gt;
* lmce-diskless-tools (627,628) - add upstart overrides for kdm&lt;br /&gt;
* lmce-install-scripts (391) - start ubiquity after network config&lt;br /&gt;
&lt;br /&gt;
== Update 31314 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add missing depends&lt;br /&gt;
&lt;br /&gt;
== Update 31292 ==&lt;br /&gt;
* lmce-core-locator (replacement) - (1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-system-database (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* All .debs created by MakeRelease - removal of all Pre-Depends, everything is now a Depends entry (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
== Update 31228 ==&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-local-database&lt;br /&gt;
&lt;br /&gt;
== Update 31214 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package (not in repo, need build-replacements.sh svn up&#039;d?)&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - preinst/postinst updates&lt;br /&gt;
* pluto-boot-scripts (234) - preinst/postinst updates&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-disked-md-base (801) - firstboot updates&lt;br /&gt;
&lt;br /&gt;
== Update 31187 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package&lt;br /&gt;
* pluto-confirm-dependencies (281,272) - new depends on lmce-install-scripts (fixes unable to apt-get dist-upgrade)&lt;br /&gt;
* lmce-md-meta (450) - new depends on nfs-common, openssh-server and pastebinit&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - update depends, preinst/postinst&lt;br /&gt;
* pluto-boot-scripts (234) - depends &amp;amp; preinst/postinst updates&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - add override mythweb defaults in pkg preinst&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - update depends&lt;br /&gt;
&lt;br /&gt;
== Update 31133 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** enable WakeMDs.sh to wake any halted MDs.&lt;br /&gt;
** consolidate all boot script launching to /etc/init.d/linuxmce&lt;br /&gt;
* pluto-avwizard (555,556) - moves start script to /usr/pluto/bin, called by /etc/init.d/linuxmce now&lt;br /&gt;
* lmce-update-system (650,651) - removes init.d script, called by /etc/init.d/linuxmce now&lt;br /&gt;
* pluto-website-admin (220) - GUI changes on network settings if an bridge is configured on the db.&lt;br /&gt;
* lmce-core (888) - depend on pluto-asterisk, lmce-asterisk, lmce-install-scripts&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* pluto-generic-serial-device (307,335) - wildshot attempt at fixing segfaults&lt;br /&gt;
&lt;br /&gt;
== Update 31103 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** Network bridging now possible  for wifi AP to have the same network as the local lan. &lt;br /&gt;
** ipv6 on/off for network interfaces. Read multiple ipv6 interfaces from the db.&lt;br /&gt;
** re-enable HaltMDs.&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* libqhttpserver (912) needed for linuxmce nvr&lt;br /&gt;
* lmce-launch-manager - (298,299) - ?&lt;br /&gt;
&lt;br /&gt;
== Update 31087 ==&lt;br /&gt;
* lmce-weather (838,839) - Fix a serious bug in getconfig where incorrect configuration device data would crash program. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 31083 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes #2422, advanced zwave page broken in chrome&lt;br /&gt;
* pluto-system-database (211) - thumbnail screen fixes&lt;br /&gt;
&lt;br /&gt;
== Update 31074 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** setEa2.php - Fix settings for creating entertain area.&lt;br /&gt;
** qOrbiterGenerator.php - Fix erroneous EA creation by removing it.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Fix incorrect setting for enabling / disabling motion.&lt;br /&gt;
&lt;br /&gt;
== Update 31069 ==&lt;br /&gt;
* pluto-website-admin (220) - setEa2.php Fix settings for creating entertain area.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Initial build.&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (881) - Large update of skins and internals.&lt;br /&gt;
&lt;br /&gt;
== Update 31061 ==&lt;br /&gt;
* lmce-squeezeslave (762) - Add configuration DD to command line&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DB package updates&lt;br /&gt;
** restore previous video remote layout with Options button to select subtitles/audio tracks/video tracks from a datagrid list.&lt;br /&gt;
* pluto-website-admin (220) - firewall.php edit rules for non advanced firewall and some other small fixes.&lt;br /&gt;
* lmce-asterisk (replacement) - sip config modules to avoid autoload.&lt;br /&gt;
&lt;br /&gt;
== Update 31051 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** firewall.php not adding rules now fixet.&lt;br /&gt;
** Test buttons for Hue lights&lt;br /&gt;
** Security outsideAccess page now works nicely with the new firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 31044 ==&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
&lt;br /&gt;
== Update 31031 ==&lt;br /&gt;
* pluto-website-admin (220) - firewall.php after a strange fault and some layout fixes.&lt;br /&gt;
* lmce-mediatomb (702) - don&#039;t assume mediatomb is already running.&lt;br /&gt;
&lt;br /&gt;
== Update 31013 ==&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* pluto-boot-scripts (234) - Network Parameter count for more interfaces set and Network firewall accepting postrouting Masquerade  for other network interfaces.&lt;br /&gt;
&lt;br /&gt;
== Update 30985 ==&lt;br /&gt;
* pluto-website-admin (220) - #2268 fail2ban integration logging failed user login attempt.&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** #2268 fail2ban script not insert existing rules to our db.&lt;br /&gt;
** Support for audio output select on rpi via web admin&lt;br /&gt;
* lmce-diskless-tools (627,628) - update syslinux depends to syslinux-common&lt;br /&gt;
* lmce-omx-player (829,830) - Honour audio output selection of rpiMD&lt;br /&gt;
* lmce-squeezeslave (762) - Fix detection for squeezelite&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - further fixes&lt;br /&gt;
* lmce-usb-gamepad (795,796) - rewrite the whole main loop to suck less. hold-down repeats work, input handling more sane.&lt;br /&gt;
&lt;br /&gt;
== Update 30926 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Fix for #2368 insert firewall rules en #2064 edit and delete chains (except some system chains).&lt;br /&gt;
** Support for brightness based events.&lt;br /&gt;
* pluto-std-plugins (116,135) - Support for brightness based events&lt;br /&gt;
* lmce-omx-plugin (831,832) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** Database additions for XBOX 360 Gamepad (device templates, package)&lt;br /&gt;
** Modification of OMX Plugin to allow priority to be changed.&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - the XBOX 360 Gamepad driver, uses xboxdrv userspace driver.&lt;br /&gt;
* lmce-usb-gamepad (795,796) - additions here for above XBOX 360 Gamepad support.&lt;br /&gt;
&lt;br /&gt;
== Update 30862 ==&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress can now read latest files per linuxmce user.&lt;br /&gt;
&lt;br /&gt;
== Update 30860 ==&lt;br /&gt;
* lmce-weather (838,839) - some fixes by cfernandes&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress.&lt;br /&gt;
* pluto-boot-scripts (234) - more mail fixes&lt;br /&gt;
&lt;br /&gt;
== Update 30855 ==&lt;br /&gt;
* pluto-vdr, pluto-vdr-plugin - remove hardcoding of core IP and network address, but depend on the pluto.conf entries for DCERouter.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location (again)&lt;br /&gt;
* lmce-diskless-tools - stop copying apt configs from the core&lt;br /&gt;
* pluto-boot-scripts - fix postfix setup #2393&lt;br /&gt;
&lt;br /&gt;
== Update 30841 ==&lt;br /&gt;
* lmce-avwizard-sounds - fix replaces/conflicts data&lt;br /&gt;
* lmce-skins-basic - fix replaces/conflicts data&lt;br /&gt;
* lmce-avwizard-skin-basic - fix replaces/conflicts data&lt;br /&gt;
&lt;br /&gt;
== Update 30383 ==&lt;br /&gt;
* pluto-website-admin (220) - Add Hue lights related test button.&lt;br /&gt;
* pluto-boot-scripts - Add another option --autobackup to PlutoRestorePoint.sh to allow backup of pluto_main only&lt;br /&gt;
&lt;br /&gt;
== Update 30814 ==&lt;br /&gt;
* pluto-Boot-scripts - Firewall order by place and PK_Firewall to let rules stay on top on the middle or on the bottom.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location&lt;br /&gt;
* lmce-hue-controller (862,863) - Fix bug in adding new lights, now adds serial number.&lt;br /&gt;
* pluto-website-admin (220) - Fix oops relating the missing &#039;.&#039; which caused operations/login.php not to work.&lt;br /&gt;
&lt;br /&gt;
== Update 30783 ==&lt;br /&gt;
* lmce-nbd-client-wrapper - new pkg to hold common script&lt;br /&gt;
* pluto-xine-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* lmce-vlc-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* pluto-boot-scripts - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
* pluto-storage-devices - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30777 ==&lt;br /&gt;
* lmce-core - depend on openswan&lt;br /&gt;
* pluto-system-database - pkg updates&lt;br /&gt;
* pluto-boot-scripts - remove check for openswan from bootscript&lt;br /&gt;
* pluto-generic-serial-device - update to ruby 1.9.1&lt;br /&gt;
&lt;br /&gt;
== Update 30773==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller internals to now include polling, so as to make sure floorplan data is accurate. Changes underlying mechanisms for how lights are handled in preparation for extending additional support for Cree lights and sensors devices.&lt;br /&gt;
&lt;br /&gt;
== Update 30767 ==&lt;br /&gt;
* lmce-diskless-tools - update diskless archive name to reflect current compression method xz.&lt;br /&gt;
* pluto-website-admin (220) - updates to internet radio, moves add channels to a seperate page.  Thanks Dap-P!&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
* pluto-vdr - adds missing depends on vdr in trusty&lt;br /&gt;
* lmce-core - update depends to new pkg name lmce-avwizard-sounds&lt;br /&gt;
* pluto-avwizard - update depends to new pkg name lmce-avwizard-skins-basic&lt;br /&gt;
* lmce-clock-screen-saver - make the clock screen saver use the WMController/wmctrl methods for setting window visibility to be compatible with Orbiter. (TSCHAK) (Trusty only)&lt;br /&gt;
* pluto-storage-devices - Make sure that smbpasswd is used to create or update sambahelper&#039;s password (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30726 ==&lt;br /&gt;
* pluto-vdr - VDR player&#039;s package assumed a correctly installed vdr package which includes an entry in /etc/default for vdr. We no longer fail on a missing file.&lt;br /&gt;
&lt;br /&gt;
== Update 30724 ==&lt;br /&gt;
* lmce-weather - updates to weather sources, add OpenWM source.  Thanks SBCC and cfernandes!&lt;br /&gt;
* lmce-skins-* - adds missing telecom icons, updates/adds weather icons&lt;br /&gt;
* lmce-avwizard-sounds - remove extraneous stuff from pkg, reduce pkg size back to normal.  Proper replaces/conflicts/data...&lt;br /&gt;
* lmce-avwizard-skin-basic - Proper replaces/conflicts/data...&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
&lt;br /&gt;
== Update 30718 ==&lt;br /&gt;
* lmce-core - new depends on lmce-skins*&lt;br /&gt;
* lmce-md-meta - add depends on pnp-detection scripts&lt;br /&gt;
* lmce-hybrid - new depends on lmce-skins*&lt;br /&gt;
* pluto-avwizard (556,555) - add pciutils as a depends, still need to deal with multiarch stuff so this will break armhf, we will not update armhf for now, it doesn&#039;t use avwizard but does install it.&lt;br /&gt;
* lmce-diskless-tools - minor diskless create fixups&lt;br /&gt;
* pluto-orbiter - missing depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio script&lt;br /&gt;
* pluto-website-admin (220) - recognize MIDs as top level devices&lt;br /&gt;
* pluto-mythtv-player - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 30628 ==&lt;br /&gt;
* *-database - fix install issues&lt;br /&gt;
&lt;br /&gt;
== Update 30622 ==&lt;br /&gt;
* pluto-orbiterinstallers - fix depends issue&lt;br /&gt;
* pluto-system-database - lots of compat updates&lt;br /&gt;
* lmce-* - lots of compat updates&lt;br /&gt;
* pluto-* - lots of compat updates&lt;br /&gt;
&lt;br /&gt;
== Update 30618 ==&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio scripts&lt;br /&gt;
* pluto-website-admin (220) - updated internet radio page&lt;br /&gt;
&lt;br /&gt;
== Update 30571 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - send &amp;quot;Device is turned on or off&amp;quot; event when appropriate so the corresponding event works as expected&lt;br /&gt;
* lmce-squeezeslave (762) - set to pnp create without prompting&lt;br /&gt;
* lmce-runtime-dependencies (903) - pkg to help consolidate runtime depends.&lt;br /&gt;
* lmce-core (888) - updated depends&lt;br /&gt;
* lmce-md-meta (450)- updated depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated depends&lt;br /&gt;
* pluto-createdevice (303,304) - updated depends&lt;br /&gt;
* lmce-weather(838,839) - fix potential segfault&lt;br /&gt;
* pluto-website-admin (220) - add &amp;quot;replace node&amp;quot; button to advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 30549 ==&lt;br /&gt;
* pluto-mythtv-player - fix misaligned data values during mythtv.txt creation.&lt;br /&gt;
&lt;br /&gt;
== Update 30526 ==&lt;br /&gt;
* lmce-core - new pkg&lt;br /&gt;
* lmce-hybrid - pkg depends changes&lt;br /&gt;
* lmce-md-meta - pkg depends changes&lt;br /&gt;
* pluto-dcerouter - pkg depends changes&lt;br /&gt;
* pluto-photo-screen-saver - pkg depends changes&lt;br /&gt;
* pluto-boot-scripts - pkg depends changes&lt;br /&gt;
* pluto-orbiter - pkg depends changes&lt;br /&gt;
* pluto-simplephone - pkg depends changes&lt;br /&gt;
* pluto-website-admin - pkg depends changes&lt;br /&gt;
* lmce-mythtv-scripts - pkg depends changes&lt;br /&gt;
* pluto-system-database - pkg depends changes&lt;br /&gt;
* lmce-squeezeslave (762) - fix launch script, automatically create associated squeezebox player on the core.&lt;br /&gt;
* pluto-std-plugins - run New_PnP_MD.sh for new MID devices as well.&lt;br /&gt;
* lmce-diskless-tools - don&#039;t fail on invoke-rc.d during diskless create, exit gracefully and continue.&lt;br /&gt;
* pluto-mythtv-player - fix diskless create failures due to old hacks.  more work is needed here overall on mythtv integration.&lt;br /&gt;
&lt;br /&gt;
== Update 30419 ==&lt;br /&gt;
* pluto-slim-server - Make sure to turn off all Squeeze* devices when Slim Server Streamer starts or restarts (so that squeezelite does not hog sound cards.)&lt;br /&gt;
* pluto-hald (529,530) - add device node path to pnpqueue with v4l devices during detection&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - update for new lib version&lt;br /&gt;
&lt;br /&gt;
== Update 30384 ==&lt;br /&gt;
* pluto-confirm-dependencies - depend on pluto-install-scripts.&lt;br /&gt;
* pluto-disk-drive (122,141) - remove hal bits that dealt with old jukebox bugs.&lt;br /&gt;
* pluto-capture-card-scripts (580) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-pnp-detection (562) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-storage-devices (533) - convert autofs from hal to udev.&lt;br /&gt;
* pluto-bootscripts (234) - disable starting the hald since we&#039;re using udev now, remove false &#039;fail&#039; messages during reboot/shutdown&lt;br /&gt;
* pluto-slim-server-streamer - make one tweak (do not delete m_mapStreamsToPlayers entry in CMD_Stop). Streaming now works consistently, properly, with squeezebox devices and their clones. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30354 ==&lt;br /&gt;
* pluto-hald (529,530) - fix attempt to fire event for child device of usb-dongle.&lt;br /&gt;
* pluto-slim-server-streamer - Implement FF/REW (transport) trick-play control for Squeeze* devices. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30341 ==&lt;br /&gt;
* pluto-bootscripst - fixes for PPPoE users to not autostart the external interface.&lt;br /&gt;
* pluto-slim-server-streamer - Fix to power off squeezebox player when stream is not in use. This allows softsqueeze/squeezeslave/squeezelite players to let go of a sound device, when not in use (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30332 ==&lt;br /&gt;
* pluto-orbiter (118,139) - disable old hid device functionality.  Anyone who needs it can request a special build which will be provided at no extra charge. ;)&lt;br /&gt;
* pluto-bootscripts (234) - disable Gamepad Radar, functionality now in hal through udev&lt;br /&gt;
* pluto-avwizard (556,555) - fixes mangling of RemoteCmd when &amp;gt;1 remote is detected.&lt;br /&gt;
* pluto-hal-device-finder (535,536) - update to use udev rather than hal.&lt;br /&gt;
* pluto-hald (529,530) - update to use udev rather than hal.&lt;br /&gt;
* pluto-system-database (211) - updates for new detection method (joystick, cec-adaptor), update dependency data for hal pks to reflect dropping hald and add depends on udev now.&lt;br /&gt;
&lt;br /&gt;
== Update 30219 ==&lt;br /&gt;
* pluto-bootscripts (234) - Fail2ban firewall update script, and missing radioscript.sh.&lt;br /&gt;
* pluto-website-admin - Place set for rules on the firewall and bantime for fail2ban integration.&lt;br /&gt;
* pluto-std-plugins (116,135) - adds heirloom-mailx for &#039;mailx -r&#039; functionality, fixes e-mail in general info plugin&lt;br /&gt;
&lt;br /&gt;
== Update 30068 ==&lt;br /&gt;
* lmce-advanced-ip-camera(813,812) - Fixed high cpu usage if connection to camera can not be made&lt;br /&gt;
&lt;br /&gt;
== Update 30052 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - fix android pkg meta data, need to rebuild all together&lt;br /&gt;
&lt;br /&gt;
== Update 30051 ==&lt;br /&gt;
* pluto-updateentarea (341,342) - use DAY/NIGHT in watching/stopped watching events to make them smarter&lt;br /&gt;
* pluto-std-plugins (116,135) - Implement Get Device Status in General Info Plugin&lt;br /&gt;
* pluto-bootscripts (234) - fix VPN ip up/down&lt;br /&gt;
&lt;br /&gt;
== Update 30025 ==&lt;br /&gt;
* pluto-system-database (211) - column def updates&lt;br /&gt;
* pluto-local-database (214) - new Firewall columns and new VPN columns for Users table.&lt;br /&gt;
&lt;br /&gt;
== Update 30014 ==&lt;br /&gt;
* lmce-transmission-client (852) - fix postinst issue.  (Thanks SBCC)&lt;br /&gt;
== Update 29994 ==&lt;br /&gt;
More VLC Player changes to make it at least somewhat usable, there were some ugly bugs that came to light once i plopped it onto my production system. Right now sound device is plughw:0,3, if you need a different one, change it in the code.  (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* lmce-vlc-player - many little fixes to make it suck less.&lt;br /&gt;
&lt;br /&gt;
== Update 29990 ==&lt;br /&gt;
I am working on the VLC player, and it is breathing enough for basic testing. Please do not use in production environment. There is still a lot of code to write (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - updates for VLC player (TSCHAK)&lt;br /&gt;
* vlc-player (882,884) - Very early alpha developer test of the VLC player. (TSCHAK)&lt;br /&gt;
* vlc-plugin (874,875) - Very alpha developer test of the VLC plugin. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 29984 ==&lt;br /&gt;
* pluto-system-database (211) - fix bad repos in pkgs&lt;br /&gt;
* pluto-website-admin - just because I think it is necessary :-)&lt;br /&gt;
&lt;br /&gt;
== Update 29983 ==&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35895</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35895"/>
		<updated>2015-09-13T17:18:30Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: /* Upcoming fixes... */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the 1204 changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo much easier. &amp;lt;- hey!  the text is back!  :D&lt;br /&gt;
&#039;&#039;&#039;Please include the pkg #s to facilitate building on 2 x i386 targets in addition to 3 x armhf targets where full builds are not always practical.  Keep in mind that most packages are referred to by two (2) package numbers from the database.  ty&lt;br /&gt;
&lt;br /&gt;
* lmce-weather-plugin - make change to allow for tonight&#039;s forecast data (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 31378 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Start_KDE.sh ownership fix, AV config updates&lt;br /&gt;
* pluto-system-database (211) - update pkgs &amp;amp; depends&lt;br /&gt;
* pluto-avwizard (555,556) - update pkgs &amp;amp; depends &amp;amp; config scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - do not run update deb_cache during dvd creation&lt;br /&gt;
* pluto-x-scripts (520) - fixups to Xconfigure.sh&lt;br /&gt;
&lt;br /&gt;
== Update 31356 ==&lt;br /&gt;
* pluto-system-database (211) - update depends&lt;br /&gt;
* pluto-orbiter (119,138) - update depends&lt;br /&gt;
* lmce-diskless-tools (627,628) - speedup dpkg in diskless create, fix missing quotes&lt;br /&gt;
&lt;br /&gt;
== Update 31352 ==&lt;br /&gt;
* pluto-motion-wrapper - more config file location fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 31351 ==&lt;br /&gt;
* pluto-boot-scripts (234) - change service &#039;nis&#039; to &#039;ypserv&#039;, nis is no longer a service name&lt;br /&gt;
* pluto-website-admin (220) - remove &#039;idiot&#039; text, let&#039;s be nice to people.&lt;br /&gt;
* lmce-core (888) - do not create and config under ubiquity&lt;br /&gt;
* lmce-md-meta (450) - do not create and config under ubiquity&lt;br /&gt;
* motion (replacement) - fix bad config file setting in rules&lt;br /&gt;
&lt;br /&gt;
== Update 31337 ==&lt;br /&gt;
* motion (replacement) - new version of motion to match new configuration values generated by linuxmce&lt;br /&gt;
&lt;br /&gt;
== Update 31331 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - fix for brightness events&lt;br /&gt;
* pluto-boot-scripts (234) - fix kdm disabling, start ubiquity after network config&lt;br /&gt;
* lmce-diskless-tools (627,628) - add upstart overrides for kdm&lt;br /&gt;
* lmce-install-scripts (391) - start ubiquity after network config&lt;br /&gt;
&lt;br /&gt;
== Update 31314 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add missing depends&lt;br /&gt;
&lt;br /&gt;
== Update 31292 ==&lt;br /&gt;
* lmce-core-locator (replacement) - (1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-system-database (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
* All .debs created by MakeRelease - removal of all Pre-Depends, everything is now a Depends entry (&amp;lt;strike&amp;gt;1204-i386&amp;lt;/strike&amp;gt;,1404-i386,&amp;lt;strike&amp;gt;1404-armhf,wheezy-armhf,jessie-armhf&amp;lt;/strike&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
== Update 31228 ==&lt;br /&gt;
* lmce-asterisk (replacement) - add depends on pluto-local-database&lt;br /&gt;
&lt;br /&gt;
== Update 31214 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package (not in repo, need build-replacements.sh svn up&#039;d?)&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - preinst/postinst updates&lt;br /&gt;
* pluto-boot-scripts (234) - preinst/postinst updates&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-disked-md-base (801) - firstboot updates&lt;br /&gt;
&lt;br /&gt;
== Update 31187 ==&lt;br /&gt;
* lmce-core-locator (replacement) - new package&lt;br /&gt;
* pluto-confirm-dependencies (281,272) - new depends on lmce-install-scripts (fixes unable to apt-get dist-upgrade)&lt;br /&gt;
* lmce-md-meta (450) - new depends on nfs-common, openssh-server and pastebinit&lt;br /&gt;
* pluto-system-database (211) - db updates&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* lmce-core (888) - update depends, preinst/postinst&lt;br /&gt;
* pluto-boot-scripts (234) - depends &amp;amp; preinst/postinst updates&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - add override mythweb defaults in pkg preinst&lt;br /&gt;
* pluto-bluetooth-dongle (124,143) - update depends&lt;br /&gt;
&lt;br /&gt;
== Update 31133 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** enable WakeMDs.sh to wake any halted MDs.&lt;br /&gt;
** consolidate all boot script launching to /etc/init.d/linuxmce&lt;br /&gt;
* pluto-avwizard (555,556) - moves start script to /usr/pluto/bin, called by /etc/init.d/linuxmce now&lt;br /&gt;
* lmce-update-system (650,651) - removes init.d script, called by /etc/init.d/linuxmce now&lt;br /&gt;
* pluto-website-admin (220) - GUI changes on network settings if an bridge is configured on the db.&lt;br /&gt;
* lmce-core (888) - depend on pluto-asterisk, lmce-asterisk, lmce-install-scripts&lt;br /&gt;
* lmce-install-scripts (391) - install, update, config &amp;amp; confirmdeps helpers&lt;br /&gt;
* pluto-generic-serial-device (307,335) - wildshot attempt at fixing segfaults&lt;br /&gt;
&lt;br /&gt;
== Update 31103 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** Network bridging now possible  for wifi AP to have the same network as the local lan. &lt;br /&gt;
** ipv6 on/off for network interfaces. Read multiple ipv6 interfaces from the db.&lt;br /&gt;
** re-enable HaltMDs.&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* libqhttpserver (912) needed for linuxmce nvr&lt;br /&gt;
* lmce-launch-manager - (298,299) - ?&lt;br /&gt;
&lt;br /&gt;
== Update 31087 ==&lt;br /&gt;
* lmce-weather (838,839) - Fix a serious bug in getconfig where incorrect configuration device data would crash program. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 31083 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes #2422, advanced zwave page broken in chrome&lt;br /&gt;
* pluto-system-database (211) - thumbnail screen fixes&lt;br /&gt;
&lt;br /&gt;
== Update 31074 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** setEa2.php - Fix settings for creating entertain area.&lt;br /&gt;
** qOrbiterGenerator.php - Fix erroneous EA creation by removing it.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Fix incorrect setting for enabling / disabling motion.&lt;br /&gt;
&lt;br /&gt;
== Update 31069 ==&lt;br /&gt;
* pluto-website-admin (220) - setEa2.php Fix settings for creating entertain area.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Initial build.&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (881) - Large update of skins and internals.&lt;br /&gt;
&lt;br /&gt;
== Update 31061 ==&lt;br /&gt;
* lmce-squeezeslave (762) - Add configuration DD to command line&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DB package updates&lt;br /&gt;
** restore previous video remote layout with Options button to select subtitles/audio tracks/video tracks from a datagrid list.&lt;br /&gt;
* pluto-website-admin (220) - firewall.php edit rules for non advanced firewall and some other small fixes.&lt;br /&gt;
* lmce-asterisk (replacement) - sip config modules to avoid autoload.&lt;br /&gt;
&lt;br /&gt;
== Update 31051 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** firewall.php not adding rules now fixet.&lt;br /&gt;
** Test buttons for Hue lights&lt;br /&gt;
** Security outsideAccess page now works nicely with the new firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 31044 ==&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
&lt;br /&gt;
== Update 31031 ==&lt;br /&gt;
* pluto-website-admin (220) - firewall.php after a strange fault and some layout fixes.&lt;br /&gt;
* lmce-mediatomb (702) - don&#039;t assume mediatomb is already running.&lt;br /&gt;
&lt;br /&gt;
== Update 31013 ==&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* pluto-boot-scripts (234) - Network Parameter count for more interfaces set and Network firewall accepting postrouting Masquerade  for other network interfaces.&lt;br /&gt;
&lt;br /&gt;
== Update 30985 ==&lt;br /&gt;
* pluto-website-admin (220) - #2268 fail2ban integration logging failed user login attempt.&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** #2268 fail2ban script not insert existing rules to our db.&lt;br /&gt;
** Support for audio output select on rpi via web admin&lt;br /&gt;
* lmce-diskless-tools (627,628) - update syslinux depends to syslinux-common&lt;br /&gt;
* lmce-omx-player (829,830) - Honour audio output selection of rpiMD&lt;br /&gt;
* lmce-squeezeslave (762) - Fix detection for squeezelite&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - further fixes&lt;br /&gt;
* lmce-usb-gamepad (795,796) - rewrite the whole main loop to suck less. hold-down repeats work, input handling more sane.&lt;br /&gt;
&lt;br /&gt;
== Update 30926 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Fix for #2368 insert firewall rules en #2064 edit and delete chains (except some system chains).&lt;br /&gt;
** Support for brightness based events.&lt;br /&gt;
* pluto-std-plugins (116,135) - Support for brightness based events&lt;br /&gt;
* lmce-omx-plugin (831,832) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** Database additions for XBOX 360 Gamepad (device templates, package)&lt;br /&gt;
** Modification of OMX Plugin to allow priority to be changed.&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - the XBOX 360 Gamepad driver, uses xboxdrv userspace driver.&lt;br /&gt;
* lmce-usb-gamepad (795,796) - additions here for above XBOX 360 Gamepad support.&lt;br /&gt;
&lt;br /&gt;
== Update 30862 ==&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress can now read latest files per linuxmce user.&lt;br /&gt;
&lt;br /&gt;
== Update 30860 ==&lt;br /&gt;
* lmce-weather (838,839) - some fixes by cfernandes&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress.&lt;br /&gt;
* pluto-boot-scripts (234) - more mail fixes&lt;br /&gt;
&lt;br /&gt;
== Update 30855 ==&lt;br /&gt;
* pluto-vdr, pluto-vdr-plugin - remove hardcoding of core IP and network address, but depend on the pluto.conf entries for DCERouter.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location (again)&lt;br /&gt;
* lmce-diskless-tools - stop copying apt configs from the core&lt;br /&gt;
* pluto-boot-scripts - fix postfix setup #2393&lt;br /&gt;
&lt;br /&gt;
== Update 30841 ==&lt;br /&gt;
* lmce-avwizard-sounds - fix replaces/conflicts data&lt;br /&gt;
* lmce-skins-basic - fix replaces/conflicts data&lt;br /&gt;
* lmce-avwizard-skin-basic - fix replaces/conflicts data&lt;br /&gt;
&lt;br /&gt;
== Update 30383 ==&lt;br /&gt;
* pluto-website-admin (220) - Add Hue lights related test button.&lt;br /&gt;
* pluto-boot-scripts - Add another option --autobackup to PlutoRestorePoint.sh to allow backup of pluto_main only&lt;br /&gt;
&lt;br /&gt;
== Update 30814 ==&lt;br /&gt;
* pluto-Boot-scripts - Firewall order by place and PK_Firewall to let rules stay on top on the middle or on the bottom.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location&lt;br /&gt;
* lmce-hue-controller (862,863) - Fix bug in adding new lights, now adds serial number.&lt;br /&gt;
* pluto-website-admin (220) - Fix oops relating the missing &#039;.&#039; which caused operations/login.php not to work.&lt;br /&gt;
&lt;br /&gt;
== Update 30783 ==&lt;br /&gt;
* lmce-nbd-client-wrapper - new pkg to hold common script&lt;br /&gt;
* pluto-xine-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* lmce-vlc-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* pluto-boot-scripts - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
* pluto-storage-devices - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30777 ==&lt;br /&gt;
* lmce-core - depend on openswan&lt;br /&gt;
* pluto-system-database - pkg updates&lt;br /&gt;
* pluto-boot-scripts - remove check for openswan from bootscript&lt;br /&gt;
* pluto-generic-serial-device - update to ruby 1.9.1&lt;br /&gt;
&lt;br /&gt;
== Update 30773==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller internals to now include polling, so as to make sure floorplan data is accurate. Changes underlying mechanisms for how lights are handled in preparation for extending additional support for Cree lights and sensors devices.&lt;br /&gt;
&lt;br /&gt;
== Update 30767 ==&lt;br /&gt;
* lmce-diskless-tools - update diskless archive name to reflect current compression method xz.&lt;br /&gt;
* pluto-website-admin (220) - updates to internet radio, moves add channels to a seperate page.  Thanks Dap-P!&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
* pluto-vdr - adds missing depends on vdr in trusty&lt;br /&gt;
* lmce-core - update depends to new pkg name lmce-avwizard-sounds&lt;br /&gt;
* pluto-avwizard - update depends to new pkg name lmce-avwizard-skins-basic&lt;br /&gt;
* lmce-clock-screen-saver - make the clock screen saver use the WMController/wmctrl methods for setting window visibility to be compatible with Orbiter. (TSCHAK) (Trusty only)&lt;br /&gt;
* pluto-storage-devices - Make sure that smbpasswd is used to create or update sambahelper&#039;s password (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30726 ==&lt;br /&gt;
* pluto-vdr - VDR player&#039;s package assumed a correctly installed vdr package which includes an entry in /etc/default for vdr. We no longer fail on a missing file.&lt;br /&gt;
&lt;br /&gt;
== Update 30724 ==&lt;br /&gt;
* lmce-weather - updates to weather sources, add OpenWM source.  Thanks SBCC and cfernandes!&lt;br /&gt;
* lmce-skins-* - adds missing telecom icons, updates/adds weather icons&lt;br /&gt;
* lmce-avwizard-sounds - remove extraneous stuff from pkg, reduce pkg size back to normal.  Proper replaces/conflicts/data...&lt;br /&gt;
* lmce-avwizard-skin-basic - Proper replaces/conflicts/data...&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
&lt;br /&gt;
== Update 30718 ==&lt;br /&gt;
* lmce-core - new depends on lmce-skins*&lt;br /&gt;
* lmce-md-meta - add depends on pnp-detection scripts&lt;br /&gt;
* lmce-hybrid - new depends on lmce-skins*&lt;br /&gt;
* pluto-avwizard (556,555) - add pciutils as a depends, still need to deal with multiarch stuff so this will break armhf, we will not update armhf for now, it doesn&#039;t use avwizard but does install it.&lt;br /&gt;
* lmce-diskless-tools - minor diskless create fixups&lt;br /&gt;
* pluto-orbiter - missing depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio script&lt;br /&gt;
* pluto-website-admin (220) - recognize MIDs as top level devices&lt;br /&gt;
* pluto-mythtv-player - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 30628 ==&lt;br /&gt;
* *-database - fix install issues&lt;br /&gt;
&lt;br /&gt;
== Update 30622 ==&lt;br /&gt;
* pluto-orbiterinstallers - fix depends issue&lt;br /&gt;
* pluto-system-database - lots of compat updates&lt;br /&gt;
* lmce-* - lots of compat updates&lt;br /&gt;
* pluto-* - lots of compat updates&lt;br /&gt;
&lt;br /&gt;
== Update 30618 ==&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio scripts&lt;br /&gt;
* pluto-website-admin (220) - updated internet radio page&lt;br /&gt;
&lt;br /&gt;
== Update 30571 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - send &amp;quot;Device is turned on or off&amp;quot; event when appropriate so the corresponding event works as expected&lt;br /&gt;
* lmce-squeezeslave (762) - set to pnp create without prompting&lt;br /&gt;
* lmce-runtime-dependencies (903) - pkg to help consolidate runtime depends.&lt;br /&gt;
* lmce-core (888) - updated depends&lt;br /&gt;
* lmce-md-meta (450)- updated depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated depends&lt;br /&gt;
* pluto-createdevice (303,304) - updated depends&lt;br /&gt;
* lmce-weather(838,839) - fix potential segfault&lt;br /&gt;
* pluto-website-admin (220) - add &amp;quot;replace node&amp;quot; button to advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 30549 ==&lt;br /&gt;
* pluto-mythtv-player - fix misaligned data values during mythtv.txt creation.&lt;br /&gt;
&lt;br /&gt;
== Update 30526 ==&lt;br /&gt;
* lmce-core - new pkg&lt;br /&gt;
* lmce-hybrid - pkg depends changes&lt;br /&gt;
* lmce-md-meta - pkg depends changes&lt;br /&gt;
* pluto-dcerouter - pkg depends changes&lt;br /&gt;
* pluto-photo-screen-saver - pkg depends changes&lt;br /&gt;
* pluto-boot-scripts - pkg depends changes&lt;br /&gt;
* pluto-orbiter - pkg depends changes&lt;br /&gt;
* pluto-simplephone - pkg depends changes&lt;br /&gt;
* pluto-website-admin - pkg depends changes&lt;br /&gt;
* lmce-mythtv-scripts - pkg depends changes&lt;br /&gt;
* pluto-system-database - pkg depends changes&lt;br /&gt;
* lmce-squeezeslave (762) - fix launch script, automatically create associated squeezebox player on the core.&lt;br /&gt;
* pluto-std-plugins - run New_PnP_MD.sh for new MID devices as well.&lt;br /&gt;
* lmce-diskless-tools - don&#039;t fail on invoke-rc.d during diskless create, exit gracefully and continue.&lt;br /&gt;
* pluto-mythtv-player - fix diskless create failures due to old hacks.  more work is needed here overall on mythtv integration.&lt;br /&gt;
&lt;br /&gt;
== Update 30419 ==&lt;br /&gt;
* pluto-slim-server - Make sure to turn off all Squeeze* devices when Slim Server Streamer starts or restarts (so that squeezelite does not hog sound cards.)&lt;br /&gt;
* pluto-hald (529,530) - add device node path to pnpqueue with v4l devices during detection&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - update for new lib version&lt;br /&gt;
&lt;br /&gt;
== Update 30384 ==&lt;br /&gt;
* pluto-confirm-dependencies - depend on pluto-install-scripts.&lt;br /&gt;
* pluto-disk-drive (122,141) - remove hal bits that dealt with old jukebox bugs.&lt;br /&gt;
* pluto-capture-card-scripts (580) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-pnp-detection (562) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-storage-devices (533) - convert autofs from hal to udev.&lt;br /&gt;
* pluto-bootscripts (234) - disable starting the hald since we&#039;re using udev now, remove false &#039;fail&#039; messages during reboot/shutdown&lt;br /&gt;
* pluto-slim-server-streamer - make one tweak (do not delete m_mapStreamsToPlayers entry in CMD_Stop). Streaming now works consistently, properly, with squeezebox devices and their clones. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30354 ==&lt;br /&gt;
* pluto-hald (529,530) - fix attempt to fire event for child device of usb-dongle.&lt;br /&gt;
* pluto-slim-server-streamer - Implement FF/REW (transport) trick-play control for Squeeze* devices. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30341 ==&lt;br /&gt;
* pluto-bootscripst - fixes for PPPoE users to not autostart the external interface.&lt;br /&gt;
* pluto-slim-server-streamer - Fix to power off squeezebox player when stream is not in use. This allows softsqueeze/squeezeslave/squeezelite players to let go of a sound device, when not in use (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30332 ==&lt;br /&gt;
* pluto-orbiter (118,139) - disable old hid device functionality.  Anyone who needs it can request a special build which will be provided at no extra charge. ;)&lt;br /&gt;
* pluto-bootscripts (234) - disable Gamepad Radar, functionality now in hal through udev&lt;br /&gt;
* pluto-avwizard (556,555) - fixes mangling of RemoteCmd when &amp;gt;1 remote is detected.&lt;br /&gt;
* pluto-hal-device-finder (535,536) - update to use udev rather than hal.&lt;br /&gt;
* pluto-hald (529,530) - update to use udev rather than hal.&lt;br /&gt;
* pluto-system-database (211) - updates for new detection method (joystick, cec-adaptor), update dependency data for hal pks to reflect dropping hald and add depends on udev now.&lt;br /&gt;
&lt;br /&gt;
== Update 30219 ==&lt;br /&gt;
* pluto-bootscripts (234) - Fail2ban firewall update script, and missing radioscript.sh.&lt;br /&gt;
* pluto-website-admin - Place set for rules on the firewall and bantime for fail2ban integration.&lt;br /&gt;
* pluto-std-plugins (116,135) - adds heirloom-mailx for &#039;mailx -r&#039; functionality, fixes e-mail in general info plugin&lt;br /&gt;
&lt;br /&gt;
== Update 30068 ==&lt;br /&gt;
* lmce-advanced-ip-camera(813,812) - Fixed high cpu usage if connection to camera can not be made&lt;br /&gt;
&lt;br /&gt;
== Update 30052 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - fix android pkg meta data, need to rebuild all together&lt;br /&gt;
&lt;br /&gt;
== Update 30051 ==&lt;br /&gt;
* pluto-updateentarea (341,342) - use DAY/NIGHT in watching/stopped watching events to make them smarter&lt;br /&gt;
* pluto-std-plugins (116,135) - Implement Get Device Status in General Info Plugin&lt;br /&gt;
* pluto-bootscripts (234) - fix VPN ip up/down&lt;br /&gt;
&lt;br /&gt;
== Update 30025 ==&lt;br /&gt;
* pluto-system-database (211) - column def updates&lt;br /&gt;
* pluto-local-database (214) - new Firewall columns and new VPN columns for Users table.&lt;br /&gt;
&lt;br /&gt;
== Update 30014 ==&lt;br /&gt;
* lmce-transmission-client (852) - fix postinst issue.  (Thanks SBCC)&lt;br /&gt;
== Update 29994 ==&lt;br /&gt;
More VLC Player changes to make it at least somewhat usable, there were some ugly bugs that came to light once i plopped it onto my production system. Right now sound device is plughw:0,3, if you need a different one, change it in the code.  (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* lmce-vlc-player - many little fixes to make it suck less.&lt;br /&gt;
&lt;br /&gt;
== Update 29990 ==&lt;br /&gt;
I am working on the VLC player, and it is breathing enough for basic testing. Please do not use in production environment. There is still a lot of code to write (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - updates for VLC player (TSCHAK)&lt;br /&gt;
* vlc-player (882,884) - Very early alpha developer test of the VLC player. (TSCHAK)&lt;br /&gt;
* vlc-plugin (874,875) - Very alpha developer test of the VLC plugin. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 29984 ==&lt;br /&gt;
* pluto-system-database (211) - fix bad repos in pkgs&lt;br /&gt;
* pluto-website-admin - just because I think it is necessary :-)&lt;br /&gt;
&lt;br /&gt;
== Update 29983 ==&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35798</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35798"/>
		<updated>2015-08-18T01:55:19Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: /* Upcoming fixes... */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the 1204 changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo much easier. &amp;lt;- hey!  the text is back!  :D&lt;br /&gt;
&#039;&#039;&#039;Please include the pkg #s to facilitate building on 2 x i386 targets in addition to 3 x armhf targets where full builds are not always practical.  ty.&lt;br /&gt;
&lt;br /&gt;
* lmce-weather (838,839) - Fix a serious bug in getconfig where incorrect configuration device data would crash program. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 31083 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes #2422, advanced zwave page broken in chrome&lt;br /&gt;
* pluto-system-database (211) - thumbnail screen fixes&lt;br /&gt;
&lt;br /&gt;
== Update 31074 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** setEa2.php - Fix settings for creating entertain area.&lt;br /&gt;
** qOrbiterGenerator.php - Fix erroneous EA creation by removing it.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Fix incorrect setting for enabling / disabling motion.&lt;br /&gt;
&lt;br /&gt;
== Update 31069 ==&lt;br /&gt;
* pluto-website-admin (220) - setEa2.php Fix settings for creating entertain area.&lt;br /&gt;
* LinuxMCE Network Video Recorder (916) - Initial build.&lt;br /&gt;
* LinuxMCE qOrbiter Android (Qt5) (881) - Large update of skins and internals.&lt;br /&gt;
&lt;br /&gt;
== Update 31061 ==&lt;br /&gt;
* lmce-squeezeslave (762) - Add configuration DD to command line&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** DB package updates&lt;br /&gt;
** restore previous video remote layout with Options button to select subtitles/audio tracks/video tracks from a datagrid list.&lt;br /&gt;
* pluto-website-admin (220) - firewall.php edit rules for non advanced firewall and some other small fixes.&lt;br /&gt;
* lmce-asterisk (replacement) - sip config modules to avoid autoload.&lt;br /&gt;
&lt;br /&gt;
== Update 31051 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** firewall.php not adding rules now fixet.&lt;br /&gt;
** Test buttons for Hue lights&lt;br /&gt;
** Security outsideAccess page now works nicely with the new firewall.&lt;br /&gt;
&lt;br /&gt;
== Update 31044 ==&lt;br /&gt;
* logitechmediaserver** (replacements) - all logitechmediaserver .debs&lt;br /&gt;
&lt;br /&gt;
== Update 31031 ==&lt;br /&gt;
* pluto-website-admin (220) - firewall.php after a strange fault and some layout fixes.&lt;br /&gt;
* lmce-mediatomb (702) - don&#039;t assume mediatomb is already running.&lt;br /&gt;
&lt;br /&gt;
== Update 31013 ==&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-storage-devices (533) - Fix udev detection of internal HDDs&lt;br /&gt;
* pluto-boot-scripts (234) Network Parameter count for more interfaces set and Network firewall accepting postrouting Masquerade  for other network interfaces.&lt;br /&gt;
&lt;br /&gt;
== Update 30985 ==&lt;br /&gt;
* pluto-website-admin (220) - #2268 fail2ban integration logging failed user login attempt.&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** #2268 fail2ban script not insert existing rules to our db.&lt;br /&gt;
** Support for audio output select on rpi via web admin&lt;br /&gt;
* lmce-diskless-tools (627,628) - update syslinux depends to syslinux-common&lt;br /&gt;
* lmce-omx-player (829,830) - Honour audio output selection of rpiMD&lt;br /&gt;
* lmce-squeezeslave (762) - Fix detection for squeezelite&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - further fixes&lt;br /&gt;
* lmce-usb-gamepad (795,796) - rewrite the whole main loop to suck less. hold-down repeats work, input handling more sane.&lt;br /&gt;
&lt;br /&gt;
== Update 30926 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Fix for #2368 insert firewall rules en #2064 edit and delete chains (except some system chains).&lt;br /&gt;
** Support for brightness based events.&lt;br /&gt;
* pluto-std-plugins (116,135) - Support for brightness based events&lt;br /&gt;
* lmce-omx-plugin (831,832) - Fix prioritizing of media playback&lt;br /&gt;
* pluto-system-database (211)&lt;br /&gt;
** Database additions for XBOX 360 Gamepad (device templates, package)&lt;br /&gt;
** Modification of OMX Plugin to allow priority to be changed.&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - the XBOX 360 Gamepad driver, uses xboxdrv userspace driver.&lt;br /&gt;
* lmce-usb-gamepad (795,796) - additions here for above XBOX 360 Gamepad support.&lt;br /&gt;
&lt;br /&gt;
== Update 30862 ==&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress can now read latest files per linuxmce user.&lt;br /&gt;
&lt;br /&gt;
== Update 30860 ==&lt;br /&gt;
* lmce-weather (838,839) - some fixes by cfernandes&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress.&lt;br /&gt;
* pluto-boot-scripts (234) - more mail fixes&lt;br /&gt;
&lt;br /&gt;
== Update 30855 ==&lt;br /&gt;
* pluto-vdr, pluto-vdr-plugin - remove hardcoding of core IP and network address, but depend on the pluto.conf entries for DCERouter.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location (again)&lt;br /&gt;
* lmce-diskless-tools - stop copying apt configs from the core&lt;br /&gt;
* pluto-boot-scripts - fix postfix setup #2393&lt;br /&gt;
&lt;br /&gt;
== Update 30841 ==&lt;br /&gt;
* lmce-avwizard-sounds - fix replaces/conflicts data&lt;br /&gt;
* lmce-skins-basic - fix replaces/conflicts data&lt;br /&gt;
* lmce-avwizard-skin-basic - fix replaces/conflicts data&lt;br /&gt;
&lt;br /&gt;
== Update 30383 ==&lt;br /&gt;
* pluto-website-admin (220) - Add Hue lights related test button.&lt;br /&gt;
* pluto-boot-scripts - Add another option --autobackup to PlutoRestorePoint.sh to allow backup of pluto_main only&lt;br /&gt;
&lt;br /&gt;
== Update 30814 ==&lt;br /&gt;
* pluto-Boot-scripts - Firewall order by place and PK_Firewall to let rules stay on top on the middle or on the bottom.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location&lt;br /&gt;
* lmce-hue-controller (862,863) - Fix bug in adding new lights, now adds serial number.&lt;br /&gt;
* pluto-website-admin (220) - Fix oops relating the missing &#039;.&#039; which caused operations/login.php not to work.&lt;br /&gt;
&lt;br /&gt;
== Update 30783 ==&lt;br /&gt;
* lmce-nbd-client-wrapper - new pkg to hold common script&lt;br /&gt;
* pluto-xine-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* lmce-vlc-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* pluto-boot-scripts - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
* pluto-storage-devices - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30777 ==&lt;br /&gt;
* lmce-core - depend on openswan&lt;br /&gt;
* pluto-system-database - pkg updates&lt;br /&gt;
* pluto-boot-scripts - remove check for openswan from bootscript&lt;br /&gt;
* pluto-generic-serial-device - update to ruby 1.9.1&lt;br /&gt;
&lt;br /&gt;
== Update 30773==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller internals to now include polling, so as to make sure floorplan data is accurate. Changes underlying mechanisms for how lights are handled in preparation for extending additional support for Cree lights and sensors devices.&lt;br /&gt;
&lt;br /&gt;
== Update 30767 ==&lt;br /&gt;
* lmce-diskless-tools - update diskless archive name to reflect current compression method xz.&lt;br /&gt;
* pluto-website-admin (220) - updates to internet radio, moves add channels to a seperate page.  Thanks Dap-P!&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
* pluto-vdr - adds missing depends on vdr in trusty&lt;br /&gt;
* lmce-core - update depends to new pkg name lmce-avwizard-sounds&lt;br /&gt;
* pluto-avwizard - update depends to new pkg name lmce-avwizard-skins-basic&lt;br /&gt;
* lmce-clock-screen-saver - make the clock screen saver use the WMController/wmctrl methods for setting window visibility to be compatible with Orbiter. (TSCHAK) (Trusty only)&lt;br /&gt;
* pluto-storage-devices - Make sure that smbpasswd is used to create or update sambahelper&#039;s password (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30726 ==&lt;br /&gt;
* pluto-vdr - VDR player&#039;s package assumed a correctly installed vdr package which includes an entry in /etc/default for vdr. We no longer fail on a missing file.&lt;br /&gt;
&lt;br /&gt;
== Update 30724 ==&lt;br /&gt;
* lmce-weather - updates to weather sources, add OpenWM source.  Thanks SBCC and cfernandes!&lt;br /&gt;
* lmce-skins-* - adds missing telecom icons, updates/adds weather icons&lt;br /&gt;
* lmce-avwizard-sounds - remove extraneous stuff from pkg, reduce pkg size back to normal.  Proper replaces/conflicts/data...&lt;br /&gt;
* lmce-avwizard-skin-basic - Proper replaces/conflicts/data...&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
&lt;br /&gt;
== Update 30718 ==&lt;br /&gt;
* lmce-core - new depends on lmce-skins*&lt;br /&gt;
* lmce-md-meta - add depends on pnp-detection scripts&lt;br /&gt;
* lmce-hybrid - new depends on lmce-skins*&lt;br /&gt;
* pluto-avwizard (556,555) - add pciutils as a depends, still need to deal with multiarch stuff so this will break armhf, we will not update armhf for now, it doesn&#039;t use avwizard but does install it.&lt;br /&gt;
* lmce-diskless-tools - minor diskless create fixups&lt;br /&gt;
* pluto-orbiter - missing depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio script&lt;br /&gt;
* pluto-website-admin (220) - recognize MIDs as top level devices&lt;br /&gt;
* pluto-mythtv-player - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 30628 ==&lt;br /&gt;
* *-database - fix install issues&lt;br /&gt;
&lt;br /&gt;
== Update 30622 ==&lt;br /&gt;
* pluto-orbiterinstallers - fix depends issue&lt;br /&gt;
* pluto-system-database - lots of compat updates&lt;br /&gt;
* lmce-* - lots of compat updates&lt;br /&gt;
* pluto-* - lots of compat updates&lt;br /&gt;
&lt;br /&gt;
== Update 30618 ==&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio scripts&lt;br /&gt;
* pluto-website-admin (220) - updated internet radio page&lt;br /&gt;
&lt;br /&gt;
== Update 30571 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - send &amp;quot;Device is turned on or off&amp;quot; event when appropriate so the corresponding event works as expected&lt;br /&gt;
* lmce-squeezeslave (762) - set to pnp create without prompting&lt;br /&gt;
* lmce-runtime-dependencies (903) - pkg to help consolidate runtime depends.&lt;br /&gt;
* lmce-core (888) - updated depends&lt;br /&gt;
* lmce-md-meta (450)- updated depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated depends&lt;br /&gt;
* pluto-createdevice (303,304) - updated depends&lt;br /&gt;
* lmce-weather(838,839) - fix potential segfault&lt;br /&gt;
* pluto-website-admin (220) - add &amp;quot;replace node&amp;quot; button to advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 30549 ==&lt;br /&gt;
* pluto-mythtv-player - fix misaligned data values during mythtv.txt creation.&lt;br /&gt;
&lt;br /&gt;
== Update 30526 ==&lt;br /&gt;
* lmce-core - new pkg&lt;br /&gt;
* lmce-hybrid - pkg depends changes&lt;br /&gt;
* lmce-md-meta - pkg depends changes&lt;br /&gt;
* pluto-dcerouter - pkg depends changes&lt;br /&gt;
* pluto-photo-screen-saver - pkg depends changes&lt;br /&gt;
* pluto-boot-scripts - pkg depends changes&lt;br /&gt;
* pluto-orbiter - pkg depends changes&lt;br /&gt;
* pluto-simplephone - pkg depends changes&lt;br /&gt;
* pluto-website-admin - pkg depends changes&lt;br /&gt;
* lmce-mythtv-scripts - pkg depends changes&lt;br /&gt;
* pluto-system-database - pkg depends changes&lt;br /&gt;
* lmce-squeezeslave (762) - fix launch script, automatically create associated squeezebox player on the core.&lt;br /&gt;
* pluto-std-plugins - run New_PnP_MD.sh for new MID devices as well.&lt;br /&gt;
* lmce-diskless-tools - don&#039;t fail on invoke-rc.d during diskless create, exit gracefully and continue.&lt;br /&gt;
* pluto-mythtv-player - fix diskless create failures due to old hacks.  more work is needed here overall on mythtv integration.&lt;br /&gt;
&lt;br /&gt;
== Update 30419 ==&lt;br /&gt;
* pluto-slim-server - Make sure to turn off all Squeeze* devices when Slim Server Streamer starts or restarts (so that squeezelite does not hog sound cards.)&lt;br /&gt;
* pluto-hald (529,530) - add device node path to pnpqueue with v4l devices during detection&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - update for new lib version&lt;br /&gt;
&lt;br /&gt;
== Update 30384 ==&lt;br /&gt;
* pluto-confirm-dependencies - depend on pluto-install-scripts.&lt;br /&gt;
* pluto-disk-drive (122,141) - remove hal bits that dealt with old jukebox bugs.&lt;br /&gt;
* pluto-capture-card-scripts (580) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-pnp-detection (562) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-storage-devices (533) - convert autofs from hal to udev.&lt;br /&gt;
* pluto-bootscripts (234) - disable starting the hald since we&#039;re using udev now, remove false &#039;fail&#039; messages during reboot/shutdown&lt;br /&gt;
* pluto-slim-server-streamer - make one tweak (do not delete m_mapStreamsToPlayers entry in CMD_Stop). Streaming now works consistently, properly, with squeezebox devices and their clones. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30354 ==&lt;br /&gt;
* pluto-hald (529,530) - fix attempt to fire event for child device of usb-dongle.&lt;br /&gt;
* pluto-slim-server-streamer - Implement FF/REW (transport) trick-play control for Squeeze* devices. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30341 ==&lt;br /&gt;
* pluto-bootscripst - fixes for PPPoE users to not autostart the external interface.&lt;br /&gt;
* pluto-slim-server-streamer - Fix to power off squeezebox player when stream is not in use. This allows softsqueeze/squeezeslave/squeezelite players to let go of a sound device, when not in use (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30332 ==&lt;br /&gt;
* pluto-orbiter (118,139) - disable old hid device functionality.  Anyone who needs it can request a special build which will be provided at no extra charge. ;)&lt;br /&gt;
* pluto-bootscripts (234) - disable Gamepad Radar, functionality now in hal through udev&lt;br /&gt;
* pluto-avwizard (556,555) - fixes mangling of RemoteCmd when &amp;gt;1 remote is detected.&lt;br /&gt;
* pluto-hal-device-finder (535,536) - update to use udev rather than hal.&lt;br /&gt;
* pluto-hald (529,530) - update to use udev rather than hal.&lt;br /&gt;
* pluto-system-database (211) - updates for new detection method (joystick, cec-adaptor), update dependency data for hal pks to reflect dropping hald and add depends on udev now.&lt;br /&gt;
&lt;br /&gt;
== Update 30219 ==&lt;br /&gt;
* pluto-bootscripts (234) - Fail2ban firewall update script, and missing radioscript.sh.&lt;br /&gt;
* pluto-website-admin - Place set for rules on the firewall and bantime for fail2ban integration.&lt;br /&gt;
* pluto-std-plugins (116,135) - adds heirloom-mailx for &#039;mailx -r&#039; functionality, fixes e-mail in general info plugin&lt;br /&gt;
&lt;br /&gt;
== Update 30068 ==&lt;br /&gt;
* lmce-advanced-ip-camera(813,812) - Fixed high cpu usage if connection to camera can not be made&lt;br /&gt;
&lt;br /&gt;
== Update 30052 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - fix android pkg meta data, need to rebuild all together&lt;br /&gt;
&lt;br /&gt;
== Update 30051 ==&lt;br /&gt;
* pluto-updateentarea (341,342) - use DAY/NIGHT in watching/stopped watching events to make them smarter&lt;br /&gt;
* pluto-std-plugins (116,135) - Implement Get Device Status in General Info Plugin&lt;br /&gt;
* pluto-bootscripts (234) - fix VPN ip up/down&lt;br /&gt;
&lt;br /&gt;
== Update 30025 ==&lt;br /&gt;
* pluto-system-database (211) - column def updates&lt;br /&gt;
* pluto-local-database (214) - new Firewall columns and new VPN columns for Users table.&lt;br /&gt;
&lt;br /&gt;
== Update 30014 ==&lt;br /&gt;
* lmce-transmission-client (852) - fix postinst issue.  (Thanks SBCC)&lt;br /&gt;
== Update 29994 ==&lt;br /&gt;
More VLC Player changes to make it at least somewhat usable, there were some ugly bugs that came to light once i plopped it onto my production system. Right now sound device is plughw:0,3, if you need a different one, change it in the code.  (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* lmce-vlc-player - many little fixes to make it suck less.&lt;br /&gt;
&lt;br /&gt;
== Update 29990 ==&lt;br /&gt;
I am working on the VLC player, and it is breathing enough for basic testing. Please do not use in production environment. There is still a lot of code to write (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - updates for VLC player (TSCHAK)&lt;br /&gt;
* vlc-player (882,884) - Very early alpha developer test of the VLC player. (TSCHAK)&lt;br /&gt;
* vlc-plugin (874,875) - Very alpha developer test of the VLC plugin. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 29984 ==&lt;br /&gt;
* pluto-system-database (211) - fix bad repos in pkgs&lt;br /&gt;
* pluto-website-admin - just because I think it is necessary :-)&lt;br /&gt;
&lt;br /&gt;
== Update 29983 ==&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35754</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35754"/>
		<updated>2015-07-24T15:45:02Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: /* Upcoming fixes... */ USB XBOX360 Game Pad fixes.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the 1204 changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo much easier. &amp;lt;- hey!  the text is back!  :D&lt;br /&gt;
&lt;br /&gt;
* lmce-diskless-tools - update syslinux depends to syslinux-common&lt;br /&gt;
* pluto-boot-scripts - Support for audio output select on rpi via web admin&lt;br /&gt;
* lmce-omx-player - Honour audio output selection of rpiMD&lt;br /&gt;
* lmce-squeezeslave - Fix detection for squeezelite&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - further fixes&lt;br /&gt;
* lmce-usb-gamepad (795,796) - rewrite the whole main loop to suck less. hold-down repeats work, input handling more sane.&lt;br /&gt;
&lt;br /&gt;
== Update 30926 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Fix for #2368 insert firewall rules en #2064 edit and delete chains (except some system chains).&lt;br /&gt;
** Support for brightness based events.&lt;br /&gt;
* pluto-std-plugins - Support for brightness based events&lt;br /&gt;
* lmce-omx-plugin - Fix prioritizing of media playback&lt;br /&gt;
* pluto-system-database&lt;br /&gt;
** Database additions for XBOX 360 Gamepad (device templates, package)&lt;br /&gt;
** Modification of OMX Plugin to allow priority to be changed.&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - the XBOX 360 Gamepad driver, uses xboxdrv userspace driver.&lt;br /&gt;
* lmce-usb-gamepad (795,796) - additions here for above XBOX 360 Gamepad support.&lt;br /&gt;
&lt;br /&gt;
== Update 30862 ==&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress can now read latest files per linuxmce user.&lt;br /&gt;
&lt;br /&gt;
== Update 30860 ==&lt;br /&gt;
* lmce-weather - some fixes by cfernandes&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress.&lt;br /&gt;
* pluto-boot-scripts - more mail fixes&lt;br /&gt;
&lt;br /&gt;
== Update 30855 ==&lt;br /&gt;
* pluto-vdr, pluto-vdr-plugin - remove hardcoding of core IP and network address, but depend on the pluto.conf entries for DCERouter.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location (again)&lt;br /&gt;
* lmce-diskless-tools - stop copying apt configs from the core&lt;br /&gt;
* pluto-boot-scripts - fix postfix setup #2393&lt;br /&gt;
&lt;br /&gt;
== Update 30841 ==&lt;br /&gt;
* lmce-avwizard-sounds - fix replaces/conflicts data&lt;br /&gt;
* lmce-skins-basic - fix replaces/conflicts data&lt;br /&gt;
* lmce-avwizard-skin-basic - fix replaces/conflicts data&lt;br /&gt;
&lt;br /&gt;
== Update 30383 ==&lt;br /&gt;
* pluto-website-admin (220) - Add Hue lights related test button.&lt;br /&gt;
* pluto-boot-scripts - Add another option --autobackup to PlutoRestorePoint.sh to allow backup of pluto_main only&lt;br /&gt;
&lt;br /&gt;
== Update 30814 ==&lt;br /&gt;
* pluto-Boot-scripts - Firewall order by place and PK_Firewall to let rules stay on top on the middle or on the bottom.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location&lt;br /&gt;
* lmce-hue-controller (862,863) - Fix bug in adding new lights, now adds serial number.&lt;br /&gt;
* pluto-website-admin (220) - Fix oops relating the missing &#039;.&#039; which caused operations/login.php not to work.&lt;br /&gt;
&lt;br /&gt;
== Update 30783 ==&lt;br /&gt;
* lmce-nbd-client-wrapper - new pkg to hold common script&lt;br /&gt;
* pluto-xine-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* lmce-vlc-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* pluto-boot-scripts - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
* pluto-storage-devices - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30777 ==&lt;br /&gt;
* lmce-core - depend on openswan&lt;br /&gt;
* pluto-system-database - pkg updates&lt;br /&gt;
* pluto-boot-scripts - remove check for openswan from bootscript&lt;br /&gt;
* pluto-generic-serial-device - update to ruby 1.9.1&lt;br /&gt;
&lt;br /&gt;
== Update 30773==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller internals to now include polling, so as to make sure floorplan data is accurate. Changes underlying mechanisms for how lights are handled in preparation for extending additional support for Cree lights and sensors devices.&lt;br /&gt;
&lt;br /&gt;
== Update 30767 ==&lt;br /&gt;
* lmce-diskless-tools - update diskless archive name to reflect current compression method xz.&lt;br /&gt;
* pluto-website-admin (220) - updates to internet radio, moves add channels to a seperate page.  Thanks Dap-P!&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
* pluto-vdr - adds missing depends on vdr in trusty&lt;br /&gt;
* lmce-core - update depends to new pkg name lmce-avwizard-sounds&lt;br /&gt;
* pluto-avwizard - update depends to new pkg name lmce-avwizard-skins-basic&lt;br /&gt;
* lmce-clock-screen-saver - make the clock screen saver use the WMController/wmctrl methods for setting window visibility to be compatible with Orbiter. (TSCHAK) (Trusty only)&lt;br /&gt;
* pluto-storage-devices - Make sure that smbpasswd is used to create or update sambahelper&#039;s password (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30726 ==&lt;br /&gt;
* pluto-vdr - VDR player&#039;s package assumed a correctly installed vdr package which includes an entry in /etc/default for vdr. We no longer fail on a missing file.&lt;br /&gt;
&lt;br /&gt;
== Update 30724 ==&lt;br /&gt;
* lmce-weather - updates to weather sources, add OpenWM source.  Thanks SBCC and cfernandes!&lt;br /&gt;
* lmce-skins-* - adds missing telecom icons, updates/adds weather icons&lt;br /&gt;
* lmce-avwizard-sounds - remove extraneous stuff from pkg, reduce pkg size back to normal.  Proper replaces/conflicts/data...&lt;br /&gt;
* lmce-avwizard-skin-basic - Proper replaces/conflicts/data...&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
&lt;br /&gt;
== Update 30718 ==&lt;br /&gt;
* lmce-core - new depends on lmce-skins*&lt;br /&gt;
* lmce-md-meta - add depends on pnp-detection scripts&lt;br /&gt;
* lmce-hybrid - new depends on lmce-skins*&lt;br /&gt;
* pluto-avwizard (556,555) - add pciutils as a depends, still need to deal with multiarch stuff so this will break armhf, we will not update armhf for now, it doesn&#039;t use avwizard but does install it.&lt;br /&gt;
* lmce-diskless-tools - minor diskless create fixups&lt;br /&gt;
* pluto-orbiter - missing depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio script&lt;br /&gt;
* pluto-website-admin (220) - recognize MIDs as top level devices&lt;br /&gt;
* pluto-mythtv-player - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 30628 ==&lt;br /&gt;
* *-database - fix install issues&lt;br /&gt;
&lt;br /&gt;
== Update 30622 ==&lt;br /&gt;
* pluto-orbiterinstallers - fix depends issue&lt;br /&gt;
* pluto-system-database - lots of compat updates&lt;br /&gt;
* lmce-* - lots of compat updates&lt;br /&gt;
* pluto-* - lots of compat updates&lt;br /&gt;
&lt;br /&gt;
== Update 30618 ==&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio scripts&lt;br /&gt;
* pluto-website-admin (220) - updated internet radio page&lt;br /&gt;
&lt;br /&gt;
== Update 30571 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - send &amp;quot;Device is turned on or off&amp;quot; event when appropriate so the corresponding event works as expected&lt;br /&gt;
* lmce-squeezeslave (762) - set to pnp create without prompting&lt;br /&gt;
* lmce-runtime-dependencies (903) - pkg to help consolidate runtime depends.&lt;br /&gt;
* lmce-core (888) - updated depends&lt;br /&gt;
* lmce-md-meta (450)- updated depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated depends&lt;br /&gt;
* pluto-createdevice (303,304) - updated depends&lt;br /&gt;
* lmce-weather(838,839) - fix potential segfault&lt;br /&gt;
* pluto-website-admin (220) - add &amp;quot;replace node&amp;quot; button to advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 30549 ==&lt;br /&gt;
* pluto-mythtv-player - fix misaligned data values during mythtv.txt creation.&lt;br /&gt;
&lt;br /&gt;
== Update 30526 ==&lt;br /&gt;
* lmce-core - new pkg&lt;br /&gt;
* lmce-hybrid - pkg depends changes&lt;br /&gt;
* lmce-md-meta - pkg depends changes&lt;br /&gt;
* pluto-dcerouter - pkg depends changes&lt;br /&gt;
* pluto-photo-screen-saver - pkg depends changes&lt;br /&gt;
* pluto-boot-scripts - pkg depends changes&lt;br /&gt;
* pluto-orbiter - pkg depends changes&lt;br /&gt;
* pluto-simplephone - pkg depends changes&lt;br /&gt;
* pluto-website-admin - pkg depends changes&lt;br /&gt;
* lmce-mythtv-scripts - pkg depends changes&lt;br /&gt;
* pluto-system-database - pkg depends changes&lt;br /&gt;
* lmce-squeezeslave (762) - fix launch script, automatically create associated squeezebox player on the core.&lt;br /&gt;
* pluto-std-plugins - run New_PnP_MD.sh for new MID devices as well.&lt;br /&gt;
* lmce-diskless-tools - don&#039;t fail on invoke-rc.d during diskless create, exit gracefully and continue.&lt;br /&gt;
* pluto-mythtv-player - fix diskless create failures due to old hacks.  more work is needed here overall on mythtv integration.&lt;br /&gt;
&lt;br /&gt;
== Update 30419 ==&lt;br /&gt;
* pluto-slim-server - Make sure to turn off all Squeeze* devices when Slim Server Streamer starts or restarts (so that squeezelite does not hog sound cards.)&lt;br /&gt;
* pluto-hald (529,530) - add device node path to pnpqueue with v4l devices during detection&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - update for new lib version&lt;br /&gt;
&lt;br /&gt;
== Update 30384 ==&lt;br /&gt;
* pluto-confirm-dependencies - depend on pluto-install-scripts.&lt;br /&gt;
* pluto-disk-drive (122,141) - remove hal bits that dealt with old jukebox bugs.&lt;br /&gt;
* pluto-capture-card-scripts (580) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-pnp-detection (562) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-storage-devices (533) - convert autofs from hal to udev.&lt;br /&gt;
* pluto-bootscripts (234) - disable starting the hald since we&#039;re using udev now, remove false &#039;fail&#039; messages during reboot/shutdown&lt;br /&gt;
* pluto-slim-server-streamer - make one tweak (do not delete m_mapStreamsToPlayers entry in CMD_Stop). Streaming now works consistently, properly, with squeezebox devices and their clones. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30354 ==&lt;br /&gt;
* pluto-hald (529,530) - fix attempt to fire event for child device of usb-dongle.&lt;br /&gt;
* pluto-slim-server-streamer - Implement FF/REW (transport) trick-play control for Squeeze* devices. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30341 ==&lt;br /&gt;
* pluto-bootscripst - fixes for PPPoE users to not autostart the external interface.&lt;br /&gt;
* pluto-slim-server-streamer - Fix to power off squeezebox player when stream is not in use. This allows softsqueeze/squeezeslave/squeezelite players to let go of a sound device, when not in use (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30332 ==&lt;br /&gt;
* pluto-orbiter (118,139) - disable old hid device functionality.  Anyone who needs it can request a special build which will be provided at no extra charge. ;)&lt;br /&gt;
* pluto-bootscripts (234) - disable Gamepad Radar, functionality now in hal through udev&lt;br /&gt;
* pluto-avwizard (556,555) - fixes mangling of RemoteCmd when &amp;gt;1 remote is detected.&lt;br /&gt;
* pluto-hal-device-finder (535,536) - update to use udev rather than hal.&lt;br /&gt;
* pluto-hald (529,530) - update to use udev rather than hal.&lt;br /&gt;
* pluto-system-database (211) - updates for new detection method (joystick, cec-adaptor), update dependency data for hal pks to reflect dropping hald and add depends on udev now.&lt;br /&gt;
&lt;br /&gt;
== Update 30219 ==&lt;br /&gt;
* pluto-bootscripts (234) - Fail2ban firewall update script, and missing radioscript.sh.&lt;br /&gt;
* pluto-website-admin - Place set for rules on the firewall and bantime for fail2ban integration.&lt;br /&gt;
* pluto-std-plugins (116,135) - adds heirloom-mailx for &#039;mailx -r&#039; functionality, fixes e-mail in general info plugin&lt;br /&gt;
&lt;br /&gt;
== Update 30068 ==&lt;br /&gt;
* lmce-advanced-ip-camera(813,812) - Fixed high cpu usage if connection to camera can not be made&lt;br /&gt;
&lt;br /&gt;
== Update 30052 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - fix android pkg meta data, need to rebuild all together&lt;br /&gt;
&lt;br /&gt;
== Update 30051 ==&lt;br /&gt;
* pluto-updateentarea (341,342) - use DAY/NIGHT in watching/stopped watching events to make them smarter&lt;br /&gt;
* pluto-std-plugins (116,135) - Implement Get Device Status in General Info Plugin&lt;br /&gt;
* pluto-bootscripts (234) - fix VPN ip up/down&lt;br /&gt;
&lt;br /&gt;
== Update 30025 ==&lt;br /&gt;
* pluto-system-database (211) - column def updates&lt;br /&gt;
* pluto-local-database (214) - new Firewall columns and new VPN columns for Users table.&lt;br /&gt;
&lt;br /&gt;
== Update 30014 ==&lt;br /&gt;
* lmce-transmission-client (852) - fix postinst issue.  (Thanks SBCC)&lt;br /&gt;
== Update 29994 ==&lt;br /&gt;
More VLC Player changes to make it at least somewhat usable, there were some ugly bugs that came to light once i plopped it onto my production system. Right now sound device is plughw:0,3, if you need a different one, change it in the code.  (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* lmce-vlc-player - many little fixes to make it suck less.&lt;br /&gt;
&lt;br /&gt;
== Update 29990 ==&lt;br /&gt;
I am working on the VLC player, and it is breathing enough for basic testing. Please do not use in production environment. There is still a lot of code to write (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - updates for VLC player (TSCHAK)&lt;br /&gt;
* vlc-player (882,884) - Very early alpha developer test of the VLC player. (TSCHAK)&lt;br /&gt;
* vlc-plugin (874,875) - Very alpha developer test of the VLC plugin. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 29984 ==&lt;br /&gt;
* pluto-system-database (211) - fix bad repos in pkgs&lt;br /&gt;
* pluto-website-admin - just because I think it is necessary :-)&lt;br /&gt;
&lt;br /&gt;
== Update 29983 ==&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35734</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35734"/>
		<updated>2015-07-17T13:24:53Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: adding xbox 360 gamepad additions.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the 1204 changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo much easier. &amp;lt;- hey!  the text is back!  :D&lt;br /&gt;
&lt;br /&gt;
* pluto-website-admin (220) - Fix for #2368 insert firewall rules en #2064 edit and delete chains (except some system chains).&lt;br /&gt;
* pluto-system-database - Database additions for XBOX 360 Gamepad (device templates, package)&lt;br /&gt;
* lmce-xbox360-gamepad (909,910) - the XBOX 360 Gamepad driver, uses xboxdrv userspace driver.&lt;br /&gt;
* lmce-usb-gamepad (795,796) - additions here for above XBOX 360 Gamepad support. &lt;br /&gt;
&lt;br /&gt;
== Update 30862 ==&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress can now read latest files per linuxmce user.&lt;br /&gt;
&lt;br /&gt;
== Update 30860 ==&lt;br /&gt;
* lmce-weather - some fixes by cfernandes&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress.&lt;br /&gt;
* pluto-boot-scripts - more mail fixes&lt;br /&gt;
&lt;br /&gt;
== Update 30855 ==&lt;br /&gt;
* pluto-vdr, pluto-vdr-plugin - remove hardcoding of core IP and network address, but depend on the pluto.conf entries for DCERouter.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location (again)&lt;br /&gt;
* lmce-diskless-tools - stop copying apt configs from the core&lt;br /&gt;
* pluto-boot-scripts - fix postfix setup #2393&lt;br /&gt;
&lt;br /&gt;
== Update 30841 ==&lt;br /&gt;
* lmce-avwizard-sounds - fix replaces/conflicts data&lt;br /&gt;
* lmce-skins-basic - fix replaces/conflicts data&lt;br /&gt;
* lmce-avwizard-skin-basic - fix replaces/conflicts data&lt;br /&gt;
&lt;br /&gt;
== Update 30383 ==&lt;br /&gt;
* pluto-website-admin (220) - Add Hue lights related test button.&lt;br /&gt;
* pluto-boot-scripts - Add another option --autobackup to PlutoRestorePoint.sh to allow backup of pluto_main only&lt;br /&gt;
&lt;br /&gt;
== Update 30814 ==&lt;br /&gt;
* pluto-Boot-scripts - Firewall order by place and PK_Firewall to let rules stay on top on the middle or on the bottom.&lt;br /&gt;
* lmce-avwizard-sounds - install files to correct location&lt;br /&gt;
* lmce-hue-controller (862,863) - Fix bug in adding new lights, now adds serial number.&lt;br /&gt;
* pluto-website-admin (220) - Fix oops relating the missing &#039;.&#039; which caused operations/login.php not to work.&lt;br /&gt;
&lt;br /&gt;
== Update 30783 ==&lt;br /&gt;
* lmce-nbd-client-wrapper - new pkg to hold common script&lt;br /&gt;
* pluto-xine-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* lmce-vlc-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* pluto-boot-scripts - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
* pluto-storage-devices - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30777 ==&lt;br /&gt;
* lmce-core - depend on openswan&lt;br /&gt;
* pluto-system-database - pkg updates&lt;br /&gt;
* pluto-boot-scripts - remove check for openswan from bootscript&lt;br /&gt;
* pluto-generic-serial-device - update to ruby 1.9.1&lt;br /&gt;
&lt;br /&gt;
== Update 30773==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller internals to now include polling, so as to make sure floorplan data is accurate. Changes underlying mechanisms for how lights are handled in preparation for extending additional support for Cree lights and sensors devices.&lt;br /&gt;
&lt;br /&gt;
== Update 30767 ==&lt;br /&gt;
* lmce-diskless-tools - update diskless archive name to reflect current compression method xz.&lt;br /&gt;
* pluto-website-admin (220) - updates to internet radio, moves add channels to a seperate page.  Thanks Dap-P!&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
* pluto-vdr - adds missing depends on vdr in trusty&lt;br /&gt;
* lmce-core - update depends to new pkg name lmce-avwizard-sounds&lt;br /&gt;
* pluto-avwizard - update depends to new pkg name lmce-avwizard-skins-basic&lt;br /&gt;
* lmce-clock-screen-saver - make the clock screen saver use the WMController/wmctrl methods for setting window visibility to be compatible with Orbiter. (TSCHAK) (Trusty only)&lt;br /&gt;
* pluto-storage-devices - Make sure that smbpasswd is used to create or update sambahelper&#039;s password (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30726 ==&lt;br /&gt;
* pluto-vdr - VDR player&#039;s package assumed a correctly installed vdr package which includes an entry in /etc/default for vdr. We no longer fail on a missing file.&lt;br /&gt;
&lt;br /&gt;
== Update 30724 ==&lt;br /&gt;
* lmce-weather - updates to weather sources, add OpenWM source.  Thanks SBCC and cfernandes!&lt;br /&gt;
* lmce-skins-* - adds missing telecom icons, updates/adds weather icons&lt;br /&gt;
* lmce-avwizard-sounds - remove extraneous stuff from pkg, reduce pkg size back to normal.  Proper replaces/conflicts/data...&lt;br /&gt;
* lmce-avwizard-skin-basic - Proper replaces/conflicts/data...&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
&lt;br /&gt;
== Update 30718 ==&lt;br /&gt;
* lmce-core - new depends on lmce-skins*&lt;br /&gt;
* lmce-md-meta - add depends on pnp-detection scripts&lt;br /&gt;
* lmce-hybrid - new depends on lmce-skins*&lt;br /&gt;
* pluto-avwizard (556,555) - add pciutils as a depends, still need to deal with multiarch stuff so this will break armhf, we will not update armhf for now, it doesn&#039;t use avwizard but does install it.&lt;br /&gt;
* lmce-diskless-tools - minor diskless create fixups&lt;br /&gt;
* pluto-orbiter - missing depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio script&lt;br /&gt;
* pluto-website-admin (220) - recognize MIDs as top level devices&lt;br /&gt;
* pluto-mythtv-player - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 30628 ==&lt;br /&gt;
* *-database - fix install issues&lt;br /&gt;
&lt;br /&gt;
== Update 30622 ==&lt;br /&gt;
* pluto-orbiterinstallers - fix depends issue&lt;br /&gt;
* pluto-system-database - lots of compat updates&lt;br /&gt;
* lmce-* - lots of compat updates&lt;br /&gt;
* pluto-* - lots of compat updates&lt;br /&gt;
&lt;br /&gt;
== Update 30618 ==&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio scripts&lt;br /&gt;
* pluto-website-admin (220) - updated internet radio page&lt;br /&gt;
&lt;br /&gt;
== Update 30571 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - send &amp;quot;Device is turned on or off&amp;quot; event when appropriate so the corresponding event works as expected&lt;br /&gt;
* lmce-squeezeslave (762) - set to pnp create without prompting&lt;br /&gt;
* lmce-runtime-dependencies (903) - pkg to help consolidate runtime depends.&lt;br /&gt;
* lmce-core (888) - updated depends&lt;br /&gt;
* lmce-md-meta (450)- updated depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated depends&lt;br /&gt;
* pluto-createdevice (303,304) - updated depends&lt;br /&gt;
* lmce-weather(838,839) - fix potential segfault&lt;br /&gt;
* pluto-website-admin (220) - add &amp;quot;replace node&amp;quot; button to advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 30549 ==&lt;br /&gt;
* pluto-mythtv-player - fix misaligned data values during mythtv.txt creation.&lt;br /&gt;
&lt;br /&gt;
== Update 30526 ==&lt;br /&gt;
* lmce-core - new pkg&lt;br /&gt;
* lmce-hybrid - pkg depends changes&lt;br /&gt;
* lmce-md-meta - pkg depends changes&lt;br /&gt;
* pluto-dcerouter - pkg depends changes&lt;br /&gt;
* pluto-photo-screen-saver - pkg depends changes&lt;br /&gt;
* pluto-boot-scripts - pkg depends changes&lt;br /&gt;
* pluto-orbiter - pkg depends changes&lt;br /&gt;
* pluto-simplephone - pkg depends changes&lt;br /&gt;
* pluto-website-admin - pkg depends changes&lt;br /&gt;
* lmce-mythtv-scripts - pkg depends changes&lt;br /&gt;
* pluto-system-database - pkg depends changes&lt;br /&gt;
* lmce-squeezeslave (762) - fix launch script, automatically create associated squeezebox player on the core.&lt;br /&gt;
* pluto-std-plugins - run New_PnP_MD.sh for new MID devices as well.&lt;br /&gt;
* lmce-diskless-tools - don&#039;t fail on invoke-rc.d during diskless create, exit gracefully and continue.&lt;br /&gt;
* pluto-mythtv-player - fix diskless create failures due to old hacks.  more work is needed here overall on mythtv integration.&lt;br /&gt;
&lt;br /&gt;
== Update 30419 ==&lt;br /&gt;
* pluto-slim-server - Make sure to turn off all Squeeze* devices when Slim Server Streamer starts or restarts (so that squeezelite does not hog sound cards.)&lt;br /&gt;
* pluto-hald (529,530) - add device node path to pnpqueue with v4l devices during detection&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - update for new lib version&lt;br /&gt;
&lt;br /&gt;
== Update 30384 ==&lt;br /&gt;
* pluto-confirm-dependencies - depend on pluto-install-scripts.&lt;br /&gt;
* pluto-disk-drive (122,141) - remove hal bits that dealt with old jukebox bugs.&lt;br /&gt;
* pluto-capture-card-scripts (580) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-pnp-detection (562) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-storage-devices (533) - convert autofs from hal to udev.&lt;br /&gt;
* pluto-bootscripts (234) - disable starting the hald since we&#039;re using udev now, remove false &#039;fail&#039; messages during reboot/shutdown&lt;br /&gt;
* pluto-slim-server-streamer - make one tweak (do not delete m_mapStreamsToPlayers entry in CMD_Stop). Streaming now works consistently, properly, with squeezebox devices and their clones. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30354 ==&lt;br /&gt;
* pluto-hald (529,530) - fix attempt to fire event for child device of usb-dongle.&lt;br /&gt;
* pluto-slim-server-streamer - Implement FF/REW (transport) trick-play control for Squeeze* devices. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30341 ==&lt;br /&gt;
* pluto-bootscripst - fixes for PPPoE users to not autostart the external interface.&lt;br /&gt;
* pluto-slim-server-streamer - Fix to power off squeezebox player when stream is not in use. This allows softsqueeze/squeezeslave/squeezelite players to let go of a sound device, when not in use (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30332 ==&lt;br /&gt;
* pluto-orbiter (118,139) - disable old hid device functionality.  Anyone who needs it can request a special build which will be provided at no extra charge. ;)&lt;br /&gt;
* pluto-bootscripts (234) - disable Gamepad Radar, functionality now in hal through udev&lt;br /&gt;
* pluto-avwizard (556,555) - fixes mangling of RemoteCmd when &amp;gt;1 remote is detected.&lt;br /&gt;
* pluto-hal-device-finder (535,536) - update to use udev rather than hal.&lt;br /&gt;
* pluto-hald (529,530) - update to use udev rather than hal.&lt;br /&gt;
* pluto-system-database (211) - updates for new detection method (joystick, cec-adaptor), update dependency data for hal pks to reflect dropping hald and add depends on udev now.&lt;br /&gt;
&lt;br /&gt;
== Update 30219 ==&lt;br /&gt;
* pluto-bootscripts (234) - Fail2ban firewall update script, and missing radioscript.sh.&lt;br /&gt;
* pluto-website-admin - Place set for rules on the firewall and bantime for fail2ban integration.&lt;br /&gt;
* pluto-std-plugins (116,135) - adds heirloom-mailx for &#039;mailx -r&#039; functionality, fixes e-mail in general info plugin&lt;br /&gt;
&lt;br /&gt;
== Update 30068 ==&lt;br /&gt;
* lmce-advanced-ip-camera(813,812) - Fixed high cpu usage if connection to camera can not be made&lt;br /&gt;
&lt;br /&gt;
== Update 30052 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - fix android pkg meta data, need to rebuild all together&lt;br /&gt;
&lt;br /&gt;
== Update 30051 ==&lt;br /&gt;
* pluto-updateentarea (341,342) - use DAY/NIGHT in watching/stopped watching events to make them smarter&lt;br /&gt;
* pluto-std-plugins (116,135) - Implement Get Device Status in General Info Plugin&lt;br /&gt;
* pluto-bootscripts (234) - fix VPN ip up/down&lt;br /&gt;
&lt;br /&gt;
== Update 30025 ==&lt;br /&gt;
* pluto-system-database (211) - column def updates&lt;br /&gt;
* pluto-local-database (214) - new Firewall columns and new VPN columns for Users table.&lt;br /&gt;
&lt;br /&gt;
== Update 30014 ==&lt;br /&gt;
* lmce-transmission-client (852) - fix postinst issue.  (Thanks SBCC)&lt;br /&gt;
== Update 29994 ==&lt;br /&gt;
More VLC Player changes to make it at least somewhat usable, there were some ugly bugs that came to light once i plopped it onto my production system. Right now sound device is plughw:0,3, if you need a different one, change it in the code.  (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* lmce-vlc-player - many little fixes to make it suck less.&lt;br /&gt;
&lt;br /&gt;
== Update 29990 ==&lt;br /&gt;
I am working on the VLC player, and it is breathing enough for basic testing. Please do not use in production environment. There is still a lot of code to write (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - updates for VLC player (TSCHAK)&lt;br /&gt;
* vlc-player (882,884) - Very early alpha developer test of the VLC player. (TSCHAK)&lt;br /&gt;
* vlc-plugin (874,875) - Very alpha developer test of the VLC plugin. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 29984 ==&lt;br /&gt;
* pluto-system-database (211) - fix bad repos in pkgs&lt;br /&gt;
* pluto-website-admin - just because I think it is necessary :-)&lt;br /&gt;
&lt;br /&gt;
== Update 29983 ==&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35688</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35688"/>
		<updated>2015-06-06T17:43:20Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: /* Upcoming fixes... */ Revert smbpasswd change.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the 1204 changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo much easier. &amp;lt;- hey!  the text is back!  :D&lt;br /&gt;
* lmce-nbd-client-wrapper - new pkg to hold common script&lt;br /&gt;
* pluto-xine-player - depend on new pkg, remove script from pkg&lt;br /&gt;
* lmce-vlc-player - depend on new pkg, remove script from pkg&lt;br /&gt;
 * pluto-boot-scripts - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
* pluto-storage-devices - revert smbpasswd change temporarily (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30777 ==&lt;br /&gt;
* lmce-core - depend on openswan&lt;br /&gt;
* pluto-system-database - pkg updates&lt;br /&gt;
* pluto-boot-scripts - remove check for openswan from bootscript&lt;br /&gt;
* pluto-generic-serial-device - update to ruby 1.9.1&lt;br /&gt;
&lt;br /&gt;
== Update 30773==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller internals to now include polling, so as to make sure floorplan data is accurate. Changes underlying mechanisms for how lights are handled in preparation for extending additional support for Cree lights and sensors devices.&lt;br /&gt;
&lt;br /&gt;
== Update 30767 ==&lt;br /&gt;
* lmce-diskless-tools - update diskless archive name to reflect current compression method xz.&lt;br /&gt;
* pluto-website-admin (220) - updates to internet radio, moves add channels to a seperate page.  Thanks Dap-P!&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
* pluto-vdr - adds missing depends on vdr in trusty&lt;br /&gt;
* lmce-core - update depends to new pkg name lmce-avwizard-sounds&lt;br /&gt;
* pluto-avwizard - update depends to new pkg name lmce-avwizard-skins-basic&lt;br /&gt;
* lmce-clock-screen-saver - make the clock screen saver use the WMController/wmctrl methods for setting window visibility to be compatible with Orbiter. (TSCHAK) (Trusty only)&lt;br /&gt;
* pluto-storage-devices - Make sure that smbpasswd is used to create or update sambahelper&#039;s password (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30726 ==&lt;br /&gt;
* pluto-vdr - VDR player&#039;s package assumed a correctly installed vdr package which includes an entry in /etc/default for vdr. We no longer fail on a missing file.&lt;br /&gt;
&lt;br /&gt;
== Update 30724 ==&lt;br /&gt;
* lmce-weather - updates to weather sources, add OpenWM source.  Thanks SBCC and cfernandes!&lt;br /&gt;
* lmce-skins-* - adds missing telecom icons, updates/adds weather icons&lt;br /&gt;
* lmce-avwizard-sounds - remove extraneous stuff from pkg, reduce pkg size back to normal.  Proper replaces/conflicts/data...&lt;br /&gt;
* lmce-avwizard-skin-basic - Proper replaces/conflicts/data...&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
&lt;br /&gt;
== Update 30718 ==&lt;br /&gt;
* lmce-core - new depends on lmce-skins*&lt;br /&gt;
* lmce-md-meta - add depends on pnp-detection scripts&lt;br /&gt;
* lmce-hybrid - new depends on lmce-skins*&lt;br /&gt;
* pluto-avwizard (556,555) - add pciutils as a depends, still need to deal with multiarch stuff so this will break armhf, we will not update armhf for now, it doesn&#039;t use avwizard but does install it.&lt;br /&gt;
* lmce-diskless-tools - minor diskless create fixups&lt;br /&gt;
* pluto-orbiter - missing depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio script&lt;br /&gt;
* pluto-website-admin (220) - recognize MIDs as top level devices&lt;br /&gt;
* pluto-mythtv-player - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 30628 ==&lt;br /&gt;
* *-database - fix install issues&lt;br /&gt;
&lt;br /&gt;
== Update 30622 ==&lt;br /&gt;
* pluto-orbiterinstallers - fix depends issue&lt;br /&gt;
* pluto-system-database - lots of compat updates&lt;br /&gt;
* lmce-* - lots of compat updates&lt;br /&gt;
* pluto-* - lots of compat updates&lt;br /&gt;
&lt;br /&gt;
== Update 30618 ==&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio scripts&lt;br /&gt;
* pluto-website-admin (220) - updated internet radio page&lt;br /&gt;
&lt;br /&gt;
== Update 30571 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - send &amp;quot;Device is turned on or off&amp;quot; event when appropriate so the corresponding event works as expected&lt;br /&gt;
* lmce-squeezeslave (762) - set to pnp create without prompting&lt;br /&gt;
* lmce-runtime-dependencies (903) - pkg to help consolidate runtime depends.&lt;br /&gt;
* lmce-core (888) - updated depends&lt;br /&gt;
* lmce-md-meta (450)- updated depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated depends&lt;br /&gt;
* pluto-createdevice (303,304) - updated depends&lt;br /&gt;
* lmce-weather(838,839) - fix potential segfault&lt;br /&gt;
* pluto-website-admin (220) - add &amp;quot;replace node&amp;quot; button to advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 30549 ==&lt;br /&gt;
* pluto-mythtv-player - fix misaligned data values during mythtv.txt creation.&lt;br /&gt;
&lt;br /&gt;
== Update 30526 ==&lt;br /&gt;
* lmce-core - new pkg&lt;br /&gt;
* lmce-hybrid - pkg depends changes&lt;br /&gt;
* lmce-md-meta - pkg depends changes&lt;br /&gt;
* pluto-dcerouter - pkg depends changes&lt;br /&gt;
* pluto-photo-screen-saver - pkg depends changes&lt;br /&gt;
* pluto-boot-scripts - pkg depends changes&lt;br /&gt;
* pluto-orbiter - pkg depends changes&lt;br /&gt;
* pluto-simplephone - pkg depends changes&lt;br /&gt;
* pluto-website-admin - pkg depends changes&lt;br /&gt;
* lmce-mythtv-scripts - pkg depends changes&lt;br /&gt;
* pluto-system-database - pkg depends changes&lt;br /&gt;
* lmce-squeezeslave (762) - fix launch script, automatically create associated squeezebox player on the core.&lt;br /&gt;
* pluto-std-plugins - run New_PnP_MD.sh for new MID devices as well.&lt;br /&gt;
* lmce-diskless-tools - don&#039;t fail on invoke-rc.d during diskless create, exit gracefully and continue.&lt;br /&gt;
* pluto-mythtv-player - fix diskless create failures due to old hacks.  more work is needed here overall on mythtv integration.&lt;br /&gt;
&lt;br /&gt;
== Update 30419 ==&lt;br /&gt;
* pluto-slim-server - Make sure to turn off all Squeeze* devices when Slim Server Streamer starts or restarts (so that squeezelite does not hog sound cards.)&lt;br /&gt;
* pluto-hald (529,530) - add device node path to pnpqueue with v4l devices during detection&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - update for new lib version&lt;br /&gt;
&lt;br /&gt;
== Update 30384 ==&lt;br /&gt;
* pluto-confirm-dependencies - depend on pluto-install-scripts.&lt;br /&gt;
* pluto-disk-drive (122,141) - remove hal bits that dealt with old jukebox bugs.&lt;br /&gt;
* pluto-capture-card-scripts (580) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-pnp-detection (562) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-storage-devices (533) - convert autofs from hal to udev.&lt;br /&gt;
* pluto-bootscripts (234) - disable starting the hald since we&#039;re using udev now, remove false &#039;fail&#039; messages during reboot/shutdown&lt;br /&gt;
* pluto-slim-server-streamer - make one tweak (do not delete m_mapStreamsToPlayers entry in CMD_Stop). Streaming now works consistently, properly, with squeezebox devices and their clones. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30354 ==&lt;br /&gt;
* pluto-hald (529,530) - fix attempt to fire event for child device of usb-dongle.&lt;br /&gt;
* pluto-slim-server-streamer - Implement FF/REW (transport) trick-play control for Squeeze* devices. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30341 ==&lt;br /&gt;
* pluto-bootscripst - fixes for PPPoE users to not autostart the external interface.&lt;br /&gt;
* pluto-slim-server-streamer - Fix to power off squeezebox player when stream is not in use. This allows softsqueeze/squeezeslave/squeezelite players to let go of a sound device, when not in use (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30332 ==&lt;br /&gt;
* pluto-orbiter (118,139) - disable old hid device functionality.  Anyone who needs it can request a special build which will be provided at no extra charge. ;)&lt;br /&gt;
* pluto-bootscripts (234) - disable Gamepad Radar, functionality now in hal through udev&lt;br /&gt;
* pluto-avwizard (556,555) - fixes mangling of RemoteCmd when &amp;gt;1 remote is detected.&lt;br /&gt;
* pluto-hal-device-finder (535,536) - update to use udev rather than hal.&lt;br /&gt;
* pluto-hald (529,530) - update to use udev rather than hal.&lt;br /&gt;
* pluto-system-database (211) - updates for new detection method (joystick, cec-adaptor), update dependency data for hal pks to reflect dropping hald and add depends on udev now.&lt;br /&gt;
&lt;br /&gt;
== Update 30219 ==&lt;br /&gt;
* pluto-bootscripts (234) - Fail2ban firewall update script, and missing radioscript.sh.&lt;br /&gt;
* pluto-website-admin - Place set for rules on the firewall and bantime for fail2ban integration.&lt;br /&gt;
* pluto-std-plugins (116,135) - adds heirloom-mailx for &#039;mailx -r&#039; functionality, fixes e-mail in general info plugin&lt;br /&gt;
&lt;br /&gt;
== Update 30068 ==&lt;br /&gt;
* lmce-advanced-ip-camera(813,812) - Fixed high cpu usage if connection to camera can not be made&lt;br /&gt;
&lt;br /&gt;
== Update 30052 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - fix android pkg meta data, need to rebuild all together&lt;br /&gt;
&lt;br /&gt;
== Update 30051 ==&lt;br /&gt;
* pluto-updateentarea (341,342) - use DAY/NIGHT in watching/stopped watching events to make them smarter&lt;br /&gt;
* pluto-std-plugins (116,135) - Implement Get Device Status in General Info Plugin&lt;br /&gt;
* pluto-bootscripts (234) - fix VPN ip up/down&lt;br /&gt;
&lt;br /&gt;
== Update 30025 ==&lt;br /&gt;
* pluto-system-database (211) - column def updates&lt;br /&gt;
* pluto-local-database (214) - new Firewall columns and new VPN columns for Users table.&lt;br /&gt;
&lt;br /&gt;
== Update 30014 ==&lt;br /&gt;
* lmce-transmission-client (852) - fix postinst issue.  (Thanks SBCC)&lt;br /&gt;
== Update 29994 ==&lt;br /&gt;
More VLC Player changes to make it at least somewhat usable, there were some ugly bugs that came to light once i plopped it onto my production system. Right now sound device is plughw:0,3, if you need a different one, change it in the code.  (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* lmce-vlc-player - many little fixes to make it suck less.&lt;br /&gt;
&lt;br /&gt;
== Update 29990 ==&lt;br /&gt;
I am working on the VLC player, and it is breathing enough for basic testing. Please do not use in production environment. There is still a lot of code to write (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - updates for VLC player (TSCHAK)&lt;br /&gt;
* vlc-player (882,884) - Very early alpha developer test of the VLC player. (TSCHAK)&lt;br /&gt;
* vlc-plugin (874,875) - Very alpha developer test of the VLC plugin. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 29984 ==&lt;br /&gt;
* pluto-system-database (211) - fix bad repos in pkgs&lt;br /&gt;
* pluto-website-admin - just because I think it is necessary :-)&lt;br /&gt;
&lt;br /&gt;
== Update 29983 ==&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35678</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35678"/>
		<updated>2015-05-31T21:21:26Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: /* Upcoming fixes... */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the 1204 changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo much easier. &amp;lt;- hey!  the text is back!  :D&lt;br /&gt;
* lmce-diskless-tools - update diskless archive name to reflect current compression method xz.&lt;br /&gt;
* pluto-website-admin (220) - updates to internet radio, moves add channels to a seperate page.  Thanks Dap-P!&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
* pluto-vdr - adds missing depends on vdr in trusty&lt;br /&gt;
* lmce-core - update depends to new pkg name lmce-avwizard-sounds&lt;br /&gt;
* pluto-avwizard - update depends to new pkg name lmce-avwizard-skins-basic&lt;br /&gt;
* lmce-clock-screen-saver - make the clock screen saver use the WMController/wmctrl methods for setting window visibility to be compatible with Orbiter. (TSCHAK) (Trusty only)&lt;br /&gt;
* pluto-storage-devices - Make sure that smbpasswd is used to create or update sambahelper&#039;s password (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30726 ==&lt;br /&gt;
* pluto-vdr - VDR player&#039;s package assumed a correctly installed vdr package which includes an entry in /etc/default for vdr. We no longer fail on a missing file.&lt;br /&gt;
&lt;br /&gt;
== Update 30724 ==&lt;br /&gt;
* lmce-weather - updates to weather sources, add OpenWM source.  Thanks SBCC and cfernandes!&lt;br /&gt;
* lmce-skins-* - adds missing telecom icons, updates/adds weather icons&lt;br /&gt;
* lmce-avwizard-sounds - remove extraneous stuff from pkg, reduce pkg size back to normal.  Proper replaces/conflicts/data...&lt;br /&gt;
* lmce-avwizard-skin-basic - Proper replaces/conflicts/data...&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
&lt;br /&gt;
== Update 30718 ==&lt;br /&gt;
* lmce-core - new depends on lmce-skins*&lt;br /&gt;
* lmce-md-meta - add depends on pnp-detection scripts&lt;br /&gt;
* lmce-hybrid - new depends on lmce-skins*&lt;br /&gt;
* pluto-avwizard (556,555) - add pciutils as a depends, still need to deal with multiarch stuff so this will break armhf, we will not update armhf for now, it doesn&#039;t use avwizard but does install it.&lt;br /&gt;
* lmce-diskless-tools - minor diskless create fixups&lt;br /&gt;
* pluto-orbiter - missing depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio script&lt;br /&gt;
* pluto-website-admin (220) - recognize MIDs as top level devices&lt;br /&gt;
* pluto-mythtv-player - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 30628 ==&lt;br /&gt;
* *-database - fix install issues&lt;br /&gt;
&lt;br /&gt;
== Update 30622 ==&lt;br /&gt;
* pluto-orbiterinstallers - fix depends issue&lt;br /&gt;
* pluto-system-database - lots of compat updates&lt;br /&gt;
* lmce-* - lots of compat updates&lt;br /&gt;
* pluto-* - lots of compat updates&lt;br /&gt;
&lt;br /&gt;
== Update 30618 ==&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio scripts&lt;br /&gt;
* pluto-website-admin (220) - updated internet radio page&lt;br /&gt;
&lt;br /&gt;
== Update 30571 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - send &amp;quot;Device is turned on or off&amp;quot; event when appropriate so the corresponding event works as expected&lt;br /&gt;
* lmce-squeezeslave (762) - set to pnp create without prompting&lt;br /&gt;
* lmce-runtime-dependencies (903) - pkg to help consolidate runtime depends.&lt;br /&gt;
* lmce-core (888) - updated depends&lt;br /&gt;
* lmce-md-meta (450)- updated depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated depends&lt;br /&gt;
* pluto-createdevice (303,304) - updated depends&lt;br /&gt;
* lmce-weather(838,839) - fix potential segfault&lt;br /&gt;
* pluto-website-admin (220) - add &amp;quot;replace node&amp;quot; button to advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 30549 ==&lt;br /&gt;
* pluto-mythtv-player - fix misaligned data values during mythtv.txt creation.&lt;br /&gt;
&lt;br /&gt;
== Update 30526 ==&lt;br /&gt;
* lmce-core - new pkg&lt;br /&gt;
* lmce-hybrid - pkg depends changes&lt;br /&gt;
* lmce-md-meta - pkg depends changes&lt;br /&gt;
* pluto-dcerouter - pkg depends changes&lt;br /&gt;
* pluto-photo-screen-saver - pkg depends changes&lt;br /&gt;
* pluto-boot-scripts - pkg depends changes&lt;br /&gt;
* pluto-orbiter - pkg depends changes&lt;br /&gt;
* pluto-simplephone - pkg depends changes&lt;br /&gt;
* pluto-website-admin - pkg depends changes&lt;br /&gt;
* lmce-mythtv-scripts - pkg depends changes&lt;br /&gt;
* pluto-system-database - pkg depends changes&lt;br /&gt;
* lmce-squeezeslave (762) - fix launch script, automatically create associated squeezebox player on the core.&lt;br /&gt;
* pluto-std-plugins - run New_PnP_MD.sh for new MID devices as well.&lt;br /&gt;
* lmce-diskless-tools - don&#039;t fail on invoke-rc.d during diskless create, exit gracefully and continue.&lt;br /&gt;
* pluto-mythtv-player - fix diskless create failures due to old hacks.  more work is needed here overall on mythtv integration.&lt;br /&gt;
&lt;br /&gt;
== Update 30419 ==&lt;br /&gt;
* pluto-slim-server - Make sure to turn off all Squeeze* devices when Slim Server Streamer starts or restarts (so that squeezelite does not hog sound cards.)&lt;br /&gt;
* pluto-hald (529,530) - add device node path to pnpqueue with v4l devices during detection&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - update for new lib version&lt;br /&gt;
&lt;br /&gt;
== Update 30384 ==&lt;br /&gt;
* pluto-confirm-dependencies - depend on pluto-install-scripts.&lt;br /&gt;
* pluto-disk-drive (122,141) - remove hal bits that dealt with old jukebox bugs.&lt;br /&gt;
* pluto-capture-card-scripts (580) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-pnp-detection (562) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-storage-devices (533) - convert autofs from hal to udev.&lt;br /&gt;
* pluto-bootscripts (234) - disable starting the hald since we&#039;re using udev now, remove false &#039;fail&#039; messages during reboot/shutdown&lt;br /&gt;
* pluto-slim-server-streamer - make one tweak (do not delete m_mapStreamsToPlayers entry in CMD_Stop). Streaming now works consistently, properly, with squeezebox devices and their clones. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30354 ==&lt;br /&gt;
* pluto-hald (529,530) - fix attempt to fire event for child device of usb-dongle.&lt;br /&gt;
* pluto-slim-server-streamer - Implement FF/REW (transport) trick-play control for Squeeze* devices. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30341 ==&lt;br /&gt;
* pluto-bootscripst - fixes for PPPoE users to not autostart the external interface.&lt;br /&gt;
* pluto-slim-server-streamer - Fix to power off squeezebox player when stream is not in use. This allows softsqueeze/squeezeslave/squeezelite players to let go of a sound device, when not in use (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30332 ==&lt;br /&gt;
* pluto-orbiter (118,139) - disable old hid device functionality.  Anyone who needs it can request a special build which will be provided at no extra charge. ;)&lt;br /&gt;
* pluto-bootscripts (234) - disable Gamepad Radar, functionality now in hal through udev&lt;br /&gt;
* pluto-avwizard (556,555) - fixes mangling of RemoteCmd when &amp;gt;1 remote is detected.&lt;br /&gt;
* pluto-hal-device-finder (535,536) - update to use udev rather than hal.&lt;br /&gt;
* pluto-hald (529,530) - update to use udev rather than hal.&lt;br /&gt;
* pluto-system-database (211) - updates for new detection method (joystick, cec-adaptor), update dependency data for hal pks to reflect dropping hald and add depends on udev now.&lt;br /&gt;
&lt;br /&gt;
== Update 30219 ==&lt;br /&gt;
* pluto-bootscripts (234) - Fail2ban firewall update script, and missing radioscript.sh.&lt;br /&gt;
* pluto-website-admin - Place set for rules on the firewall and bantime for fail2ban integration.&lt;br /&gt;
* pluto-std-plugins (116,135) - adds heirloom-mailx for &#039;mailx -r&#039; functionality, fixes e-mail in general info plugin&lt;br /&gt;
&lt;br /&gt;
== Update 30068 ==&lt;br /&gt;
* lmce-advanced-ip-camera(813,812) - Fixed high cpu usage if connection to camera can not be made&lt;br /&gt;
&lt;br /&gt;
== Update 30052 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - fix android pkg meta data, need to rebuild all together&lt;br /&gt;
&lt;br /&gt;
== Update 30051 ==&lt;br /&gt;
* pluto-updateentarea (341,342) - use DAY/NIGHT in watching/stopped watching events to make them smarter&lt;br /&gt;
* pluto-std-plugins (116,135) - Implement Get Device Status in General Info Plugin&lt;br /&gt;
* pluto-bootscripts (234) - fix VPN ip up/down&lt;br /&gt;
&lt;br /&gt;
== Update 30025 ==&lt;br /&gt;
* pluto-system-database (211) - column def updates&lt;br /&gt;
* pluto-local-database (214) - new Firewall columns and new VPN columns for Users table.&lt;br /&gt;
&lt;br /&gt;
== Update 30014 ==&lt;br /&gt;
* lmce-transmission-client (852) - fix postinst issue.  (Thanks SBCC)&lt;br /&gt;
== Update 29994 ==&lt;br /&gt;
More VLC Player changes to make it at least somewhat usable, there were some ugly bugs that came to light once i plopped it onto my production system. Right now sound device is plughw:0,3, if you need a different one, change it in the code.  (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* lmce-vlc-player - many little fixes to make it suck less.&lt;br /&gt;
&lt;br /&gt;
== Update 29990 ==&lt;br /&gt;
I am working on the VLC player, and it is breathing enough for basic testing. Please do not use in production environment. There is still a lot of code to write (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - updates for VLC player (TSCHAK)&lt;br /&gt;
* vlc-player (882,884) - Very early alpha developer test of the VLC player. (TSCHAK)&lt;br /&gt;
* vlc-plugin (874,875) - Very alpha developer test of the VLC plugin. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 29984 ==&lt;br /&gt;
* pluto-system-database (211) - fix bad repos in pkgs&lt;br /&gt;
* pluto-website-admin - just because I think it is necessary :-)&lt;br /&gt;
&lt;br /&gt;
== Update 29983 ==&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35677</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35677"/>
		<updated>2015-05-30T19:45:10Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: /* Upcoming fixes... */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the 1204 changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo much easier. &amp;lt;- hey!  the text is back!  :D&lt;br /&gt;
* lmce-diskless-tools - update diskless archive name to reflect current compression method xz.&lt;br /&gt;
* pluto-website-admin (220) - updates to internet radio, moves add channels to a seperate page.  Thanks Dap-P!&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
* pluto-vdr - adds missing depends on vdr in trusty&lt;br /&gt;
* lmce-core - update depends to new pkg name lmce-avwizard-sounds&lt;br /&gt;
* pluto-avwizard - update depends to new pkg name lmce-avwizard-skins-basic&lt;br /&gt;
* lmce-clock-screen-saver - make the clock screen saver use the WMController/wmctrl methods for setting window visibility to be compatible with Orbiter. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30726 ==&lt;br /&gt;
* pluto-vdr - VDR player&#039;s package assumed a correctly installed vdr package which includes an entry in /etc/default for vdr. We no longer fail on a missing file.&lt;br /&gt;
&lt;br /&gt;
== Update 30724 ==&lt;br /&gt;
* lmce-weather - updates to weather sources, add OpenWM source.  Thanks SBCC and cfernandes!&lt;br /&gt;
* lmce-skins-* - adds missing telecom icons, updates/adds weather icons&lt;br /&gt;
* lmce-avwizard-sounds - remove extraneous stuff from pkg, reduce pkg size back to normal.  Proper replaces/conflicts/data...&lt;br /&gt;
* lmce-avwizard-skin-basic - Proper replaces/conflicts/data...&lt;br /&gt;
* pluto-system-database - db updates&lt;br /&gt;
&lt;br /&gt;
== Update 30718 ==&lt;br /&gt;
* lmce-core - new depends on lmce-skins*&lt;br /&gt;
* lmce-md-meta - add depends on pnp-detection scripts&lt;br /&gt;
* lmce-hybrid - new depends on lmce-skins*&lt;br /&gt;
* pluto-avwizard (556,555) - add pciutils as a depends, still need to deal with multiarch stuff so this will break armhf, we will not update armhf for now, it doesn&#039;t use avwizard but does install it.&lt;br /&gt;
* lmce-diskless-tools - minor diskless create fixups&lt;br /&gt;
* pluto-orbiter - missing depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio script&lt;br /&gt;
* pluto-website-admin (220) - recognize MIDs as top level devices&lt;br /&gt;
* pluto-mythtv-player - fix install in diskless create&lt;br /&gt;
&lt;br /&gt;
== Update 30628 ==&lt;br /&gt;
* *-database - fix install issues&lt;br /&gt;
&lt;br /&gt;
== Update 30622 ==&lt;br /&gt;
* pluto-orbiterinstallers - fix depends issue&lt;br /&gt;
* pluto-system-database - lots of compat updates&lt;br /&gt;
* lmce-* - lots of compat updates&lt;br /&gt;
* pluto-* - lots of compat updates&lt;br /&gt;
&lt;br /&gt;
== Update 30618 ==&lt;br /&gt;
* pluto-boot-scripts (234) - updated internet radio scripts&lt;br /&gt;
* pluto-website-admin (220) - updated internet radio page&lt;br /&gt;
&lt;br /&gt;
== Update 30571 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - send &amp;quot;Device is turned on or off&amp;quot; event when appropriate so the corresponding event works as expected&lt;br /&gt;
* lmce-squeezeslave (762) - set to pnp create without prompting&lt;br /&gt;
* lmce-runtime-dependencies (903) - pkg to help consolidate runtime depends.&lt;br /&gt;
* lmce-core (888) - updated depends&lt;br /&gt;
* lmce-md-meta (450)- updated depends&lt;br /&gt;
* pluto-boot-scripts (234) - updated depends&lt;br /&gt;
* pluto-createdevice (303,304) - updated depends&lt;br /&gt;
* lmce-weather(838,839) - fix potential segfault&lt;br /&gt;
* pluto-website-admin (220) - add &amp;quot;replace node&amp;quot; button to advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 30549 ==&lt;br /&gt;
* pluto-mythtv-player - fix misaligned data values during mythtv.txt creation.&lt;br /&gt;
&lt;br /&gt;
== Update 30526 ==&lt;br /&gt;
* lmce-core - new pkg&lt;br /&gt;
* lmce-hybrid - pkg depends changes&lt;br /&gt;
* lmce-md-meta - pkg depends changes&lt;br /&gt;
* pluto-dcerouter - pkg depends changes&lt;br /&gt;
* pluto-photo-screen-saver - pkg depends changes&lt;br /&gt;
* pluto-boot-scripts - pkg depends changes&lt;br /&gt;
* pluto-orbiter - pkg depends changes&lt;br /&gt;
* pluto-simplephone - pkg depends changes&lt;br /&gt;
* pluto-website-admin - pkg depends changes&lt;br /&gt;
* lmce-mythtv-scripts - pkg depends changes&lt;br /&gt;
* pluto-system-database - pkg depends changes&lt;br /&gt;
* lmce-squeezeslave (762) - fix launch script, automatically create associated squeezebox player on the core.&lt;br /&gt;
* pluto-std-plugins - run New_PnP_MD.sh for new MID devices as well.&lt;br /&gt;
* lmce-diskless-tools - don&#039;t fail on invoke-rc.d during diskless create, exit gracefully and continue.&lt;br /&gt;
* pluto-mythtv-player - fix diskless create failures due to old hacks.  more work is needed here overall on mythtv integration.&lt;br /&gt;
&lt;br /&gt;
== Update 30419 ==&lt;br /&gt;
* pluto-slim-server - Make sure to turn off all Squeeze* devices when Slim Server Streamer starts or restarts (so that squeezelite does not hog sound cards.)&lt;br /&gt;
* pluto-hald (529,530) - add device node path to pnpqueue with v4l devices during detection&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - update for new lib version&lt;br /&gt;
&lt;br /&gt;
== Update 30384 ==&lt;br /&gt;
* pluto-confirm-dependencies - depend on pluto-install-scripts.&lt;br /&gt;
* pluto-disk-drive (122,141) - remove hal bits that dealt with old jukebox bugs.&lt;br /&gt;
* pluto-capture-card-scripts (580) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-pnp-detection (562) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-storage-devices (533) - convert autofs from hal to udev.&lt;br /&gt;
* pluto-bootscripts (234) - disable starting the hald since we&#039;re using udev now, remove false &#039;fail&#039; messages during reboot/shutdown&lt;br /&gt;
* pluto-slim-server-streamer - make one tweak (do not delete m_mapStreamsToPlayers entry in CMD_Stop). Streaming now works consistently, properly, with squeezebox devices and their clones. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30354 ==&lt;br /&gt;
* pluto-hald (529,530) - fix attempt to fire event for child device of usb-dongle.&lt;br /&gt;
* pluto-slim-server-streamer - Implement FF/REW (transport) trick-play control for Squeeze* devices. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30341 ==&lt;br /&gt;
* pluto-bootscripst - fixes for PPPoE users to not autostart the external interface.&lt;br /&gt;
* pluto-slim-server-streamer - Fix to power off squeezebox player when stream is not in use. This allows softsqueeze/squeezeslave/squeezelite players to let go of a sound device, when not in use (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30332 ==&lt;br /&gt;
* pluto-orbiter (118,139) - disable old hid device functionality.  Anyone who needs it can request a special build which will be provided at no extra charge. ;)&lt;br /&gt;
* pluto-bootscripts (234) - disable Gamepad Radar, functionality now in hal through udev&lt;br /&gt;
* pluto-avwizard (556,555) - fixes mangling of RemoteCmd when &amp;gt;1 remote is detected.&lt;br /&gt;
* pluto-hal-device-finder (535,536) - update to use udev rather than hal.&lt;br /&gt;
* pluto-hald (529,530) - update to use udev rather than hal.&lt;br /&gt;
* pluto-system-database (211) - updates for new detection method (joystick, cec-adaptor), update dependency data for hal pks to reflect dropping hald and add depends on udev now.&lt;br /&gt;
&lt;br /&gt;
== Update 30219 ==&lt;br /&gt;
* pluto-bootscripts (234) - Fail2ban firewall update script, and missing radioscript.sh.&lt;br /&gt;
* pluto-website-admin - Place set for rules on the firewall and bantime for fail2ban integration.&lt;br /&gt;
* pluto-std-plugins (116,135) - adds heirloom-mailx for &#039;mailx -r&#039; functionality, fixes e-mail in general info plugin&lt;br /&gt;
&lt;br /&gt;
== Update 30068 ==&lt;br /&gt;
* lmce-advanced-ip-camera(813,812) - Fixed high cpu usage if connection to camera can not be made&lt;br /&gt;
&lt;br /&gt;
== Update 30052 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - fix android pkg meta data, need to rebuild all together&lt;br /&gt;
&lt;br /&gt;
== Update 30051 ==&lt;br /&gt;
* pluto-updateentarea (341,342) - use DAY/NIGHT in watching/stopped watching events to make them smarter&lt;br /&gt;
* pluto-std-plugins (116,135) - Implement Get Device Status in General Info Plugin&lt;br /&gt;
* pluto-bootscripts (234) - fix VPN ip up/down&lt;br /&gt;
&lt;br /&gt;
== Update 30025 ==&lt;br /&gt;
* pluto-system-database (211) - column def updates&lt;br /&gt;
* pluto-local-database (214) - new Firewall columns and new VPN columns for Users table.&lt;br /&gt;
&lt;br /&gt;
== Update 30014 ==&lt;br /&gt;
* lmce-transmission-client (852) - fix postinst issue.  (Thanks SBCC)&lt;br /&gt;
== Update 29994 ==&lt;br /&gt;
More VLC Player changes to make it at least somewhat usable, there were some ugly bugs that came to light once i plopped it onto my production system. Right now sound device is plughw:0,3, if you need a different one, change it in the code.  (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* lmce-vlc-player - many little fixes to make it suck less.&lt;br /&gt;
&lt;br /&gt;
== Update 29990 ==&lt;br /&gt;
I am working on the VLC player, and it is breathing enough for basic testing. Please do not use in production environment. There is still a lot of code to write (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - updates for VLC player (TSCHAK)&lt;br /&gt;
* vlc-player (882,884) - Very early alpha developer test of the VLC player. (TSCHAK)&lt;br /&gt;
* vlc-plugin (874,875) - Very alpha developer test of the VLC plugin. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 29984 ==&lt;br /&gt;
* pluto-system-database (211) - fix bad repos in pkgs&lt;br /&gt;
* pluto-website-admin - just because I think it is necessary :-)&lt;br /&gt;
&lt;br /&gt;
== Update 29983 ==&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35607</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35607"/>
		<updated>2015-03-30T23:14:09Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: /* Upcoming fixes... */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the 1204 changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo much easier. &amp;lt;- hey!  the text is back!  :D&lt;br /&gt;
&lt;br /&gt;
* pluto-slim-server - Make sure to turn off all Squeeze* devices when Slim Server Streamer starts or restarts (so that squeezelite does not hog sound cards.)&lt;br /&gt;
* pluto-hald (529,530) - add device node path to pnpqueue with v4l devices during detection&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - update for new lib version&lt;br /&gt;
&lt;br /&gt;
== Update 30384 ==&lt;br /&gt;
* pluto-confirm-dependencies - depend on pluto-install-scripts.&lt;br /&gt;
* pluto-disk-drive (122,141) - remove hal bits that dealt with old jukebox bugs.&lt;br /&gt;
* pluto-capture-card-scripts (580) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-pnp-detection (562) - convert scripts from hal to udev.&lt;br /&gt;
* pluto-storage-devices (533) - convert autofs from hal to udev.&lt;br /&gt;
* pluto-bootscripts (234) - disable starting the hald since we&#039;re using udev now, remove false &#039;fail&#039; messages during reboot/shutdown&lt;br /&gt;
* pluto-slim-server-streamer - make one tweak (do not delete m_mapStreamsToPlayers entry in CMD_Stop). Streaming now works consistently, properly, with squeezebox devices and their clones. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30354 ==&lt;br /&gt;
* pluto-hald (529,530) - fix attempt to fire event for child device of usb-dongle.&lt;br /&gt;
* pluto-slim-server-streamer - Implement FF/REW (transport) trick-play control for Squeeze* devices. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30341 ==&lt;br /&gt;
* pluto-bootscripst - fixes for PPPoE users to not autostart the external interface.&lt;br /&gt;
* pluto-slim-server-streamer - Fix to power off squeezebox player when stream is not in use. This allows softsqueeze/squeezeslave/squeezelite players to let go of a sound device, when not in use (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30332 ==&lt;br /&gt;
* pluto-orbiter (118,139) - disable old hid device functionality.  Anyone who needs it can request a special build which will be provided at no extra charge. ;)&lt;br /&gt;
* pluto-bootscripts (234) - disable Gamepad Radar, functionality now in hal through udev&lt;br /&gt;
* pluto-avwizard (556,555) - fixes mangling of RemoteCmd when &amp;gt;1 remote is detected.&lt;br /&gt;
* pluto-hal-device-finder (535,536) - update to use udev rather than hal.&lt;br /&gt;
* pluto-hald (529,530) - update to use udev rather than hal.&lt;br /&gt;
* pluto-system-database (211) - updates for new detection method (joystick, cec-adaptor), update dependency data for hal pks to reflect dropping hald and add depends on udev now.&lt;br /&gt;
&lt;br /&gt;
== Update 30219 ==&lt;br /&gt;
* pluto-bootscripts (234) - Fail2ban firewall update script, and missing radioscript.sh.&lt;br /&gt;
* pluto-website-admin - Place set for rules on the firewall and bantime for fail2ban integration.&lt;br /&gt;
* pluto-std-plugins (116,135) - adds heirloom-mailx for &#039;mailx -r&#039; functionality, fixes e-mail in general info plugin&lt;br /&gt;
&lt;br /&gt;
== Update 30068 ==&lt;br /&gt;
* lmce-advanced-ip-camera(813,812) - Fixed high cpu usage if connection to camera can not be made&lt;br /&gt;
&lt;br /&gt;
== Update 30052 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - fix android pkg meta data, need to rebuild all together&lt;br /&gt;
&lt;br /&gt;
== Update 30051 ==&lt;br /&gt;
* pluto-updateentarea (341,342) - use DAY/NIGHT in watching/stopped watching events to make them smarter&lt;br /&gt;
* pluto-std-plugins (116,135) - Implement Get Device Status in General Info Plugin&lt;br /&gt;
* pluto-bootscripts (234) - fix VPN ip up/down&lt;br /&gt;
&lt;br /&gt;
== Update 30025 ==&lt;br /&gt;
* pluto-system-database (211) - column def updates&lt;br /&gt;
* pluto-local-database (214) - new Firewall columns and new VPN columns for Users table.&lt;br /&gt;
&lt;br /&gt;
== Update 30014 ==&lt;br /&gt;
* lmce-transmission-client (852) - fix postinst issue.  (Thanks SBCC)&lt;br /&gt;
== Update 29994 ==&lt;br /&gt;
More VLC Player changes to make it at least somewhat usable, there were some ugly bugs that came to light once i plopped it onto my production system. Right now sound device is plughw:0,3, if you need a different one, change it in the code.  (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* lmce-vlc-player - many little fixes to make it suck less.&lt;br /&gt;
&lt;br /&gt;
== Update 29990 ==&lt;br /&gt;
I am working on the VLC player, and it is breathing enough for basic testing. Please do not use in production environment. There is still a lot of code to write (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - updates for VLC player (TSCHAK)&lt;br /&gt;
* vlc-player (882,884) - Very early alpha developer test of the VLC player. (TSCHAK)&lt;br /&gt;
* vlc-plugin (874,875) - Very alpha developer test of the VLC plugin. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 29984 ==&lt;br /&gt;
* pluto-system-database (211) - fix bad repos in pkgs&lt;br /&gt;
* pluto-website-admin - just because I think it is necessary :-)&lt;br /&gt;
&lt;br /&gt;
== Update 29983 ==&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35594</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35594"/>
		<updated>2015-03-28T01:29:39Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: /* Upcoming fixes... */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the 1204 changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo much easier. &amp;lt;- hey!  the text is back!  :D&lt;br /&gt;
* pluto-bootscripts (234) - disable starting the hald since we&#039;re using udev now&lt;br /&gt;
* pluto-slim-server-streamer - make one tweak (do not delete m_mapStreamsToPlayers entry in CMD_Stop). Streaming now works consistently, properly, with squeezebox devices and their clones. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30354 ==&lt;br /&gt;
* pluto-hald (529,530) - fix attempt to fire event for child device of usb-dongle.&lt;br /&gt;
* pluto-slim-server-streamer - Implement FF/REW (transport) trick-play control for Squeeze* devices. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30341 ==&lt;br /&gt;
* pluto-bootscripst - fixes for PPPoE users to not autostart the external interface.&lt;br /&gt;
* pluto-slim-server-streamer - Fix to power off squeezebox player when stream is not in use. This allows softsqueeze/squeezeslave/squeezelite players to let go of a sound device, when not in use (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30332 ==&lt;br /&gt;
* pluto-orbiter (118,139) - disable old hid device functionality.  Anyone who needs it can request a special build which will be provided at no extra charge. ;)&lt;br /&gt;
* pluto-bootscripts (234) - disable Gamepad Radar, functionality now in hal through udev&lt;br /&gt;
* pluto-avwizard (556,555) - fixes mangling of RemoteCmd when &amp;gt;1 remote is detected.&lt;br /&gt;
* pluto-hal-device-finder (535,536) - update to use udev rather than hal.&lt;br /&gt;
* pluto-hald (529,530) - update to use udev rather than hal.&lt;br /&gt;
* pluto-system-database (211) - updates for new detection method (joystick, cec-adaptor), update dependency data for hal pks to reflect dropping hald and add depends on udev now.&lt;br /&gt;
&lt;br /&gt;
== Update 30219 ==&lt;br /&gt;
* pluto-bootscripts (234) - Fail2ban firewall update script, and missing radioscript.sh.&lt;br /&gt;
* pluto-website-admin - Place set for rules on the firewall and bantime for fail2ban integration.&lt;br /&gt;
* pluto-std-plugins (116,135) - adds heirloom-mailx for &#039;mailx -r&#039; functionality, fixes e-mail in general info plugin&lt;br /&gt;
&lt;br /&gt;
== Update 30068 ==&lt;br /&gt;
* lmce-advanced-ip-camera(813,812) - Fixed high cpu usage if connection to camera can not be made&lt;br /&gt;
&lt;br /&gt;
== Update 30052 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - fix android pkg meta data, need to rebuild all together&lt;br /&gt;
&lt;br /&gt;
== Update 30051 ==&lt;br /&gt;
* pluto-updateentarea (341,342) - use DAY/NIGHT in watching/stopped watching events to make them smarter&lt;br /&gt;
* pluto-std-plugins (116,135) - Implement Get Device Status in General Info Plugin&lt;br /&gt;
* pluto-bootscripts (234) - fix VPN ip up/down&lt;br /&gt;
&lt;br /&gt;
== Update 30025 ==&lt;br /&gt;
* pluto-system-database (211) - column def updates&lt;br /&gt;
* pluto-local-database (214) - new Firewall columns and new VPN columns for Users table.&lt;br /&gt;
&lt;br /&gt;
== Update 30014 ==&lt;br /&gt;
* lmce-transmission-client (852) - fix postinst issue.  (Thanks SBCC)&lt;br /&gt;
== Update 29994 ==&lt;br /&gt;
More VLC Player changes to make it at least somewhat usable, there were some ugly bugs that came to light once i plopped it onto my production system. Right now sound device is plughw:0,3, if you need a different one, change it in the code.  (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* lmce-vlc-player - many little fixes to make it suck less.&lt;br /&gt;
&lt;br /&gt;
== Update 29990 ==&lt;br /&gt;
I am working on the VLC player, and it is breathing enough for basic testing. Please do not use in production environment. There is still a lot of code to write (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - updates for VLC player (TSCHAK)&lt;br /&gt;
* vlc-player (882,884) - Very early alpha developer test of the VLC player. (TSCHAK)&lt;br /&gt;
* vlc-plugin (874,875) - Very alpha developer test of the VLC plugin. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 29984 ==&lt;br /&gt;
* pluto-system-database (211) - fix bad repos in pkgs&lt;br /&gt;
* pluto-website-admin - just because I think it is necessary :-)&lt;br /&gt;
&lt;br /&gt;
== Update 29983 ==&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35589</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35589"/>
		<updated>2015-03-25T04:25:35Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: Added changelog entry.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the 1204 changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo much easier. &amp;lt;- hey!  the text is back!  :D&lt;br /&gt;
&lt;br /&gt;
* pluto-slim-server-streamer - Implement FF/REW (transport) trick-play control for Squeeze* devices. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30341 ==&lt;br /&gt;
* pluto-bootscripst - fixes for PPPoE users to not autostart the external interface.&lt;br /&gt;
* pluto-slim-server-streamer - Fix to power off squeezebox player when stream is not in use. This allows softsqueeze/squeezeslave/squeezelite players to let go of a sound device, when not in use (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30332 ==&lt;br /&gt;
* pluto-orbiter (118,139) - disable old hid device functionality.  Anyone who needs it can request a special build which will be provided at no extra charge. ;)&lt;br /&gt;
* pluto-bootscripts (234) - disable Gamepad Radar, functionality now in hal through udev&lt;br /&gt;
* pluto-avwizard (556,555) - fixes mangling of RemoteCmd when &amp;gt;1 remote is detected.&lt;br /&gt;
* pluto-hal-device-finder (535,536) - update to use udev rather than hal.&lt;br /&gt;
* pluto-hald (529,530) - update to use udev rather than hal.&lt;br /&gt;
* pluto-system-database (211) - updates for new detection method (joystick, cec-adaptor), update dependency data for hal pks to reflect dropping hald and add depends on udev now.&lt;br /&gt;
&lt;br /&gt;
== Update 30219 ==&lt;br /&gt;
* pluto-bootscripts (234) - Fail2ban firewall update script, and missing radioscript.sh.&lt;br /&gt;
* pluto-website-admin - Place set for rules on the firewall and bantime for fail2ban integration.&lt;br /&gt;
* pluto-std-plugins (116,135) - adds heirloom-mailx for &#039;mailx -r&#039; functionality, fixes e-mail in general info plugin&lt;br /&gt;
&lt;br /&gt;
== Update 30068 ==&lt;br /&gt;
* lmce-advanced-ip-camera(813,812) - Fixed high cpu usage if connection to camera can not be made&lt;br /&gt;
&lt;br /&gt;
== Update 30052 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - fix android pkg meta data, need to rebuild all together&lt;br /&gt;
&lt;br /&gt;
== Update 30051 ==&lt;br /&gt;
* pluto-updateentarea (341,342) - use DAY/NIGHT in watching/stopped watching events to make them smarter&lt;br /&gt;
* pluto-std-plugins (116,135) - Implement Get Device Status in General Info Plugin&lt;br /&gt;
* pluto-bootscripts (234) - fix VPN ip up/down&lt;br /&gt;
&lt;br /&gt;
== Update 30025 ==&lt;br /&gt;
* pluto-system-database (211) - column def updates&lt;br /&gt;
* pluto-local-database (214) - new Firewall columns and new VPN columns for Users table.&lt;br /&gt;
&lt;br /&gt;
== Update 30014 ==&lt;br /&gt;
* lmce-transmission-client (852) - fix postinst issue.  (Thanks SBCC)&lt;br /&gt;
== Update 29994 ==&lt;br /&gt;
More VLC Player changes to make it at least somewhat usable, there were some ugly bugs that came to light once i plopped it onto my production system. Right now sound device is plughw:0,3, if you need a different one, change it in the code.  (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* lmce-vlc-player - many little fixes to make it suck less.&lt;br /&gt;
&lt;br /&gt;
== Update 29990 ==&lt;br /&gt;
I am working on the VLC player, and it is breathing enough for basic testing. Please do not use in production environment. There is still a lot of code to write (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - updates for VLC player (TSCHAK)&lt;br /&gt;
* vlc-player (882,884) - Very early alpha developer test of the VLC player. (TSCHAK)&lt;br /&gt;
* vlc-plugin (874,875) - Very alpha developer test of the VLC plugin. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 29984 ==&lt;br /&gt;
* pluto-system-database (211) - fix bad repos in pkgs&lt;br /&gt;
* pluto-website-admin - just because I think it is necessary :-)&lt;br /&gt;
&lt;br /&gt;
== Update 29983 ==&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35586</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35586"/>
		<updated>2015-03-23T02:21:57Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: /* Upcoming fixes... */ pluto-slim-server-streamer&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the 1204 changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo much easier. &amp;lt;- hey!  the text is back!  :D&lt;br /&gt;
&lt;br /&gt;
* pluto-bootscripst - fixes for PPPoE users to not autostart the external interface.&lt;br /&gt;
* pluto-slim-server-streamer - Fix to power off squeezebox player when stream is not in use. This allows softsqueeze/squeezeslave/squeezelite players to let go of a sound device, when not in use (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 30332 ==&lt;br /&gt;
* pluto-orbiter (118,139) - disable old hid device functionality.  Anyone who needs it can request a special build which will be provided at no extra charge. ;)&lt;br /&gt;
* pluto-bootscripts (234) - disable Gamepad Radar, functionality now in hal through udev&lt;br /&gt;
* pluto-avwizard (556,555) - fixes mangling of RemoteCmd when &amp;gt;1 remote is detected.&lt;br /&gt;
* pluto-hal-device-finder (535,536) - update to use udev rather than hal.&lt;br /&gt;
* pluto-hald (529,530) - update to use udev rather than hal.&lt;br /&gt;
* pluto-system-database (211) - updates for new detection method (joystick, cec-adaptor), update dependency data for hal pks to reflect dropping hald and add depends on udev now.&lt;br /&gt;
&lt;br /&gt;
== Update 30219 ==&lt;br /&gt;
* pluto-bootscripts (234) - Fail2ban firewall update script, and missing radioscript.sh.&lt;br /&gt;
* pluto-website-admin - Place set for rules on the firewall and bantime for fail2ban integration.&lt;br /&gt;
* pluto-std-plugins (116,135) - adds heirloom-mailx for &#039;mailx -r&#039; functionality, fixes e-mail in general info plugin&lt;br /&gt;
&lt;br /&gt;
== Update 30068 ==&lt;br /&gt;
* lmce-advanced-ip-camera(813,812) - Fixed high cpu usage if connection to camera can not be made&lt;br /&gt;
&lt;br /&gt;
== Update 30052 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - fix android pkg meta data, need to rebuild all together&lt;br /&gt;
&lt;br /&gt;
== Update 30051 ==&lt;br /&gt;
* pluto-updateentarea (341,342) - use DAY/NIGHT in watching/stopped watching events to make them smarter&lt;br /&gt;
* pluto-std-plugins (116,135) - Implement Get Device Status in General Info Plugin&lt;br /&gt;
* pluto-bootscripts (234) - fix VPN ip up/down&lt;br /&gt;
&lt;br /&gt;
== Update 30025 ==&lt;br /&gt;
* pluto-system-database (211) - column def updates&lt;br /&gt;
* pluto-local-database (214) - new Firewall columns and new VPN columns for Users table.&lt;br /&gt;
&lt;br /&gt;
== Update 30014 ==&lt;br /&gt;
* lmce-transmission-client (852) - fix postinst issue.  (Thanks SBCC)&lt;br /&gt;
== Update 29994 ==&lt;br /&gt;
More VLC Player changes to make it at least somewhat usable, there were some ugly bugs that came to light once i plopped it onto my production system. Right now sound device is plughw:0,3, if you need a different one, change it in the code.  (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* lmce-vlc-player - many little fixes to make it suck less.&lt;br /&gt;
&lt;br /&gt;
== Update 29990 ==&lt;br /&gt;
I am working on the VLC player, and it is breathing enough for basic testing. Please do not use in production environment. There is still a lot of code to write (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - updates for VLC player (TSCHAK)&lt;br /&gt;
* vlc-player (882,884) - Very early alpha developer test of the VLC player. (TSCHAK)&lt;br /&gt;
* vlc-plugin (874,875) - Very alpha developer test of the VLC plugin. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 29984 ==&lt;br /&gt;
* pluto-system-database (211) - fix bad repos in pkgs&lt;br /&gt;
* pluto-website-admin - just because I think it is necessary :-)&lt;br /&gt;
&lt;br /&gt;
== Update 29983 ==&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35536</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35536"/>
		<updated>2015-01-27T05:17:22Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: /* Upcoming fixes... */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the 1204 changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo&lt;br /&gt;
&lt;br /&gt;
More VLC Player changes to make it at least somewhat usable, there were some ugly bugs that came to light once i plopped it onto my production system. Right now sound device is plughw:0,3, if you need a different one, change it in the code.  (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* lmce-vlc-player - many little fixes to make it suck less.&lt;br /&gt;
&lt;br /&gt;
== Update 29990 ==&lt;br /&gt;
I am working on the VLC player, and it is breathing enough for basic testing. Please do not use in production environment. There is still a lot of code to write (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - updates for VLC player (TSCHAK)&lt;br /&gt;
* vlc-player (882,884) - Very early alpha developer test of the VLC player. (TSCHAK)&lt;br /&gt;
* vlc-plugin (874,875) - Very alpha developer test of the VLC plugin. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 29984 ==&lt;br /&gt;
* pluto-system-database (211) - fix bad repos in pkgs&lt;br /&gt;
* pluto-website-admin - just because I think it is necessary :-)&lt;br /&gt;
&lt;br /&gt;
== Update 29983 ==&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35534</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35534"/>
		<updated>2015-01-26T22:58:37Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: /* Upcoming fixes... */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the 1204 changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo&lt;br /&gt;
&lt;br /&gt;
I am working on the VLC player, and it is breathing enough for basic testing. Please do not use in production environment. There is still a lot of code to write (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - updates for VLC player (TSCHAK)&lt;br /&gt;
* vlc-player (882,884) - Very early alpha developer test of the VLC player. (TSCHAK)&lt;br /&gt;
* vlc-plugin (874,875) - Very alpha developer test of the VLC plugin. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 29984 ==&lt;br /&gt;
* pluto-system-database (211) - fix bad repos in pkgs&lt;br /&gt;
* pluto-website-admin - just because I think it is necessary :-)&lt;br /&gt;
&lt;br /&gt;
== Update 29983 ==&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35530</id>
		<title>LinuxMCE-1204/1404 Updates</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35530"/>
		<updated>2015-01-23T18:56:37Z</updated>

		<summary type="html">&lt;p&gt;Tschak909: /* Upcoming fixes... */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| align=&amp;quot;right&amp;quot;&lt;br /&gt;
  | __TOC__&lt;br /&gt;
  |}&lt;br /&gt;
This page outlines some information about the 1204 changes, as well as outlining any changes and bugfixes we are applying.&lt;br /&gt;
&lt;br /&gt;
If a package needs to be built, put it under Upcoming fixes... As soon as a set of package is built, those packages move into a section called Update XXXXX where XXXXX is the svn revision at the time of build.&lt;br /&gt;
&lt;br /&gt;
== Upcoming fixes... ==&lt;br /&gt;
&#039;&#039;&#039;Note: Please put the name of the package file and the source and bin package number in this list, followed by a small description of what has changed! Hulu Player is not the name of the package, but lmce-hulu-player. It makes the life of the person, who needs to update the repo&lt;br /&gt;
* pluto-website-admin (220) - android qorbiter links for installer page. - thought this was in already&lt;br /&gt;
* pluto-std-plugins (116,135) - Add calls to set house and user modes to security and telecom plugins for qOrbiter. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Add set user and house mode commands to Standard Orbiter Commands group, in preparation for qOrbiter re-DCEGen&lt;br /&gt;
&lt;br /&gt;
== Update 29956 ==&lt;br /&gt;
* pluto-system-database (211) - Additional MAC range for Hue device template.&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together, new skin pkgs&lt;br /&gt;
&lt;br /&gt;
== Update 29942 ==&lt;br /&gt;
* pluto-system-database (211) - BD MediaType update to permit playback.&lt;br /&gt;
&lt;br /&gt;
== Update 29939 ==&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild all together&lt;br /&gt;
* pluto-vdr-plugin - return list of currently active EPG instead of the whole EPG.&lt;br /&gt;
&lt;br /&gt;
== Update 29911 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - stop redirecting to MPlayer, remove auto-rip questions for BD discs&lt;br /&gt;
* pluto-xine-player (117,136) - BD playback mount disc prior to playback, unmount afterwards&lt;br /&gt;
* pluto-xine-plugin (118,137) - stop redirecting to MPlayer, Xine handles everything now&lt;br /&gt;
&lt;br /&gt;
== Update 29894 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - load the default no radar image on plugin start&lt;br /&gt;
* lmce-zwave-ozw(505,506) - first version of automatic reviving of dead nodes&lt;br /&gt;
* pluto-website-admin (220) - run Diskless_Setup from executeLog.php only.  Run script only once and restore script output display to the user in webadmin.&lt;br /&gt;
* lmce-diskless-tools (627,628) - don&#039;t reset the NeedConfigure flag, Config_Device_Changes should run properly after MD rebuild now&lt;br /&gt;
* pluto-bootscripts (234) - enable multichannel audio formats that are not ac3/dts in xine&lt;br /&gt;
&lt;br /&gt;
== Update 29887 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-bootscripts (234) - enable xorg LTS-HWE packages&lt;br /&gt;
* pluto-x-scripts () - enable xorg LTS-HWE packages&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5, hopefully with plugins this time&lt;br /&gt;
&lt;br /&gt;
== Update 29885 ==&lt;br /&gt;
* lmce-weather-plugin (836,837) - adds no radar data image&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, qt5 now&lt;br /&gt;
&lt;br /&gt;
== Update 29862 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - fixes missing assignment from file pictures to album pictures&lt;br /&gt;
&lt;br /&gt;
== Update 29853 ==&lt;br /&gt;
* pluto-boot-scripts (234) - with right execution right for radioscript.sh.&lt;br /&gt;
* lmce-weather-plugin(836,837) needs rebuild to get latest changes in&lt;br /&gt;
* lmce-qorbiter-* (lots) - rebuild, with plugins now, need skin pkgs at the same time&lt;br /&gt;
&lt;br /&gt;
== Update 29837 ==&lt;br /&gt;
* pluto-xine-player (117,136) - improved subtitle handling, specifically fixing resume with bookmarked subtitle &amp;amp; audio track&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
&lt;br /&gt;
== Update 29814 ==&lt;br /&gt;
* lmce-diskless-tools - LTS-HWE fixup, write pluto.conf on the MD, not the core&lt;br /&gt;
&lt;br /&gt;
== Update 29806 ==&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fix for vboxvideo driver&lt;br /&gt;
* lmce-diskless-tools - remove quiet from md boots during testing&lt;br /&gt;
* pluto-boot-scripts (234) - seperate LTS HWE handling for kernel and xserver&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to fdownload.php&#039;s allowable list&lt;br /&gt;
&lt;br /&gt;
== Update 29792 ==&lt;br /&gt;
* pluto-orbiterinstaller (363) - add android apk debs as depends&lt;br /&gt;
* pluto-website-admin (220) - add local qorbiter .apks to installer page&lt;br /&gt;
* pluto-boot-scripts (234) - avwiz startup fixes&lt;br /&gt;
* pluto-avwizard (556,555) - avwiz startup fixes&lt;br /&gt;
* pluto-x-scripts - avwiz startup fixes&lt;br /&gt;
* lmce-diskless-tools - add lmce-qorbiter to i386 diskless image, enable -lts-trusty pkgs in i386 md image, avwiz startup fixes.&lt;br /&gt;
* lmce-qorbiter-* (lots) - first full build of bins and skins, including android, so deployment development can happen&lt;br /&gt;
* lmce-game-player (673,674) - stomping out deadlocks once and for all. I hope this is stable enough for you guys. After 200 presses of random and trying orbiter buttons, things keep going. -Thom&lt;br /&gt;
&lt;br /&gt;
== Update 29775 ==&lt;br /&gt;
* lmce-cec-adaptor (871, 872) - pulse-eight fixups for setting Physical Address &amp;amp; other stuff&lt;br /&gt;
&lt;br /&gt;
== Update 29765 ==&lt;br /&gt;
* lmce-game-player (673,674) - fix some weirdness when you do playlists across different emulation engines (MAME, MESS, etc.)&lt;br /&gt;
&lt;br /&gt;
== Update 29764 ==&lt;br /&gt;
* pluto-web-admin (220) - some fixes for internetradio, improvements to photoBrowser&lt;br /&gt;
&lt;br /&gt;
== Update 29733 ==&lt;br /&gt;
* pluto-web-admin (220) - photo browser to browse pictures by attribute.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add unit conversion for thermostats if device is configured for F&lt;br /&gt;
* pluto-system-database (211) - unit device data for standard thermostat device template&lt;br /&gt;
&lt;br /&gt;
== Update 29723 ==&lt;br /&gt;
* pluto-boot-scripts - Installer for internetradio stations, support for a SIXXS tunnel, let bind work on ipv6 as google is reachable from the ipv6 network&lt;br /&gt;
* pluto-boot-scripts - qmd launch changes.&lt;br /&gt;
* lmce-qorbiter (858,859) - update launch script for i386 as well as RPi&lt;br /&gt;
&lt;br /&gt;
== Update 29715 ==&lt;br /&gt;
* pluto-web-admin (220) - Installer for internetradio sations.&lt;br /&gt;
* lmce-cec-adaptor - adds control of connected devices from LinuxMCE&lt;br /&gt;
* lmce-qorbiter (858,859) - update&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - update&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - update&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - update&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - update&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - update&lt;br /&gt;
&lt;br /&gt;
== Update 29689 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - avoid modifying id3 file when nothing has changed&lt;br /&gt;
* pluto-system-database (211) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-orbiter (118,139) - allow selecting scenarios using numeric buttons on UI2&lt;br /&gt;
* pluto-web-admin - Properly quote CommandParameter values when doing Test Command.&lt;br /&gt;
&lt;br /&gt;
== Update 29595 ==&lt;br /&gt;
* *xine*.deb - from replacements - upgrade to libxine2 1.2.6, lots of bug fixes, improvements&lt;br /&gt;
* pluto-system-database (211) - update xine pkg depends to libxine2-x&lt;br /&gt;
* pluto-xine-player (117,136) - update pkg depends to libxine2-x&lt;br /&gt;
&lt;br /&gt;
== Update 29587 ==&lt;br /&gt;
* pluto-gc100 - Adding IR blasting to iTach flex. Thx Radu.&lt;br /&gt;
&lt;br /&gt;
== Update 29584 ==&lt;br /&gt;
* lmce-diskless-tools - add CEC_Adaptor to Raspbian diskless images.&lt;br /&gt;
* pluto-confirm-dependencies - permit country mirror matching for apt mirrors.&lt;br /&gt;
* lmce-asterisk - fixed a problem with not registering my second phoneline.&lt;br /&gt;
* pluto-system-database (211) - remove mediatomb from default install, can now add through webadmin install wizards; new country mirror for Germany.&lt;br /&gt;
* lmce-transmission-client (852) - add required script for webadmin actions&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - alter data to connect to master server at the core&#039;s internal lan ip.&lt;br /&gt;
* pluto-mythtv-player - ensure the players know the ip of the core for connecting to the master server.&lt;br /&gt;
&lt;br /&gt;
== Update 29547 ==&lt;br /&gt;
* pluto-vdr-plugin - now with a postinst script so core only installs will have the proper settings in default/vdr&lt;br /&gt;
&lt;br /&gt;
== Update 29544 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version &lt;br /&gt;
* lmce-zwave-ozw(505,506) - needs to be rebuilt with new lib&lt;br /&gt;
* pluto-avwizard (556,555) - revert some changes so 1204 detection returns&lt;br /&gt;
&lt;br /&gt;
== Update 29530 ==&lt;br /&gt;
* lmce-cec-adaptor - Additional remote buttons added.&lt;br /&gt;
* pluto-avwizard (556,555) - improve avwizard start detection reliability, and video detection reliability&lt;br /&gt;
* pluto-boot-scripts - improve reliability for video detection&lt;br /&gt;
* pluto-skins-basic (204) - new PS button and addition of weather icons and buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29523 ==&lt;br /&gt;
* lmce-squeezeslave - fix dir location in postinst causing install error.&lt;br /&gt;
* pluto-orbiter - use updated screenmap generator code as orbitergen is&lt;br /&gt;
&lt;br /&gt;
== Update 29520 ==&lt;br /&gt;
* lmce-diskless-tools - fix bad kernel symlink in rpi diskless images.&lt;br /&gt;
* pluto-boot-scripts - fix firewall missing exclusion for a sourceip.&lt;br /&gt;
* lmce-game-plugin - add subtitle attribute.&lt;br /&gt;
* lmce-airplay-streamer - Get IP from core if running on core&lt;br /&gt;
* pluto-asterisk - Add support for ConfBridge tokens (Asterisk 1.8+)&lt;br /&gt;
* lmce-squeezeslave - postinst and prerm scripts to divert squeezelite init.d script.  Change depends from squeezeslave to squeezelite.&lt;br /&gt;
* pluto-std-plugins - adds np_XBOX, np_Network, np_Playstation to ContainsVideo to prevent screensaver and video pipe &#039;off&#039; commands.&lt;br /&gt;
&lt;br /&gt;
== Update 29482 ==&lt;br /&gt;
* lmce-skins-titanium (708) - fix media control arrow direction.&lt;br /&gt;
* pluto-skins-basic (204) - additional icons including the 4 colour buttons.&lt;br /&gt;
* pluto-system-database (211) - new designobjs.&lt;br /&gt;
&lt;br /&gt;
== Update 29465 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - improve (or fix) UTF-8 handling of IPTC tags in JPG files (the problem is that the character set is not 100% defined for these tags, we follow what seems to be the norm wrt. character encoding)&lt;br /&gt;
&lt;br /&gt;
== Update 29456 ==&lt;br /&gt;
* pluto-orbitergen - generate screens for DesignObjs declared as required by DeviceTemplates, permits DT based remote screens, etc...&lt;br /&gt;
&lt;br /&gt;
== Update 29454 ==&lt;br /&gt;
* lmce-omx-plugin - resume media and bookmarking now possible.&lt;br /&gt;
* pluto-updatemedia (405,406) - try to improve picture to attribute assignment, fix utf-8 for flac and ogg files&lt;br /&gt;
&lt;br /&gt;
== Update 29448 ==&lt;br /&gt;
* pluto-xine-player (117,136) - subtitle &amp;amp; audio track toggling&lt;br /&gt;
* pluto-system-database (211) - updated device data for Orbiter UI1 subtitle &amp;amp; audio track toggling &amp;amp; OMX_Player commands.&lt;br /&gt;
* pluto-website-admin (220) - check for mediadirector based on category rather than lists of DTs&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* libsoxr*.deb - replacement (required for squeezelite)&lt;br /&gt;
* squeezelite*.deb - replacement&lt;br /&gt;
* lmce-squeezeslave - updates launch script, package depends on squeezelite for raspbian wheezy and ubuntu trusty, precise is still squeezeslave but will change after a little more testing.&lt;br /&gt;
&lt;br /&gt;
== Update 29418 ==&lt;br /&gt;
* pluto-website-admin (220) - fixes [http://svn.linuxmce.org/trac/ticket/589 #589]&lt;br /&gt;
* lmce-diskless-tools - updates to files.d for rpi md creation.&lt;br /&gt;
* pluto-std-plugins - minor change to how CreateDevice handles new FK_DeviceTemplate_Required column, still not in use officially, still fully backwards compatible.&lt;br /&gt;
* lmce-launch-manager - start devices on an MD even if there is no orbiter device, permits other diskless booting devices that are not full MDs.&lt;br /&gt;
&lt;br /&gt;
== Update 29405 ==&lt;br /&gt;
* pluto-orbiter - get timecode data from OMX_Player&lt;br /&gt;
* lmce-omx-plugin - permit audio playlists to repeat.&lt;br /&gt;
* pluto-std-plugins - updates to media plugin to complement the JSON plugins new playlist ability&lt;br /&gt;
&lt;br /&gt;
== Update 29353 ==&lt;br /&gt;
* lmce-diskless-tools - fix firstboot script causing Diskless_Setup.sh to fail.&lt;br /&gt;
* lmce-omx-plugin - permit screensaver during audio playback.&lt;br /&gt;
* pluto-photo-screen-saver - turn off the mouse cursor in the SDL PSS (yay!).&lt;br /&gt;
&lt;br /&gt;
== Update 29333 ==&lt;br /&gt;
* lmce-diskless-tools - remove twolife repo causing so much grief.  debs in lmce repo now. &lt;br /&gt;
* pluto-boot-scripts - don&#039;t run X on RPi qMDs, adds LaunchQOrbiter.sh.&lt;br /&gt;
&lt;br /&gt;
== Update 29325 ==&lt;br /&gt;
* lirc-pluto - remove depends on lirc-modules*&lt;br /&gt;
&lt;br /&gt;
== Update 29276 ==&lt;br /&gt;
* lmce-launch-manager - run UpdateAvailableSoundCards.sh on each router reload as intended&lt;br /&gt;
* pluto-std-plugins - fixes for new PnpProtocol in PnpQueue&lt;br /&gt;
&lt;br /&gt;
== Update 29241 ==&lt;br /&gt;
* A full set of debs has been updated due to a header file receiving a major (re)fix.&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall.&lt;br /&gt;
* pluto-website-admin (220) - fixes saving of polling values for advanced ZWave page, fixes for firewall.&lt;br /&gt;
* pluto-newmdinteractor - new interactor method &#039;select&#039; to spawn a DT selection screen&lt;br /&gt;
* pluto-std-plugins - new PnpProtocol for newmd interactor to spawn a DT selection screen&lt;br /&gt;
&lt;br /&gt;
== Update 29194 ==&lt;br /&gt;
* pluto-boot-scripts - multiple bug fixes for firewall and port_forward (NAT) in peticulair.&lt;br /&gt;
* pluto-website-admin - fix for firewall to get port_forward easyer (i&#039;m thinking of i can make it more easy).&lt;br /&gt;
&lt;br /&gt;
== Update 29165 ==&lt;br /&gt;
* pluto-boot-scripts - modify smb.conf templates to set the prefered authentication method.&lt;br /&gt;
&lt;br /&gt;
== Update 29143 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - CreateDevice changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* pluto-createdevice (303,304) - changes to begin handling DT parent information for MD/qMD (or other device) creation.&lt;br /&gt;
* lmce-diskless-tools (627,628) - raspbian updates for Diskless_CreateTBZ.sh&lt;br /&gt;
* pluto-website-admin (220) - InstallWizard page fixes and language updates.&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
&lt;br /&gt;
== Update 29090 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - allow user specified retry timeout for ZWave communications&lt;br /&gt;
* pluto-system-database (211) - updated device data for ZWave template&lt;br /&gt;
&lt;br /&gt;
== Update 29040 ==&lt;br /&gt;
* pluto-website-admin (220) - Add polling status and update for ZWave&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
&lt;br /&gt;
== Update 29039 ==&lt;br /&gt;
* pluto-website-admin (220) - view, add and remove ZWave associations from wed-admin page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - load associations for web-admin&lt;br /&gt;
&lt;br /&gt;
== Update 29025 ==&lt;br /&gt;
* pluto-boot-scripts (234) - add a fix for port_forward (NAT).&lt;br /&gt;
* pluto-system-database (211) - add AVWizard as a required package of the Generic PC as MD DT, schema change alter new column name in InstallWizard_Distro to fix query errors&lt;br /&gt;
* pluto-local-database (214) - enable schema updates through package update.&lt;br /&gt;
&lt;br /&gt;
== Update 29007 ==&lt;br /&gt;
* libbluray*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* *xine*.deb - from replacements - enable vaapi on all cards supporting it, enable unencrypted BD playback&lt;br /&gt;
* ola*.deb - from replacements - ola 0.9.0&lt;br /&gt;
* lmce-ola (782,785) - lmce-ola updated to build for ola 0.9.0&lt;br /&gt;
* pluto-website-admin (220) - fix popup overlay and lines not moving when node has no heighbors&lt;br /&gt;
* pluto-updatemedia - different handling for VDR recordings. still defines recordings as dirs, but at least they end up in the db as vids&lt;br /&gt;
* pluto-xine-plugin - different handling for VDR recordings.&lt;br /&gt;
&lt;br /&gt;
== Update 28980 ==&lt;br /&gt;
* pluto-system-database (211) - update the local repo schema for Firewall table, update the website repo schema for InstallWizard_Distro table.&lt;br /&gt;
* pluto-website-admin (220) - set loglevels functioning again, InstallWizard webadmin editor, more commands on the zwave page, New Firewall rules page and VPN Settings.&lt;br /&gt;
* pluto-boot-scripts (234) - scripts for setting/reading loglevels, VPN, Firewall.&lt;br /&gt;
* pluto-text-to-speech (283,284) - get voice from deb now that we have it.&lt;br /&gt;
&lt;br /&gt;
== Update 28950 ==&lt;br /&gt;
* lmce-hue-controller (862,863) - fixes for hue controller run-time errors&lt;br /&gt;
* lmce-diskless-tools (627,628) - fix mountnfs.sh script on MDs.&lt;br /&gt;
* pluto-storage-devices (533) - don&#039;t cat to /etc/mtab if it is already a symlink to /proc/mounts&lt;br /&gt;
&lt;br /&gt;
== Update 28947 ==&lt;br /&gt;
* pluto-system-database (211) - revert TSCHAK&#039;s font, again.&lt;br /&gt;
* pluto-website-admin (220) - advanced ZWave page, now possible to set config parameters, some esthetic cleanups&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
* pluto-powerfile-c200 (492,493) - builds, not currently in repo&lt;br /&gt;
* pluto-sql2cpp (202,203) - builds, not currently in repo&lt;br /&gt;
* pluto-tribunetv (598,599) - builds, not currently in repo&lt;br /&gt;
* lmce-qmediaplayer-plugin (856,857) - builds, not currently in repo&lt;br /&gt;
* lmce-mame-snaps (681) - builds, not currently in repo - not part of current build due to size, single build with release-pkg.sh perhaps.&lt;br /&gt;
&lt;br /&gt;
== Update 28939 ==&lt;br /&gt;
* pluto-system-database (211) - removes precise compatibility from lshwd&lt;br /&gt;
* pluto-boot-scripts (234) - remove lshwd from bootscripts, restore ConfirmDependencies on reboot/rebuild.&lt;br /&gt;
* pluto-text-to-speech (283,284) - change from nitech to cmu voice to get ivr menu generation working again&lt;br /&gt;
* pluto-asterisk (270) - Fix ownership of asterisk/pluto sound files&lt;br /&gt;
* pluto-website-admin (220) - fix webadmin display of serial ports on MDs, use existing scripts to consolide the function, new advanced ZWave page&lt;br /&gt;
* lmce-zwave-ozw(505,506) - provide network data for the advanced ZWave page&lt;br /&gt;
&lt;br /&gt;
== Update 28891 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - only send state changed events when value has actually changed&lt;br /&gt;
&lt;br /&gt;
== Update 28831 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - new upstream version&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adjust timeout for retries from 40 to 2 seconds&lt;br /&gt;
&lt;br /&gt;
== Update 28821 ==&lt;br /&gt;
* lmce-diskless-tools (627,628) - stop waiting up to 3 mins for working network&lt;br /&gt;
* pluto-x-scripts (520,523) - fix avwiz having a hissy fit without video drivers.&lt;br /&gt;
* pluto-updatemedia (405,406) - unstripped bin for debugging.&lt;br /&gt;
* lmce-zwave-ozw(505,506) - add notification of level changes&lt;br /&gt;
&lt;br /&gt;
== Update 28803 ==&lt;br /&gt;
* pluto-website-admin - GSD code editor now fills the window &amp;amp; fix to find omx player or xine player in webadmin, prevents update error&lt;br /&gt;
* lmce-diskless-tools (627,628) - removes plymouth theme&lt;br /&gt;
* pluto-boot-scripts (234) - WakeMD fix for certain nvidia nics.&lt;br /&gt;
&lt;br /&gt;
== Update 28792 ==&lt;br /&gt;
* pluto-website-admin - Final refresh fix for weborbiter - thx Uplink and cfernandez&lt;br /&gt;
== Update 28788 ==&lt;br /&gt;
* lmce-qorbiter (858,859) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - include qmldir in skins&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - include qmldir in skins&lt;br /&gt;
* pluto-boot-scripts (234) - Firewall fix to permit user firewall rules again.&lt;br /&gt;
&lt;br /&gt;
== Update 28786 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix setting of /etc/defaultdomain on MDs so networking/dns lookups and more do not have a hissy fit.  Thanks Dap_P!&lt;br /&gt;
&lt;br /&gt;
== Update 28755 ==&lt;br /&gt;
*lmce-diskless-tools (627,628) - fix error in for loop of postinst&lt;br /&gt;
&lt;br /&gt;
== Update 28741 ==&lt;br /&gt;
*pluto-motion-wrapper (455,456) - upgrade dependency to libavcodec53&lt;br /&gt;
*pluto-system-database (211) - InstallWizard &amp;amp; InstallWizard_Distro changes for rpi.&lt;br /&gt;
*lmce-diskless-tools (627,628)&lt;br /&gt;
** add lsb-release data to diskless images for Raspbian Wheezy, fixes ConfirmDependencies on raspbian.&lt;br /&gt;
** fixups for rpi diskless image creation and additions for multiarch deb-cache support&lt;br /&gt;
&lt;br /&gt;
== Update 28706 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #1769 - DDNS fixes, thanks mkbrown69!&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh for Raspbian Wheezy&lt;br /&gt;
&lt;br /&gt;
Updated lmce-diskless-tools - hope that is correct.&lt;br /&gt;
&lt;br /&gt;
== Update 28696 ==&lt;br /&gt;
* pluto-app-server (126,145) - Properly power off system, as &#039;shutdown&#039; no longer does this due to semantics change. use &#039;poweroff&#039; instead. *shakes-fist-at-ubuntu-people*&lt;br /&gt;
&lt;br /&gt;
== Update 28686 ==&lt;br /&gt;
* pluto-vdr - Add a custom no signal image with some notes&lt;br /&gt;
&lt;br /&gt;
== Update 28682 ==&lt;br /&gt;
* pluto-web-admin - Refs #2057 - Add button to wizardorbiters to update qOrbiter skins.&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - Refs #2051, Refs #1355 - fixes a small strcpy 4-bit offset copy (on i386) that mangled uuirt send/receive data.  Thank you sambuca for finding a needle in a haystack!&lt;br /&gt;
* pluto-system-database (211) - XBOX 360 IR changes, Denon IP template changes.&lt;br /&gt;
* pluto-orbiter (118,139) - Screen Types should now be propagated to IR transceivers in the same room, fixing edge case with multiple IR transcievers on same hybrid (e.g. UIRT and a USB Game Pad)&lt;br /&gt;
&lt;br /&gt;
== Update 28637 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2015 setup firewall properly or dous nothing for the webfilter or proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28609 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Fixes #2043 domainname inconsistencies, should fix some DNS and samba issues.&lt;br /&gt;
* lmce-hue-controller - initial device package&lt;br /&gt;
&lt;br /&gt;
== Update 28603 ==&lt;br /&gt;
* pluto-website-admin - refs #2015 change place of the scripts.&lt;br /&gt;
* lmce-webfilter - dedicated package for webfilter and proxy.&lt;br /&gt;
&lt;br /&gt;
== Update 28591 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - refs #1505 - support settemperature and setthermostatmode in bridge&lt;br /&gt;
&lt;br /&gt;
== Update 28570 ==&lt;br /&gt;
* pluto-system-database (211) - Revert the clock changes, as they seem to have just fucked up everybody&#039;s day. (TSCHAK)&lt;br /&gt;
* pluto-skins-* and lmce-skins-* - Skin changes all over&lt;br /&gt;
&lt;br /&gt;
== Update 28538 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2034 cannot do math with letters. Audio device will write now.&lt;br /&gt;
&lt;br /&gt;
== Update 28514 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Typo in nvidia-install.sh broke everything.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 a0start_avwizard script did not get correct change.&lt;br /&gt;
&lt;br /&gt;
== Update 28506 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Refs #2026 Change audio and video detection and setup. Addition of VideoDetectSetup file to handle both detection and setup. Changes to how we write asound.conf to comply with what Xine_Streamfactory is wanting to see. Changes to nvidia-install.sh to make 1204 specific, removal of a lot of unneeded logic to get new hw working on 1004.&lt;br /&gt;
* pluto-avwizard (556,555) - Refs #2026 Changes to init script and AVWizard_Run.sh to better handle video and audio setup.&lt;br /&gt;
* pluto-vdr (468,469) - change to service invocation&lt;br /&gt;
* pluto-usb-uirt-0038 (525,526) - update i386 uirt driver, rebuild for precise.&lt;br /&gt;
* lmce-diskless-tools (627,628) - lmce-diskless-network.conf upstart script to alleviate waiting for network configuration on MD boot.&lt;br /&gt;
&lt;br /&gt;
== Update 28488 ==&lt;br /&gt;
* pluto-website-admin (220) - SimplePhones attached to Joggler should now be able to select their appropriate sound card/usb microphone. (TSCHAK)&lt;br /&gt;
* pluto-storage-devices (533) - service invocation updates&lt;br /&gt;
* lmce-qorbiter (858,859) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - remote load change&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - remote load change&lt;br /&gt;
&lt;br /&gt;
== Update 28461 ==&lt;br /&gt;
* lmce-agocontrol-bridge (827,826) - Refs #1505 - change key from inventory to devices, add sanity checks for map conversion&lt;br /&gt;
* lmce-qorbiter (858,859) - full packaging of qOrbiter for precise&lt;br /&gt;
&lt;br /&gt;
== Update 28459 ==&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* pluto-add-software (572,573) - removes deprecated script instcheck.sh from boot process&lt;br /&gt;
* lmce-zwave-ozw(505,506) - fix node events (sensor reports and more)&lt;br /&gt;
* pluto-disk-drive (122,141) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
* pluto-disc-drive-functions (496,497) - needs a rebuild to work - probably changes in some library&lt;br /&gt;
&lt;br /&gt;
== Update 28441 ==&lt;br /&gt;
* pluto-avwizard (556,555) - init scripts&lt;br /&gt;
* pluto-boot-scripts (234) - init scripts&lt;br /&gt;
* lmce-update-system (651) - init scripts&lt;br /&gt;
* lmce-launch-manager (298,299) - init scripts&lt;br /&gt;
* lmce-diskless-tools (627,628) - init scripts&lt;br /&gt;
* pluto-confirm-dependencies (281,272)&lt;br /&gt;
** fixups for sources.list checking/verifying&lt;br /&gt;
** dynamic repository naming/resolving&lt;br /&gt;
* pluto-install-scripts (391) - fixups for sources.list checking/verifying with confirmdeps&lt;br /&gt;
* pluto-system-database (211) - database updates for dynamic repository naming/resolving&lt;br /&gt;
* lmce-qorbiter (858,859) - initial package of qorbiter for qt 4.8.1 on precise&lt;br /&gt;
* pluto-std-plugins (116,135) - A Fix for the current play all bug. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 28438 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - code restructuring, fixes to avoid depending on the order the values passed from OZW&lt;br /&gt;
&lt;br /&gt;
== Update 28436 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - some fixes and logging to iron out the last device mapping problems&lt;br /&gt;
&lt;br /&gt;
== Update 28426 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Fix for wrong playlist entries showing up in all instances of Play All. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28407 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28399 ==&lt;br /&gt;
* pluto-std-plugins - general info plugin updated.&lt;br /&gt;
* pluto-createdevice - fixes for taking repos et al into account when autodetecting devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28398 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
&lt;br /&gt;
== Update 28360 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - major rework of how zwave nodes are mapped to lmce devices - this will improve the amount of nodes that are automatically added to lmce, but might cause some backward compability problems. Problems include dupliacte devices being added to lmce. Just delete the old device and you will be fine. This will only happen in cases where you manually added lmce devices.&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28341 ==&lt;br /&gt;
* pluto-avwizard (556,555) - fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** fix (hopefully) AVWizard not running on second boot after DVD install&lt;br /&gt;
** re-store Update_StartupScrips.sh script functionality&lt;br /&gt;
* lmce-diskless-tools (627,628) - ensure /tftpboot/default/vmlinuz is readable by MDs during PXE boot.&lt;br /&gt;
* pluto-generic-serial-device - big bug smash.&lt;br /&gt;
&lt;br /&gt;
== Update 28308 ==&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
* pluto-avwizard (556,555) - detect video changes only when AVWiz is selected to run.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** replaces medibuntu repo with videolan repo for libdvdcss2&lt;br /&gt;
** other bug fixes for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 28300 ==&lt;br /&gt;
* pluto-plutoutils (196,197) - Add StringUtils for new clock variables in Orbiter&lt;br /&gt;
* pluto-orbiter (119,138) - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-proxy-orbiter - add support for new clock variables in Orbiter&lt;br /&gt;
* pluto-system-database (211) Designer changes for clock screen in Orbiter.&lt;br /&gt;
* lmce-autotagger - segfault fix&lt;br /&gt;
&lt;br /&gt;
== Update 28296 ==&lt;br /&gt;
* pluto-website-admin (220) more improvements to picture tagging/screensaver&lt;br /&gt;
* pluto-boot-scripts (234) - wrapper script to set exif orientation tag&lt;br /&gt;
* pluto-updatemedia (405,406) - support for picture tagging&lt;br /&gt;
* pluto-dhcpd-plugin - ignore DHCP INFOs.&lt;br /&gt;
&lt;br /&gt;
== Update 28255 ==&lt;br /&gt;
* pluto-website-admin (220) improvement to picture tagging/screensaver - screensaver and keyword editing now available directly in screen saver page (and screen saver page should probably be renamed now as well...)&lt;br /&gt;
&lt;br /&gt;
== Update 28232 ==&lt;br /&gt;
* pluto-boot-scripts (234) - enables vboxvideo driver detection&lt;br /&gt;
* lmce-zwave-ozw(505,506) - avoid bad conversion of int-&amp;gt;float for brightness values&lt;br /&gt;
* *qorbiter* - various fixes.&lt;br /&gt;
&lt;br /&gt;
== Update 28214 ==&lt;br /&gt;
* pluto-system-database(211) - change attribute sort order for picture attributes&lt;br /&gt;
* pluto-std-plugins (116,135) - Add Playlist delete capability to CMD_Delete_File for Orbiter File Details page. (TSCHAK).&lt;br /&gt;
* *plugins* - to make sure the new version of libplutomain works with the plugins.&lt;br /&gt;
&lt;br /&gt;
== Update 28210 ==&lt;br /&gt;
* lmce-roku (833,834) - Fixes #1949 - Stupid deadlock caused by recursive functions both pulling same mutex. (TSCHAK)&lt;br /&gt;
*lmce-qorbiter-skins-qt5libs (845) - Incremental updates&lt;br /&gt;
*lmce-qorbiter-skins-qt4libs (846) - Incremental updates&lt;br /&gt;
*pluto-website-admin (220) - Fixes for tvdb admin use, updates regex, cleaning attributes&lt;br /&gt;
*pluto-media-database - slight change to add a subtitle to games for variants.&lt;br /&gt;
* pluto-system-database(211) - device data for ZWave, battery level event&lt;br /&gt;
&lt;br /&gt;
== Update 28202 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - New event and device data for ZWave/Battery reporting&lt;br /&gt;
* lmce-zwave-ozw(505,506) - battery level event, support for setting up polling of individual values&lt;br /&gt;
&lt;br /&gt;
== Update 28198 ==&lt;br /&gt;
* pluto-storage-devices (533) - Change to automounter script so NFS will properly be mounted in 1204+&lt;br /&gt;
* lmce-game-db (675,676) - Schema changes have forced a rebuild of this shared lib, to match changes in GAMEROM (which have already been pushed) oops! -tschak&lt;br /&gt;
* lmce-zwave-ozw(505,506)&lt;br /&gt;
** map nodes to devices (add devices in LMCE) whenever a node/value is added in ZWave (should remove need for double reload after adding devices)&lt;br /&gt;
** fix battery reporting (I hope)&lt;br /&gt;
** configurable polling&lt;br /&gt;
* lmce-game-player (673,674) - ConfigurationWriter should now create the config file path, if it does not exist. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 28173 ==&lt;br /&gt;
* lmce-game-player (673,674) - provide media director screen resolution to the game player models, make MAME and MESS emulator models use it. Effect is, MAME and MESS now always automatically size the window to display, to prevent odd race conditions with Orbiter (TSCHAK).&lt;br /&gt;
* pluto-plutoutils (196,197) Fixes [http://svn.linuxmce.org/trac.cgi/ticket/1936 ut8 problem]&lt;br /&gt;
&lt;br /&gt;
== Update 28171 ==&lt;br /&gt;
* libopenzwave1.0(824, 825) - fix to enable proper SUC/SIS mode&lt;br /&gt;
&lt;br /&gt;
== Update 28169 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** handle accumulated data in datalogger graph&lt;br /&gt;
&lt;br /&gt;
== Update 28167 ==&lt;br /&gt;
* pluto-website-admin (220)&lt;br /&gt;
** Add &amp;quot;Queue instead of Instant Play&amp;quot; option to Wizard &amp;gt; Orbiters page (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116,135) - Add status message when &amp;quot;Queue Instead of Instant Play&amp;quot; is selected above, show on Orbiter when Play is selected. (TSCHAK)&lt;br /&gt;
* lmce-zwave-ozw(505,506) - possibility to reset controller&lt;br /&gt;
&lt;br /&gt;
== Update 28162 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to energy reporting&lt;br /&gt;
* lmce-datalog-plugin(686,687) - also log cumulated energy usage&lt;br /&gt;
&lt;br /&gt;
== Update 28148 ==&lt;br /&gt;
* lmce-transmission-client (852) - fixes installation issues&lt;br /&gt;
* pluto-system-database(211) - fixes to lmce-transmission-client&lt;br /&gt;
* pluto-std-plugins (116,135) - Start of optimizations to StartMedia in Media_Plugin, and MediaFile, MH_Play_Media, etc. to make Play All work faster, be more responsive. Still so much more investigation to do.&lt;br /&gt;
* lmce-diskless-tools (627,628)&lt;br /&gt;
** fixes &amp;quot;Waiting for Network Configuration&amp;quot; deadtime on MD boots.&lt;br /&gt;
** adds Replaces and Conflicts entries to package&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* lmce-zwave-ozw(505,506) - adds Replaces and Conflicts entries to package to prevent errors on upgrades&lt;br /&gt;
* pluto-boot-scripts (234) - use a proper analog alsa device in SetupAudioVideo.sh&lt;br /&gt;
* lmce-zwave-ozw(505,506) fix bug in add node, improvements to reduce unnecessary polling, implement thermostat support&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the previous fix, a bit more.) ;)&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28105 ==&lt;br /&gt;
*Orbiter needs rebuilding (I fixed the stupid bogging down of large sets of files under an attribute in the MediaBrowser - caused by superfluous calls to get media attributes.&lt;br /&gt;
**pluto-orbiter (119,138)&lt;br /&gt;
**pluto-proxy-orbiter (487,488)&lt;br /&gt;
**pluto-bluetooth-dongle (124,143)&lt;br /&gt;
**pluto-orbitergen (226,227)&lt;br /&gt;
&lt;br /&gt;
== Update 28083 ==&lt;br /&gt;
* lmce-game-database (679) - Schema changes.&lt;br /&gt;
* pluto-website-admin - Amazon attribute search re-enabled&lt;br /&gt;
&lt;br /&gt;
== Update 28061 ==&lt;br /&gt;
* pluto-website-admin (220) - Adds transmission pages to webadmin&lt;br /&gt;
* lmce-transmission-client (852) - new package for transmission daemon integration&lt;br /&gt;
* pluto-system-database(211)&lt;br /&gt;
** new package definitions (transmission, lmce-transmission-client, unrar)&lt;br /&gt;
** new website configuration menu for transmission&lt;br /&gt;
** revert orbiter clock font until bugs can be squashed&lt;br /&gt;
&lt;br /&gt;
== Update 28040 ==&lt;br /&gt;
* pluto-pluto-media-db - just for giggles to see if it fixes issues related to the game player changes to mediafile.h&lt;br /&gt;
&lt;br /&gt;
== Update 28039 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - name change of dependent package to lmce-diskless-tools&lt;br /&gt;
* lmce-diskless-tools (627,628) - re-branded diskless tools (md creation scripts, etc)&lt;br /&gt;
* lmce-diskless-debootstrap-image (844) - contains the original debootstrapped md image&lt;br /&gt;
* lmce-qorbiter-skins-qt5libs (845) - initial qOrbiter skin packaging &lt;br /&gt;
* lmce-qorbiter-skins-qt4libs (846) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-common (847) - initial qOrbiter skin packaging (fonts)&lt;br /&gt;
* lmce-qorbiter-skins-rpi (848) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-android (849) - initial qOrbiter skin packaging&lt;br /&gt;
* lmce-qorbiter-skins-desktop (850) - initial qOrbiter skin packaging&lt;br /&gt;
* pluto-system-database(211) - packaging change updates for ConfirmDependencies&lt;br /&gt;
&lt;br /&gt;
== Update 28014 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - improvements to on/off/set level handling to better match device support, try to honor on/off for dimmers before using set level&lt;br /&gt;
&lt;br /&gt;
== Update 27986 ==&lt;br /&gt;
*  rebuild for MediaFile.h changes (System now added for Game Player) (TSCHAK)&lt;br /&gt;
** pluto-std-plugins (116,135) &amp;amp; CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
** lmce-airplay-plugin (791,792)&lt;br /&gt;
** lmce-game-plugin (671,672)&lt;br /&gt;
** lmce-hulu-plugin (742,743)&lt;br /&gt;
** pluto-mythtv-plugin (134,153)&lt;br /&gt;
** lmce-omx-plugin (831,832) &amp;amp; not currently in repo (phenigma)&lt;br /&gt;
** lmce-picture-plugin (756,757)&lt;br /&gt;
** lmce-shoutcast-radio-plugin (703,704)&lt;br /&gt;
** pluto-slimserver-plugin (424,425)&lt;br /&gt;
** pluto-xine-plugin (118,137)&lt;br /&gt;
&lt;br /&gt;
* pluto-system-database (211) - fixes for the Intellivision game remote, baby monitor additions (TSCHAK)&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lmce-picture-viewer to all MD tarballs, firstrun for rpi, resolv.conf fixes for all MDs (phenigma)&lt;br /&gt;
* pluto-createdevice (303,304) - CreateDevice honours InstallWizard_Distro table on Core &amp;amp; MD creation (phenigma)&lt;br /&gt;
* pluto-vdr - make sure VDR listens on port 2001&lt;br /&gt;
&lt;br /&gt;
== Update 27946 ==&lt;br /&gt;
* pluto-updatemedia (405,406) - RomFileHandler fixes. Prevent array underflow caused by GAMEROM returning weird data.&lt;br /&gt;
* pluto-boot-scripts - logrotate takes care of the UpdateMedia log as well.&lt;br /&gt;
&lt;br /&gt;
== Update 27943 ==&lt;br /&gt;
* lmce-dlna(842,843) - second version of dlna device, should fix a big fubar wrt. files included&lt;br /&gt;
&lt;br /&gt;
== Update 27942 ==&lt;br /&gt;
* lmce-dlna(842,843) - first version of dlna device&lt;br /&gt;
&lt;br /&gt;
== Update 27929 == &lt;br /&gt;
* pluto-boot-scripts (234) - fix post install script error&lt;br /&gt;
&lt;br /&gt;
== Update 27913 ==&lt;br /&gt;
* pluto-std-plugins (116,135) - Add in Telecom Plugin fix for blindly trying to process every single playback started event. Whoops. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27902 ==&lt;br /&gt;
* lmce-zwave-ozw(505,506) - updates the open-zwave library, some changes to what library calls are used to improve compatibility with different devices&lt;br /&gt;
* libopenzwave1.0(824, 825) - new version&lt;br /&gt;
* mce-diskless-tools (627,628) - fix Diskless_CreateTBZ.sh on precise&lt;br /&gt;
* pluto-system-database(211) - InstallWizard_Distro changes for MD creation&lt;br /&gt;
* pluto-install-scripts (391) - fix ConfirmDependencies not adding entries to sources.list&lt;br /&gt;
* pluto-boot-scripts (234) &lt;br /&gt;
** fix persistent &#039;ignoring 30pluto.pbackup&#039; error from apt.&lt;br /&gt;
** update nvidia package names than have changed from lucid-&amp;gt;precise&lt;br /&gt;
* pluto-storage-devices (533) - fix display of errors during postinst.&lt;br /&gt;
* pluto-website-admin (220) &lt;br /&gt;
** makes checkbox sticky for &#039;Show only items without&#039; &lt;br /&gt;
** Move qOrbiter logic from MediaImage.php to imdbImage.php. Adds required qorbitergenerator updates for beta.&lt;br /&gt;
* pluto-std-plugins (116,135) - add &#039;From&#039; field to send e-mail command.  Thanks Hackit2Me!&lt;br /&gt;
** also some telecom plugin fixes in here for voicemail. (tschak)&lt;br /&gt;
* Orbiter needs rebuilding (can I just put this here in the future as an analog for the bottom packages?) - New screens, and screen handlers. (TSCHAK)&lt;br /&gt;
** pluto-orbiter (119,138)&lt;br /&gt;
** pluto-proxy-orbiter (487,488)&lt;br /&gt;
** pluto-bluetooth-dongle (124,143)&lt;br /&gt;
** pluto-orbitergen (226,227)&lt;br /&gt;
* pluto-updateentarea (341,342) - Add support to add Weather button if Weather Plugin is available&lt;br /&gt;
* possy: Another skin addition, https://96.226.245.101/work/Voicemail_Changes.zip&lt;br /&gt;
* pluto-plutoutils (196,197) - TranslateSoundCard routines. Somehow this hasn&#039;t gotten built lately... whoops (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27859 ==&lt;br /&gt;
* lmce-game-player (673,674) - Fixes #1866 - where if user selected a game bookmark from the media browser, and started the media with this bookmark, it would not work, due to the save state path being incorrectly derived from the ROM name, rather than the emulated system name. (TSCHAK)&lt;br /&gt;
*pluto-website-admin (220) - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
*lmce-asterisk - #1856 Added qualify=5000 instead of qualify=yes to orbiter embedded phones (foxi352)&lt;br /&gt;
*pluto-dynamic-dns (576 - #1858 added no-ip.com to dyndns mechanism (foxi352)&lt;br /&gt;
&lt;br /&gt;
--- some time passed&lt;br /&gt;
&lt;br /&gt;
* Weather Plugin stuff (TSCHAK)&lt;br /&gt;
**lmce-weather-plugin(836,837) - Initial build of Weather Plugin&lt;br /&gt;
**lmce-weather(838,839) - Initial build of Weather device&lt;br /&gt;
**pluto-system-database(211) - lots of stuff crammed in for the weather plugin&lt;br /&gt;
**pluto-orbiter(119,138) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-proxy-orbiter(487,488) - Orbiter screenhandlers changed&lt;br /&gt;
**pluto-skins-basic (204) - graphic changes (POSSY! tag me, so I can give you the updated bitmaps!)&lt;br /&gt;
**lmce-skins-titanium(718) - Graphic changes (see above!)&lt;br /&gt;
**lmce-skins-bluecrystal(804) - Graphic changes (see above!)&lt;br /&gt;
* SimplePhone (498,499) - Better sound card selection logic if Sound Card device data is specified.&lt;br /&gt;
* lmce-roku (833,834) - Implement CMD_Change_Playback_Speed() so phone call pauses will work.&lt;br /&gt;
&lt;br /&gt;
== Update 27799 ==&lt;br /&gt;
*mce-diskless-tools (627,628) - Diskless_Create &amp;amp; Diskless_Setup updates for Raspberry Pi (phenigma)&lt;br /&gt;
&lt;br /&gt;
== Update 27783 ==&lt;br /&gt;
*pluto-website-admin (220) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
*pluto-asterisk (270) - #1860: Fixes voicemail problems (foxi352)&lt;br /&gt;
* pluto-std-plugins (116,135) - #1862: fixes long standing problem of the dreaded &amp;quot;Play All audio&amp;quot; will quit at some point, by checking for valid files at deque insertion. Made a note to find more efficient fix in long term (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27777 ==&lt;br /&gt;
*lmce-asterisk - Try to fix problem where embedded phones lose connection to asterisk&lt;br /&gt;
*mce-diskless-tools (628) - mountnfs.sh updates for precise&lt;br /&gt;
*pluto-website-admin (220) - Add No-IP dynamic dns service to webadmin&lt;br /&gt;
&lt;br /&gt;
== Update 27762 ==&lt;br /&gt;
* pluto-website-admin (220) - Fixes #1847 - First phoneline added did not save, Fixes #1848 - Delete routing informations on phoneline delete (foxi352)&lt;br /&gt;
* lmce-asterisk - Fixes a lot of simplephone problems due to local channel optimizations&lt;br /&gt;
&lt;br /&gt;
== Update 27744 ==&lt;br /&gt;
* pluto-system-database (211) - Added device data to SimplePhone to allow sound card selection for Ringing and Calls (TSCHAK)&lt;br /&gt;
** Also add changes to Phoenix Solo USB device for configuration after detection. Remove useless device data (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - Made sure TranslateSoundCard and TranslateRemoteSoundCard shell scripts get copied into /usr/pluto/bin (TSCHAK)&lt;br /&gt;
* pluto-simplephone (498,499) - SimplePhone can now use Sound Card device data attached to template to explicitly set a sound card. If one isn&#039;t provided, the original heuristics are used to find one (TSCHAK)&lt;br /&gt;
* pluto-sound-card-scripts (579) - Add configuration script for Phoenix Solo USB device. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27724 ==&lt;br /&gt;
* pluto-asterisk (270,271) - Asterisk has changed its tokens slightly, fix various bits of bit rot and breakage so Telecom integration is tight again. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119,138) - Screen Handler fixes for Telecom (TSCHAK)&lt;br /&gt;
* pluto-zwave-lighting (505,506) - Fixes #1451 - Smoke Detectors are properly detected again. (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Fix launch path for new Roku device, so that it will actually start correctly. (TSCHAK)&lt;br /&gt;
* lmce-game-player (673,674) - Fix Famicom Disk System support, again, in light of the new ConfigurationManager class. (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27701 ==&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to screen handler for Move File (final refinements)&lt;br /&gt;
* pluto-system-database (211) - sqlCVS designer changes for Move File&lt;br /&gt;
* pluto-proxy-orbiter (487,488) - synchronize proxy orbiter to match screen handler changes for move file&lt;br /&gt;
* pluto-bluetooth-dongle (124,243) - synchronize bluetooth dongle to match screen handler changes for move file&lt;br /&gt;
* pluto-std-plugins (116, 135) - Changes to telecom to disallow concurrent access to sound card if HDMI, and to fix the toggle effect of media unpausing if paused when phone rings. (#1710 and #1834)&lt;br /&gt;
* pluto-website-admin (220) - Changes webadmin to access MediaTomb on new port&lt;br /&gt;
* lmce-game-player (673,674) - make sure all changes are up to date.&lt;br /&gt;
&lt;br /&gt;
== Update 27694 ==&lt;br /&gt;
* lshwd - postrm fixes.&lt;br /&gt;
* pluto-std-plugins (116, 135)  &lt;br /&gt;
** File List button in Games remote works correctly (TSCHAK)&lt;br /&gt;
** You can now add games to an already in progress playlist (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27688 ==&lt;br /&gt;
* pluto-simplephone - Changes to allow for audio pipe only.&lt;br /&gt;
&lt;br /&gt;
== Update 27686 ==&lt;br /&gt;
Move button in Media Details page should now work. (TSCHAK)&lt;br /&gt;
* pluto-orbiter (119, 138) - Changes to Screen Handler for Move File (TSCHAK)&lt;br /&gt;
* pluto-std-plugins (116, 135) &lt;br /&gt;
** Changes to Media Plugin MoveJob, MoveTask, and CMD_Move_File for Move File; (TSCHAK)&lt;br /&gt;
** Make Firefox window swallow correctly in Computing. (TSCHAK)&lt;br /&gt;
** Telecom Plugin now switches on MD&#039;s for SimplePhone (bug #1709) (TSCHAK)&lt;br /&gt;
* pluto-boot-scripts (234) - addition of moveWrapper.sh for Move File; Fix Keyboard Layout bug (#1776) (TSCHAK)&lt;br /&gt;
* pluto-system-database (211) - Designer changes for Move File (TSCHAK)&lt;br /&gt;
&lt;br /&gt;
== Update 27659 ==&lt;br /&gt;
* pluto-mythtv-plugin (134,153) - bump MYTH_PROTO_VERSION source (#1821) (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27649 ==&lt;br /&gt;
* sqlCVS (212,213) - mySQL reconnect bug preventing 1204 install from completing first time, fixed (tschak)&lt;br /&gt;
* plutoUtils (196,197) - Related PlutoUtils MySQLHelper change.&lt;br /&gt;
&lt;br /&gt;
== Update 27636 ==&lt;br /&gt;
* ubuntu/lshwd (n/a) - adds lsb tags&lt;br /&gt;
* lmce-update-system (650,651) - adds lsb tags&lt;br /&gt;
* mce-diskless-tools (627,628) - adds lsb tags to mountnfs.sh script&lt;br /&gt;
* lmce-picture-viewer (754,755) - picture viewer window now minimizes properly, when not in use. (tschak)&lt;br /&gt;
&lt;br /&gt;
== Update 27542 ==&lt;br /&gt;
* sdlmame and sdlmess have had the initialization and codec patch reapplied as per ticket #1560.&lt;br /&gt;
* pluto-website-admin (220) - Correct display of static DHCP clients in webadmin -&amp;gt; DHCP leases&lt;br /&gt;
&lt;br /&gt;
== Update 27533 ==&lt;br /&gt;
* lmce-roku (833,834) - a new C++ replacement for the GSD based driver for Roku players.&lt;br /&gt;
* pluto-system-database (211) (needs to be rebuilt because of package defs changes.)&lt;br /&gt;
** Add orbiter to rpi_b device template&lt;br /&gt;
** Add omxplayer Player/Plugin and associated data&lt;br /&gt;
** Add lmce-roku, and lmce-src-roku packages.&lt;br /&gt;
* lmce-mediatomb (702) - Convert config.xml to v2, add mkv and mka, convert to UTF-8, change port to 49155&lt;br /&gt;
* pluto-xine-player (117,136) - should now build against libxine2 rather than libxine1&lt;br /&gt;
&lt;br /&gt;
== Update 27515 ==&lt;br /&gt;
* lmce-game-player - Turn on bookmarks for MESS based emulators, so I can see which ones reliably save state.&lt;br /&gt;
* lmce-asterisk - Fixes #1766 - * in username / password now possible, add Cisco 7941 config script&lt;br /&gt;
* pluto-website-admin (220) - Add possibility to change Room and FloorPlanObjectType in KNX wizard&lt;br /&gt;
* pluto-pluto-main-db (201,237) - Add Cisco 7941 DT&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Removed old 7941 config script&lt;br /&gt;
* mce-diskless-tools (627,628) - Add raspbian lmce packages to pi md diskless image&lt;br /&gt;
* chan-sccp_v4.1 - Upgraded asterisk SCCP channel driver to newest version&lt;br /&gt;
&lt;br /&gt;
== Update 27469 ==&lt;br /&gt;
* lmce-airplay-plugin - more refinements and changes.&lt;br /&gt;
* lmce-airplay-streamer - more refinements and changes.&lt;br /&gt;
&lt;br /&gt;
== Update 27457 ==&lt;br /&gt;
*pluto-boot-scripts (234) : Fixes #1758 - Modified Bootscripts postinst to reflect AVAHI services directory structure changes&lt;br /&gt;
*pluto-pluto-main-db (201,237) - Fixes #1758 - Remove dependency for netatalk for now. Avahi announces the samba shares as xserve.&lt;br /&gt;
&lt;br /&gt;
== Update 27448 ==&lt;br /&gt;
* pluto-boot-scripts (234)&lt;br /&gt;
** adds serial port support on rpi&lt;br /&gt;
** adds bootscript conditionals for rpi&lt;br /&gt;
* pluto-libserial (190,191) - fixes bug in SerialPort.cpp&lt;br /&gt;
* lmce-agocontrol-bridge (826,827) - new agocontrol Bridge packages&lt;br /&gt;
* pluto-system-database (211) - new agocontrol Bridge packages&lt;br /&gt;
&lt;br /&gt;
== Update 27414 ==&lt;br /&gt;
* lmce-asterisk - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
* pluto-website-admin (220) - Added option to choose DTMF mode in phonelines setup&lt;br /&gt;
&lt;br /&gt;
== Update 27403 ==&lt;br /&gt;
* pluto-vdr-plugin - removal of the vdr-plugin-control dependency&lt;br /&gt;
* pluto-vdr - removal of the vdr-plugin-control dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27397 ==&lt;br /&gt;
* lmce-plymouth-theme (770) - source file compatibility changes to build on precise&lt;br /&gt;
&lt;br /&gt;
== Update 27392 ==&lt;br /&gt;
* pluto-boot-scripts (234) - Add option 150 to dhcp server template for cisco firmware tftp&lt;br /&gt;
* lmce-asterisk - Change db_phone_config.sh to call configure scripts for sccp phones again&lt;br /&gt;
* pluto-dhcpd-plugin (302) - Modified 7970 configuration script to include firmware to download if in device&#039;s devicedata&lt;br /&gt;
* mce-diskless-tools (628) - latest create-diskless ran.&lt;br /&gt;
&lt;br /&gt;
== Update 27385 ==&lt;br /&gt;
* pluto-pluto-main-db (201,237) - removes pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - removes pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - removes pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - removes pluto-security-database dependency&lt;br /&gt;
* lmce-datalog-db (688,689) - removes lmce-datalog-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - removes lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27384 ==&lt;br /&gt;
* lmce-sdlmame (682,683) - mame/mess source updated and combined into single tree&lt;br /&gt;
* lmce-game-player (673,674)&lt;br /&gt;
** change mame/mess binary locations&lt;br /&gt;
** remove lmce-sdlmess as a depends for precise&lt;br /&gt;
* mce-diskless-tools (628) - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* pluto-pluto-main-db (201,237) - adds pluto-system-database dependency&lt;br /&gt;
* pluto-pluto-telecom-db (470,471) - adds pluto-telecom-database dependency&lt;br /&gt;
* pluto-pluto-media-db (254,255) - adds pluto-media-database dependency&lt;br /&gt;
* pluto-pluto-security-db (277,278) - adds pluto-security-database dependency&lt;br /&gt;
* lmce-game-db (675,676) - adds lmce-game-database dependency&lt;br /&gt;
&lt;br /&gt;
== Update 27373 ==&lt;br /&gt;
* pluto-dcerouter (154,155) - dhcp fixes&lt;br /&gt;
* pluto-boot-scripts (234) - dhcp fixes&lt;br /&gt;
* pluto-plutodhcp (330,491) - dhcp fixes&lt;br /&gt;
* mce-launcher - dhcp fixes&lt;br /&gt;
* lmce-asterisk - removes asterisk-sounds-extra from depends, package no longer exists&lt;br /&gt;
* mce-diskless-tools (627,628) - repairs to md creation&lt;br /&gt;
&lt;br /&gt;
== Update 27366 ==&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-convert-mac - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27365 == &lt;br /&gt;
* pluto-confirm-dependencies - improves displayed information about command arguments and adds -f, skips installed checking&lt;br /&gt;
* pluto-makerelease - dependencies are added to packages again.&lt;br /&gt;
* all packages built by MakeRelease - (/var/lmce-build/out/tmp/*.deb) dependencies added to packages again.&lt;br /&gt;
* mce-diskless-tools - Diskless_CreateTBZ.sh updates for precise&lt;br /&gt;
* video-wizard-videos - missing from repo&lt;br /&gt;
* pluto-avwizard-sounds - missing from repo&lt;br /&gt;
* pluto-mcr-remote - missing from repo&lt;br /&gt;
&lt;br /&gt;
== Update 27343 ==&lt;br /&gt;
* pluto-simplephone builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27340 ==&lt;br /&gt;
* many, many lmce packages are affected by change to AllCommandsRequests.h.  so many, too many to list. (all lmce-* and pluto-* packages) :) - phenigma&lt;br /&gt;
* pluto-disk-drive - removed pre-built bin from svn that we are building&lt;br /&gt;
* lmce-insteon - removed pre-built bin from svn that we are building&lt;br /&gt;
* pluto-dcerouter - adds BlueCrystal skin to depends&lt;br /&gt;
&lt;br /&gt;
== Update 27323 ==&lt;br /&gt;
* lmce-EnOcean builds for 1204&lt;br /&gt;
* pluto-proxy-orbiter builds for 1204&lt;br /&gt;
* pluto-hal-device-finder builds for 1204&lt;br /&gt;
* *-skin* packages build for 1204&lt;br /&gt;
* pluto-orbiter builds for 1204&lt;br /&gt;
&lt;br /&gt;
== Update 27294 ==&lt;br /&gt;
* pluto-boot-scripts - changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
* pluto-database-settings &lt;br /&gt;
** changes for postinst to ignore returnvalue for service restart&lt;br /&gt;
** changes to postinst to reflect my.cnf changes.&lt;br /&gt;
&lt;br /&gt;
== Update 28428 ==&lt;br /&gt;
*lmce-admin - dead link changed to other page.&lt;/div&gt;</summary>
		<author><name>Tschak909</name></author>
	</entry>
</feed>