Binary files /tmp/EZot22D7Yq/mythbuntu-live-autostart-0.49/artwork/ubiquity_computer.png and /tmp/QCL2DaErAH/mythbuntu-live-autostart-0.50/artwork/ubiquity_computer.png differ diff -Nru mythbuntu-live-autostart-0.49/Changelog mythbuntu-live-autostart-0.50/Changelog --- mythbuntu-live-autostart-0.49/Changelog 2010-09-25 08:36:16.000000000 +0000 +++ mythbuntu-live-autostart-0.50/Changelog 2010-09-25 08:36:16.000000000 +0000 @@ -1,3 +1,12 @@ +mythbuntu-live-autostart (0.50-0ubuntu1) maverick; urgency=low + + * Update some artwork. + * Fix x11vnc installation. + * Fixup the packages that are installed by the ubiquity prepare page. + (We don't want the gstreamer packages) + + -- Mario Limonciello Sat, 25 Sep 2010 03:30:57 -0500 + mythbuntu-live-autostart (0.49-0ubuntu1) maverick; urgency=low [ Mario Limonciello ] diff -Nru mythbuntu-live-autostart-0.49/debian/changelog mythbuntu-live-autostart-0.50/debian/changelog --- mythbuntu-live-autostart-0.49/debian/changelog 2010-09-25 08:36:16.000000000 +0000 +++ mythbuntu-live-autostart-0.50/debian/changelog 2010-09-25 08:36:16.000000000 +0000 @@ -1,3 +1,12 @@ +mythbuntu-live-autostart (0.50-0ubuntu1) maverick; urgency=low + + * Update some artwork. + * Fix x11vnc installation. + * Fixup the packages that are installed by the ubiquity prepare page. + (We don't want the gstreamer packages) + + -- Mario Limonciello Sat, 25 Sep 2010 03:30:57 -0500 + mythbuntu-live-autostart (0.49-0ubuntu1) maverick; urgency=low [ Mario Limonciello ] diff -Nru mythbuntu-live-autostart-0.49/debian/rules mythbuntu-live-autostart-0.50/debian/rules --- mythbuntu-live-autostart-0.49/debian/rules 2010-09-25 08:36:16.000000000 +0000 +++ mythbuntu-live-autostart-0.50/debian/rules 2010-09-25 08:36:16.000000000 +0000 @@ -1,3 +1,3 @@ #!/usr/bin/make -f -BZR_REVISION+=134 +BZR_REVISION+=138 include /usr/share/mythbuntu/mythbuntu.make diff -Nru mythbuntu-live-autostart-0.49/ubiquity/plugins/myth-install-type.py mythbuntu-live-autostart-0.50/ubiquity/plugins/myth-install-type.py --- mythbuntu-live-autostart-0.49/ubiquity/plugins/myth-install-type.py 2010-09-12 16:01:29.000000000 +0000 +++ mythbuntu-live-autostart-0.50/ubiquity/plugins/myth-install-type.py 2010-09-25 08:31:53.000000000 +0000 @@ -71,6 +71,12 @@ class Page(Plugin): def prepare(self): + #we don't want all the gstreamer stuff standard ubuntu brings in + #flash is nice though + more_nonfree = misc.create_bool(self.db.get('ubiquity/use_nonfree')) + if more_nonfree: + self.preseed('ubiquity/nonfree_package', 'flashplugin-installer') + self.questions = ['install_type'] questions = [] for question in self.questions: @@ -162,7 +168,11 @@ if not os.path.exists(directory): os.makedirs(directory) shutil.move('/root/.vnc/passwd', directory + '/passwd') - install_misc.record_installed(['x11nvc']) + install_misc.record_installed(['x11vnc']) + if misc.create_bool(self.db.get('ubiquity/use_nonfree')): + install_misc.chroot_setup(self.target) + install_misc.chrex(self.target, '/usr/share/doc/libdvdread4/install-css.sh') + install_misc.chroot_cleanup(self.target) def install(self, target, progress, *args, **kwargs): self.target = target