~ubuntu-branches/ubuntu/karmic/prism/karmic-security

« back to all changes in this revision

Viewing changes to debian/patches/fix_desktop_launcher.patch

  • Committer: Bazaar Package Importer
  • Author(s): Fabien Tassin
  • Date: 2008-03-16 14:16:47 UTC
  • Revision ID: james.westby@ubuntu.com-20080316141647-63uglwsrpqdsa1a5
Tags: 0.8+svn20071115r8030-0ubuntu2
* Bump Standards-Version to 3.7.3
  - update debian/control
* Bump debhelper requirement to (>= 5.0.51~) because of dh_icons
  - update debian/control
* Fix desktop icons created by prism (LP: #196861)
  Thanks to Michael Chang <thenewme91@gmail.com>
  - update debian/patches/fix_desktop_launcher.patch
* Updated desktop file categories (LP: #180879)
  Thanks to Dean Sas <dean@deansas.org>
  - update debian/prism-google-*.desktop
* Update update-apps.sh to handle desktop file categories
  - update debian/update-apps.sh
  - update debian/rules
* Update prism-google-groups.desktop category too
  - update debian/prism-google-groups.desktop
* Restore auto-save of webapps size and position broken since ScriptableIO
  has been dropped from xulrunner-1.9 (at beta 3).
  - add debian/patches/remove_scriptableio.patch
  - update debian/patches/series
* Prevent webapps to be unpacked at each run so user data is now
  preserved (LP: #200469)
  - update debian/control
  - update debian/prism.sh

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
+    // we don't want to call xulrunner from paths like /usr/lib/xulrunner-1.9b2pre/xulrunner
21
21
+    // which change with releases. Instead, call using the link maintained in the
22
22
+    // xulrunner-1.9 package. We also need to specify our application.ini.
23
 
+    cmd += "Exec=xulrunner-1.9 /usr/lib/prism/application.ini -webapp " + id + "\n";
 
23
+    cmd += "Exec=xulrunner-1.9 /usr/share/prism/application.ini -webapp " + id + "\n";
24
24
     cmd += "Icon=" + icon.path + "\n";
25
25
+    cmd += "Categories=GTK;Network;\n";
26
26
+    cmd += "StartupWMClass=Prism\n";