<?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=GolgoJ4</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=GolgoJ4"/>
	<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php/Special:Contributions/GolgoJ4"/>
	<updated>2026-07-22T06:09:53Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.44.0</generator>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Developing_a_DCE_Device&amp;diff=37040</id>
		<title>Developing a DCE Device</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Developing_a_DCE_Device&amp;diff=37040"/>
		<updated>2017-12-20T05:54:32Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: Development]]&lt;br /&gt;
[[Category: Programmer&#039;s Guide]]&lt;br /&gt;
Document Relevance:&lt;br /&gt;
*LinuxMCE versions: 810, 1004, 1204, 1404, 1604&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
DCE (Data, Commands and Events) is a lightweight network protocol allowing any device to access its configuration (ie data) from a central database, send + receive commands, and fire + respond to events.&lt;br /&gt;
&lt;br /&gt;
A DCE device is a piece of software that implements the DCE protocol, as a means to interface with hardware or other pieces of software.&lt;br /&gt;
&lt;br /&gt;
See [[Developers Guide]] for more info on DCE and other parts of LinuxMCE architecture.&lt;br /&gt;
&lt;br /&gt;
For the purposes of this demonstration, we will be using the instructions below to create a c++ project that will result in a working DCE implementation of a fictional smart light bulb socket.&lt;br /&gt;
&lt;br /&gt;
== Preparation ==&lt;br /&gt;
Developing for any part of the system requires a specific environment setup, including an up to date source code tree and some required programs to be installed. It is assumed that this guide will be followed on an existing LinuxMCE Core installation. All commands following a # sign are to be run as a privileged user, either by prepending &#039;sudo&#039; or after obtaining a root shell (&amp;quot;sudo -s&amp;quot;, &amp;quot;sudo -r&amp;quot;, or &amp;quot;sudo su&amp;quot; are all acceptable means of doing this).&lt;br /&gt;
=== Required Packages ===&lt;br /&gt;
Install build dependencies&lt;br /&gt;
 apt-get install lmce-devel-dependencies lmce-runtime-dependencies pluto-dcegen pluto-sql2cpp subversion build-essential&lt;br /&gt;
&lt;br /&gt;
=== Source Tree ===&lt;br /&gt;
Clone the latest LinuxMCE source&lt;br /&gt;
 # git clone https://git.linuxmce.org/linuxmce/linuxmce.git&lt;br /&gt;
&lt;br /&gt;
=== Environment Preparation ===&lt;br /&gt;
Copy the system libs into the source tree&lt;br /&gt;
 # cp /usr/pluto/lib/* src/lib&lt;br /&gt;
== Developing the Device ==&lt;br /&gt;
&lt;br /&gt;
=== Device Template ===&lt;br /&gt;
Every DCE device, starts with a template.&lt;br /&gt;
&lt;br /&gt;
A template merely specifies what the device is, what it&#039;s capable of, how it relates to the other devices in the system, what it needs to install (the package entry), any data it might need to carry around (device data), any events the device may want to EMIT, any related devices that need to exist for this device to function, and any orbiter screens this thing might need, as well as plug and play data so the system can detect it if it&#039;s hardware.&amp;lt;br&amp;gt;&lt;br /&gt;
In short, as the name implies, it is a template that the system can use as a basis to create a unique device for each piece of hardware or software attached to the system (even multiples of each).&lt;br /&gt;
&lt;br /&gt;
Before any code can be written, a device template is needed. This is created in the Web Admin, under Advanced -&amp;gt; Configuration -&amp;gt; Device Templates.&amp;lt;br&amp;gt;&lt;br /&gt;
There is a button for &amp;quot;Add device template&amp;quot;, but a manufacturer and a device category must be selected first. In this case, the manufacturer will be &amp;quot;Pluto&amp;quot; and the device category will be &amp;quot;Lighting Device &amp;lt; Environment&amp;quot;. New manufacturers and device categories can be added if none are suitable for the device being controlled.&amp;lt;br&amp;gt;&lt;br /&gt;
Select the manufacturer and device category, then click the &amp;quot;Add device template&amp;quot; button.&amp;lt;br&amp;gt;&lt;br /&gt;
On the window that pops up, select the second option (to make it a c++ device) and fill in a name (this guide will use &amp;quot;Intelligent Light Switch&amp;quot;) and click &amp;quot;Add&amp;quot;.&amp;lt;br&amp;gt;&lt;br /&gt;
At this point the device template is complete and a functioning device could be made from it, however there are some important options that need to be set to make the device actually be useful. These are listed below organized by the section they appear in on the device template configuration screen.&lt;br /&gt;
&lt;br /&gt;
==== Device Template #xxxx ====&lt;br /&gt;
This is the main section. Remember the number after the pound sign; this is the unique identifier for this device template and will be required for some steps later. For demonstration purposes, this guide will use the number 2181. There are some important options that must be set here. For details on items which are not covered here, see [[Edit Device Template]].&amp;lt;BR&amp;gt;&lt;br /&gt;
&#039;&#039;Implements DCE device&#039;&#039; - this should always be checked for DCE devices, for obvious reasons.&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;This device is controlled via&#039;&#039; and &#039;&#039;This device is controlled via category&#039;&#039; - devices are usually attached to other devices or controlled via other devices; these options provide a way of specifying that relationship. This mythical intelligent light can be controlled by any Media Director (which includes the Media Director portion of a Core/Hybrid) so click the &amp;quot;Add a new controlled via category device&amp;quot; and choose &amp;quot;Media Director&amp;quot;.&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;Inherits MAC from PC&#039;&#039; and &#039;&#039;Is IP Based&#039;&#039; - the light is network-attached, so select these options.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Device Data ====&lt;br /&gt;
Device Data is simply a way of describing pieces of information, so that the device and the rest of the system know how to talk to each other. Events and Commands make use of Device Data to pass information around. This section tells this device what kind of information it will send or receive.&amp;lt;br&amp;gt;&lt;br /&gt;
The intelligent light will be able to provide information on how much electricity it is consuming, or we can manually configure it with this information, so open the drop-down next to &amp;quot;Add a new parameter&amp;quot; and select &amp;quot;Energy Consumption&amp;quot;. There are several options available for each Device Data:&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;Comments&#039;&#039; - as it says, a comment describing what this piece of information is for. Device Data are fairly generic in nature, so this allows a more descriptive entry. This is required, so fill it in with something.&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;Default Value&#039;&#039; - the value to use by default in any device created by this template. It is not required, but fill in a 0 for now.&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;Required&#039;&#039; - device data can be optional. If this is checked then a default value must be provided or the user must enter a value. Leave it unchecked.&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;Allowed to Modify&#039;&#039; - as it implies, this controls whether the user can modify the value in the web admin. Enable this.&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;Use Master Device List Defaults&#039;&#039; - this means that the default value above will always be used by any created devices, and any time the device template default is changed all created devices will be automatically updated. Leave it unchecked.&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;Set by Device&#039;&#039; - this means that the DCE device itself sets the value. Normally a device like the intelligent light switch would set its energy usage, but since this is just a demonstration this will be left unchecked.&lt;br /&gt;
&lt;br /&gt;
==== Commands ====&lt;br /&gt;
Commands are how the system tells this device to perform an action. As can be seen, several command groups have already been made available, chosen based on what device category this device template is. None are actually enabled, however, so some will need to be selected. The intelligent light switch is able to turn on and off, as well as dim to partially on states, so select the check boxes for &amp;quot;Dimming&amp;quot; and &amp;quot;On/Off Light Switch&amp;quot;. You can click on the &amp;quot;Edit Commands&amp;quot; button to see what commands make up each group.&lt;br /&gt;
&lt;br /&gt;
==== Events ====&lt;br /&gt;
Events are how the device lets the system know that something with this device has happened. Other parts of the system can register to listen for these events and perform an action of their own when the event is fired. The intelligent light switch also has manual controls, so it needs to let the system know when someone operates one of these controls.&amp;lt;br&amp;gt;&lt;br /&gt;
Usually events will mirror commands, so use the dropdown to add events for &amp;quot;Device On/Off&amp;quot; and &amp;quot;State Changed&amp;quot; and use the textbox to add an appropriate comment for each.&lt;br /&gt;
&lt;br /&gt;
==== Plug &amp;amp; Play ====&lt;br /&gt;
This is used to help the system identify when a device becomes available and know that this is the device template to use when creating a device for it. This section is not used in this guide.&lt;br /&gt;
&lt;br /&gt;
==== Device Template Related ====&lt;br /&gt;
This is used to let the system know about devices that are related to this one. This section is not used in this guide.&lt;br /&gt;
&lt;br /&gt;
==== Screens ====&lt;br /&gt;
This is used to let OrbiterGen know about Orbiter screens that are not referenced directly but are still used by this device. This section is not use in this guide.&lt;br /&gt;
&lt;br /&gt;
=== Running DCEGen ===&lt;br /&gt;
DCEGen is a program that uses the device template information to create a skeleton of c++ code that will comprise the basics of the device. It creates the necessary header files, source files and makefiles in order for the device&#039;s code to compile. Included in this are functions for the device data, commands, and events defined in the template. Under normal circumstances, you would do an initial sqlCVS checkin at this point in order to get a permanent Device Template number, but since this is a demonstration only this will not be performed.&amp;lt;br&amp;gt;&lt;br /&gt;
Run DCEGen to create the source code skeleton:&lt;br /&gt;
 cd src/DCEGen&lt;br /&gt;
 /usr/pluto/bin/DCEGen -d 2181 &lt;br /&gt;
 # add -h localhost when your router database is running locally&lt;br /&gt;
It is important to be in src/DCEGen of the svn tree when running this command! Also make sure to use the correct device template number for your template in place of 2181. DCEGen can also be run again later if you change the device template options; it will leave your customizations alone and only update the device template specified options. DCEGen adds very verbose comments that makes the code very easy to read and modify.&lt;br /&gt;
&lt;br /&gt;
=== Running sql2cpp ===&lt;br /&gt;
All database tables, rows, and columns are represented as c++ constants, and must be regenerated any time device template options change. sql2cpp performs this operation.&amp;lt;br&amp;gt;&lt;br /&gt;
 cd ../sql2cpp&lt;br /&gt;
 /usr/pluto/bin/sql2cpp# &lt;br /&gt;
 # add -h localhost when your router database is running locally&lt;br /&gt;
 &lt;br /&gt;
As with DCEGen, it is important to be in src/sql2cpp of the svn tree when executing it, and it is safe to execute this again at any time.&lt;br /&gt;
&lt;br /&gt;
=== Testing Compilation ===&lt;br /&gt;
Before compilation, you may need to install build packages required for some code. Its wise to do this in the start and spare yourself the headaches.&lt;br /&gt;
&lt;br /&gt;
 apt-get install $(cat home/src/LinuxMCE-1004/src/Ubuntu_Helpers_NoHardcode/conf-files/lucid-i386/build-packages)&lt;br /&gt;
&lt;br /&gt;
This should install the packages needed for compilation.&lt;br /&gt;
&lt;br /&gt;
At this point the device code is complete and will create a fully functioning device binary when compiled. DCEGen created a new directory in src for the device and placed all the code within that directory, so to compile it, simply cd into that directory and invoke the &amp;quot;make&amp;quot; command:&amp;lt;br&amp;gt;&lt;br /&gt;
 cd ../Intelligent_Light_Switch&lt;br /&gt;
 make&lt;br /&gt;
Due to a bug in DCEGen, there will be an error during compilation about post_make.sh, however it is not fatal. If the error bothers you, you can simply make the file executable:&amp;lt;br&amp;gt;&lt;br /&gt;
 chmod 755 post_make.sh&lt;br /&gt;
You should now have a binary of the device in the current dir: Intelligent_Light_Switch&lt;br /&gt;
&lt;br /&gt;
=== Testing the Device ===&lt;br /&gt;
At this point you could create a device in the device tree and copy the binary to /usr/pluto/bin and the device would be started in a screen session after a router reload. However for testing purposes it is usually better to just run the device directly from where it is at. Go ahead and create a device in the device tree:&amp;lt;br&amp;gt;&lt;br /&gt;
Sign in to the web admin, go to Advanced -&amp;gt; Configuration -&amp;gt; Devices, and browse to and select the &amp;quot;The core/hybrid&amp;quot; device under &amp;quot;CORE&amp;quot; in the tree to the left.&amp;lt;br&amp;gt;&lt;br /&gt;
Click &amp;quot;Create Child Device&amp;quot;, enter a description, and click the &amp;quot;Pick device template&amp;quot; button.&amp;lt;br&amp;gt;&lt;br /&gt;
Enter your device template ID in the box next to the &amp;quot;Go&amp;quot; button, click the &amp;quot;Go&amp;quot; button, then click &amp;quot;Pick device template&amp;quot;.&amp;lt;BR&amp;gt;&lt;br /&gt;
Write down the device number this is assigned to this device. For demonstration purposes, this guide will use &amp;quot;53&amp;quot; as the device number.&amp;lt;br&amp;gt;&lt;br /&gt;
Now, start the device, providing it with the device number to use:&amp;lt;br&amp;gt;&lt;br /&gt;
 # ./Intelligent_Light_Switch -d 53&lt;br /&gt;
It will probably tell you that the router needs reloaded; go ahead and do this using the web admin or an Orbiter. You may need to restart the device afterwards. Note that at any time you can press ctrl-c to stop the device and exit back to the shell. To see the device in action, click on the &amp;quot;Send command to device&amp;quot; link at the top of it&#039;s web admin page. Choose one of the available commands and click &amp;quot;Send Message&amp;quot;, providing any Device Data that you want. The terminal running the device will output messages saying that the command was received.&lt;br /&gt;
&lt;br /&gt;
=== Implementing Code ===&lt;br /&gt;
Of course the device created so far doesn&#039;t actually do anything, other than provide some output when it is sent commands; hardly a useful device! Here begins the process of adding functionality and testing the results. Add/edit some code, then do the compiling and testing steps above to make sure things are going in the right direction. Repeat until the device does everything it should.&amp;lt;br&amp;gt;&lt;br /&gt;
Refer to the source code for other devices if you get stuck or if you need ideas on how to implement something. And make sure to run DCEGen and sql2cpp as necessary if you change options in the device template.&lt;br /&gt;
&lt;br /&gt;
== Packaging the Device ==&lt;br /&gt;
&lt;br /&gt;
=== Creating the Binary Package ===&lt;br /&gt;
=== Creating the Source Package ===&lt;/div&gt;</summary>
		<author><name>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36883</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=36883"/>
		<updated>2016-09-17T21:22:22Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* 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;
* Linuxmce-mediaTagging (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>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Media_Player_Requirements&amp;diff=36871</id>
		<title>Media Player Requirements</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Media_Player_Requirements&amp;diff=36871"/>
		<updated>2016-08-16T16:42:02Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* The pinnacle */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: Programmer&#039;s Guide]]&lt;br /&gt;
The following details what a media player should be capable off.&lt;br /&gt;
= Basics =&lt;br /&gt;
Every media player must allow to Start, Stop, and Pause media.&lt;br /&gt;
* QMediaPlayer Supports basic functionality on Linux, Android, OS X, iOS&lt;br /&gt;
&lt;br /&gt;
= Shoulds =&lt;br /&gt;
A media player should implement fast forward/reverse, timecode emission and bookmarking&lt;br /&gt;
* qMediaPlayer on all platforms implements a draggable seek bar in place of FF/RW, and timecode emission via socket.&lt;br /&gt;
**Experimental live thumbnail display in development&lt;br /&gt;
&lt;br /&gt;
= Nice to haves =&lt;br /&gt;
The ability to select different subtitles, audio tracks, chapter lists, is a nice to have for a media player.&lt;br /&gt;
&lt;br /&gt;
= The pinnacle =&lt;br /&gt;
A player that supports synced playback across rooms is the master of them all.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Subtitles !! Audio Tracks !! Supports Chapters !! Seek Support !! Timecode !! Zoom Support !! Aspect Support&lt;br /&gt;
|-&lt;br /&gt;
| Xine || Yes || Yes || Yes || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Vlc || ? || ? || ? || ? || ? || ? || ?&lt;br /&gt;
|-&lt;br /&gt;
| QMediaPlayer || no || no || no || yes || yes || yes || no&lt;br /&gt;
|-&lt;br /&gt;
| SqueezeBox || no || ? || no || yes || yes || no || no&lt;br /&gt;
|-&lt;br /&gt;
| OMXPlayer || yes || yes || yes || yes || yes || yes || yes&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Media_Player_Requirements&amp;diff=36870</id>
		<title>Media Player Requirements</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Media_Player_Requirements&amp;diff=36870"/>
		<updated>2016-08-16T16:36:49Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: Programmer&#039;s Guide]]&lt;br /&gt;
The following details what a media player should be capable off.&lt;br /&gt;
= Basics =&lt;br /&gt;
Every media player must allow to Start, Stop, and Pause media.&lt;br /&gt;
* QMediaPlayer Supports basic functionality on Linux, Android, OS X, iOS&lt;br /&gt;
&lt;br /&gt;
= Shoulds =&lt;br /&gt;
A media player should implement fast forward/reverse, timecode emission and bookmarking&lt;br /&gt;
* qMediaPlayer on all platforms implements a draggable seek bar in place of FF/RW, and timecode emission via socket.&lt;br /&gt;
**Experimental live thumbnail display in development&lt;br /&gt;
&lt;br /&gt;
= Nice to haves =&lt;br /&gt;
The ability to select different subtitles, audio tracks, chapter lists, is a nice to have for a media player.&lt;br /&gt;
&lt;br /&gt;
= The pinnacle =&lt;br /&gt;
A player that supports synced playback across rooms is the master of them all.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Name !! Subtitles !! Audio Tracks !! Supports Chapters !! Seek Support !! Timecode&lt;br /&gt;
|-&lt;br /&gt;
| Xine || Yes || Yes || Yes || Yes || Yes&lt;br /&gt;
|-&lt;br /&gt;
| Vlc || Example || Example || Example || Example || Example&lt;br /&gt;
|-&lt;br /&gt;
| QMediaPlayer || no || no || no || yes || yes&lt;br /&gt;
|-&lt;br /&gt;
| SqueezeBox || no || ? || no || yes || yes&lt;br /&gt;
|-&lt;br /&gt;
| OMXPlayer || yes || yes || yes || yes || yes&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36845</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=36845"/>
		<updated>2016-07-19T21:05:16Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* 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;
*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>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36844</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=36844"/>
		<updated>2016-07-19T21:04:56Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* 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;
 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>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36775</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=36775"/>
		<updated>2016-05-31T21:55:58Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* 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-website-admin - 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 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 - 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 - 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>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=QOrbiter_Setup&amp;diff=36726</id>
		<title>QOrbiter Setup</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=QOrbiter_Setup&amp;diff=36726"/>
		<updated>2016-04-11T16:15:13Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* Remote Access */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page outlines what is needed to setup LinuxMCE to support a qOrbiter. These instructions are relevant for any qOrbiter running device. Some stuff only needs to be done ones (like the skin downloading), other stuff, like the creation of the Orbiter device, should be done for each qOrbiter device. Each qOrbiter-running hardware device should have a dedicated device ID.&lt;br /&gt;
&lt;br /&gt;
==Configuration==&lt;br /&gt;
You will need to prepare for the addition of the device to your system before it can be used by following these steps.&lt;br /&gt;
*Navigate to the &#039;Orbiters&#039; page in the LinuxMCE Admin website. Create a new QOrbiter device from the dropdown box at the bottom. Make sure you fill in all the information there like:&lt;br /&gt;
**User&lt;br /&gt;
**Room&lt;br /&gt;
**Size - This is a remnant of the old orbiter, choose the smallest one, so that any regen it does is fast. &lt;br /&gt;
**&#039;&#039;&#039;Make a note of the device number&#039;&#039;&#039;&lt;br /&gt;
*When done, choose update.&lt;br /&gt;
*When the core is ready, it will ask you to do a quick reload. MAKE SURE to set the default user and location. &lt;br /&gt;
*Quick Reload the router when asked. &lt;br /&gt;
*Note: It is no longer needed to run qOrbiterGenerator.php.&lt;br /&gt;
&lt;br /&gt;
Now you will need to decide on a skin. Eventually, this will be a cleaner process. For the moment, it isnt :)&lt;br /&gt;
All skins live on the core and will be accessible from http://&amp;lt;you-core-address&amp;gt;/lmce-admin/skins The following instructions are for the core machine.&lt;br /&gt;
&lt;br /&gt;
All skins need a skins directory:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-get install subversion&lt;br /&gt;
 svn co http://svn.linuxmce.org/svn/trunk/src/qOrbiter/qOrbiter_src/qml /var/www/lmce-admin/skins &amp;amp;&amp;amp; chmod -R 777 /var/www/lmce-admin/skins/android&lt;br /&gt;
&lt;br /&gt;
*Note that this method will only get the android skins to save on bandwidth. &lt;br /&gt;
&lt;br /&gt;
Now your skins are installed.&lt;br /&gt;
&lt;br /&gt;
==Running the device==&lt;br /&gt;
*Assuming the previous steps were completed, you can now connect.&lt;br /&gt;
*The default ip it connects to is 192.168.80.1&lt;br /&gt;
*Enter the device number you previously made note of for the device number&lt;br /&gt;
*If your core address is not standard, it will hang. you can kill the device and edit the config.xml at the location listed below.&lt;br /&gt;
&lt;br /&gt;
The configuration file is located on the SDCard under /LinuxMCE (for Android&lt;br /&gt;
&lt;br /&gt;
==Remote Access==&lt;br /&gt;
&lt;br /&gt;
In order to use qOrbiter from outside your internal LinuxMCE network, you need to:&lt;br /&gt;
*Open ports 2757 &amp;amp; 3450 on your firewall via webadmin&lt;br /&gt;
*Enter your public ip address to your core. Keep in mind there is no security, so you should be connecting via vpn&lt;br /&gt;
[[Category:Programmer&#039;s Guide]][[Category:QML]][[category:QOrbiter]]&lt;/div&gt;</summary>
		<author><name>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=QOrbiter_Setup&amp;diff=36725</id>
		<title>QOrbiter Setup</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=QOrbiter_Setup&amp;diff=36725"/>
		<updated>2016-04-11T16:14:16Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* Remote Access */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page outlines what is needed to setup LinuxMCE to support a qOrbiter. These instructions are relevant for any qOrbiter running device. Some stuff only needs to be done ones (like the skin downloading), other stuff, like the creation of the Orbiter device, should be done for each qOrbiter device. Each qOrbiter-running hardware device should have a dedicated device ID.&lt;br /&gt;
&lt;br /&gt;
==Configuration==&lt;br /&gt;
You will need to prepare for the addition of the device to your system before it can be used by following these steps.&lt;br /&gt;
*Navigate to the &#039;Orbiters&#039; page in the LinuxMCE Admin website. Create a new QOrbiter device from the dropdown box at the bottom. Make sure you fill in all the information there like:&lt;br /&gt;
**User&lt;br /&gt;
**Room&lt;br /&gt;
**Size - This is a remnant of the old orbiter, choose the smallest one, so that any regen it does is fast. &lt;br /&gt;
**&#039;&#039;&#039;Make a note of the device number&#039;&#039;&#039;&lt;br /&gt;
*When done, choose update.&lt;br /&gt;
*When the core is ready, it will ask you to do a quick reload. MAKE SURE to set the default user and location. &lt;br /&gt;
*Quick Reload the router when asked. &lt;br /&gt;
*Note: It is no longer needed to run qOrbiterGenerator.php.&lt;br /&gt;
&lt;br /&gt;
Now you will need to decide on a skin. Eventually, this will be a cleaner process. For the moment, it isnt :)&lt;br /&gt;
All skins live on the core and will be accessible from http://&amp;lt;you-core-address&amp;gt;/lmce-admin/skins The following instructions are for the core machine.&lt;br /&gt;
&lt;br /&gt;
All skins need a skins directory:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-get install subversion&lt;br /&gt;
 svn co http://svn.linuxmce.org/svn/trunk/src/qOrbiter/qOrbiter_src/qml /var/www/lmce-admin/skins &amp;amp;&amp;amp; chmod -R 777 /var/www/lmce-admin/skins/android&lt;br /&gt;
&lt;br /&gt;
*Note that this method will only get the android skins to save on bandwidth. &lt;br /&gt;
&lt;br /&gt;
Now your skins are installed.&lt;br /&gt;
&lt;br /&gt;
==Running the device==&lt;br /&gt;
*Assuming the previous steps were completed, you can now connect.&lt;br /&gt;
*The default ip it connects to is 192.168.80.1&lt;br /&gt;
*Enter the device number you previously made note of for the device number&lt;br /&gt;
*If your core address is not standard, it will hang. you can kill the device and edit the config.xml at the location listed below.&lt;br /&gt;
&lt;br /&gt;
The configuration file is located on the SDCard under /LinuxMCE (for Android&lt;br /&gt;
&lt;br /&gt;
==Remote Access==&lt;br /&gt;
&lt;br /&gt;
In order to use qOrbiter from outside your internal LinuxMCE network, you need to:&lt;br /&gt;
*Open ports 2757 &amp;amp; 3450 on your firewall via webadmin&lt;br /&gt;
&lt;br /&gt;
[[Category:Programmer&#039;s Guide]][[Category:QML]][[category:QOrbiter]]&lt;/div&gt;</summary>
		<author><name>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=QOrbiter&amp;diff=36711</id>
		<title>QOrbiter</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=QOrbiter&amp;diff=36711"/>
		<updated>2016-04-05T17:53:52Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* File Structure */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{versioninfo}}&lt;br /&gt;
[[category:QML]]&lt;br /&gt;
[[category:QOrbiter]]&lt;br /&gt;
[[Category: Programmer&#039;s Guide]]&lt;br /&gt;
qOrbiter is a new LinuxMCE orbiter designed to run on a multitude of devices as well as provide flexible skinning options to make it truly one&#039;s own. The purpose of this document is for documenting the existing skin api of the application moving forward.&lt;br /&gt;
&lt;br /&gt;
=Where To Find It=&lt;br /&gt;
The latest version of qOrbiter can always be found on the developers  [http://langstonball.com/downloads/category/1-qorbiter-downloads site].&lt;br /&gt;
== Installation Instructions ==&lt;br /&gt;
More details on Android installation for the qOrbiter (some applies universally), ca be found at [[Android Orbiter]],&lt;br /&gt;
&lt;br /&gt;
=Concept=&lt;br /&gt;
The concept of this document is to provide those wishing to create new skins the needed access to LinuxMCE data through properties and context objects. While I will not be discussing what they are here, they are discussed in the scope of QML documentation which is a pre-requisite to skinning and working with Qorbiter. &lt;br /&gt;
&lt;br /&gt;
So, for example lets take the context property &amp;quot;deviceid&amp;quot;. This property is added to the QML engine at runtime so that it can be used to provide the current device id of the orbiter. So in effect, this is a macro or keyword if you will that enables access to the underlying LinuxMCE data. As is one of the goals, no programming is required. One of the goals of this document is to outline all of these properties for easy reference in making a new skin.&lt;br /&gt;
&lt;br /&gt;
=Colors &amp;amp; Styling=&lt;br /&gt;
Colors such as background and button colors should be set in the style file of the qml skin. See &#039;Style.qml&#039; for reference on setting up property aliases. &lt;br /&gt;
&lt;br /&gt;
Examples include:&lt;br /&gt;
&lt;br /&gt;
 property color stageBG: &amp;quot;slategray&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Qualified color references include:&lt;br /&gt;
*SVG named colors [http://www.december.com/html/spec/colorsvg.html Reference]&lt;br /&gt;
*Web color notation #112233&lt;br /&gt;
&lt;br /&gt;
==Skins==&lt;br /&gt;
skinsList: listmodel of skins found for the build&lt;br /&gt;
One should always check the official doc&#039;s to see what methods are supported for setting properties.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Developing a qOrbiter skin=&lt;br /&gt;
QOrbiter utilizes QML&#039;s ease of creating themes. The current engine used for themes supports the following&lt;br /&gt;
*Screen Size based themes:&lt;br /&gt;
** &amp;quot;small&amp;quot;  4&amp;quot; diagonal size and up&lt;br /&gt;
** &amp;quot;medium&amp;quot; 7&amp;quot; diagonal size and up&lt;br /&gt;
** &amp;quot;large&amp;quot;  10&amp;quot; diagonal size and up&lt;br /&gt;
** &amp;quot;xlarge&amp;quot; 13&amp;quot; diagonal size and up&lt;br /&gt;
*DPI based themes&lt;br /&gt;
** &amp;quot;ldpi&amp;quot;    120&lt;br /&gt;
** &amp;quot;mdpi&amp;quot;    160&lt;br /&gt;
** &amp;quot;tvdpi&amp;quot;   213&lt;br /&gt;
** &amp;quot;hdpi&amp;quot;    240&lt;br /&gt;
** &amp;quot;xhdpi&amp;quot;   320&lt;br /&gt;
** &amp;quot;xxhdpi&amp;quot;  480&lt;br /&gt;
** &amp;quot;xxxhdpi&amp;quot; 640&lt;br /&gt;
*Platform based themes&lt;br /&gt;
** &amp;quot;linux&amp;quot;&lt;br /&gt;
** &amp;quot;ios&amp;quot;&lt;br /&gt;
** &amp;quot;android&amp;quot;&lt;br /&gt;
** &amp;quot;windows&amp;quot;&lt;br /&gt;
** &amp;quot;raspbian&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==File Structure==&lt;br /&gt;
With the use of the QQmlFileselector we have a file structure that allows for a very flexible approach to themes. If you note the various keys above, such as &amp;quot;medium&amp;quot; or &amp;quot;android&amp;quot;, they correlate to different folders that can exist in a skin. For example: In the default skin, there are special folders for small screens that will only show up and be used in the case of small devices. There is nothing the user needs to do to enable this as the specific variant is selected automatically at runtime, if it is available. &lt;br /&gt;
&lt;br /&gt;
In the linuxMCE source tree, the qml skins can be found at&lt;br /&gt;
 &amp;lt;path-to-source&amp;gt;/qOrbiter/qOrbiter_src/qml/skins&lt;br /&gt;
It is important to note that this is the base folder for all skins and if you view this folder, you will see the &#039;default&#039; skins folder inside. &lt;br /&gt;
* If you provide your own path to the skins folder, please ensure that you have at least the &#039;default&#039; folder.&lt;br /&gt;
** The default qOrbiter installation does not ship with the skins folder, so you should obtain it from http://git.linuxmce.org&lt;br /&gt;
&lt;br /&gt;
==== Providing a path to your own skins. ====&lt;br /&gt;
The default qOrbiter does not ship with skins. With non mobile devices, you can provide a custom path to skins. This allows you to develop the UI without needing to re-compile the application (or needing a full development setup)&lt;br /&gt;
* To set your own path, you need to pass a special command line option: -x &amp;lt;path/to/your/skins&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Files should be arranged in the following manner. Please note that you are not required to design your skin according to the default skin. This will be a description of how the default skin works and is organized.&lt;br /&gt;
:&amp;lt;folder&amp;gt;name of the skin, in this case &#039;default&#039;&lt;br /&gt;
::Main.qml   The main entry file&lt;br /&gt;
::Style.qml  Contains default properties for the skin&lt;br /&gt;
::qmldir     a file required by Qt for internal purposes.&lt;br /&gt;
:::&amp;lt;folder&amp;gt;images&lt;br /&gt;
:::&amp;lt;folder&amp;gt;screens&lt;br /&gt;
:::&amp;lt;folder&amp;gt;components&lt;br /&gt;
:::&amp;lt;folder&amp;gt;js (if used)&lt;br /&gt;
&lt;br /&gt;
You will notice the presence of other folders with the special character &amp;quot;+&amp;quot; i.e &amp;quot;+large&amp;quot;. These are the variant folders. When the QML directories are parsed, if a selector matches one of the specially designated folders denoted with the &amp;quot;+&amp;quot;, it will select the content from that folder. &lt;br /&gt;
&lt;br /&gt;
For example, in the &#039;screens&#039; folder, there are also two additional directories. &amp;quot;+small&amp;quot; and &amp;quot;+large&amp;quot;  Content from these folders are used to serve up specific versions of screens for small and large screen devices, which will automatically be detected and the file selector internally.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Order of selectors&#039;&#039;&#039;&lt;br /&gt;
With many different selectors it is important to keep in mind how they affect each other. They have a cascading effect meaning you can combine them, but the file structure must respect that order.&lt;br /&gt;
# Screen Size&lt;br /&gt;
# DPI&lt;br /&gt;
# Resolution&lt;br /&gt;
# Language&lt;br /&gt;
# In case of linux based systems, UNIX or POSIX (?)&lt;br /&gt;
# OS&lt;br /&gt;
# Distribution (ubuntu, opensuse, etc)&lt;br /&gt;
&lt;br /&gt;
==Images==&lt;br /&gt;
Images can be loaded in multiple ways and will be discussed here in the future. All that is required is to use the indicated format for local vs remote loading of images&lt;br /&gt;
*Local:   &#039;&#039;&#039;source: &amp;quot;../../../img/icons/kmix.png&amp;quot;&#039;&#039;&#039;&lt;br /&gt;
** Note that the file selector will load images as if they are from the base directory&lt;br /&gt;
** Make sure to put platform specific images in the correctly denoted folders&lt;br /&gt;
*Datagrid:   &#039;&#039;&#039;source:&amp;quot;image://datagridimg/&amp;quot;+id&#039;&#039;&#039; &lt;br /&gt;
*File Details Screen Shot or Album cover: &#039;&#039;&#039;source: &amp;quot;image://filedetailsprovider/&amp;quot;+filedetailsclass.screenshot&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Adding to the filestructure==&lt;br /&gt;
#in Qt Creator, in the source-tree, right-click on &#039;QML&#039;&lt;br /&gt;
#In the contextmenu select add new&lt;br /&gt;
#choose the template &#039;QML&#039; -&amp;gt; QML File&lt;br /&gt;
#name it &#039;main&#039;&lt;br /&gt;
#for Path, click on choose, in the new window select &#039;new folder&#039; give it the name of your new skin (in lower case letters, otherwise it wont work!) and click on &#039;choose&#039;&lt;br /&gt;
#click continue and then done&lt;br /&gt;
#in Qt Creator, in the source-tree, right-click on &#039;QML&#039;&lt;br /&gt;
#In the contextmenu select add new&lt;br /&gt;
#choose the template &#039;QML&#039; -&amp;gt; QML File&lt;br /&gt;
#name it &#039;Style&#039;&lt;br /&gt;
#for Path, click on choose, in the new window select the folder you created in step 5.&lt;br /&gt;
#click continue and then done&lt;br /&gt;
#in sources -&amp;gt; qorbitermanager.cpp find tskinModel-&amp;gt;addSkin and add a new entry for your skin using the directory name. &lt;br /&gt;
You can now fill main and style files with the content of the same files found in the QML/desktop/default directory.&lt;br /&gt;
Or another pair of main.qml and Style.qml set.&lt;br /&gt;
After this is done you can alter the Style.qml to you likings and your skin can be selected from the styles-menu inside qOrbiter&lt;br /&gt;
&lt;br /&gt;
NOTE: You only see the QML files of the target you selected under project. i.e. if you select for_desktop, you will see the desktop QML files. If you choose for_android, you will see the QML files for Android. What is shown for a target, is defined in the .pro file of qOrbiter.&lt;br /&gt;
&lt;br /&gt;
==Special Qml Pages==&lt;br /&gt;
The following pages are &#039;special&#039; in that they serve critical function for the qml application.&lt;br /&gt;
These should be located in the main directory of your skin.&lt;br /&gt;
i.e. - &amp;lt;mySkin&amp;gt;/Main.qml&lt;br /&gt;
	&lt;br /&gt;
*Main.qml&lt;br /&gt;
:The entire purpose of this qml page is to be the logic behind the runtime of the application. What this means&lt;br /&gt;
:is that this is the highest level page and signals and slots should be added here. Also, the page loading&lt;br /&gt;
:functions need to be implemented here for hiccup free operation. For example, the main.qml file thats is&lt;br /&gt;
:part of the default skin serves as the loader for Screens, emits signals, and provides a constant object for&lt;br /&gt;
:other logic.&lt;br /&gt;
	&lt;br /&gt;
*Splash.qml&lt;br /&gt;
:This is the loading page that is initially shown when the application starts. It is not intended to be used by skin designers as the logic is very specific. However, acceptable replacements will be included.&lt;br /&gt;
&lt;br /&gt;
*Style.qml&lt;br /&gt;
:This qml file is unique because it does nothing more than serve as a static obeject that contains the description of&lt;br /&gt;
: your skin, both for users and the actual application. its where screen sizes are defined, scaling functions can be&lt;br /&gt;
:located, and anything else relating to the visual style of the application as relating to your skin&lt;/div&gt;</summary>
		<author><name>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=QOrbiter&amp;diff=36710</id>
		<title>QOrbiter</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=QOrbiter&amp;diff=36710"/>
		<updated>2016-04-05T17:53:04Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{versioninfo}}&lt;br /&gt;
[[category:QML]]&lt;br /&gt;
[[category:QOrbiter]]&lt;br /&gt;
[[Category: Programmer&#039;s Guide]]&lt;br /&gt;
qOrbiter is a new LinuxMCE orbiter designed to run on a multitude of devices as well as provide flexible skinning options to make it truly one&#039;s own. The purpose of this document is for documenting the existing skin api of the application moving forward.&lt;br /&gt;
&lt;br /&gt;
=Where To Find It=&lt;br /&gt;
The latest version of qOrbiter can always be found on the developers  [http://langstonball.com/downloads/category/1-qorbiter-downloads site].&lt;br /&gt;
== Installation Instructions ==&lt;br /&gt;
More details on Android installation for the qOrbiter (some applies universally), ca be found at [[Android Orbiter]],&lt;br /&gt;
&lt;br /&gt;
=Concept=&lt;br /&gt;
The concept of this document is to provide those wishing to create new skins the needed access to LinuxMCE data through properties and context objects. While I will not be discussing what they are here, they are discussed in the scope of QML documentation which is a pre-requisite to skinning and working with Qorbiter. &lt;br /&gt;
&lt;br /&gt;
So, for example lets take the context property &amp;quot;deviceid&amp;quot;. This property is added to the QML engine at runtime so that it can be used to provide the current device id of the orbiter. So in effect, this is a macro or keyword if you will that enables access to the underlying LinuxMCE data. As is one of the goals, no programming is required. One of the goals of this document is to outline all of these properties for easy reference in making a new skin.&lt;br /&gt;
&lt;br /&gt;
=Colors &amp;amp; Styling=&lt;br /&gt;
Colors such as background and button colors should be set in the style file of the qml skin. See &#039;Style.qml&#039; for reference on setting up property aliases. &lt;br /&gt;
&lt;br /&gt;
Examples include:&lt;br /&gt;
&lt;br /&gt;
 property color stageBG: &amp;quot;slategray&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Qualified color references include:&lt;br /&gt;
*SVG named colors [http://www.december.com/html/spec/colorsvg.html Reference]&lt;br /&gt;
*Web color notation #112233&lt;br /&gt;
&lt;br /&gt;
==Skins==&lt;br /&gt;
skinsList: listmodel of skins found for the build&lt;br /&gt;
One should always check the official doc&#039;s to see what methods are supported for setting properties.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Developing a qOrbiter skin=&lt;br /&gt;
QOrbiter utilizes QML&#039;s ease of creating themes. The current engine used for themes supports the following&lt;br /&gt;
*Screen Size based themes:&lt;br /&gt;
** &amp;quot;small&amp;quot;  4&amp;quot; diagonal size and up&lt;br /&gt;
** &amp;quot;medium&amp;quot; 7&amp;quot; diagonal size and up&lt;br /&gt;
** &amp;quot;large&amp;quot;  10&amp;quot; diagonal size and up&lt;br /&gt;
** &amp;quot;xlarge&amp;quot; 13&amp;quot; diagonal size and up&lt;br /&gt;
*DPI based themes&lt;br /&gt;
** &amp;quot;ldpi&amp;quot;    120&lt;br /&gt;
** &amp;quot;mdpi&amp;quot;    160&lt;br /&gt;
** &amp;quot;tvdpi&amp;quot;   213&lt;br /&gt;
** &amp;quot;hdpi&amp;quot;    240&lt;br /&gt;
** &amp;quot;xhdpi&amp;quot;   320&lt;br /&gt;
** &amp;quot;xxhdpi&amp;quot;  480&lt;br /&gt;
** &amp;quot;xxxhdpi&amp;quot; 640&lt;br /&gt;
*Platform based themes&lt;br /&gt;
** &amp;quot;linux&amp;quot;&lt;br /&gt;
** &amp;quot;ios&amp;quot;&lt;br /&gt;
** &amp;quot;android&amp;quot;&lt;br /&gt;
** &amp;quot;windows&amp;quot;&lt;br /&gt;
** &amp;quot;raspbian&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==File Structure==&lt;br /&gt;
With the use of the QQmlFileselector we have a file structure that allows for a very flexible approach to themes. If you note the various keys above, such as &amp;quot;medium&amp;quot; or &amp;quot;android&amp;quot;, they correlate to different folders that can exist in a skin. For example: In the default skin, there are special folders for small screens that will only show up and be used in the case of small devices. There is nothing the user needs to do to enable this as the specific variant is selected automatically at runtime, if it is available. &lt;br /&gt;
&lt;br /&gt;
In the linuxMCE source tree, the qml skins can be found at&lt;br /&gt;
 &amp;lt;path-to-source&amp;gt;/qOrbiter/qOrbiter_src/qml/skins&lt;br /&gt;
It is important to note that this is the base folder for all skins and if you view this folder, you will see the &#039;default&#039; skins folder inside. &lt;br /&gt;
* If you provide your own path to the skins folder, please ensure that you have at least the &#039;default&#039; folder.&lt;br /&gt;
** The default qOrbiter installation does not ship with the skins folder, so you should obtain it from http://git.linuxmce.org&lt;br /&gt;
&lt;br /&gt;
Providing a path to your own skins.&lt;br /&gt;
The default qOrbiter does not ship with skins. With non mobile devices, you can provide a custom path to skins. This allows you to develop the UI without needing to re-compile the application (or needing a full development setup)&lt;br /&gt;
* To set your own path, you need to pass a special command line option: -x &amp;lt;path/to/your/skins&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Files should be arranged in the following manner. Please note that you are not required to design your skin according to the default skin. This will be a description of how the default skin works and is organized.&lt;br /&gt;
:&amp;lt;folder&amp;gt;name of the skin, in this case &#039;default&#039;&lt;br /&gt;
::Main.qml   The main entry file&lt;br /&gt;
::Style.qml  Contains default properties for the skin&lt;br /&gt;
::qmldir     a file required by Qt for internal purposes.&lt;br /&gt;
:::&amp;lt;folder&amp;gt;images&lt;br /&gt;
:::&amp;lt;folder&amp;gt;screens&lt;br /&gt;
:::&amp;lt;folder&amp;gt;components&lt;br /&gt;
:::&amp;lt;folder&amp;gt;js (if used)&lt;br /&gt;
&lt;br /&gt;
You will notice the presence of other folders with the special character &amp;quot;+&amp;quot; i.e &amp;quot;+large&amp;quot;. These are the variant folders. When the QML directories are parsed, if a selector matches one of the specially designated folders denoted with the &amp;quot;+&amp;quot;, it will select the content from that folder. &lt;br /&gt;
&lt;br /&gt;
For example, in the &#039;screens&#039; folder, there are also two additional directories. &amp;quot;+small&amp;quot; and &amp;quot;+large&amp;quot;  Content from these folders are used to serve up specific versions of screens for small and large screen devices, which will automatically be detected and the file selector internally.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Order of selectors&#039;&#039;&#039;&lt;br /&gt;
With many different selectors it is important to keep in mind how they affect each other. They have a cascading effect meaning you can combine them, but the file structure must respect that order.&lt;br /&gt;
# Screen Size&lt;br /&gt;
# DPI&lt;br /&gt;
# Resolution&lt;br /&gt;
# Language&lt;br /&gt;
# In case of linux based systems, UNIX or POSIX (?)&lt;br /&gt;
# OS&lt;br /&gt;
# Distribution (ubuntu, opensuse, etc)&lt;br /&gt;
&lt;br /&gt;
==Images==&lt;br /&gt;
Images can be loaded in multiple ways and will be discussed here in the future. All that is required is to use the indicated format for local vs remote loading of images&lt;br /&gt;
*Local:   &#039;&#039;&#039;source: &amp;quot;../../../img/icons/kmix.png&amp;quot;&#039;&#039;&#039;&lt;br /&gt;
** Note that the file selector will load images as if they are from the base directory&lt;br /&gt;
** Make sure to put platform specific images in the correctly denoted folders&lt;br /&gt;
*Datagrid:   &#039;&#039;&#039;source:&amp;quot;image://datagridimg/&amp;quot;+id&#039;&#039;&#039; &lt;br /&gt;
*File Details Screen Shot or Album cover: &#039;&#039;&#039;source: &amp;quot;image://filedetailsprovider/&amp;quot;+filedetailsclass.screenshot&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Adding to the filestructure==&lt;br /&gt;
#in Qt Creator, in the source-tree, right-click on &#039;QML&#039;&lt;br /&gt;
#In the contextmenu select add new&lt;br /&gt;
#choose the template &#039;QML&#039; -&amp;gt; QML File&lt;br /&gt;
#name it &#039;main&#039;&lt;br /&gt;
#for Path, click on choose, in the new window select &#039;new folder&#039; give it the name of your new skin (in lower case letters, otherwise it wont work!) and click on &#039;choose&#039;&lt;br /&gt;
#click continue and then done&lt;br /&gt;
#in Qt Creator, in the source-tree, right-click on &#039;QML&#039;&lt;br /&gt;
#In the contextmenu select add new&lt;br /&gt;
#choose the template &#039;QML&#039; -&amp;gt; QML File&lt;br /&gt;
#name it &#039;Style&#039;&lt;br /&gt;
#for Path, click on choose, in the new window select the folder you created in step 5.&lt;br /&gt;
#click continue and then done&lt;br /&gt;
#in sources -&amp;gt; qorbitermanager.cpp find tskinModel-&amp;gt;addSkin and add a new entry for your skin using the directory name. &lt;br /&gt;
You can now fill main and style files with the content of the same files found in the QML/desktop/default directory.&lt;br /&gt;
Or another pair of main.qml and Style.qml set.&lt;br /&gt;
After this is done you can alter the Style.qml to you likings and your skin can be selected from the styles-menu inside qOrbiter&lt;br /&gt;
&lt;br /&gt;
NOTE: You only see the QML files of the target you selected under project. i.e. if you select for_desktop, you will see the desktop QML files. If you choose for_android, you will see the QML files for Android. What is shown for a target, is defined in the .pro file of qOrbiter.&lt;br /&gt;
&lt;br /&gt;
==Special Qml Pages==&lt;br /&gt;
The following pages are &#039;special&#039; in that they serve critical function for the qml application.&lt;br /&gt;
These should be located in the main directory of your skin.&lt;br /&gt;
i.e. - &amp;lt;mySkin&amp;gt;/Main.qml&lt;br /&gt;
	&lt;br /&gt;
*Main.qml&lt;br /&gt;
:The entire purpose of this qml page is to be the logic behind the runtime of the application. What this means&lt;br /&gt;
:is that this is the highest level page and signals and slots should be added here. Also, the page loading&lt;br /&gt;
:functions need to be implemented here for hiccup free operation. For example, the main.qml file thats is&lt;br /&gt;
:part of the default skin serves as the loader for Screens, emits signals, and provides a constant object for&lt;br /&gt;
:other logic.&lt;br /&gt;
	&lt;br /&gt;
*Splash.qml&lt;br /&gt;
:This is the loading page that is initially shown when the application starts. It is not intended to be used by skin designers as the logic is very specific. However, acceptable replacements will be included.&lt;br /&gt;
&lt;br /&gt;
*Style.qml&lt;br /&gt;
:This qml file is unique because it does nothing more than serve as a static obeject that contains the description of&lt;br /&gt;
: your skin, both for users and the actual application. its where screen sizes are defined, scaling functions can be&lt;br /&gt;
:located, and anything else relating to the visual style of the application as relating to your skin&lt;/div&gt;</summary>
		<author><name>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Qt_development_with_linuxmce&amp;diff=36709</id>
		<title>Qt development with linuxmce</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Qt_development_with_linuxmce&amp;diff=36709"/>
		<updated>2016-04-04T23:25:15Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article will explain how to utilize the Qt development framework with linuxmce. Currently, there are a few different types of devices that utilize the Qt framework within linuxmce&lt;br /&gt;
* Hue Controller - For controlling Phillips Hue color changing LED lights using QtNetwork to interface with the JSON api of the device.&lt;br /&gt;
* linuxmceTag - A simple command line media scanner which scans video files, and then does its best to lookup information via online api&#039;s to fill in metadata&lt;br /&gt;
* QOrbiter - Graphical user interface for linuxmce, allowing one to have classic orbiter functionality.&lt;br /&gt;
&lt;br /&gt;
== General Requirements ==&lt;br /&gt;
These are the general requirements for working with Qt and linuxmce to develop devices&lt;br /&gt;
&lt;br /&gt;
* Qt Development SDK - http://www.qt.io/download/ &lt;br /&gt;
** Choose the open source version. This will allow you to download the source as needed, libraries, and the IDE, Qt Creator.&lt;br /&gt;
** If you are targeting Qt4, you would best apt-get install qt4-dev-tools. This will pull in Qt4 libraries and the Qt Creator for qt4. Please note if creating a new project, you will be politely asked to use Qt5. Qt4 based projects are scheduled to be moved to Qt5.&lt;br /&gt;
* A functioning linuxmce installation, VM or otherwise.&lt;br /&gt;
** You will also need the source code, which you can check out at http://git.linuxmce.org.&lt;br /&gt;
** Follow this existing article: http://wiki.linuxmce.org/index.php/Developing_a_DCE_Device&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Once you have setup your linuxmce box according to the article above,you will be ready to start development. We should note here that in the case of most of the Qt applications developed specifically for linuxMCE, the shared lib approach commonly taken by other DCE device is not used. Instead of linking against libraries, the headers are included as needed. Why do it this way?&lt;br /&gt;
Well in the case of IOS and Android, and a few other embedded devices, this would make life more difficult than it actually needs to be. For the purposes of development when using x86 based machines, it also makes sense. So, please dont ask for this to change, unless you can demonstrate a patch that solves the problems as mentioned.&lt;br /&gt;
&lt;br /&gt;
For certain embedded builds of Qt, we will try to, in the future, create a tgz with the needed cross-compiled Qt libraries.&lt;br /&gt;
&lt;br /&gt;
== Working from your own linux machine ==&lt;br /&gt;
Working from one&#039;s own linux machine can be beneficial from the standpoint using the most familiar development environment. Some things must be take into consideration however.&lt;br /&gt;
*If your device is a plugin, this method is not open to you. Plugins run in the router memory space and this means they cannot be run from remote machines. It wouldn&#039;t even be wise to try.&lt;br /&gt;
*Passing command line parameters to the device, will allow you to run it from your machine, but connected to the router.&lt;br /&gt;
** Pass &#039;-r &amp;lt;yourcoreip&amp;gt;&#039; for the router. It defaults to 192.168.80.1&lt;br /&gt;
** Pass &#039;-d &amp;lt;devicenumber&amp;gt;&#039; for the device number.&lt;br /&gt;
&lt;br /&gt;
== Working on your core ==&lt;br /&gt;
Working on the core can be beneficial from the standpoint of&lt;br /&gt;
*no need to move file(s) across network&lt;br /&gt;
*compile in native environment&lt;br /&gt;
&lt;br /&gt;
Both of these are useful, but debugging and gui functionality will be limited.&lt;br /&gt;
&lt;br /&gt;
== Working on an embedded device ==&lt;br /&gt;
You will need:&lt;br /&gt;
*A version of Qt compiled for your target platform&lt;br /&gt;
*A cross-compiler toolchain&lt;/div&gt;</summary>
		<author><name>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=QOrbiter&amp;diff=36708</id>
		<title>QOrbiter</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=QOrbiter&amp;diff=36708"/>
		<updated>2016-04-04T18:31:41Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{versioninfo}}&lt;br /&gt;
[[category:QML]]&lt;br /&gt;
[[category:QOrbiter]]&lt;br /&gt;
[[Category: Programmer&#039;s Guide]]&lt;br /&gt;
qOrbiter is a new LinuxMCE orbiter designed to run on a multitude of devices as well as provide flexible skinning options to make it truly one&#039;s own. The purpose of this document is for documenting the existing skin api of the application moving forward.&lt;br /&gt;
&lt;br /&gt;
=Where To Find It=&lt;br /&gt;
The latest version of qOrbiter can always be found on the developers  [http://langstonball.com/downloads/category/1-qorbiter-downloads site].&lt;br /&gt;
== Installation Instructions ==&lt;br /&gt;
More details on Android installation for the qOrbiter (some applies universally), ca be found at [[Android Orbiter]],&lt;br /&gt;
&lt;br /&gt;
=Concept=&lt;br /&gt;
The concept of this document is to provide those wishing to create new skins the needed access to LinuxMCE data through properties and context objects. While I will not be discussing what they are here, they are discussed in the scope of QML documentation which is a pre-requisite to skinning and working with Qorbiter. &lt;br /&gt;
&lt;br /&gt;
So, for example lets take the context property &amp;quot;deviceid&amp;quot;. This property is added to the QML engine at runtime so that it can be used to provide the current device id of the orbiter. So in effect, this is a macro or keyword if you will that enables access to the underlying LinuxMCE data. As is one of the goals, no programming is required. One of the goals of this document is to outline all of these properties for easy reference in making a new skin.&lt;br /&gt;
&lt;br /&gt;
=Colors &amp;amp; Styling=&lt;br /&gt;
Colors such as background and button colors should be set in the style file of the qml skin. See &#039;Style.qml&#039; for reference on setting up property aliases. &lt;br /&gt;
&lt;br /&gt;
Examples include:&lt;br /&gt;
&lt;br /&gt;
 property color stageBG: &amp;quot;slategray&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Qualified color references include:&lt;br /&gt;
*SVG named colors [http://www.december.com/html/spec/colorsvg.html Reference]&lt;br /&gt;
*Web color notation #112233&lt;br /&gt;
&lt;br /&gt;
==Skins==&lt;br /&gt;
skinsList: listmodel of skins found for the build&lt;br /&gt;
One should always check the official doc&#039;s to see what methods are supported for setting properties.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Developing a qOrbiter skin=&lt;br /&gt;
QOrbiter utilizes QML&#039;s ease of creating themes. The current engine used for themes supports the following&lt;br /&gt;
*Screen Size based themes:&lt;br /&gt;
** &amp;quot;small&amp;quot;  4&amp;quot; diagonal size and up&lt;br /&gt;
** &amp;quot;medium&amp;quot; 7&amp;quot; diagonal size and up&lt;br /&gt;
** &amp;quot;large&amp;quot;  10&amp;quot; diagonal size and up&lt;br /&gt;
** &amp;quot;xlarge&amp;quot; 13&amp;quot; diagonal size and up&lt;br /&gt;
*DPI based themes&lt;br /&gt;
** &amp;quot;ldpi&amp;quot;    120&lt;br /&gt;
** &amp;quot;mdpi&amp;quot;    160&lt;br /&gt;
** &amp;quot;tvdpi&amp;quot;   213&lt;br /&gt;
** &amp;quot;hdpi&amp;quot;    240&lt;br /&gt;
** &amp;quot;xhdpi&amp;quot;   320&lt;br /&gt;
** &amp;quot;xxhdpi&amp;quot;  480&lt;br /&gt;
** &amp;quot;xxxhdpi&amp;quot; 640&lt;br /&gt;
*Platform based themes&lt;br /&gt;
** &amp;quot;linux&amp;quot;&lt;br /&gt;
** &amp;quot;ios&amp;quot;&lt;br /&gt;
** &amp;quot;android&amp;quot;&lt;br /&gt;
** &amp;quot;windows&amp;quot;&lt;br /&gt;
** &amp;quot;raspbian&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==File Structure==&lt;br /&gt;
With the use of the QQmlFileselector we have a file structure that allows for a very flexible approach to themes. If you note the various keys above, such as &amp;quot;medium&amp;quot; or &amp;quot;android&amp;quot;, they correlate to different folders that can exist in a skin. For example: In the default skin, there are special folders for small screens that will only show up and be used in the case of small devices. There is nothing the user needs to do to enable this as the specific variant is selected automatically at runtime, if it is available. &lt;br /&gt;
&lt;br /&gt;
In the linuxMCE source tree, the qml skins can be found at&lt;br /&gt;
 &amp;lt;path-to-source&amp;gt;/qOrbiter/qOrbiter_src/qml/skins&lt;br /&gt;
It is important to note that this is the base folder for all skins and if you view this folder, you will see the &#039;default&#039; skins folder inside. &lt;br /&gt;
* If you provide your own path to the skins folder, please ensure that you have at least the &#039;default&#039; folder.&lt;br /&gt;
** The default qOrbiter installation does not ship with the skins folder, so you should obtain it from http://git.linuxmce.org&lt;br /&gt;
&lt;br /&gt;
Files should be arranged in the following manner. Please note that you are not required to design your skin according to the default skin. This will be a description of how the default skin works and is organized.&lt;br /&gt;
:&amp;lt;folder&amp;gt;name of the skin, in this case &#039;default&#039;&lt;br /&gt;
::Main.qml   The main entry file&lt;br /&gt;
::Style.qml  Contains default properties for the skin&lt;br /&gt;
::qmldir     a file required by Qt for internal purposes.&lt;br /&gt;
:::&amp;lt;folder&amp;gt;images&lt;br /&gt;
:::&amp;lt;folder&amp;gt;screens&lt;br /&gt;
:::&amp;lt;folder&amp;gt;components&lt;br /&gt;
:::&amp;lt;folder&amp;gt;js (if used)&lt;br /&gt;
&lt;br /&gt;
You will notice the presence of other folders with the special character &amp;quot;+&amp;quot; i.e &amp;quot;+large&amp;quot;. These are the variant folders. When the QML directories are parsed, if a selector matches one of the specially designated folders denoted with the &amp;quot;+&amp;quot;, it will select the content from that folder. &lt;br /&gt;
&lt;br /&gt;
For example, in the &#039;screens&#039; folder, there are also two additional directories. &amp;quot;+small&amp;quot; and &amp;quot;+large&amp;quot;  Content from these folders are used to serve up specific versions of screens for small and large screen devices, which will automatically be detected and the file selector internally.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Order of selectors&#039;&#039;&#039;&lt;br /&gt;
With many different selectors it is important to keep in mind how they affect each other. They have a cascading effect meaning you can combine them, but the file structure must respect that order.&lt;br /&gt;
# Screen Size&lt;br /&gt;
# DPI&lt;br /&gt;
# Resolution&lt;br /&gt;
# Language&lt;br /&gt;
# In case of linux based systems, UNIX or POSIX (?)&lt;br /&gt;
# OS&lt;br /&gt;
# Distribution (ubuntu, opensuse, etc)&lt;br /&gt;
&lt;br /&gt;
==Images==&lt;br /&gt;
Images can be loaded in multiple ways and will be discussed here in the future. All that is required is to use the indicated format for local vs remote loading of images&lt;br /&gt;
*Local:   &#039;&#039;&#039;source: &amp;quot;../../../img/icons/kmix.png&amp;quot;&#039;&#039;&#039;&lt;br /&gt;
** Note that the file selector will load images as if they are from the base directory&lt;br /&gt;
** Make sure to put platform specific images in the correctly denoted folders&lt;br /&gt;
*Datagrid:   &#039;&#039;&#039;source:&amp;quot;image://datagridimg/&amp;quot;+id&#039;&#039;&#039; &lt;br /&gt;
*File Details Screen Shot or Album cover: &#039;&#039;&#039;source: &amp;quot;image://filedetailsprovider/&amp;quot;+filedetailsclass.screenshot&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Adding to the filestructure==&lt;br /&gt;
#in Qt Creator, in the source-tree, right-click on &#039;QML&#039;&lt;br /&gt;
#In the contextmenu select add new&lt;br /&gt;
#choose the template &#039;QML&#039; -&amp;gt; QML File&lt;br /&gt;
#name it &#039;main&#039;&lt;br /&gt;
#for Path, click on choose, in the new window select &#039;new folder&#039; give it the name of your new skin (in lower case letters, otherwise it wont work!) and click on &#039;choose&#039;&lt;br /&gt;
#click continue and then done&lt;br /&gt;
#in Qt Creator, in the source-tree, right-click on &#039;QML&#039;&lt;br /&gt;
#In the contextmenu select add new&lt;br /&gt;
#choose the template &#039;QML&#039; -&amp;gt; QML File&lt;br /&gt;
#name it &#039;Style&#039;&lt;br /&gt;
#for Path, click on choose, in the new window select the folder you created in step 5.&lt;br /&gt;
#click continue and then done&lt;br /&gt;
#in sources -&amp;gt; qorbitermanager.cpp find tskinModel-&amp;gt;addSkin and add a new entry for your skin using the directory name. &lt;br /&gt;
You can now fill main and style files with the content of the same files found in the QML/desktop/default directory.&lt;br /&gt;
Or another pair of main.qml and Style.qml set.&lt;br /&gt;
After this is done you can alter the Style.qml to you likings and your skin can be selected from the styles-menu inside qOrbiter&lt;br /&gt;
&lt;br /&gt;
NOTE: You only see the QML files of the target you selected under project. i.e. if you select for_desktop, you will see the desktop QML files. If you choose for_android, you will see the QML files for Android. What is shown for a target, is defined in the .pro file of qOrbiter.&lt;br /&gt;
&lt;br /&gt;
==Special Qml Pages==&lt;br /&gt;
The following pages are &#039;special&#039; in that they serve critical function for the qml application.&lt;br /&gt;
These should be located in the main directory of your skin.&lt;br /&gt;
i.e. - &amp;lt;mySkin&amp;gt;/Main.qml&lt;br /&gt;
	&lt;br /&gt;
*Main.qml&lt;br /&gt;
:The entire purpose of this qml page is to be the logic behind the runtime of the application. What this means&lt;br /&gt;
:is that this is the highest level page and signals and slots should be added here. Also, the page loading&lt;br /&gt;
:functions need to be implemented here for hiccup free operation. For example, the main.qml file thats is&lt;br /&gt;
:part of the default skin serves as the loader for Screens, emits signals, and provides a constant object for&lt;br /&gt;
:other logic.&lt;br /&gt;
	&lt;br /&gt;
*Splash.qml&lt;br /&gt;
:This is the loading page that is initially shown when the application starts. It is not intended to be used by skin designers as the logic is very specific. However, acceptable replacements will be included.&lt;br /&gt;
&lt;br /&gt;
*Style.qml&lt;br /&gt;
:This qml file is unique because it does nothing more than serve as a static obeject that contains the description of&lt;br /&gt;
: your skin, both for users and the actual application. its where screen sizes are defined, scaling functions can be&lt;br /&gt;
:located, and anything else relating to the visual style of the application as relating to your skin&lt;/div&gt;</summary>
		<author><name>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=QOrbiter&amp;diff=36707</id>
		<title>QOrbiter</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=QOrbiter&amp;diff=36707"/>
		<updated>2016-04-04T18:29:13Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* File Structure */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{versioninfo}}&lt;br /&gt;
[[category:QML]]&lt;br /&gt;
[[category:QOrbiter]]&lt;br /&gt;
[[Category: Programmer&#039;s Guide]]&lt;br /&gt;
qOrbiter is a new LinuxMCE orbiter designed to run on a multitude of devices as well as provide flexible skinning options to make it truly one&#039;s own. The purpose of this document is for documenting the existing skin api of the application moving forward.&lt;br /&gt;
&lt;br /&gt;
=Where To Find It=&lt;br /&gt;
The latest version of qOrbiter can always be found on the developers  [http://langstonball.com/downloads/category/1-qorbiter-downloads site].&lt;br /&gt;
== Installation Instructions ==&lt;br /&gt;
More details on Android installation for the qOrbiter (some applies universally), ca be found at [[Android Orbiter]],&lt;br /&gt;
&lt;br /&gt;
=Concept=&lt;br /&gt;
The concept of this document is to provide those wishing to create new skins the needed access to LinuxMCE data through properties and context objects. While I will not be discussing what they are here, they are discussed in the scope of QML documentation which is a pre-requisite to skinning and working with Qorbiter. &lt;br /&gt;
&lt;br /&gt;
So, for example lets take the context property &amp;quot;deviceid&amp;quot;. This property is added to the QML engine at runtime so that it can be used to provide the current device id of the orbiter. So in effect, this is a macro or keyword if you will that enables access to the underlying LinuxMCE data. As is one of the goals, no programming is required. One of the goals of this document is to outline all of these properties for easy reference in making a new skin.&lt;br /&gt;
&lt;br /&gt;
=Colors &amp;amp; Styling=&lt;br /&gt;
Colors such as background and button colors should be set in the style file of the qml skin. See &#039;Style.qml&#039; for reference on setting up property aliases. &lt;br /&gt;
&lt;br /&gt;
Examples include:&lt;br /&gt;
&lt;br /&gt;
 property color stageBG: &amp;quot;slategray&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Qualified color references include:&lt;br /&gt;
*SVG named colors [http://www.december.com/html/spec/colorsvg.html Reference]&lt;br /&gt;
*Web color notation #112233&lt;br /&gt;
&lt;br /&gt;
==Skins==&lt;br /&gt;
skinsList: listmodel of skins found for the build&lt;br /&gt;
One should always check the official doc&#039;s to see what methods are supported for setting properties.&lt;br /&gt;
&lt;br /&gt;
==Images==&lt;br /&gt;
Images can be loaded in multiple ways and will be discussed here in the future. All that is required is to use the indicated format for local vs remote loading of images&lt;br /&gt;
*Local:   &#039;&#039;&#039;source: &amp;quot;../../../img/icons/kmix.png&amp;quot;&#039;&#039;&#039;&lt;br /&gt;
*Datagrid:   &#039;&#039;&#039;source:&amp;quot;image://datagridimg/&amp;quot;+id&#039;&#039;&#039; &lt;br /&gt;
*File Details Screen Shot or Album cover: &#039;&#039;&#039;source: &amp;quot;image://filedetailsprovider/&amp;quot;+filedetailsclass.screenshot&#039;&#039;&#039;&lt;br /&gt;
Please note more will become available as they are connected to QML.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Developing a qOrbiter skin=&lt;br /&gt;
QOrbiter utilizes QML&#039;s ease of creating themes. The current engine used for themes supports the following&lt;br /&gt;
*Screen Size based themes:&lt;br /&gt;
** &amp;quot;small&amp;quot;  4&amp;quot; diagonal size and up&lt;br /&gt;
** &amp;quot;medium&amp;quot; 7&amp;quot; diagonal size and up&lt;br /&gt;
** &amp;quot;large&amp;quot;  10&amp;quot; diagonal size and up&lt;br /&gt;
** &amp;quot;xlarge&amp;quot; 13&amp;quot; diagonal size and up&lt;br /&gt;
*DPI based themes&lt;br /&gt;
** &amp;quot;ldpi&amp;quot;    120&lt;br /&gt;
** &amp;quot;mdpi&amp;quot;    160&lt;br /&gt;
** &amp;quot;tvdpi&amp;quot;   213&lt;br /&gt;
** &amp;quot;hdpi&amp;quot;    240&lt;br /&gt;
** &amp;quot;xhdpi&amp;quot;   320&lt;br /&gt;
** &amp;quot;xxhdpi&amp;quot;  480&lt;br /&gt;
** &amp;quot;xxxhdpi&amp;quot; 640&lt;br /&gt;
*Platform based themes&lt;br /&gt;
** &amp;quot;linux&amp;quot;&lt;br /&gt;
** &amp;quot;ios&amp;quot;&lt;br /&gt;
** &amp;quot;android&amp;quot;&lt;br /&gt;
** &amp;quot;windows&amp;quot;&lt;br /&gt;
** &amp;quot;raspbian&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==File Structure==&lt;br /&gt;
With the use of the QQmlFileselector we have a file structure that allows for a very flexible approach to themes. If you note the various keys above, such as &amp;quot;medium&amp;quot; or &amp;quot;android&amp;quot;, they correlate to different folders that can exist in a skin. For example: In the default skin, there are special folders for small screens that will only show up and be used in the case of small devices. There is nothing the user needs to do to enable this as the specific variant is selected automatically at runtime, if it is available. &lt;br /&gt;
&lt;br /&gt;
In the linuxMCE source tree, the qml skins can be found at&lt;br /&gt;
 &amp;lt;path-to-source&amp;gt;/qOrbiter/qOrbiter_src/qml/skins&lt;br /&gt;
It is important to note that this is the base folder for all skins and if you view this folder, you will see the &#039;default&#039; skins folder inside. &lt;br /&gt;
* If you provide your own path to the skins folder, please ensure that you have at least the &#039;default&#039; folder.&lt;br /&gt;
** The default qOrbiter installation does not ship with the skins folder, so you should obtain it from http://git.linuxmce.org&lt;br /&gt;
&lt;br /&gt;
Files should be arranged in the following manner. Please note that you are not required to design your skin according to the default skin. This will be a description of how the default skin works and is organized.&lt;br /&gt;
:&amp;lt;folder&amp;gt;name of the skin, in this case &#039;default&#039;&lt;br /&gt;
::Main.qml   The main entry file&lt;br /&gt;
::Style.qml  Contains default properties for the skin&lt;br /&gt;
::qmldir     a file required by Qt for internal purposes.&lt;br /&gt;
:::&amp;lt;folder&amp;gt;images&lt;br /&gt;
:::&amp;lt;folder&amp;gt;screens&lt;br /&gt;
:::&amp;lt;folder&amp;gt;components&lt;br /&gt;
:::&amp;lt;folder&amp;gt;js (if used)&lt;br /&gt;
&lt;br /&gt;
You will notice the presence of other folders with the special character &amp;quot;+&amp;quot; i.e &amp;quot;+large&amp;quot;. These are the variant folders. When the QML directories are parsed, if a selector matches one of the specially designated folders denoted with the &amp;quot;+&amp;quot;, it will select the content from that folder. &lt;br /&gt;
&lt;br /&gt;
For example, in the &#039;screens&#039; folder, there are also two additional directories. &amp;quot;+small&amp;quot; and &amp;quot;+large&amp;quot;  Content from these folders are used to serve up specific versions of screens for small and large screen devices, which will automatically be detected and the file selector internally.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Order of selectors&#039;&#039;&#039;&lt;br /&gt;
With many different selectors it is important to keep in mind how they affect each other. They have a cascading effect meaning you can combine them, but the file structure must respect that order.&lt;br /&gt;
# Screen Size&lt;br /&gt;
# DPI&lt;br /&gt;
# Resolution&lt;br /&gt;
# Language&lt;br /&gt;
# In case of linux based systems, UNIX or POSIX (?)&lt;br /&gt;
# OS&lt;br /&gt;
# Distribution (ubuntu, opensuse, etc)&lt;br /&gt;
&lt;br /&gt;
==Adding to the filestructure==&lt;br /&gt;
#in Qt Creator, in the source-tree, right-click on &#039;QML&#039;&lt;br /&gt;
#In the contextmenu select add new&lt;br /&gt;
#choose the template &#039;QML&#039; -&amp;gt; QML File&lt;br /&gt;
#name it &#039;main&#039;&lt;br /&gt;
#for Path, click on choose, in the new window select &#039;new folder&#039; give it the name of your new skin (in lower case letters, otherwise it wont work!) and click on &#039;choose&#039;&lt;br /&gt;
#click continue and then done&lt;br /&gt;
#in Qt Creator, in the source-tree, right-click on &#039;QML&#039;&lt;br /&gt;
#In the contextmenu select add new&lt;br /&gt;
#choose the template &#039;QML&#039; -&amp;gt; QML File&lt;br /&gt;
#name it &#039;Style&#039;&lt;br /&gt;
#for Path, click on choose, in the new window select the folder you created in step 5.&lt;br /&gt;
#click continue and then done&lt;br /&gt;
#in sources -&amp;gt; qorbitermanager.cpp find tskinModel-&amp;gt;addSkin and add a new entry for your skin using the directory name. &lt;br /&gt;
You can now fill main and style files with the content of the same files found in the QML/desktop/default directory.&lt;br /&gt;
Or another pair of main.qml and Style.qml set.&lt;br /&gt;
After this is done you can alter the Style.qml to you likings and your skin can be selected from the styles-menu inside qOrbiter&lt;br /&gt;
&lt;br /&gt;
NOTE: You only see the QML files of the target you selected under project. i.e. if you select for_desktop, you will see the desktop QML files. If you choose for_android, you will see the QML files for Android. What is shown for a target, is defined in the .pro file of qOrbiter.&lt;br /&gt;
&lt;br /&gt;
==Special Qml Pages==&lt;br /&gt;
The following pages are &#039;special&#039; in that they serve critical function for the qml application.&lt;br /&gt;
These should be located in the main directory of your skin.&lt;br /&gt;
i.e. - &amp;lt;mySkin&amp;gt;/Main.qml&lt;br /&gt;
	&lt;br /&gt;
*Main.qml&lt;br /&gt;
:The entire purpose of this qml page is to be the logic behind the runtime of the application. What this means&lt;br /&gt;
:is that this is the highest level page and signals and slots should be added here. Also, the page loading&lt;br /&gt;
:functions need to be implemented here for hiccup free operation. For example, the main.qml file thats is&lt;br /&gt;
:part of the default skin serves as the loader for Screens, emits signals, and provides a constant object for&lt;br /&gt;
:other logic.&lt;br /&gt;
	&lt;br /&gt;
*Splash.qml&lt;br /&gt;
:This is the loading page that is initially shown when the application starts. It is not intended to be used by skin designers as the logic is very specific. However, acceptable replacements will be included.&lt;br /&gt;
&lt;br /&gt;
*Style.qml&lt;br /&gt;
:This qml file is unique because it does nothing more than serve as a static obeject that contains the description of&lt;br /&gt;
: your skin, both for users and the actual application. its where screen sizes are defined, scaling functions can be&lt;br /&gt;
:located, and anything else relating to the visual style of the application as relating to your skin&lt;/div&gt;</summary>
		<author><name>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=QOrbiter&amp;diff=36706</id>
		<title>QOrbiter</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=QOrbiter&amp;diff=36706"/>
		<updated>2016-04-04T18:12:49Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{versioninfo}}&lt;br /&gt;
[[category:QML]]&lt;br /&gt;
[[category:QOrbiter]]&lt;br /&gt;
[[Category: Programmer&#039;s Guide]]&lt;br /&gt;
qOrbiter is a new LinuxMCE orbiter designed to run on a multitude of devices as well as provide flexible skinning options to make it truly one&#039;s own. The purpose of this document is for documenting the existing skin api of the application moving forward.&lt;br /&gt;
&lt;br /&gt;
=Where To Find It=&lt;br /&gt;
The latest version of qOrbiter can always be found on the developers  [http://langstonball.com/downloads/category/1-qorbiter-downloads site].&lt;br /&gt;
== Installation Instructions ==&lt;br /&gt;
More details on Android installation for the qOrbiter (some applies universally), ca be found at [[Android Orbiter]],&lt;br /&gt;
&lt;br /&gt;
=Concept=&lt;br /&gt;
The concept of this document is to provide those wishing to create new skins the needed access to LinuxMCE data through properties and context objects. While I will not be discussing what they are here, they are discussed in the scope of QML documentation which is a pre-requisite to skinning and working with Qorbiter. &lt;br /&gt;
&lt;br /&gt;
So, for example lets take the context property &amp;quot;deviceid&amp;quot;. This property is added to the QML engine at runtime so that it can be used to provide the current device id of the orbiter. So in effect, this is a macro or keyword if you will that enables access to the underlying LinuxMCE data. As is one of the goals, no programming is required. One of the goals of this document is to outline all of these properties for easy reference in making a new skin.&lt;br /&gt;
&lt;br /&gt;
=Colors &amp;amp; Styling=&lt;br /&gt;
Colors such as background and button colors should be set in the style file of the qml skin. See &#039;Style.qml&#039; for reference on setting up property aliases. &lt;br /&gt;
&lt;br /&gt;
Examples include:&lt;br /&gt;
&lt;br /&gt;
 property color stageBG: &amp;quot;slategray&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Qualified color references include:&lt;br /&gt;
*SVG named colors [http://www.december.com/html/spec/colorsvg.html Reference]&lt;br /&gt;
*Web color notation #112233&lt;br /&gt;
&lt;br /&gt;
==Skins==&lt;br /&gt;
skinsList: listmodel of skins found for the build&lt;br /&gt;
One should always check the official doc&#039;s to see what methods are supported for setting properties.&lt;br /&gt;
&lt;br /&gt;
==Images==&lt;br /&gt;
Images can be loaded in multiple ways and will be discussed here in the future. All that is required is to use the indicated format for local vs remote loading of images&lt;br /&gt;
*Local:   &#039;&#039;&#039;source: &amp;quot;../../../img/icons/kmix.png&amp;quot;&#039;&#039;&#039;&lt;br /&gt;
*Datagrid:   &#039;&#039;&#039;source:&amp;quot;image://datagridimg/&amp;quot;+id&#039;&#039;&#039; &lt;br /&gt;
*File Details Screen Shot or Album cover: &#039;&#039;&#039;source: &amp;quot;image://filedetailsprovider/&amp;quot;+filedetailsclass.screenshot&#039;&#039;&#039;&lt;br /&gt;
Please note more will become available as they are connected to QML.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Developing a qOrbiter skin=&lt;br /&gt;
QOrbiter utilizes QML&#039;s ease of creating themes. The current engine used for themes supports the following&lt;br /&gt;
*Screen Size based themes:&lt;br /&gt;
** &amp;quot;small&amp;quot;  4&amp;quot; diagonal size and up&lt;br /&gt;
** &amp;quot;medium&amp;quot; 7&amp;quot; diagonal size and up&lt;br /&gt;
** &amp;quot;large&amp;quot;  10&amp;quot; diagonal size and up&lt;br /&gt;
** &amp;quot;xlarge&amp;quot; 13&amp;quot; diagonal size and up&lt;br /&gt;
*DPI based themes&lt;br /&gt;
** &amp;quot;ldpi&amp;quot;    120&lt;br /&gt;
** &amp;quot;mdpi&amp;quot;    160&lt;br /&gt;
** &amp;quot;tvdpi&amp;quot;   213&lt;br /&gt;
** &amp;quot;hdpi&amp;quot;    240&lt;br /&gt;
** &amp;quot;xhdpi&amp;quot;   320&lt;br /&gt;
** &amp;quot;xxhdpi&amp;quot;  480&lt;br /&gt;
** &amp;quot;xxxhdpi&amp;quot; 640&lt;br /&gt;
*Platform based themes&lt;br /&gt;
** &amp;quot;linux&amp;quot;&lt;br /&gt;
** &amp;quot;ios&amp;quot;&lt;br /&gt;
** &amp;quot;android&amp;quot;&lt;br /&gt;
** &amp;quot;windows&amp;quot;&lt;br /&gt;
** &amp;quot;raspbian&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==File Structure==&lt;br /&gt;
With the use of the QQmlFileselector we have a file structure that allows for a very flexible approach to themes. If you note the various keys above, such as &amp;quot;medium&amp;quot; or &amp;quot;android&amp;quot;, they correlate to different folders that can exist in a skin. For example: In the default skin, there are special folders for small screens that will only show up and be used in the case of small devices. There is nothing the user needs to do to enable this as the specific variant is selected automatically at runtime, if it is available. &lt;br /&gt;
&lt;br /&gt;
In the linuxMCE source tree, the qml skins can be found at&lt;br /&gt;
 &amp;lt;path-to-source&amp;gt;/qOrbiter/qOrbiter_src/qml/skins&lt;br /&gt;
It is important to note that this is the base folder for all skins and if you view this folder, you will see the &#039;default&#039; skins folder inside. &lt;br /&gt;
* If you provide your own path to the skins folder, please ensure that you have at least the &#039;default&#039; folder.&lt;br /&gt;
** The default qOrbiter installation does not ship with the skins folder, so you should obtain it from http://git.linuxmce.org&lt;br /&gt;
&lt;br /&gt;
Files should be arranged in the following manner. Please note that you are not required to design your skin according to the default skin. This will be a description of how the default skin works and is organized.&lt;br /&gt;
:&amp;lt;folder&amp;gt;name of the skin, in this case &#039;default&#039;&lt;br /&gt;
::Main.qml   The main entry file&lt;br /&gt;
::Style.qml  Contains default properties for the skin&lt;br /&gt;
::qmldir     a file required by Qt for internal purposes.&lt;br /&gt;
:::&amp;lt;folder&amp;gt;images&lt;br /&gt;
:::&amp;lt;folder&amp;gt;screens&lt;br /&gt;
:::&amp;lt;folder&amp;gt;components&lt;br /&gt;
:::&amp;lt;folder&amp;gt;js (if used)&lt;br /&gt;
&lt;br /&gt;
==Adding to the filestructure==&lt;br /&gt;
#in Qt Creator, in the source-tree, right-click on &#039;QML&#039;&lt;br /&gt;
#In the contextmenu select add new&lt;br /&gt;
#choose the template &#039;QML&#039; -&amp;gt; QML File&lt;br /&gt;
#name it &#039;main&#039;&lt;br /&gt;
#for Path, click on choose, in the new window select &#039;new folder&#039; give it the name of your new skin (in lower case letters, otherwise it wont work!) and click on &#039;choose&#039;&lt;br /&gt;
#click continue and then done&lt;br /&gt;
#in Qt Creator, in the source-tree, right-click on &#039;QML&#039;&lt;br /&gt;
#In the contextmenu select add new&lt;br /&gt;
#choose the template &#039;QML&#039; -&amp;gt; QML File&lt;br /&gt;
#name it &#039;Style&#039;&lt;br /&gt;
#for Path, click on choose, in the new window select the folder you created in step 5.&lt;br /&gt;
#click continue and then done&lt;br /&gt;
#in sources -&amp;gt; qorbitermanager.cpp find tskinModel-&amp;gt;addSkin and add a new entry for your skin using the directory name. &lt;br /&gt;
You can now fill main and style files with the content of the same files found in the QML/desktop/default directory.&lt;br /&gt;
Or another pair of main.qml and Style.qml set.&lt;br /&gt;
After this is done you can alter the Style.qml to you likings and your skin can be selected from the styles-menu inside qOrbiter&lt;br /&gt;
&lt;br /&gt;
NOTE: You only see the QML files of the target you selected under project. i.e. if you select for_desktop, you will see the desktop QML files. If you choose for_android, you will see the QML files for Android. What is shown for a target, is defined in the .pro file of qOrbiter.&lt;br /&gt;
&lt;br /&gt;
==Special Qml Pages==&lt;br /&gt;
The following pages are &#039;special&#039; in that they serve critical function for the qml application.&lt;br /&gt;
These should be located in the main directory of your skin.&lt;br /&gt;
i.e. - &amp;lt;mySkin&amp;gt;/Main.qml&lt;br /&gt;
	&lt;br /&gt;
*Main.qml&lt;br /&gt;
:The entire purpose of this qml page is to be the logic behind the runtime of the application. What this means&lt;br /&gt;
:is that this is the highest level page and signals and slots should be added here. Also, the page loading&lt;br /&gt;
:functions need to be implemented here for hiccup free operation. For example, the main.qml file thats is&lt;br /&gt;
:part of the default skin serves as the loader for Screens, emits signals, and provides a constant object for&lt;br /&gt;
:other logic.&lt;br /&gt;
	&lt;br /&gt;
*Splash.qml&lt;br /&gt;
:This is the loading page that is initially shown when the application starts. It is not intended to be used by skin designers as the logic is very specific. However, acceptable replacements will be included.&lt;br /&gt;
&lt;br /&gt;
*Style.qml&lt;br /&gt;
:This qml file is unique because it does nothing more than serve as a static obeject that contains the description of&lt;br /&gt;
: your skin, both for users and the actual application. its where screen sizes are defined, scaling functions can be&lt;br /&gt;
:located, and anything else relating to the visual style of the application as relating to your skin&lt;/div&gt;</summary>
		<author><name>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=QOrbiter&amp;diff=36705</id>
		<title>QOrbiter</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=QOrbiter&amp;diff=36705"/>
		<updated>2016-04-04T18:08:39Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* File Structure */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{versioninfo}}&lt;br /&gt;
[[category:QML]]&lt;br /&gt;
[[category:QOrbiter]]&lt;br /&gt;
[[Category: Programmer&#039;s Guide]]&lt;br /&gt;
qOrbiter is a new LinuxMCE orbiter designed to run on a multitude of devices as well as provide flexible skinning options to make it truly one&#039;s own. The purpose of this document is for documenting the existing skin api of the application moving forward.&lt;br /&gt;
&lt;br /&gt;
=Where To Find It=&lt;br /&gt;
The latest version of qOrbiter can always be found on the developers  [http://langstonball.com/downloads/category/1-qorbiter-downloads site].&lt;br /&gt;
== Installation Instructions ==&lt;br /&gt;
More details on Android installation for the qOrbiter (some applies universally), ca be found at [[Android Orbiter]],&lt;br /&gt;
&lt;br /&gt;
=Concept=&lt;br /&gt;
The concept of this document is to provide those wishing to create new skins the needed access to LinuxMCE data through properties and context objects. While I will not be discussing what they are here, they are discussed in the scope of QML documentation which is a pre-requisite to skinning and working with Qorbiter. &lt;br /&gt;
&lt;br /&gt;
So, for example lets take the context property &amp;quot;deviceid&amp;quot;. This property is added to the QML engine at runtime so that it can be used to provide the current device id of the orbiter. So in effect, this is a macro or keyword if you will that enables access to the underlying LinuxMCE data. As is one of the goals, no programming is required. One of the goals of this document is to outline all of these properties for easy reference in making a new skin.&lt;br /&gt;
&lt;br /&gt;
=Colors &amp;amp; Styling=&lt;br /&gt;
Colors such as background and button colors should be set in the style file of the qml skin. See &#039;Style.qml&#039; for reference on setting up property aliases. &lt;br /&gt;
&lt;br /&gt;
Examples include:&lt;br /&gt;
&lt;br /&gt;
 property color stageBG: &amp;quot;slategray&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Qualified color references include:&lt;br /&gt;
*SVG named colors [http://www.december.com/html/spec/colorsvg.html Reference]&lt;br /&gt;
*Web color notation #112233&lt;br /&gt;
&lt;br /&gt;
==Skins==&lt;br /&gt;
skinsList: listmodel of skins found for the build&lt;br /&gt;
One should always check the official doc&#039;s to see what methods are supported for setting properties.&lt;br /&gt;
&lt;br /&gt;
==Images==&lt;br /&gt;
Images can be loaded in multiple ways and will be discussed here in the future. All that is required is to use the indicated format for local vs remote loading of images&lt;br /&gt;
*Local:   &#039;&#039;&#039;source: &amp;quot;../../../img/icons/kmix.png&amp;quot;&#039;&#039;&#039;&lt;br /&gt;
*Datagrid:   &#039;&#039;&#039;source:&amp;quot;image://datagridimg/&amp;quot;+id&#039;&#039;&#039; &lt;br /&gt;
*File Details Screen Shot or Album cover: &#039;&#039;&#039;source: &amp;quot;image://filedetailsprovider/&amp;quot;+filedetailsclass.screenshot&#039;&#039;&#039;&lt;br /&gt;
Please note more will become available as they are connected to QML.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Developing a qOrbiter skin=&lt;br /&gt;
QOrbiter utilizes QML&#039;s ease of creating themes. The current engine used for themes supports the following&lt;br /&gt;
*Screen Size based themes:&lt;br /&gt;
** &amp;quot;small&amp;quot;  4&amp;quot; diagonal size and up&lt;br /&gt;
** &amp;quot;medium&amp;quot; 7&amp;quot; diagonal size and up&lt;br /&gt;
** &amp;quot;large&amp;quot;  10&amp;quot; diagonal size and up&lt;br /&gt;
** &amp;quot;xlarge&amp;quot; 13&amp;quot; diagonal size and up&lt;br /&gt;
*DPI based themes&lt;br /&gt;
** &amp;quot;ldpi&amp;quot;    120&lt;br /&gt;
** &amp;quot;mdpi&amp;quot;    160&lt;br /&gt;
** &amp;quot;tvdpi&amp;quot;   213&lt;br /&gt;
** &amp;quot;hdpi&amp;quot;    240&lt;br /&gt;
** &amp;quot;xhdpi&amp;quot;   320&lt;br /&gt;
** &amp;quot;xxhdpi&amp;quot;  480&lt;br /&gt;
** &amp;quot;xxxhdpi&amp;quot; 640&lt;br /&gt;
*Platform based themes&lt;br /&gt;
** &amp;quot;linux&amp;quot;&lt;br /&gt;
** &amp;quot;ios&amp;quot;&lt;br /&gt;
** &amp;quot;android&amp;quot;&lt;br /&gt;
** &amp;quot;windows&amp;quot;&lt;br /&gt;
** &amp;quot;raspbian&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==File Structure==&lt;br /&gt;
With the use of the QQmlFileselector we have a file structure that allows for a very flexible approach to themes. If you note the various keys above, such as &amp;quot;medium&amp;quot; or &amp;quot;android&amp;quot;, they correlate to different folders that can exist in a skin. For example: In the default skin, there are special folders for small screens that will only show up and be used in the case of small devices. There is nothing the user needs to do to enable this as the specific variant is selected automatically at runtime, if it is available. &lt;br /&gt;
&lt;br /&gt;
In the linuxMCE source tree, the qml skins can be found at&lt;br /&gt;
 &amp;lt;path-to-source&amp;gt;/qOrbiter/qOrbiter_src/qml/skins&lt;br /&gt;
It is important to note that this is the base folder for all skins and if you view this folder, you will see the &#039;default&#039; skins folder inside. &lt;br /&gt;
* If you provide your own path to the skins folder, please ensure that you have at least the &#039;default&#039; folder.&lt;br /&gt;
** The default qOrbiter installation does not ship with the skins folder, so you should obtain it from http://git.linuxmce.org&lt;br /&gt;
&lt;br /&gt;
Files should be arranged in the following manner. Please note that you are not required to design your skin according to the default skin. This will be a description of how the default skin works and is organized.&lt;br /&gt;
:&amp;lt;folder&amp;gt;name of the skin, in this case &#039;default&#039;&lt;br /&gt;
::Main.qml   The main entry file&lt;br /&gt;
::Style.qml  Contains default properties for the skin&lt;br /&gt;
::qmldir     a file required by Qt for internal purposes.&lt;br /&gt;
:::&amp;lt;folder&amp;gt;images&lt;br /&gt;
:::&amp;lt;folder&amp;gt;screens&lt;br /&gt;
:::&amp;lt;folder&amp;gt;components&lt;br /&gt;
:::&amp;lt;folder&amp;gt;js (if used)&lt;br /&gt;
&lt;br /&gt;
==Adding to the filestructure==&lt;br /&gt;
#in Qt Creator, in the source-tree, right-click on &#039;QML&#039;&lt;br /&gt;
#In the contextmenu select add new&lt;br /&gt;
#choose the template &#039;QML&#039; -&amp;gt; QML File&lt;br /&gt;
#name it &#039;main&#039;&lt;br /&gt;
#for Path, click on choose, in the new window select &#039;new folder&#039; give it the name of your new skin (in lower case letters, otherwise it wont work!) and click on &#039;choose&#039;&lt;br /&gt;
#click continue and then done&lt;br /&gt;
#in Qt Creator, in the source-tree, right-click on &#039;QML&#039;&lt;br /&gt;
#In the contextmenu select add new&lt;br /&gt;
#choose the template &#039;QML&#039; -&amp;gt; QML File&lt;br /&gt;
#name it &#039;Style&#039;&lt;br /&gt;
#for Path, click on choose, in the new window select the folder you created in step 5.&lt;br /&gt;
#click continue and then done&lt;br /&gt;
#in sources -&amp;gt; qorbitermanager.cpp find tskinModel-&amp;gt;addSkin and add a new entry for your skin using the directory name. &lt;br /&gt;
You can now fill main and style files with the content of the same files found in the QML/desktop/default directory.&lt;br /&gt;
Or another pair of main.qml and Style.qml set.&lt;br /&gt;
After this is done you can alter the Style.qml to you likings and your skin can be selected from the styles-menu inside qOrbiter&lt;br /&gt;
&lt;br /&gt;
NOTE: You only see the QML files of the target you selected under project. i.e. if you select for_desktop, you will see the desktop QML files. If you choose for_android, you will see the QML files for Android. What is shown for a target, is defined in the .pro file of qOrbiter.&lt;br /&gt;
&lt;br /&gt;
==Special Qml Pages==&lt;br /&gt;
The following pages are &#039;special&#039; in that they serve critical function for the qml application.&lt;br /&gt;
These should be located in the main directory of your skin.&lt;br /&gt;
i.e. - &amp;lt;mySkin&amp;gt;/Main.qml&lt;br /&gt;
	&lt;br /&gt;
*Main.qml&lt;br /&gt;
:The entire purpose of this qml page is to be the logic behind the runtime of the application. What this means&lt;br /&gt;
:is that this is the highest level page and signals and slots should be added here. Also, the page loading&lt;br /&gt;
:functions need to be implemented here for hiccup free operation. For example, the main.qml file thats is&lt;br /&gt;
:part of the default skin serves as the loader for Screens, emits signals, and provides a constant object for&lt;br /&gt;
:other logic.&lt;br /&gt;
	&lt;br /&gt;
*Splash.qml&lt;br /&gt;
:This is the loading page that is initially shown when the application starts. It is not intended to be used by skin designers as the logic is very specific. However, acceptable replacements will be included.&lt;br /&gt;
&lt;br /&gt;
*Style.qml&lt;br /&gt;
:This qml file is unique because it does nothing more than serve as a static obeject that contains the description of&lt;br /&gt;
: your skin, both for users and the actual application. its where screen sizes are defined, scaling functions can be&lt;br /&gt;
:located, and anything else relating to the visual style of the application as relating to your skin&lt;br /&gt;
&lt;br /&gt;
==Variables==&lt;br /&gt;
&#039;&#039;&#039;DEPRECIATE, USE ABOVE SECTIONS&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;ref dcerouter&#039;&#039;&#039; -                  used as a reference object to call functions&lt;br /&gt;
*&#039;&#039;&#039;QString dcemessage&#039;&#039;&#039; -            orbiter messaging output for display in string format&lt;br /&gt;
*&#039;&#039;&#039;srouterip&#039;&#039;&#039; -                      string of the routerip&lt;br /&gt;
*&#039;&#039;&#039;ref manager&#039;&#039;&#039; -                    reference object for qorbitermanager&lt;br /&gt;
*&#039;&#039;&#039;QObject filedetailsclass&#039;&#039;&#039; -       QObject used for holding file information from the router for use in the UI&lt;br /&gt;
*&#039;&#039;&#039;bool connectedState&#039;&#039;&#039; -            represents the current connected state of the device&lt;br /&gt;
*&#039;&#039;&#039;int iPK_Device&#039;&#039;&#039; -                 the orbiter device number&lt;br /&gt;
*&#039;&#039;&#039;QTime screen1time&#039;&#039;&#039; -              clock. will display in&lt;br /&gt;
*&#039;&#039;&#039;QTime currentDateTime&#039;&#039;&#039; -          current date and time&lt;br /&gt;
*---need to outline &#039;role&#039; data for member data-----&lt;br /&gt;
*&#039;&#039;&#039;DataModel currentRoomLights&#039;&#039;&#039; -    list model of the current room lighting scenarios.&lt;br /&gt;
*&#039;&#039;&#039;DataModel currentRoomMedia&#039;&#039;&#039; -     list model of the current room media scenarios&lt;br /&gt;
*&#039;&#039;&#039;DataModel currentRoomClimate&#039;&#039;&#039; -   list model of current room climate scenarios&lt;br /&gt;
*&#039;&#039;&#039;DataModel currentRoomTelecom&#039;&#039;&#039; -   list model of the current room telecom scenarios&lt;br /&gt;
*&#039;&#039;&#039;DataModel currentRoomSecurity&#039;&#039;&#039; -  list model of the current room security scenarios&lt;br /&gt;
*&#039;&#039;&#039;DataModel userList&#039;&#039;&#039; -             list of the users in the linuxmce system&lt;br /&gt;
*&#039;&#039;&#039;DataModel roomList&#039;&#039;&#039; -             list of the rooms in this home.&lt;br /&gt;
*&#039;&#039;&#039;DataModel mediaplaylist&#039;&#039;&#039; -        the current playlist in list model form&lt;br /&gt;
*&#039;&#039;&#039;DataModel simpleepg&#039;&#039;&#039; -            simple epg model, can sometimes cause router crash.&lt;br /&gt;
*&#039;&#039;&#039;DataModel playlistModel&#039;&#039;&#039; -        list model of the playlist??&lt;br /&gt;
*&#039;&#039;&#039;DataModel skinsList&#039;&#039;&#039; -            list model containing the list of availible and ready skins&lt;br /&gt;
*&#039;&#039;&#039;ListModel screenshotAttributes&#039;&#039;&#039; -    listmodel of attributes correlating to thumbnail/screenshot selection&lt;br /&gt;
*--------------------------------------------------------------------------------&lt;br /&gt;
*&#039;&#039;&#039;QObject dcenowplaying&#039;&#039;&#039; -          QObject containing the properties of the now playing object for this ea&lt;br /&gt;
*&#039;&#039;&#039;QColor nowPlayingColor&#039;&#039;&#039; -         color of now playing button&lt;br /&gt;
*&#039;&#039;&#039;int currentcommandgrp&#039;&#039;&#039; -          int of the current command group being executed&lt;br /&gt;
*&#039;&#039;&#039;int gmediaType&#039;&#039;&#039; -                 int correlating to the mediatype the grid is navigating.&lt;br /&gt;
*&#039;&#039;&#039;int currentroom&#039;&#039;&#039; -                int representing the current EA of the orbiter&lt;br /&gt;
*&#039;&#039;&#039;QString currentuser&#039;&#039;&#039; -            string of the current user&lt;br /&gt;
&lt;br /&gt;
==Functions==&lt;br /&gt;
This will be broken down by section with certain parts relating directly to the screens where they are used&lt;br /&gt;
	&lt;br /&gt;
==HomeScreen==&lt;br /&gt;
Special Screen that doesnt have to be implemented, but since it can be considered the start page, certain&lt;br /&gt;
data is provided to make life easier for everyone.&lt;/div&gt;</summary>
		<author><name>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=QOrbiter&amp;diff=36704</id>
		<title>QOrbiter</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=QOrbiter&amp;diff=36704"/>
		<updated>2016-04-04T18:03:43Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* File Structure */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{versioninfo}}&lt;br /&gt;
[[category:QML]]&lt;br /&gt;
[[category:QOrbiter]]&lt;br /&gt;
[[Category: Programmer&#039;s Guide]]&lt;br /&gt;
qOrbiter is a new LinuxMCE orbiter designed to run on a multitude of devices as well as provide flexible skinning options to make it truly one&#039;s own. The purpose of this document is for documenting the existing skin api of the application moving forward.&lt;br /&gt;
&lt;br /&gt;
=Where To Find It=&lt;br /&gt;
The latest version of qOrbiter can always be found on the developers  [http://langstonball.com/downloads/category/1-qorbiter-downloads site].&lt;br /&gt;
== Installation Instructions ==&lt;br /&gt;
More details on Android installation for the qOrbiter (some applies universally), ca be found at [[Android Orbiter]],&lt;br /&gt;
&lt;br /&gt;
=Concept=&lt;br /&gt;
The concept of this document is to provide those wishing to create new skins the needed access to LinuxMCE data through properties and context objects. While I will not be discussing what they are here, they are discussed in the scope of QML documentation which is a pre-requisite to skinning and working with Qorbiter. &lt;br /&gt;
&lt;br /&gt;
So, for example lets take the context property &amp;quot;deviceid&amp;quot;. This property is added to the QML engine at runtime so that it can be used to provide the current device id of the orbiter. So in effect, this is a macro or keyword if you will that enables access to the underlying LinuxMCE data. As is one of the goals, no programming is required. One of the goals of this document is to outline all of these properties for easy reference in making a new skin.&lt;br /&gt;
&lt;br /&gt;
=Colors &amp;amp; Styling=&lt;br /&gt;
Colors such as background and button colors should be set in the style file of the qml skin. See &#039;Style.qml&#039; for reference on setting up property aliases. &lt;br /&gt;
&lt;br /&gt;
Examples include:&lt;br /&gt;
&lt;br /&gt;
 property color stageBG: &amp;quot;slategray&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Qualified color references include:&lt;br /&gt;
*SVG named colors [http://www.december.com/html/spec/colorsvg.html Reference]&lt;br /&gt;
*Web color notation #112233&lt;br /&gt;
&lt;br /&gt;
==Skins==&lt;br /&gt;
skinsList: listmodel of skins found for the build&lt;br /&gt;
One should always check the official doc&#039;s to see what methods are supported for setting properties.&lt;br /&gt;
&lt;br /&gt;
==Images==&lt;br /&gt;
Images can be loaded in multiple ways and will be discussed here in the future. All that is required is to use the indicated format for local vs remote loading of images&lt;br /&gt;
*Local:   &#039;&#039;&#039;source: &amp;quot;../../../img/icons/kmix.png&amp;quot;&#039;&#039;&#039;&lt;br /&gt;
*Datagrid:   &#039;&#039;&#039;source:&amp;quot;image://datagridimg/&amp;quot;+id&#039;&#039;&#039; &lt;br /&gt;
*File Details Screen Shot or Album cover: &#039;&#039;&#039;source: &amp;quot;image://filedetailsprovider/&amp;quot;+filedetailsclass.screenshot&#039;&#039;&#039;&lt;br /&gt;
Please note more will become available as they are connected to QML.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Developing a qOrbiter skin=&lt;br /&gt;
QOrbiter utilizes QML&#039;s ease of creating themes. The current engine used for themes supports the following&lt;br /&gt;
*Screen Size based themes:&lt;br /&gt;
** &amp;quot;small&amp;quot;  4&amp;quot; diagonal size and up&lt;br /&gt;
** &amp;quot;medium&amp;quot; 7&amp;quot; diagonal size and up&lt;br /&gt;
** &amp;quot;large&amp;quot;  10&amp;quot; diagonal size and up&lt;br /&gt;
** &amp;quot;xlarge&amp;quot; 13&amp;quot; diagonal size and up&lt;br /&gt;
*DPI based themes&lt;br /&gt;
** &amp;quot;ldpi&amp;quot;    120&lt;br /&gt;
** &amp;quot;mdpi&amp;quot;    160&lt;br /&gt;
** &amp;quot;tvdpi&amp;quot;   213&lt;br /&gt;
** &amp;quot;hdpi&amp;quot;    240&lt;br /&gt;
** &amp;quot;xhdpi&amp;quot;   320&lt;br /&gt;
** &amp;quot;xxhdpi&amp;quot;  480&lt;br /&gt;
** &amp;quot;xxxhdpi&amp;quot; 640&lt;br /&gt;
*Platform based themes&lt;br /&gt;
** &amp;quot;linux&amp;quot;&lt;br /&gt;
** &amp;quot;ios&amp;quot;&lt;br /&gt;
** &amp;quot;android&amp;quot;&lt;br /&gt;
** &amp;quot;windows&amp;quot;&lt;br /&gt;
** &amp;quot;raspbian&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==File Structure==&lt;br /&gt;
With the use of the QQmlFileselector we have a file structure that allows for a very flexible approach to themes. If you note the various keys above, such as &amp;quot;medium&amp;quot; or &amp;quot;android&amp;quot;, they correlate to different folders that can exist in a skin. For example: In the default skin, there are special folders for small screens that will only show up and be used in the case of small devices. There is nothing the user needs to do to enable this as the specific variant is selected automatically at runtime, if it is available. &lt;br /&gt;
&lt;br /&gt;
In the linuxMCE source tree, the qml skins can be found at&lt;br /&gt;
 &amp;lt;path-to-source&amp;gt;/qOrbiter/qOrbiter_src/qml/skins&lt;br /&gt;
It is important to note that this is the base folder for all skins and if you view this folder, you will see the &#039;default&#039; skins folder inside. &lt;br /&gt;
* If you provide your own path to the skins folder, please ensure that you have at least the &#039;default&#039; folder.&lt;br /&gt;
** The default qOrbiter installation does not ship with the skins folder, so you should obtain it from http://git.linuxmce.org&lt;br /&gt;
&lt;br /&gt;
Files should be arranged in the following manner&lt;br /&gt;
:&amp;lt;folder&amp;gt;name of the skin&lt;br /&gt;
::Main.qml&lt;br /&gt;
::Style.qml&lt;br /&gt;
::qmldir&lt;br /&gt;
::Splash.qml&lt;br /&gt;
:::&amp;lt;folder&amp;gt;images&lt;br /&gt;
:::&amp;lt;folder&amp;gt;screens&lt;br /&gt;
:::&amp;lt;folder&amp;gt;components&lt;br /&gt;
:::&amp;lt;folder&amp;gt;js (if used)&lt;br /&gt;
&lt;br /&gt;
==Adding to the filestructure==&lt;br /&gt;
#in Qt Creator, in the source-tree, right-click on &#039;QML&#039;&lt;br /&gt;
#In the contextmenu select add new&lt;br /&gt;
#choose the template &#039;QML&#039; -&amp;gt; QML File&lt;br /&gt;
#name it &#039;main&#039;&lt;br /&gt;
#for Path, click on choose, in the new window select &#039;new folder&#039; give it the name of your new skin (in lower case letters, otherwise it wont work!) and click on &#039;choose&#039;&lt;br /&gt;
#click continue and then done&lt;br /&gt;
#in Qt Creator, in the source-tree, right-click on &#039;QML&#039;&lt;br /&gt;
#In the contextmenu select add new&lt;br /&gt;
#choose the template &#039;QML&#039; -&amp;gt; QML File&lt;br /&gt;
#name it &#039;Style&#039;&lt;br /&gt;
#for Path, click on choose, in the new window select the folder you created in step 5.&lt;br /&gt;
#click continue and then done&lt;br /&gt;
#in sources -&amp;gt; qorbitermanager.cpp find tskinModel-&amp;gt;addSkin and add a new entry for your skin using the directory name. &lt;br /&gt;
You can now fill main and style files with the content of the same files found in the QML/desktop/default directory.&lt;br /&gt;
Or another pair of main.qml and Style.qml set.&lt;br /&gt;
After this is done you can alter the Style.qml to you likings and your skin can be selected from the styles-menu inside qOrbiter&lt;br /&gt;
&lt;br /&gt;
NOTE: You only see the QML files of the target you selected under project. i.e. if you select for_desktop, you will see the desktop QML files. If you choose for_android, you will see the QML files for Android. What is shown for a target, is defined in the .pro file of qOrbiter.&lt;br /&gt;
&lt;br /&gt;
==Special Qml Pages==&lt;br /&gt;
The following pages are &#039;special&#039; in that they serve critical function for the qml application.&lt;br /&gt;
These should be located in the main directory of your skin.&lt;br /&gt;
i.e. - &amp;lt;mySkin&amp;gt;/Main.qml&lt;br /&gt;
	&lt;br /&gt;
*Main.qml&lt;br /&gt;
:The entire purpose of this qml page is to be the logic behind the runtime of the application. What this means&lt;br /&gt;
:is that this is the highest level page and signals and slots should be added here. Also, the page loading&lt;br /&gt;
:functions need to be implemented here for hiccup free operation. For example, the main.qml file thats is&lt;br /&gt;
:part of the default skin serves as the loader for Screens, emits signals, and provides a constant object for&lt;br /&gt;
:other logic.&lt;br /&gt;
	&lt;br /&gt;
*Splash.qml&lt;br /&gt;
:This is the loading page that is initially shown when the application starts. It is not intended to be used by skin designers as the logic is very specific. However, acceptable replacements will be included.&lt;br /&gt;
&lt;br /&gt;
*Style.qml&lt;br /&gt;
:This qml file is unique because it does nothing more than serve as a static obeject that contains the description of&lt;br /&gt;
: your skin, both for users and the actual application. its where screen sizes are defined, scaling functions can be&lt;br /&gt;
:located, and anything else relating to the visual style of the application as relating to your skin&lt;br /&gt;
&lt;br /&gt;
==Variables==&lt;br /&gt;
&#039;&#039;&#039;DEPRECIATE, USE ABOVE SECTIONS&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;ref dcerouter&#039;&#039;&#039; -                  used as a reference object to call functions&lt;br /&gt;
*&#039;&#039;&#039;QString dcemessage&#039;&#039;&#039; -            orbiter messaging output for display in string format&lt;br /&gt;
*&#039;&#039;&#039;srouterip&#039;&#039;&#039; -                      string of the routerip&lt;br /&gt;
*&#039;&#039;&#039;ref manager&#039;&#039;&#039; -                    reference object for qorbitermanager&lt;br /&gt;
*&#039;&#039;&#039;QObject filedetailsclass&#039;&#039;&#039; -       QObject used for holding file information from the router for use in the UI&lt;br /&gt;
*&#039;&#039;&#039;bool connectedState&#039;&#039;&#039; -            represents the current connected state of the device&lt;br /&gt;
*&#039;&#039;&#039;int iPK_Device&#039;&#039;&#039; -                 the orbiter device number&lt;br /&gt;
*&#039;&#039;&#039;QTime screen1time&#039;&#039;&#039; -              clock. will display in&lt;br /&gt;
*&#039;&#039;&#039;QTime currentDateTime&#039;&#039;&#039; -          current date and time&lt;br /&gt;
*---need to outline &#039;role&#039; data for member data-----&lt;br /&gt;
*&#039;&#039;&#039;DataModel currentRoomLights&#039;&#039;&#039; -    list model of the current room lighting scenarios.&lt;br /&gt;
*&#039;&#039;&#039;DataModel currentRoomMedia&#039;&#039;&#039; -     list model of the current room media scenarios&lt;br /&gt;
*&#039;&#039;&#039;DataModel currentRoomClimate&#039;&#039;&#039; -   list model of current room climate scenarios&lt;br /&gt;
*&#039;&#039;&#039;DataModel currentRoomTelecom&#039;&#039;&#039; -   list model of the current room telecom scenarios&lt;br /&gt;
*&#039;&#039;&#039;DataModel currentRoomSecurity&#039;&#039;&#039; -  list model of the current room security scenarios&lt;br /&gt;
*&#039;&#039;&#039;DataModel userList&#039;&#039;&#039; -             list of the users in the linuxmce system&lt;br /&gt;
*&#039;&#039;&#039;DataModel roomList&#039;&#039;&#039; -             list of the rooms in this home.&lt;br /&gt;
*&#039;&#039;&#039;DataModel mediaplaylist&#039;&#039;&#039; -        the current playlist in list model form&lt;br /&gt;
*&#039;&#039;&#039;DataModel simpleepg&#039;&#039;&#039; -            simple epg model, can sometimes cause router crash.&lt;br /&gt;
*&#039;&#039;&#039;DataModel playlistModel&#039;&#039;&#039; -        list model of the playlist??&lt;br /&gt;
*&#039;&#039;&#039;DataModel skinsList&#039;&#039;&#039; -            list model containing the list of availible and ready skins&lt;br /&gt;
*&#039;&#039;&#039;ListModel screenshotAttributes&#039;&#039;&#039; -    listmodel of attributes correlating to thumbnail/screenshot selection&lt;br /&gt;
*--------------------------------------------------------------------------------&lt;br /&gt;
*&#039;&#039;&#039;QObject dcenowplaying&#039;&#039;&#039; -          QObject containing the properties of the now playing object for this ea&lt;br /&gt;
*&#039;&#039;&#039;QColor nowPlayingColor&#039;&#039;&#039; -         color of now playing button&lt;br /&gt;
*&#039;&#039;&#039;int currentcommandgrp&#039;&#039;&#039; -          int of the current command group being executed&lt;br /&gt;
*&#039;&#039;&#039;int gmediaType&#039;&#039;&#039; -                 int correlating to the mediatype the grid is navigating.&lt;br /&gt;
*&#039;&#039;&#039;int currentroom&#039;&#039;&#039; -                int representing the current EA of the orbiter&lt;br /&gt;
*&#039;&#039;&#039;QString currentuser&#039;&#039;&#039; -            string of the current user&lt;br /&gt;
&lt;br /&gt;
==Functions==&lt;br /&gt;
This will be broken down by section with certain parts relating directly to the screens where they are used&lt;br /&gt;
	&lt;br /&gt;
==HomeScreen==&lt;br /&gt;
Special Screen that doesnt have to be implemented, but since it can be considered the start page, certain&lt;br /&gt;
data is provided to make life easier for everyone.&lt;/div&gt;</summary>
		<author><name>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=QOrbiter&amp;diff=36703</id>
		<title>QOrbiter</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=QOrbiter&amp;diff=36703"/>
		<updated>2016-04-04T18:02:32Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* Developing a qOrbiter skin */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{versioninfo}}&lt;br /&gt;
[[category:QML]]&lt;br /&gt;
[[category:QOrbiter]]&lt;br /&gt;
[[Category: Programmer&#039;s Guide]]&lt;br /&gt;
qOrbiter is a new LinuxMCE orbiter designed to run on a multitude of devices as well as provide flexible skinning options to make it truly one&#039;s own. The purpose of this document is for documenting the existing skin api of the application moving forward.&lt;br /&gt;
&lt;br /&gt;
=Where To Find It=&lt;br /&gt;
The latest version of qOrbiter can always be found on the developers  [http://langstonball.com/downloads/category/1-qorbiter-downloads site].&lt;br /&gt;
== Installation Instructions ==&lt;br /&gt;
More details on Android installation for the qOrbiter (some applies universally), ca be found at [[Android Orbiter]],&lt;br /&gt;
&lt;br /&gt;
=Concept=&lt;br /&gt;
The concept of this document is to provide those wishing to create new skins the needed access to LinuxMCE data through properties and context objects. While I will not be discussing what they are here, they are discussed in the scope of QML documentation which is a pre-requisite to skinning and working with Qorbiter. &lt;br /&gt;
&lt;br /&gt;
So, for example lets take the context property &amp;quot;deviceid&amp;quot;. This property is added to the QML engine at runtime so that it can be used to provide the current device id of the orbiter. So in effect, this is a macro or keyword if you will that enables access to the underlying LinuxMCE data. As is one of the goals, no programming is required. One of the goals of this document is to outline all of these properties for easy reference in making a new skin.&lt;br /&gt;
&lt;br /&gt;
=Colors &amp;amp; Styling=&lt;br /&gt;
Colors such as background and button colors should be set in the style file of the qml skin. See &#039;Style.qml&#039; for reference on setting up property aliases. &lt;br /&gt;
&lt;br /&gt;
Examples include:&lt;br /&gt;
&lt;br /&gt;
 property color stageBG: &amp;quot;slategray&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Qualified color references include:&lt;br /&gt;
*SVG named colors [http://www.december.com/html/spec/colorsvg.html Reference]&lt;br /&gt;
*Web color notation #112233&lt;br /&gt;
&lt;br /&gt;
==Skins==&lt;br /&gt;
skinsList: listmodel of skins found for the build&lt;br /&gt;
One should always check the official doc&#039;s to see what methods are supported for setting properties.&lt;br /&gt;
&lt;br /&gt;
==Images==&lt;br /&gt;
Images can be loaded in multiple ways and will be discussed here in the future. All that is required is to use the indicated format for local vs remote loading of images&lt;br /&gt;
*Local:   &#039;&#039;&#039;source: &amp;quot;../../../img/icons/kmix.png&amp;quot;&#039;&#039;&#039;&lt;br /&gt;
*Datagrid:   &#039;&#039;&#039;source:&amp;quot;image://datagridimg/&amp;quot;+id&#039;&#039;&#039; &lt;br /&gt;
*File Details Screen Shot or Album cover: &#039;&#039;&#039;source: &amp;quot;image://filedetailsprovider/&amp;quot;+filedetailsclass.screenshot&#039;&#039;&#039;&lt;br /&gt;
Please note more will become available as they are connected to QML.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Developing a qOrbiter skin=&lt;br /&gt;
QOrbiter utilizes QML&#039;s ease of creating themes. The current engine used for themes supports the following&lt;br /&gt;
*Screen Size based themes:&lt;br /&gt;
** &amp;quot;small&amp;quot;  4&amp;quot; diagonal size and up&lt;br /&gt;
** &amp;quot;medium&amp;quot; 7&amp;quot; diagonal size and up&lt;br /&gt;
** &amp;quot;large&amp;quot;  10&amp;quot; diagonal size and up&lt;br /&gt;
** &amp;quot;xlarge&amp;quot; 13&amp;quot; diagonal size and up&lt;br /&gt;
*DPI based themes&lt;br /&gt;
** &amp;quot;ldpi&amp;quot;    120&lt;br /&gt;
** &amp;quot;mdpi&amp;quot;    160&lt;br /&gt;
** &amp;quot;tvdpi&amp;quot;   213&lt;br /&gt;
** &amp;quot;hdpi&amp;quot;    240&lt;br /&gt;
** &amp;quot;xhdpi&amp;quot;   320&lt;br /&gt;
** &amp;quot;xxhdpi&amp;quot;  480&lt;br /&gt;
** &amp;quot;xxxhdpi&amp;quot; 640&lt;br /&gt;
*Platform based themes&lt;br /&gt;
** &amp;quot;linux&amp;quot;&lt;br /&gt;
** &amp;quot;ios&amp;quot;&lt;br /&gt;
** &amp;quot;android&amp;quot;&lt;br /&gt;
** &amp;quot;windows&amp;quot;&lt;br /&gt;
** &amp;quot;raspbian&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==File Structure==&lt;br /&gt;
With the use of the QQmlFileselector we have a file structure that allows for a very flexible approach to themes. If you note the various keys above, such as &amp;quot;medium&amp;quot; or &amp;quot;android&amp;quot;, they correlate to different folders that can exist in a skin. For example: In the default skin, there are special folders for small screens that will only show up and be used in the case of small devices. There is nothing the user needs to do to enable this as the specific variant is selected automatically at runtime, if it is available. &lt;br /&gt;
&lt;br /&gt;
In the linuxMCE source tree, the qml skins can be found at&lt;br /&gt;
 &amp;lt;path-to-source&amp;gt;/qOrbiter/qOrbiter_src/qml/skins&lt;br /&gt;
It is important to note that this is the base folder for all skins and if you view this folder, you will see the &#039;default&#039; skins folder inside. &lt;br /&gt;
* If you provide your own path to the skins folder, please ensure that you have at least the &#039;default&#039; folder.&lt;br /&gt;
** The default qOrbiter installation does not ship with the skins folder, so you should obtain it from git.linuxmce.org&lt;br /&gt;
Files should be arranged in the following manner&lt;br /&gt;
:&amp;lt;folder&amp;gt;name of the skin&lt;br /&gt;
::Main.qml&lt;br /&gt;
::Style.qml&lt;br /&gt;
::qmldir&lt;br /&gt;
::Splash.qml&lt;br /&gt;
:::&amp;lt;folder&amp;gt;images&lt;br /&gt;
:::&amp;lt;folder&amp;gt;screens&lt;br /&gt;
:::&amp;lt;folder&amp;gt;components&lt;br /&gt;
:::&amp;lt;folder&amp;gt;js (if used)&lt;br /&gt;
&lt;br /&gt;
==Adding to the filestructure==&lt;br /&gt;
#in Qt Creator, in the source-tree, right-click on &#039;QML&#039;&lt;br /&gt;
#In the contextmenu select add new&lt;br /&gt;
#choose the template &#039;QML&#039; -&amp;gt; QML File&lt;br /&gt;
#name it &#039;main&#039;&lt;br /&gt;
#for Path, click on choose, in the new window select &#039;new folder&#039; give it the name of your new skin (in lower case letters, otherwise it wont work!) and click on &#039;choose&#039;&lt;br /&gt;
#click continue and then done&lt;br /&gt;
#in Qt Creator, in the source-tree, right-click on &#039;QML&#039;&lt;br /&gt;
#In the contextmenu select add new&lt;br /&gt;
#choose the template &#039;QML&#039; -&amp;gt; QML File&lt;br /&gt;
#name it &#039;Style&#039;&lt;br /&gt;
#for Path, click on choose, in the new window select the folder you created in step 5.&lt;br /&gt;
#click continue and then done&lt;br /&gt;
#in sources -&amp;gt; qorbitermanager.cpp find tskinModel-&amp;gt;addSkin and add a new entry for your skin using the directory name. &lt;br /&gt;
You can now fill main and style files with the content of the same files found in the QML/desktop/default directory.&lt;br /&gt;
Or another pair of main.qml and Style.qml set.&lt;br /&gt;
After this is done you can alter the Style.qml to you likings and your skin can be selected from the styles-menu inside qOrbiter&lt;br /&gt;
&lt;br /&gt;
NOTE: You only see the QML files of the target you selected under project. i.e. if you select for_desktop, you will see the desktop QML files. If you choose for_android, you will see the QML files for Android. What is shown for a target, is defined in the .pro file of qOrbiter.&lt;br /&gt;
&lt;br /&gt;
==Special Qml Pages==&lt;br /&gt;
The following pages are &#039;special&#039; in that they serve critical function for the qml application.&lt;br /&gt;
These should be located in the main directory of your skin.&lt;br /&gt;
i.e. - &amp;lt;mySkin&amp;gt;/Main.qml&lt;br /&gt;
	&lt;br /&gt;
*Main.qml&lt;br /&gt;
:The entire purpose of this qml page is to be the logic behind the runtime of the application. What this means&lt;br /&gt;
:is that this is the highest level page and signals and slots should be added here. Also, the page loading&lt;br /&gt;
:functions need to be implemented here for hiccup free operation. For example, the main.qml file thats is&lt;br /&gt;
:part of the default skin serves as the loader for Screens, emits signals, and provides a constant object for&lt;br /&gt;
:other logic.&lt;br /&gt;
	&lt;br /&gt;
*Splash.qml&lt;br /&gt;
:This is the loading page that is initially shown when the application starts. It is not intended to be used by skin designers as the logic is very specific. However, acceptable replacements will be included.&lt;br /&gt;
&lt;br /&gt;
*Style.qml&lt;br /&gt;
:This qml file is unique because it does nothing more than serve as a static obeject that contains the description of&lt;br /&gt;
: your skin, both for users and the actual application. its where screen sizes are defined, scaling functions can be&lt;br /&gt;
:located, and anything else relating to the visual style of the application as relating to your skin&lt;br /&gt;
&lt;br /&gt;
==Variables==&lt;br /&gt;
&#039;&#039;&#039;DEPRECIATE, USE ABOVE SECTIONS&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;ref dcerouter&#039;&#039;&#039; -                  used as a reference object to call functions&lt;br /&gt;
*&#039;&#039;&#039;QString dcemessage&#039;&#039;&#039; -            orbiter messaging output for display in string format&lt;br /&gt;
*&#039;&#039;&#039;srouterip&#039;&#039;&#039; -                      string of the routerip&lt;br /&gt;
*&#039;&#039;&#039;ref manager&#039;&#039;&#039; -                    reference object for qorbitermanager&lt;br /&gt;
*&#039;&#039;&#039;QObject filedetailsclass&#039;&#039;&#039; -       QObject used for holding file information from the router for use in the UI&lt;br /&gt;
*&#039;&#039;&#039;bool connectedState&#039;&#039;&#039; -            represents the current connected state of the device&lt;br /&gt;
*&#039;&#039;&#039;int iPK_Device&#039;&#039;&#039; -                 the orbiter device number&lt;br /&gt;
*&#039;&#039;&#039;QTime screen1time&#039;&#039;&#039; -              clock. will display in&lt;br /&gt;
*&#039;&#039;&#039;QTime currentDateTime&#039;&#039;&#039; -          current date and time&lt;br /&gt;
*---need to outline &#039;role&#039; data for member data-----&lt;br /&gt;
*&#039;&#039;&#039;DataModel currentRoomLights&#039;&#039;&#039; -    list model of the current room lighting scenarios.&lt;br /&gt;
*&#039;&#039;&#039;DataModel currentRoomMedia&#039;&#039;&#039; -     list model of the current room media scenarios&lt;br /&gt;
*&#039;&#039;&#039;DataModel currentRoomClimate&#039;&#039;&#039; -   list model of current room climate scenarios&lt;br /&gt;
*&#039;&#039;&#039;DataModel currentRoomTelecom&#039;&#039;&#039; -   list model of the current room telecom scenarios&lt;br /&gt;
*&#039;&#039;&#039;DataModel currentRoomSecurity&#039;&#039;&#039; -  list model of the current room security scenarios&lt;br /&gt;
*&#039;&#039;&#039;DataModel userList&#039;&#039;&#039; -             list of the users in the linuxmce system&lt;br /&gt;
*&#039;&#039;&#039;DataModel roomList&#039;&#039;&#039; -             list of the rooms in this home.&lt;br /&gt;
*&#039;&#039;&#039;DataModel mediaplaylist&#039;&#039;&#039; -        the current playlist in list model form&lt;br /&gt;
*&#039;&#039;&#039;DataModel simpleepg&#039;&#039;&#039; -            simple epg model, can sometimes cause router crash.&lt;br /&gt;
*&#039;&#039;&#039;DataModel playlistModel&#039;&#039;&#039; -        list model of the playlist??&lt;br /&gt;
*&#039;&#039;&#039;DataModel skinsList&#039;&#039;&#039; -            list model containing the list of availible and ready skins&lt;br /&gt;
*&#039;&#039;&#039;ListModel screenshotAttributes&#039;&#039;&#039; -    listmodel of attributes correlating to thumbnail/screenshot selection&lt;br /&gt;
*--------------------------------------------------------------------------------&lt;br /&gt;
*&#039;&#039;&#039;QObject dcenowplaying&#039;&#039;&#039; -          QObject containing the properties of the now playing object for this ea&lt;br /&gt;
*&#039;&#039;&#039;QColor nowPlayingColor&#039;&#039;&#039; -         color of now playing button&lt;br /&gt;
*&#039;&#039;&#039;int currentcommandgrp&#039;&#039;&#039; -          int of the current command group being executed&lt;br /&gt;
*&#039;&#039;&#039;int gmediaType&#039;&#039;&#039; -                 int correlating to the mediatype the grid is navigating.&lt;br /&gt;
*&#039;&#039;&#039;int currentroom&#039;&#039;&#039; -                int representing the current EA of the orbiter&lt;br /&gt;
*&#039;&#039;&#039;QString currentuser&#039;&#039;&#039; -            string of the current user&lt;br /&gt;
&lt;br /&gt;
==Functions==&lt;br /&gt;
This will be broken down by section with certain parts relating directly to the screens where they are used&lt;br /&gt;
	&lt;br /&gt;
==HomeScreen==&lt;br /&gt;
Special Screen that doesnt have to be implemented, but since it can be considered the start page, certain&lt;br /&gt;
data is provided to make life easier for everyone.&lt;/div&gt;</summary>
		<author><name>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=QOrbiter&amp;diff=36702</id>
		<title>QOrbiter</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=QOrbiter&amp;diff=36702"/>
		<updated>2016-04-04T17:48:45Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* Developing a qOrbiter skin */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{versioninfo}}&lt;br /&gt;
[[category:QML]]&lt;br /&gt;
[[category:QOrbiter]]&lt;br /&gt;
[[Category: Programmer&#039;s Guide]]&lt;br /&gt;
qOrbiter is a new LinuxMCE orbiter designed to run on a multitude of devices as well as provide flexible skinning options to make it truly one&#039;s own. The purpose of this document is for documenting the existing skin api of the application moving forward.&lt;br /&gt;
&lt;br /&gt;
=Where To Find It=&lt;br /&gt;
The latest version of qOrbiter can always be found on the developers  [http://langstonball.com/downloads/category/1-qorbiter-downloads site].&lt;br /&gt;
== Installation Instructions ==&lt;br /&gt;
More details on Android installation for the qOrbiter (some applies universally), ca be found at [[Android Orbiter]],&lt;br /&gt;
&lt;br /&gt;
=Concept=&lt;br /&gt;
The concept of this document is to provide those wishing to create new skins the needed access to LinuxMCE data through properties and context objects. While I will not be discussing what they are here, they are discussed in the scope of QML documentation which is a pre-requisite to skinning and working with Qorbiter. &lt;br /&gt;
&lt;br /&gt;
So, for example lets take the context property &amp;quot;deviceid&amp;quot;. This property is added to the QML engine at runtime so that it can be used to provide the current device id of the orbiter. So in effect, this is a macro or keyword if you will that enables access to the underlying LinuxMCE data. As is one of the goals, no programming is required. One of the goals of this document is to outline all of these properties for easy reference in making a new skin.&lt;br /&gt;
&lt;br /&gt;
=Colors &amp;amp; Styling=&lt;br /&gt;
Colors such as background and button colors should be set in the style file of the qml skin. See &#039;Style.qml&#039; for reference on setting up property aliases. &lt;br /&gt;
&lt;br /&gt;
Examples include:&lt;br /&gt;
&lt;br /&gt;
 property color stageBG: &amp;quot;slategray&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Qualified color references include:&lt;br /&gt;
*SVG named colors [http://www.december.com/html/spec/colorsvg.html Reference]&lt;br /&gt;
*Web color notation #112233&lt;br /&gt;
&lt;br /&gt;
==Skins==&lt;br /&gt;
skinsList: listmodel of skins found for the build&lt;br /&gt;
One should always check the official doc&#039;s to see what methods are supported for setting properties.&lt;br /&gt;
&lt;br /&gt;
==Images==&lt;br /&gt;
Images can be loaded in multiple ways and will be discussed here in the future. All that is required is to use the indicated format for local vs remote loading of images&lt;br /&gt;
*Local:   &#039;&#039;&#039;source: &amp;quot;../../../img/icons/kmix.png&amp;quot;&#039;&#039;&#039;&lt;br /&gt;
*Datagrid:   &#039;&#039;&#039;source:&amp;quot;image://datagridimg/&amp;quot;+id&#039;&#039;&#039; &lt;br /&gt;
*File Details Screen Shot or Album cover: &#039;&#039;&#039;source: &amp;quot;image://filedetailsprovider/&amp;quot;+filedetailsclass.screenshot&#039;&#039;&#039;&lt;br /&gt;
Please note more will become available as they are connected to QML.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Developing a qOrbiter skin=&lt;br /&gt;
QOrbiter utilizes QML&#039;s ease of creating themes. The current engine used for themes supports the following&lt;br /&gt;
*Screen Size based themes:&lt;br /&gt;
** &amp;quot;small&amp;quot;  4&amp;quot; diagonal size and up&lt;br /&gt;
** &amp;quot;medium&amp;quot; 7&amp;quot; diagonal size and up&lt;br /&gt;
** &amp;quot;large&amp;quot;  10&amp;quot; diagonal size and up&lt;br /&gt;
** &amp;quot;xlarge&amp;quot; 13&amp;quot; diagonal size and up&lt;br /&gt;
*DPI based themes&lt;br /&gt;
** &amp;quot;ldpi&amp;quot;    120&lt;br /&gt;
** &amp;quot;mdpi&amp;quot;    160&lt;br /&gt;
** &amp;quot;tvdpi&amp;quot;   213&lt;br /&gt;
** &amp;quot;hdpi&amp;quot;    240&lt;br /&gt;
** &amp;quot;xhdpi&amp;quot;   320&lt;br /&gt;
** &amp;quot;xxhdpi&amp;quot;  480&lt;br /&gt;
** &amp;quot;xxxhdpi&amp;quot; 640&lt;br /&gt;
*Platform based themes&lt;br /&gt;
** &amp;quot;linux&amp;quot;&lt;br /&gt;
** &amp;quot;ios&amp;quot;&lt;br /&gt;
** &amp;quot;android&amp;quot;&lt;br /&gt;
** &amp;quot;windows&amp;quot;&lt;br /&gt;
** &amp;quot;raspbian&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==File Structure==&lt;br /&gt;
Files should be arranged in the following manner&lt;br /&gt;
:&amp;lt;folder&amp;gt;name of the skin&lt;br /&gt;
::Main.qml&lt;br /&gt;
::Style.qml&lt;br /&gt;
::qmldir&lt;br /&gt;
::Splash.qml&lt;br /&gt;
:::&amp;lt;folder&amp;gt;images&lt;br /&gt;
:::&amp;lt;folder&amp;gt;screens&lt;br /&gt;
:::&amp;lt;folder&amp;gt;components&lt;br /&gt;
:::&amp;lt;folder&amp;gt;js (if used)&lt;br /&gt;
&lt;br /&gt;
==Adding to the filestructure==&lt;br /&gt;
#in Qt Creator, in the source-tree, right-click on &#039;QML&#039;&lt;br /&gt;
#In the contextmenu select add new&lt;br /&gt;
#choose the template &#039;QML&#039; -&amp;gt; QML File&lt;br /&gt;
#name it &#039;main&#039;&lt;br /&gt;
#for Path, click on choose, in the new window select &#039;new folder&#039; give it the name of your new skin (in lower case letters, otherwise it wont work!) and click on &#039;choose&#039;&lt;br /&gt;
#click continue and then done&lt;br /&gt;
#in Qt Creator, in the source-tree, right-click on &#039;QML&#039;&lt;br /&gt;
#In the contextmenu select add new&lt;br /&gt;
#choose the template &#039;QML&#039; -&amp;gt; QML File&lt;br /&gt;
#name it &#039;Style&#039;&lt;br /&gt;
#for Path, click on choose, in the new window select the folder you created in step 5.&lt;br /&gt;
#click continue and then done&lt;br /&gt;
#in sources -&amp;gt; qorbitermanager.cpp find tskinModel-&amp;gt;addSkin and add a new entry for your skin using the directory name. &lt;br /&gt;
You can now fill main and style files with the content of the same files found in the QML/desktop/default directory.&lt;br /&gt;
Or another pair of main.qml and Style.qml set.&lt;br /&gt;
After this is done you can alter the Style.qml to you likings and your skin can be selected from the styles-menu inside qOrbiter&lt;br /&gt;
&lt;br /&gt;
NOTE: You only see the QML files of the target you selected under project. i.e. if you select for_desktop, you will see the desktop QML files. If you choose for_android, you will see the QML files for Android. What is shown for a target, is defined in the .pro file of qOrbiter.&lt;br /&gt;
&lt;br /&gt;
==Special Qml Pages==&lt;br /&gt;
The following pages are &#039;special&#039; in that they serve critical function for the qml application.&lt;br /&gt;
These should be located in the main directory of your skin.&lt;br /&gt;
i.e. - &amp;lt;mySkin&amp;gt;/Main.qml&lt;br /&gt;
	&lt;br /&gt;
*Main.qml&lt;br /&gt;
:The entire purpose of this qml page is to be the logic behind the runtime of the application. What this means&lt;br /&gt;
:is that this is the highest level page and signals and slots should be added here. Also, the page loading&lt;br /&gt;
:functions need to be implemented here for hiccup free operation. For example, the main.qml file thats is&lt;br /&gt;
:part of the default skin serves as the loader for Screens, emits signals, and provides a constant object for&lt;br /&gt;
:other logic.&lt;br /&gt;
	&lt;br /&gt;
*Splash.qml&lt;br /&gt;
:This is the loading page that is initially shown when the application starts. It is not intended to be used by skin designers as the logic is very specific. However, acceptable replacements will be included.&lt;br /&gt;
&lt;br /&gt;
*Style.qml&lt;br /&gt;
:This qml file is unique because it does nothing more than serve as a static obeject that contains the description of&lt;br /&gt;
: your skin, both for users and the actual application. its where screen sizes are defined, scaling functions can be&lt;br /&gt;
:located, and anything else relating to the visual style of the application as relating to your skin&lt;br /&gt;
&lt;br /&gt;
==Variables==&lt;br /&gt;
&#039;&#039;&#039;DEPRECIATE, USE ABOVE SECTIONS&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;ref dcerouter&#039;&#039;&#039; -                  used as a reference object to call functions&lt;br /&gt;
*&#039;&#039;&#039;QString dcemessage&#039;&#039;&#039; -            orbiter messaging output for display in string format&lt;br /&gt;
*&#039;&#039;&#039;srouterip&#039;&#039;&#039; -                      string of the routerip&lt;br /&gt;
*&#039;&#039;&#039;ref manager&#039;&#039;&#039; -                    reference object for qorbitermanager&lt;br /&gt;
*&#039;&#039;&#039;QObject filedetailsclass&#039;&#039;&#039; -       QObject used for holding file information from the router for use in the UI&lt;br /&gt;
*&#039;&#039;&#039;bool connectedState&#039;&#039;&#039; -            represents the current connected state of the device&lt;br /&gt;
*&#039;&#039;&#039;int iPK_Device&#039;&#039;&#039; -                 the orbiter device number&lt;br /&gt;
*&#039;&#039;&#039;QTime screen1time&#039;&#039;&#039; -              clock. will display in&lt;br /&gt;
*&#039;&#039;&#039;QTime currentDateTime&#039;&#039;&#039; -          current date and time&lt;br /&gt;
*---need to outline &#039;role&#039; data for member data-----&lt;br /&gt;
*&#039;&#039;&#039;DataModel currentRoomLights&#039;&#039;&#039; -    list model of the current room lighting scenarios.&lt;br /&gt;
*&#039;&#039;&#039;DataModel currentRoomMedia&#039;&#039;&#039; -     list model of the current room media scenarios&lt;br /&gt;
*&#039;&#039;&#039;DataModel currentRoomClimate&#039;&#039;&#039; -   list model of current room climate scenarios&lt;br /&gt;
*&#039;&#039;&#039;DataModel currentRoomTelecom&#039;&#039;&#039; -   list model of the current room telecom scenarios&lt;br /&gt;
*&#039;&#039;&#039;DataModel currentRoomSecurity&#039;&#039;&#039; -  list model of the current room security scenarios&lt;br /&gt;
*&#039;&#039;&#039;DataModel userList&#039;&#039;&#039; -             list of the users in the linuxmce system&lt;br /&gt;
*&#039;&#039;&#039;DataModel roomList&#039;&#039;&#039; -             list of the rooms in this home.&lt;br /&gt;
*&#039;&#039;&#039;DataModel mediaplaylist&#039;&#039;&#039; -        the current playlist in list model form&lt;br /&gt;
*&#039;&#039;&#039;DataModel simpleepg&#039;&#039;&#039; -            simple epg model, can sometimes cause router crash.&lt;br /&gt;
*&#039;&#039;&#039;DataModel playlistModel&#039;&#039;&#039; -        list model of the playlist??&lt;br /&gt;
*&#039;&#039;&#039;DataModel skinsList&#039;&#039;&#039; -            list model containing the list of availible and ready skins&lt;br /&gt;
*&#039;&#039;&#039;ListModel screenshotAttributes&#039;&#039;&#039; -    listmodel of attributes correlating to thumbnail/screenshot selection&lt;br /&gt;
*--------------------------------------------------------------------------------&lt;br /&gt;
*&#039;&#039;&#039;QObject dcenowplaying&#039;&#039;&#039; -          QObject containing the properties of the now playing object for this ea&lt;br /&gt;
*&#039;&#039;&#039;QColor nowPlayingColor&#039;&#039;&#039; -         color of now playing button&lt;br /&gt;
*&#039;&#039;&#039;int currentcommandgrp&#039;&#039;&#039; -          int of the current command group being executed&lt;br /&gt;
*&#039;&#039;&#039;int gmediaType&#039;&#039;&#039; -                 int correlating to the mediatype the grid is navigating.&lt;br /&gt;
*&#039;&#039;&#039;int currentroom&#039;&#039;&#039; -                int representing the current EA of the orbiter&lt;br /&gt;
*&#039;&#039;&#039;QString currentuser&#039;&#039;&#039; -            string of the current user&lt;br /&gt;
&lt;br /&gt;
==Functions==&lt;br /&gt;
This will be broken down by section with certain parts relating directly to the screens where they are used&lt;br /&gt;
	&lt;br /&gt;
==HomeScreen==&lt;br /&gt;
Special Screen that doesnt have to be implemented, but since it can be considered the start page, certain&lt;br /&gt;
data is provided to make life easier for everyone.&lt;/div&gt;</summary>
		<author><name>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=QOrbiter&amp;diff=36701</id>
		<title>QOrbiter</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=QOrbiter&amp;diff=36701"/>
		<updated>2016-04-04T17:38:11Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* Developing a qOrbiter skin */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{versioninfo}}&lt;br /&gt;
[[category:QML]]&lt;br /&gt;
[[category:QOrbiter]]&lt;br /&gt;
[[Category: Programmer&#039;s Guide]]&lt;br /&gt;
qOrbiter is a new LinuxMCE orbiter designed to run on a multitude of devices as well as provide flexible skinning options to make it truly one&#039;s own. The purpose of this document is for documenting the existing skin api of the application moving forward.&lt;br /&gt;
&lt;br /&gt;
=Where To Find It=&lt;br /&gt;
The latest version of qOrbiter can always be found on the developers  [http://langstonball.com/downloads/category/1-qorbiter-downloads site].&lt;br /&gt;
== Installation Instructions ==&lt;br /&gt;
More details on Android installation for the qOrbiter (some applies universally), ca be found at [[Android Orbiter]],&lt;br /&gt;
&lt;br /&gt;
=Concept=&lt;br /&gt;
The concept of this document is to provide those wishing to create new skins the needed access to LinuxMCE data through properties and context objects. While I will not be discussing what they are here, they are discussed in the scope of QML documentation which is a pre-requisite to skinning and working with Qorbiter. &lt;br /&gt;
&lt;br /&gt;
So, for example lets take the context property &amp;quot;deviceid&amp;quot;. This property is added to the QML engine at runtime so that it can be used to provide the current device id of the orbiter. So in effect, this is a macro or keyword if you will that enables access to the underlying LinuxMCE data. As is one of the goals, no programming is required. One of the goals of this document is to outline all of these properties for easy reference in making a new skin.&lt;br /&gt;
&lt;br /&gt;
=Colors &amp;amp; Styling=&lt;br /&gt;
Colors such as background and button colors should be set in the style file of the qml skin. See &#039;Style.qml&#039; for reference on setting up property aliases. &lt;br /&gt;
&lt;br /&gt;
Examples include:&lt;br /&gt;
&lt;br /&gt;
 property color stageBG: &amp;quot;slategray&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Qualified color references include:&lt;br /&gt;
*SVG named colors [http://www.december.com/html/spec/colorsvg.html Reference]&lt;br /&gt;
*Web color notation #112233&lt;br /&gt;
&lt;br /&gt;
==Skins==&lt;br /&gt;
skinsList: listmodel of skins found for the build&lt;br /&gt;
One should always check the official doc&#039;s to see what methods are supported for setting properties.&lt;br /&gt;
&lt;br /&gt;
==Images==&lt;br /&gt;
Images can be loaded in multiple ways and will be discussed here in the future. All that is required is to use the indicated format for local vs remote loading of images&lt;br /&gt;
*Local:   &#039;&#039;&#039;source: &amp;quot;../../../img/icons/kmix.png&amp;quot;&#039;&#039;&#039;&lt;br /&gt;
*Datagrid:   &#039;&#039;&#039;source:&amp;quot;image://datagridimg/&amp;quot;+id&#039;&#039;&#039; &lt;br /&gt;
*File Details Screen Shot or Album cover: &#039;&#039;&#039;source: &amp;quot;image://filedetailsprovider/&amp;quot;+filedetailsclass.screenshot&#039;&#039;&#039;&lt;br /&gt;
Please note more will become available as they are connected to QML.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Developing a qOrbiter skin=&lt;br /&gt;
QOrbiter utilizes QML&#039;s ease of creating themes. The current engine used for themes supports the following&lt;br /&gt;
*Screen Size based themes:&lt;br /&gt;
** &amp;quot;small&amp;quot;  4&amp;quot; diagonal size and up&lt;br /&gt;
** &amp;quot;medium&amp;quot; 7&amp;quot; diagonal size and up&lt;br /&gt;
** &amp;quot;large&amp;quot;  10&amp;quot; diagonal size and up&lt;br /&gt;
** &amp;quot;xlarge&amp;quot; 13&amp;quot; diagonal size and up&lt;br /&gt;
*Platform based themes&lt;br /&gt;
** &amp;quot;linux&amp;quot;&lt;br /&gt;
** &amp;quot;ios&amp;quot;&lt;br /&gt;
** &amp;quot;android&amp;quot;&lt;br /&gt;
** &amp;quot;windows&amp;quot;&lt;br /&gt;
** &amp;quot;raspbian&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==File Structure==&lt;br /&gt;
Files should be arranged in the following manner&lt;br /&gt;
:&amp;lt;folder&amp;gt;name of the skin&lt;br /&gt;
::Main.qml&lt;br /&gt;
::Style.qml&lt;br /&gt;
::qmldir&lt;br /&gt;
::Splash.qml&lt;br /&gt;
:::&amp;lt;folder&amp;gt;images&lt;br /&gt;
:::&amp;lt;folder&amp;gt;screens&lt;br /&gt;
:::&amp;lt;folder&amp;gt;components&lt;br /&gt;
:::&amp;lt;folder&amp;gt;js (if used)&lt;br /&gt;
&lt;br /&gt;
==Adding to the filestructure==&lt;br /&gt;
#in Qt Creator, in the source-tree, right-click on &#039;QML&#039;&lt;br /&gt;
#In the contextmenu select add new&lt;br /&gt;
#choose the template &#039;QML&#039; -&amp;gt; QML File&lt;br /&gt;
#name it &#039;main&#039;&lt;br /&gt;
#for Path, click on choose, in the new window select &#039;new folder&#039; give it the name of your new skin (in lower case letters, otherwise it wont work!) and click on &#039;choose&#039;&lt;br /&gt;
#click continue and then done&lt;br /&gt;
#in Qt Creator, in the source-tree, right-click on &#039;QML&#039;&lt;br /&gt;
#In the contextmenu select add new&lt;br /&gt;
#choose the template &#039;QML&#039; -&amp;gt; QML File&lt;br /&gt;
#name it &#039;Style&#039;&lt;br /&gt;
#for Path, click on choose, in the new window select the folder you created in step 5.&lt;br /&gt;
#click continue and then done&lt;br /&gt;
#in sources -&amp;gt; qorbitermanager.cpp find tskinModel-&amp;gt;addSkin and add a new entry for your skin using the directory name. &lt;br /&gt;
You can now fill main and style files with the content of the same files found in the QML/desktop/default directory.&lt;br /&gt;
Or another pair of main.qml and Style.qml set.&lt;br /&gt;
After this is done you can alter the Style.qml to you likings and your skin can be selected from the styles-menu inside qOrbiter&lt;br /&gt;
&lt;br /&gt;
NOTE: You only see the QML files of the target you selected under project. i.e. if you select for_desktop, you will see the desktop QML files. If you choose for_android, you will see the QML files for Android. What is shown for a target, is defined in the .pro file of qOrbiter.&lt;br /&gt;
&lt;br /&gt;
==Special Qml Pages==&lt;br /&gt;
The following pages are &#039;special&#039; in that they serve critical function for the qml application.&lt;br /&gt;
These should be located in the main directory of your skin.&lt;br /&gt;
i.e. - &amp;lt;mySkin&amp;gt;/Main.qml&lt;br /&gt;
	&lt;br /&gt;
*Main.qml&lt;br /&gt;
:The entire purpose of this qml page is to be the logic behind the runtime of the application. What this means&lt;br /&gt;
:is that this is the highest level page and signals and slots should be added here. Also, the page loading&lt;br /&gt;
:functions need to be implemented here for hiccup free operation. For example, the main.qml file thats is&lt;br /&gt;
:part of the default skin serves as the loader for Screens, emits signals, and provides a constant object for&lt;br /&gt;
:other logic.&lt;br /&gt;
	&lt;br /&gt;
*Splash.qml&lt;br /&gt;
:This is the loading page that is initially shown when the application starts. It is not intended to be used by skin designers as the logic is very specific. However, acceptable replacements will be included.&lt;br /&gt;
&lt;br /&gt;
*Style.qml&lt;br /&gt;
:This qml file is unique because it does nothing more than serve as a static obeject that contains the description of&lt;br /&gt;
: your skin, both for users and the actual application. its where screen sizes are defined, scaling functions can be&lt;br /&gt;
:located, and anything else relating to the visual style of the application as relating to your skin&lt;br /&gt;
&lt;br /&gt;
==Variables==&lt;br /&gt;
&#039;&#039;&#039;DEPRECIATE, USE ABOVE SECTIONS&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;ref dcerouter&#039;&#039;&#039; -                  used as a reference object to call functions&lt;br /&gt;
*&#039;&#039;&#039;QString dcemessage&#039;&#039;&#039; -            orbiter messaging output for display in string format&lt;br /&gt;
*&#039;&#039;&#039;srouterip&#039;&#039;&#039; -                      string of the routerip&lt;br /&gt;
*&#039;&#039;&#039;ref manager&#039;&#039;&#039; -                    reference object for qorbitermanager&lt;br /&gt;
*&#039;&#039;&#039;QObject filedetailsclass&#039;&#039;&#039; -       QObject used for holding file information from the router for use in the UI&lt;br /&gt;
*&#039;&#039;&#039;bool connectedState&#039;&#039;&#039; -            represents the current connected state of the device&lt;br /&gt;
*&#039;&#039;&#039;int iPK_Device&#039;&#039;&#039; -                 the orbiter device number&lt;br /&gt;
*&#039;&#039;&#039;QTime screen1time&#039;&#039;&#039; -              clock. will display in&lt;br /&gt;
*&#039;&#039;&#039;QTime currentDateTime&#039;&#039;&#039; -          current date and time&lt;br /&gt;
*---need to outline &#039;role&#039; data for member data-----&lt;br /&gt;
*&#039;&#039;&#039;DataModel currentRoomLights&#039;&#039;&#039; -    list model of the current room lighting scenarios.&lt;br /&gt;
*&#039;&#039;&#039;DataModel currentRoomMedia&#039;&#039;&#039; -     list model of the current room media scenarios&lt;br /&gt;
*&#039;&#039;&#039;DataModel currentRoomClimate&#039;&#039;&#039; -   list model of current room climate scenarios&lt;br /&gt;
*&#039;&#039;&#039;DataModel currentRoomTelecom&#039;&#039;&#039; -   list model of the current room telecom scenarios&lt;br /&gt;
*&#039;&#039;&#039;DataModel currentRoomSecurity&#039;&#039;&#039; -  list model of the current room security scenarios&lt;br /&gt;
*&#039;&#039;&#039;DataModel userList&#039;&#039;&#039; -             list of the users in the linuxmce system&lt;br /&gt;
*&#039;&#039;&#039;DataModel roomList&#039;&#039;&#039; -             list of the rooms in this home.&lt;br /&gt;
*&#039;&#039;&#039;DataModel mediaplaylist&#039;&#039;&#039; -        the current playlist in list model form&lt;br /&gt;
*&#039;&#039;&#039;DataModel simpleepg&#039;&#039;&#039; -            simple epg model, can sometimes cause router crash.&lt;br /&gt;
*&#039;&#039;&#039;DataModel playlistModel&#039;&#039;&#039; -        list model of the playlist??&lt;br /&gt;
*&#039;&#039;&#039;DataModel skinsList&#039;&#039;&#039; -            list model containing the list of availible and ready skins&lt;br /&gt;
*&#039;&#039;&#039;ListModel screenshotAttributes&#039;&#039;&#039; -    listmodel of attributes correlating to thumbnail/screenshot selection&lt;br /&gt;
*--------------------------------------------------------------------------------&lt;br /&gt;
*&#039;&#039;&#039;QObject dcenowplaying&#039;&#039;&#039; -          QObject containing the properties of the now playing object for this ea&lt;br /&gt;
*&#039;&#039;&#039;QColor nowPlayingColor&#039;&#039;&#039; -         color of now playing button&lt;br /&gt;
*&#039;&#039;&#039;int currentcommandgrp&#039;&#039;&#039; -          int of the current command group being executed&lt;br /&gt;
*&#039;&#039;&#039;int gmediaType&#039;&#039;&#039; -                 int correlating to the mediatype the grid is navigating.&lt;br /&gt;
*&#039;&#039;&#039;int currentroom&#039;&#039;&#039; -                int representing the current EA of the orbiter&lt;br /&gt;
*&#039;&#039;&#039;QString currentuser&#039;&#039;&#039; -            string of the current user&lt;br /&gt;
&lt;br /&gt;
==Functions==&lt;br /&gt;
This will be broken down by section with certain parts relating directly to the screens where they are used&lt;br /&gt;
	&lt;br /&gt;
==HomeScreen==&lt;br /&gt;
Special Screen that doesnt have to be implemented, but since it can be considered the start page, certain&lt;br /&gt;
data is provided to make life easier for everyone.&lt;/div&gt;</summary>
		<author><name>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=QOrbiter&amp;diff=36700</id>
		<title>QOrbiter</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=QOrbiter&amp;diff=36700"/>
		<updated>2016-04-04T17:22:13Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{versioninfo}}&lt;br /&gt;
[[category:QML]]&lt;br /&gt;
[[category:QOrbiter]]&lt;br /&gt;
[[Category: Programmer&#039;s Guide]]&lt;br /&gt;
qOrbiter is a new LinuxMCE orbiter designed to run on a multitude of devices as well as provide flexible skinning options to make it truly one&#039;s own. The purpose of this document is for documenting the existing skin api of the application moving forward.&lt;br /&gt;
&lt;br /&gt;
=Where To Find It=&lt;br /&gt;
The latest version of qOrbiter can always be found on the developers  [http://langstonball.com/downloads/category/1-qorbiter-downloads site].&lt;br /&gt;
== Installation Instructions ==&lt;br /&gt;
More details on Android installation for the qOrbiter (some applies universally), ca be found at [[Android Orbiter]],&lt;br /&gt;
&lt;br /&gt;
=Concept=&lt;br /&gt;
The concept of this document is to provide those wishing to create new skins the needed access to LinuxMCE data through properties and context objects. While I will not be discussing what they are here, they are discussed in the scope of QML documentation which is a pre-requisite to skinning and working with Qorbiter. &lt;br /&gt;
&lt;br /&gt;
So, for example lets take the context property &amp;quot;deviceid&amp;quot;. This property is added to the QML engine at runtime so that it can be used to provide the current device id of the orbiter. So in effect, this is a macro or keyword if you will that enables access to the underlying LinuxMCE data. As is one of the goals, no programming is required. One of the goals of this document is to outline all of these properties for easy reference in making a new skin.&lt;br /&gt;
&lt;br /&gt;
=Colors &amp;amp; Styling=&lt;br /&gt;
Colors such as background and button colors should be set in the style file of the qml skin. See &#039;Style.qml&#039; for reference on setting up property aliases. &lt;br /&gt;
&lt;br /&gt;
Examples include:&lt;br /&gt;
&lt;br /&gt;
 property color stageBG: &amp;quot;slategray&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Qualified color references include:&lt;br /&gt;
*SVG named colors [http://www.december.com/html/spec/colorsvg.html Reference]&lt;br /&gt;
*Web color notation #112233&lt;br /&gt;
&lt;br /&gt;
==Skins==&lt;br /&gt;
skinsList: listmodel of skins found for the build&lt;br /&gt;
One should always check the official doc&#039;s to see what methods are supported for setting properties.&lt;br /&gt;
&lt;br /&gt;
==Images==&lt;br /&gt;
Images can be loaded in multiple ways and will be discussed here in the future. All that is required is to use the indicated format for local vs remote loading of images&lt;br /&gt;
*Local:   &#039;&#039;&#039;source: &amp;quot;../../../img/icons/kmix.png&amp;quot;&#039;&#039;&#039;&lt;br /&gt;
*Datagrid:   &#039;&#039;&#039;source:&amp;quot;image://datagridimg/&amp;quot;+id&#039;&#039;&#039; &lt;br /&gt;
*File Details Screen Shot or Album cover: &#039;&#039;&#039;source: &amp;quot;image://filedetailsprovider/&amp;quot;+filedetailsclass.screenshot&#039;&#039;&#039;&lt;br /&gt;
Please note more will become available as they are connected to QML.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Developing a qOrbiter skin=&lt;br /&gt;
&lt;br /&gt;
==File Structure==&lt;br /&gt;
Files should be arranged in the following manner&lt;br /&gt;
:&amp;lt;folder&amp;gt;name of the skin&lt;br /&gt;
::Main.qml&lt;br /&gt;
::Style.qml&lt;br /&gt;
::qmldir&lt;br /&gt;
::Splash.qml&lt;br /&gt;
:::&amp;lt;folder&amp;gt;images&lt;br /&gt;
:::&amp;lt;folder&amp;gt;screens&lt;br /&gt;
:::&amp;lt;folder&amp;gt;components&lt;br /&gt;
:::&amp;lt;folder&amp;gt;js (if used)&lt;br /&gt;
&lt;br /&gt;
==Adding to the filestructure==&lt;br /&gt;
#in Qt Creator, in the source-tree, right-click on &#039;QML&#039;&lt;br /&gt;
#In the contextmenu select add new&lt;br /&gt;
#choose the template &#039;QML&#039; -&amp;gt; QML File&lt;br /&gt;
#name it &#039;main&#039;&lt;br /&gt;
#for Path, click on choose, in the new window select &#039;new folder&#039; give it the name of your new skin (in lower case letters, otherwise it wont work!) and click on &#039;choose&#039;&lt;br /&gt;
#click continue and then done&lt;br /&gt;
#in Qt Creator, in the source-tree, right-click on &#039;QML&#039;&lt;br /&gt;
#In the contextmenu select add new&lt;br /&gt;
#choose the template &#039;QML&#039; -&amp;gt; QML File&lt;br /&gt;
#name it &#039;Style&#039;&lt;br /&gt;
#for Path, click on choose, in the new window select the folder you created in step 5.&lt;br /&gt;
#click continue and then done&lt;br /&gt;
#in sources -&amp;gt; qorbitermanager.cpp find tskinModel-&amp;gt;addSkin and add a new entry for your skin using the directory name. &lt;br /&gt;
You can now fill main and style files with the content of the same files found in the QML/desktop/default directory.&lt;br /&gt;
Or another pair of main.qml and Style.qml set.&lt;br /&gt;
After this is done you can alter the Style.qml to you likings and your skin can be selected from the styles-menu inside qOrbiter&lt;br /&gt;
&lt;br /&gt;
NOTE: You only see the QML files of the target you selected under project. i.e. if you select for_desktop, you will see the desktop QML files. If you choose for_android, you will see the QML files for Android. What is shown for a target, is defined in the .pro file of qOrbiter.&lt;br /&gt;
&lt;br /&gt;
==Special Qml Pages==&lt;br /&gt;
The following pages are &#039;special&#039; in that they serve critical function for the qml application.&lt;br /&gt;
These should be located in the main directory of your skin.&lt;br /&gt;
i.e. - &amp;lt;mySkin&amp;gt;/Main.qml&lt;br /&gt;
	&lt;br /&gt;
*Main.qml&lt;br /&gt;
:The entire purpose of this qml page is to be the logic behind the runtime of the application. What this means&lt;br /&gt;
:is that this is the highest level page and signals and slots should be added here. Also, the page loading&lt;br /&gt;
:functions need to be implemented here for hiccup free operation. For example, the main.qml file thats is&lt;br /&gt;
:part of the default skin serves as the loader for Screens, emits signals, and provides a constant object for&lt;br /&gt;
:other logic.&lt;br /&gt;
	&lt;br /&gt;
*Splash.qml&lt;br /&gt;
:This is the loading page that is initially shown when the application starts. It is not intended to be used by skin designers as the logic is very specific. However, acceptable replacements will be included.&lt;br /&gt;
&lt;br /&gt;
*Style.qml&lt;br /&gt;
:This qml file is unique because it does nothing more than serve as a static obeject that contains the description of&lt;br /&gt;
: your skin, both for users and the actual application. its where screen sizes are defined, scaling functions can be&lt;br /&gt;
:located, and anything else relating to the visual style of the application as relating to your skin&lt;br /&gt;
&lt;br /&gt;
==Variables==&lt;br /&gt;
&#039;&#039;&#039;DEPRECIATE, USE ABOVE SECTIONS&#039;&#039;&#039;&lt;br /&gt;
*&#039;&#039;&#039;ref dcerouter&#039;&#039;&#039; -                  used as a reference object to call functions&lt;br /&gt;
*&#039;&#039;&#039;QString dcemessage&#039;&#039;&#039; -            orbiter messaging output for display in string format&lt;br /&gt;
*&#039;&#039;&#039;srouterip&#039;&#039;&#039; -                      string of the routerip&lt;br /&gt;
*&#039;&#039;&#039;ref manager&#039;&#039;&#039; -                    reference object for qorbitermanager&lt;br /&gt;
*&#039;&#039;&#039;QObject filedetailsclass&#039;&#039;&#039; -       QObject used for holding file information from the router for use in the UI&lt;br /&gt;
*&#039;&#039;&#039;bool connectedState&#039;&#039;&#039; -            represents the current connected state of the device&lt;br /&gt;
*&#039;&#039;&#039;int iPK_Device&#039;&#039;&#039; -                 the orbiter device number&lt;br /&gt;
*&#039;&#039;&#039;QTime screen1time&#039;&#039;&#039; -              clock. will display in&lt;br /&gt;
*&#039;&#039;&#039;QTime currentDateTime&#039;&#039;&#039; -          current date and time&lt;br /&gt;
*---need to outline &#039;role&#039; data for member data-----&lt;br /&gt;
*&#039;&#039;&#039;DataModel currentRoomLights&#039;&#039;&#039; -    list model of the current room lighting scenarios.&lt;br /&gt;
*&#039;&#039;&#039;DataModel currentRoomMedia&#039;&#039;&#039; -     list model of the current room media scenarios&lt;br /&gt;
*&#039;&#039;&#039;DataModel currentRoomClimate&#039;&#039;&#039; -   list model of current room climate scenarios&lt;br /&gt;
*&#039;&#039;&#039;DataModel currentRoomTelecom&#039;&#039;&#039; -   list model of the current room telecom scenarios&lt;br /&gt;
*&#039;&#039;&#039;DataModel currentRoomSecurity&#039;&#039;&#039; -  list model of the current room security scenarios&lt;br /&gt;
*&#039;&#039;&#039;DataModel userList&#039;&#039;&#039; -             list of the users in the linuxmce system&lt;br /&gt;
*&#039;&#039;&#039;DataModel roomList&#039;&#039;&#039; -             list of the rooms in this home.&lt;br /&gt;
*&#039;&#039;&#039;DataModel mediaplaylist&#039;&#039;&#039; -        the current playlist in list model form&lt;br /&gt;
*&#039;&#039;&#039;DataModel simpleepg&#039;&#039;&#039; -            simple epg model, can sometimes cause router crash.&lt;br /&gt;
*&#039;&#039;&#039;DataModel playlistModel&#039;&#039;&#039; -        list model of the playlist??&lt;br /&gt;
*&#039;&#039;&#039;DataModel skinsList&#039;&#039;&#039; -            list model containing the list of availible and ready skins&lt;br /&gt;
*&#039;&#039;&#039;ListModel screenshotAttributes&#039;&#039;&#039; -    listmodel of attributes correlating to thumbnail/screenshot selection&lt;br /&gt;
*--------------------------------------------------------------------------------&lt;br /&gt;
*&#039;&#039;&#039;QObject dcenowplaying&#039;&#039;&#039; -          QObject containing the properties of the now playing object for this ea&lt;br /&gt;
*&#039;&#039;&#039;QColor nowPlayingColor&#039;&#039;&#039; -         color of now playing button&lt;br /&gt;
*&#039;&#039;&#039;int currentcommandgrp&#039;&#039;&#039; -          int of the current command group being executed&lt;br /&gt;
*&#039;&#039;&#039;int gmediaType&#039;&#039;&#039; -                 int correlating to the mediatype the grid is navigating.&lt;br /&gt;
*&#039;&#039;&#039;int currentroom&#039;&#039;&#039; -                int representing the current EA of the orbiter&lt;br /&gt;
*&#039;&#039;&#039;QString currentuser&#039;&#039;&#039; -            string of the current user&lt;br /&gt;
&lt;br /&gt;
==Functions==&lt;br /&gt;
This will be broken down by section with certain parts relating directly to the screens where they are used&lt;br /&gt;
	&lt;br /&gt;
==HomeScreen==&lt;br /&gt;
Special Screen that doesnt have to be implemented, but since it can be considered the start page, certain&lt;br /&gt;
data is provided to make life easier for everyone.&lt;/div&gt;</summary>
		<author><name>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Qt_development_with_linuxmce&amp;diff=36698</id>
		<title>Qt development with linuxmce</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Qt_development_with_linuxmce&amp;diff=36698"/>
		<updated>2016-03-31T23:34:56Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* Raspberry Pi= */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article will explain how to utilize the Qt development framework with linuxmce. Currently, there are a few different types of devices that utilize the Qt framework within linuxmce&lt;br /&gt;
* Hue Controller - For controlling Phillips Hue color changing LED lights using QtNetwork to interface with the JSON api of the device.&lt;br /&gt;
* linuxmceTag - A simple command line media scanner which scans video files, and then does its best to lookup information via online api&#039;s to fill in metadata&lt;br /&gt;
* QOrbiter - Graphical user interface for linuxmce, allowing one to have classic orbiter functionality.&lt;br /&gt;
&lt;br /&gt;
== General Requirements ==&lt;br /&gt;
These are the general requirements for working with Qt and linuxmce to develop devices&lt;br /&gt;
&lt;br /&gt;
* Qt Development SDK - http://www.qt.io/download/ &lt;br /&gt;
** Choose the open source version. This will allow you to download the source as needed, libraries, and the IDE, Qt Creator.&lt;br /&gt;
** If you are targeting Qt4, you would best apt-get install qt4-dev-tools. This will pull in Qt4 libraries and the Qt Creator for qt4. Please note if creating a new project, you will be politely asked to use Qt5. Qt4 based projects are scheduled to be moved to Qt5.&lt;br /&gt;
* A functioning linuxmce installation, VM or otherwise.&lt;br /&gt;
** You will also need the source code, which you can check out at http://git.linuxmce.org.&lt;br /&gt;
** Follow this existing article: http://wiki.linuxmce.org/index.php/Developing_a_DCE_Device&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Once you have setup your linuxmce box according to the article above,you will be ready to start development&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Working from your own linux machine ==&lt;br /&gt;
Working from one&#039;s own linux machine can be beneficial from the standpoint using the most familiar development environment. Some things must be take into consideration however.&lt;br /&gt;
*If your device is a plugin, this method is not open to you. Plugins run in the router memory space and this means they cannot be run from remote machines. It wouldnt even be wise to try.&lt;br /&gt;
*Passing command line parameters to the device, will allow you to run it from your machine, but connected to the router.&lt;br /&gt;
** Pass &#039;-r &amp;lt;yourcoreip&amp;gt;&#039; for the router. It defaults to 192.168.80.1&lt;br /&gt;
** Pass &#039;-d &amp;lt;devicenumber&amp;gt;&#039; for the device number.&lt;br /&gt;
&lt;br /&gt;
== Working on your core ==&lt;br /&gt;
Working on the core can be beneficial from the standpoint of&lt;br /&gt;
*no need to move file(s) across network&lt;br /&gt;
*compile in native environment&lt;br /&gt;
&lt;br /&gt;
Both of these are useful, but debugging and gui functionality will be limited.&lt;br /&gt;
&lt;br /&gt;
== QOrbiter Specifics ==&lt;br /&gt;
&lt;br /&gt;
=== Desktop ===&lt;br /&gt;
&lt;br /&gt;
=== Android ===&lt;br /&gt;
&lt;br /&gt;
=== iOS ===&lt;br /&gt;
&lt;br /&gt;
=== Raspberry Pi / MD specifics ===&lt;br /&gt;
When working on the raspberry pi, or a media director, one must note that they need to utilize the device profiles in Qt Creator. What these profiles do is establish template for connecting to and uploading files to another machine or embedded device. The benefit of this is that it allows you run the application on the target device, while benefiting from the development machine normally used.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;You must be compiling against the Qt Version ON the device. We hope to provide links in the future with the necessary build.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Device setup is done in the &#039;devices&#039; tab under the options in Qt Creator.&lt;br /&gt;
The wizard will walk you through creating the profile for a given device.&lt;br /&gt;
&lt;br /&gt;
====Raspberry Pi====&lt;br /&gt;
Please note that the pi will also require a cross-compiler setup.&lt;/div&gt;</summary>
		<author><name>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Qt_development_with_linuxmce&amp;diff=36697</id>
		<title>Qt development with linuxmce</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Qt_development_with_linuxmce&amp;diff=36697"/>
		<updated>2016-03-31T23:34:20Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* Raspberry Pi / MD specifics */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article will explain how to utilize the Qt development framework with linuxmce. Currently, there are a few different types of devices that utilize the Qt framework within linuxmce&lt;br /&gt;
* Hue Controller - For controlling Phillips Hue color changing LED lights using QtNetwork to interface with the JSON api of the device.&lt;br /&gt;
* linuxmceTag - A simple command line media scanner which scans video files, and then does its best to lookup information via online api&#039;s to fill in metadata&lt;br /&gt;
* QOrbiter - Graphical user interface for linuxmce, allowing one to have classic orbiter functionality.&lt;br /&gt;
&lt;br /&gt;
== General Requirements ==&lt;br /&gt;
These are the general requirements for working with Qt and linuxmce to develop devices&lt;br /&gt;
&lt;br /&gt;
* Qt Development SDK - http://www.qt.io/download/ &lt;br /&gt;
** Choose the open source version. This will allow you to download the source as needed, libraries, and the IDE, Qt Creator.&lt;br /&gt;
** If you are targeting Qt4, you would best apt-get install qt4-dev-tools. This will pull in Qt4 libraries and the Qt Creator for qt4. Please note if creating a new project, you will be politely asked to use Qt5. Qt4 based projects are scheduled to be moved to Qt5.&lt;br /&gt;
* A functioning linuxmce installation, VM or otherwise.&lt;br /&gt;
** You will also need the source code, which you can check out at http://git.linuxmce.org.&lt;br /&gt;
** Follow this existing article: http://wiki.linuxmce.org/index.php/Developing_a_DCE_Device&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Once you have setup your linuxmce box according to the article above,you will be ready to start development&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Working from your own linux machine ==&lt;br /&gt;
Working from one&#039;s own linux machine can be beneficial from the standpoint using the most familiar development environment. Some things must be take into consideration however.&lt;br /&gt;
*If your device is a plugin, this method is not open to you. Plugins run in the router memory space and this means they cannot be run from remote machines. It wouldnt even be wise to try.&lt;br /&gt;
*Passing command line parameters to the device, will allow you to run it from your machine, but connected to the router.&lt;br /&gt;
** Pass &#039;-r &amp;lt;yourcoreip&amp;gt;&#039; for the router. It defaults to 192.168.80.1&lt;br /&gt;
** Pass &#039;-d &amp;lt;devicenumber&amp;gt;&#039; for the device number.&lt;br /&gt;
&lt;br /&gt;
== Working on your core ==&lt;br /&gt;
Working on the core can be beneficial from the standpoint of&lt;br /&gt;
*no need to move file(s) across network&lt;br /&gt;
*compile in native environment&lt;br /&gt;
&lt;br /&gt;
Both of these are useful, but debugging and gui functionality will be limited.&lt;br /&gt;
&lt;br /&gt;
== QOrbiter Specifics ==&lt;br /&gt;
&lt;br /&gt;
=== Desktop ===&lt;br /&gt;
&lt;br /&gt;
=== Android ===&lt;br /&gt;
&lt;br /&gt;
=== iOS ===&lt;br /&gt;
&lt;br /&gt;
=== Raspberry Pi / MD specifics ===&lt;br /&gt;
When working on the raspberry pi, or a media director, one must note that they need to utilize the device profiles in Qt Creator. What these profiles do is establish template for connecting to and uploading files to another machine or embedded device. The benefit of this is that it allows you run the application on the target device, while benefiting from the development machine normally used.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;You must be compiling against the Qt Version ON the device. We hope to provide links in the future with the necessary build.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Device setup is done in the &#039;devices&#039; tab under the options in Qt Creator.&lt;br /&gt;
The wizard will walk you through creating the profile for a given device.&lt;br /&gt;
&lt;br /&gt;
====Raspberry Pi=====&lt;br /&gt;
Please note that the pi will also require a cross-compiler setup.&lt;/div&gt;</summary>
		<author><name>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Qt_development_with_linuxmce&amp;diff=36696</id>
		<title>Qt development with linuxmce</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Qt_development_with_linuxmce&amp;diff=36696"/>
		<updated>2016-03-31T23:25:49Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* Working from your own linux machine */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article will explain how to utilize the Qt development framework with linuxmce. Currently, there are a few different types of devices that utilize the Qt framework within linuxmce&lt;br /&gt;
* Hue Controller - For controlling Phillips Hue color changing LED lights using QtNetwork to interface with the JSON api of the device.&lt;br /&gt;
* linuxmceTag - A simple command line media scanner which scans video files, and then does its best to lookup information via online api&#039;s to fill in metadata&lt;br /&gt;
* QOrbiter - Graphical user interface for linuxmce, allowing one to have classic orbiter functionality.&lt;br /&gt;
&lt;br /&gt;
== General Requirements ==&lt;br /&gt;
These are the general requirements for working with Qt and linuxmce to develop devices&lt;br /&gt;
&lt;br /&gt;
* Qt Development SDK - http://www.qt.io/download/ &lt;br /&gt;
** Choose the open source version. This will allow you to download the source as needed, libraries, and the IDE, Qt Creator.&lt;br /&gt;
** If you are targeting Qt4, you would best apt-get install qt4-dev-tools. This will pull in Qt4 libraries and the Qt Creator for qt4. Please note if creating a new project, you will be politely asked to use Qt5. Qt4 based projects are scheduled to be moved to Qt5.&lt;br /&gt;
* A functioning linuxmce installation, VM or otherwise.&lt;br /&gt;
** You will also need the source code, which you can check out at http://git.linuxmce.org.&lt;br /&gt;
** Follow this existing article: http://wiki.linuxmce.org/index.php/Developing_a_DCE_Device&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Once you have setup your linuxmce box according to the article above,you will be ready to start development&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Working from your own linux machine ==&lt;br /&gt;
Working from one&#039;s own linux machine can be beneficial from the standpoint using the most familiar development environment. Some things must be take into consideration however.&lt;br /&gt;
*If your device is a plugin, this method is not open to you. Plugins run in the router memory space and this means they cannot be run from remote machines. It wouldnt even be wise to try.&lt;br /&gt;
*Passing command line parameters to the device, will allow you to run it from your machine, but connected to the router.&lt;br /&gt;
** Pass &#039;-r &amp;lt;yourcoreip&amp;gt;&#039; for the router. It defaults to 192.168.80.1&lt;br /&gt;
** Pass &#039;-d &amp;lt;devicenumber&amp;gt;&#039; for the device number.&lt;br /&gt;
&lt;br /&gt;
== Working on your core ==&lt;br /&gt;
Working on the core can be beneficial from the standpoint of&lt;br /&gt;
*no need to move file(s) across network&lt;br /&gt;
*compile in native environment&lt;br /&gt;
&lt;br /&gt;
Both of these are useful, but debugging and gui functionality will be limited.&lt;br /&gt;
&lt;br /&gt;
== QOrbiter Specifics ==&lt;br /&gt;
&lt;br /&gt;
=== Desktop ===&lt;br /&gt;
&lt;br /&gt;
=== Android ===&lt;br /&gt;
&lt;br /&gt;
=== iOS ===&lt;br /&gt;
&lt;br /&gt;
=== Raspberry Pi / MD specifics ===&lt;/div&gt;</summary>
		<author><name>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Qt_development_with_linuxmce&amp;diff=36695</id>
		<title>Qt development with linuxmce</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Qt_development_with_linuxmce&amp;diff=36695"/>
		<updated>2016-03-31T23:20:59Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* Working on your core */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article will explain how to utilize the Qt development framework with linuxmce. Currently, there are a few different types of devices that utilize the Qt framework within linuxmce&lt;br /&gt;
* Hue Controller - For controlling Phillips Hue color changing LED lights using QtNetwork to interface with the JSON api of the device.&lt;br /&gt;
* linuxmceTag - A simple command line media scanner which scans video files, and then does its best to lookup information via online api&#039;s to fill in metadata&lt;br /&gt;
* QOrbiter - Graphical user interface for linuxmce, allowing one to have classic orbiter functionality.&lt;br /&gt;
&lt;br /&gt;
== General Requirements ==&lt;br /&gt;
These are the general requirements for working with Qt and linuxmce to develop devices&lt;br /&gt;
&lt;br /&gt;
* Qt Development SDK - http://www.qt.io/download/ &lt;br /&gt;
** Choose the open source version. This will allow you to download the source as needed, libraries, and the IDE, Qt Creator.&lt;br /&gt;
** If you are targeting Qt4, you would best apt-get install qt4-dev-tools. This will pull in Qt4 libraries and the Qt Creator for qt4. Please note if creating a new project, you will be politely asked to use Qt5. Qt4 based projects are scheduled to be moved to Qt5.&lt;br /&gt;
* A functioning linuxmce installation, VM or otherwise.&lt;br /&gt;
** You will also need the source code, which you can check out at http://git.linuxmce.org.&lt;br /&gt;
** Follow this existing article: http://wiki.linuxmce.org/index.php/Developing_a_DCE_Device&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Once you have setup your linuxmce box according to the article above,you will be ready to start development&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Working from your own linux machine ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Working on your core ==&lt;br /&gt;
Working on the core can be beneficial from the standpoint of&lt;br /&gt;
*no need to move file(s) across network&lt;br /&gt;
*compile in native environment&lt;br /&gt;
&lt;br /&gt;
Both of these are useful, but debugging and gui functionality will be limited.&lt;br /&gt;
&lt;br /&gt;
== QOrbiter Specifics ==&lt;br /&gt;
&lt;br /&gt;
=== Desktop ===&lt;br /&gt;
&lt;br /&gt;
=== Android ===&lt;br /&gt;
&lt;br /&gt;
=== iOS ===&lt;br /&gt;
&lt;br /&gt;
=== Raspberry Pi / MD specifics ===&lt;/div&gt;</summary>
		<author><name>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Qt_development_with_linuxmce&amp;diff=36694</id>
		<title>Qt development with linuxmce</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Qt_development_with_linuxmce&amp;diff=36694"/>
		<updated>2016-03-28T17:23:13Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article will explain how to utilize the Qt development framework with linuxmce. Currently, there are a few different types of devices that utilize the Qt framework within linuxmce&lt;br /&gt;
* Hue Controller - For controlling Phillips Hue color changing LED lights using QtNetwork to interface with the JSON api of the device.&lt;br /&gt;
* linuxmceTag - A simple command line media scanner which scans video files, and then does its best to lookup information via online api&#039;s to fill in metadata&lt;br /&gt;
* QOrbiter - Graphical user interface for linuxmce, allowing one to have classic orbiter functionality.&lt;br /&gt;
&lt;br /&gt;
== General Requirements ==&lt;br /&gt;
These are the general requirements for working with Qt and linuxmce to develop devices&lt;br /&gt;
&lt;br /&gt;
* Qt Development SDK - http://www.qt.io/download/ &lt;br /&gt;
** Choose the open source version. This will allow you to download the source as needed, libraries, and the IDE, Qt Creator.&lt;br /&gt;
** If you are targeting Qt4, you would best apt-get install qt4-dev-tools. This will pull in Qt4 libraries and the Qt Creator for qt4. Please note if creating a new project, you will be politely asked to use Qt5. Qt4 based projects are scheduled to be moved to Qt5.&lt;br /&gt;
* A functioning linuxmce installation, VM or otherwise.&lt;br /&gt;
** You will also need the source code, which you can check out at http://git.linuxmce.org.&lt;br /&gt;
** Follow this existing article: http://wiki.linuxmce.org/index.php/Developing_a_DCE_Device&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Once you have setup your linuxmce box according to the article above,you will be ready to start development&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Working from your own linux machine ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Working on your core ==&lt;br /&gt;
&lt;br /&gt;
== QOrbiter Specifics ==&lt;br /&gt;
&lt;br /&gt;
=== Desktop ===&lt;br /&gt;
&lt;br /&gt;
=== Android ===&lt;br /&gt;
&lt;br /&gt;
=== iOS ===&lt;br /&gt;
&lt;br /&gt;
=== Raspberry Pi / MD specifics ===&lt;/div&gt;</summary>
		<author><name>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Qt_development_with_linuxmce&amp;diff=36693</id>
		<title>Qt development with linuxmce</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Qt_development_with_linuxmce&amp;diff=36693"/>
		<updated>2016-03-28T17:20:15Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article will explain how to utilize the Qt development framework with linuxmce. Currently, there are a few different types of devices that utilize the Qt framework within linuxmce&lt;br /&gt;
* Hue Controller - For controlling Phillips Hue color changing LED lights using QtNetwork to interface with the JSON api of the device.&lt;br /&gt;
* linuxmceTag - A simple command line media scanner which scans video files, and then does its best to lookup information via online api&#039;s to fill in metadata&lt;br /&gt;
* QOrbiter - Graphical user interface for linuxmce, allowing one to have classic orbiter functionality.&lt;br /&gt;
&lt;br /&gt;
== General Requirements ==&lt;br /&gt;
These are the general requirements for working with Qt and linuxmce to develop devices&lt;br /&gt;
&lt;br /&gt;
* Qt Development SDK - http://www.qt.io/download/ &lt;br /&gt;
** Choose the open source version. This will allow you to download the source as needed, libraries, and the IDE, Qt Creator.&lt;br /&gt;
** If you are targeting Qt4, you would best apt-get install qt4-dev-tools. This will pull in Qt4 libraries and the Qt Creator for qt4. Please note if creating a new project, you will be politely&lt;br /&gt;
asked to use Qt5. Qt4 based projects are scheduled to be moved to Qt5.&lt;br /&gt;
* A functioning linuxmce installation, VM or otherwise.&lt;br /&gt;
** You will also need the source code, which you can check out at http://git.linuxmce.org.&lt;br /&gt;
** Follow this existing article: http://wiki.linuxmce.org/index.php/Developing_a_DCE_Device&lt;br /&gt;
&lt;br /&gt;
Once you have setup your linuxmce box according to the article above&lt;/div&gt;</summary>
		<author><name>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Qt_development_with_linuxmce&amp;diff=36692</id>
		<title>Qt development with linuxmce</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Qt_development_with_linuxmce&amp;diff=36692"/>
		<updated>2016-03-28T17:16:45Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article will explain how to utilize the Qt development framework with linuxmce. Currently, there are a few different types of devices that utilize the Qt framework within linuxmce&lt;br /&gt;
* Hue Controller - For controlling Phillips Hue color changing LED lights using QtNetwork to interface with the JSON api of the device.&lt;br /&gt;
* linuxmceTag - A simple command line media scanner which scans video files, and then does its best to lookup information via online api&#039;s to fill in metadata&lt;br /&gt;
* QOrbiter - Graphical user interface for linuxmce, allowing one to have classic orbiter functionality.&lt;br /&gt;
&lt;br /&gt;
== General Requirements ==&lt;br /&gt;
These are the general requirements for working with Qt and linuxmce to develop devices&lt;br /&gt;
&lt;br /&gt;
* Qt Development SDK - http://www.qt.io/download/ Choose the open source version. This will allow you to download the source as needed, libraries, and the IDE, Qt Creator.&lt;br /&gt;
* A functioning linuxmce installation, VM or otherwise.&lt;br /&gt;
** You will also need the source code, which you can check out at http://git.linuxmce.org.&lt;br /&gt;
** Follow this existing article: http://wiki.linuxmce.org/index.php/Developing_a_DCE_Device&lt;/div&gt;</summary>
		<author><name>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=Qt_development_with_linuxmce&amp;diff=36691</id>
		<title>Qt development with linuxmce</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=Qt_development_with_linuxmce&amp;diff=36691"/>
		<updated>2016-03-28T17:12:14Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: Created page with &amp;quot;This article will explain how to utilize the Qt development framework with linuxmce. Currently, there are a few different types of devices that utilize the Qt framework within...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article will explain how to utilize the Qt development framework with linuxmce. Currently, there are a few different types of devices that utilize the Qt framework within linuxmce&lt;br /&gt;
* Hue Controller - For controlling Phillips Hue color changing LED lights using QtNetwork to interface with the JSON api of the device.&lt;br /&gt;
* linuxmceTag - A simple command line media scanner which scans video files, and then does its best to lookup information via online api&#039;s to fill in metadata&lt;br /&gt;
* QOrbiter - Graphical user interface for linuxmce, allowing one to have classic orbiter functionality.&lt;br /&gt;
&lt;br /&gt;
== General Requirements ==&lt;/div&gt;</summary>
		<author><name>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36653</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=36653"/>
		<updated>2016-03-22T19:42:34Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* 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;
== Upcoming fixes... ==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller  to fix floorplan / status being improperly updated.&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 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>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36652</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=36652"/>
		<updated>2016-03-22T19:41:07Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* 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;
== Upcoming fixes... ==&lt;br /&gt;
* lmce-hue-controller (862,863) - Updates HueContoller  to fix floorplan / status being improperly updated.&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>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36253</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=36253"/>
		<updated>2015-11-24T08:32:49Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* 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 1 x amd64 and 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-mid-base (899) - fistboot/setup updates, unify service control&lt;br /&gt;
* lmce-mid-joggler (900,902) - firstboot/setup updates, unify service control&lt;br /&gt;
* pluto-vdr-plugin (466,467) - close connection after use&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;
&lt;br /&gt;
== Update 31655 ==&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>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36252</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=36252"/>
		<updated>2015-11-24T08:32:30Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: &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 1 x amd64 and 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-mid-base (899) - fistboot/setup updates, unify service control&lt;br /&gt;
* lmce-mid-joggler (900,902) - firstboot/setup updates, unify service control&lt;br /&gt;
* pluto-vdr-plugin (466,467) - close connection after use&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;
&lt;br /&gt;
== Update 31655 ==&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>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=36243</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=36243"/>
		<updated>2015-11-21T15:54:02Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* 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 1 x amd64 and 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;
* pluto-website-admin (220) - fill ServerName var if it is unset, not if it is set.&lt;br /&gt;
* lmce-mid-base (899) - fistboot/setup updates, unify service control&lt;br /&gt;
* lmce-mid-joggler (900,902) - firstboot/setup updates, unify service control&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) (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>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35802</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=35802"/>
		<updated>2015-08-18T22:00:50Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* 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;
* pluto-boot-scripts (234) - Network bridging now possible  for wifi AP to have the same network as the local lan.&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;
&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>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35791</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=35791"/>
		<updated>2015-08-14T01:37:11Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* 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;
pluto-website-admin (220) - setEa2.php Fix settings for creating entertain area.&lt;br /&gt;
pluto-website-admin (220) - 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>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35789</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=35789"/>
		<updated>2015-08-12T23:36:19Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* 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;
* 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>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35788</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=35788"/>
		<updated>2015-08-12T23:34:44Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* 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;
* 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;
&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>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35787</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=35787"/>
		<updated>2015-08-12T23:33:01Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* Update 31061 */&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;
== 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>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35786</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=35786"/>
		<updated>2015-08-12T23:32:41Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* Update 31061 */&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;
== 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;
* pluto-website-admin (220) - setEa2.php Fix settings for creating entertain area.&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>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35727</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=35727"/>
		<updated>2015-07-09T04:21:47Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* 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;
&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>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35726</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=35726"/>
		<updated>2015-07-09T04:21:21Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* 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;
&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>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35725</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=35725"/>
		<updated>2015-07-09T04:21:03Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* 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;
&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>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35723</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=35723"/>
		<updated>2015-07-06T23:09:43Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* 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;
&lt;br /&gt;
* lmce-weather - some fixes by cfernandes&lt;br /&gt;
* pluto-website-admin (220) - google drive integration progress.&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>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35698</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=35698"/>
		<updated>2015-06-13T23:50:23Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* 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-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>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35697</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=35697"/>
		<updated>2015-06-13T23:49:07Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* 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-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;
&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>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35681</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=35681"/>
		<updated>2015-06-02T16:58:08Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* 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;
&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>GolgoJ4</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=LinuxMCE-1204/1404_Updates&amp;diff=35680</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=35680"/>
		<updated>2015-06-02T16:57:49Z</updated>

		<summary type="html">&lt;p&gt;GolgoJ4: /* 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;
&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>GolgoJ4</name></author>
	</entry>
</feed>