~ubuntu-branches/ubuntu/trusty/miro/trusty

« back to all changes in this revision

Viewing changes to platform/windows-xul/Miro.py

  • Committer: Bazaar Package Importer
  • Author(s): Uwe Hermann
  • Date: 2010-07-31 20:00:43 UTC
  • mfrom: (1.4.9 upstream) (1.7.4 sid)
  • Revision ID: james.westby@ubuntu.com-20100731200043-0r2gn1z0amlsndas
Tags: 3.0.3-1
* New upstream release (Closes: #588299).
   + Upstream now uses webkit instead of xulrunner (Closes: 499652).
   + Fixes broken Youtube downloads.
* debian/copyright: Various updates, drop obsolete entries.
* README.Debian: Mention libwebkit-1.0-2-dbg as useful for debugging.
* Standards-Version: 3.9.1 (no changes required).
* debian/patches/:
   + 10_movies_dir.patch: Update.
   + 50_miro_debug_fix.patch: Update.
   + 102_xulrunner_bug_workaround.patch: Drop, obsolete.
   + Make all patches work with -p1 and add descriptions for all of them.
* Use new '3.0 (quilt)' source format.
* No longer use deprecated cdbs 'simple-patchsys.mk'.
* Drop no longer needed build-dependencies:
  + python-libtorrent (>= 0.14.10-2)
  + libtorrent-rasterbar-dev (>= 0.14.10-2)
  + python-gnome2-extras-dev (>= 2.19.1)
  + xulrunner-dev (>= 1.9.1)
  + libxv-dev
  + libssl-dev
  + libffi-dev
* Drop no longer needed dependencies:
  + python-gtkmozembed (>= 2.19.1) | python-gnome2-extras (>= 2.19.1)
  + xulrunner-1.9.1
* Drop democracyplayer, democracyplayer-data transitional packages.
* Use versioned python-dbus (>= 0.83.1) dependency (Closes: #587963).
* Use versioned python-gst0.10 (>= 0.10.18-2) dependency (Closes: #580609).

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
 
29
29
"""Startup the Main Miro process."""
30
30
 
31
 
 
32
31
def startup():
33
32
    theme = None
34
33
    # Should have code to figure out the theme.
41
40
        return
42
41
    pipe_server.start_process()
43
42
 
 
43
    from miro.plat import miro_urlparse
 
44
    miro_urlparse.apply_monkey_patch()
 
45
 
44
46
    from miro.plat import prelogger
45
47
    prelogger.install()
46
48