~ubuntu-branches/ubuntu/lucid/tomboy/lucid-proposed

« back to all changes in this revision

Viewing changes to Tomboy/tomboy-panel.in

  • Committer: Bazaar Package Importer
  • Author(s): Robert Ancell
  • Date: 2009-09-22 11:56:36 UTC
  • mfrom: (1.3.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20090922115636-2vw47jv5ki4z59ob
Tags: 1.0.0-0ubuntu1
* New upstream release: (LP: #434384)
  - Fix crash when showing Search from panel applet.
  - Redirect complete applet output to ~/.config/tomboy/tomboy-panel.log.
  - Every patch contributor goes in the About dialog now.
  - Add Underline add-in to Windows/Mac builds.
  - WebSync fixes on Windows.
  - Translation updates

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
export LD_LIBRARY_PATH="@pkglibdir@${LD_LIBRARY_PATH+:$LD_LIBRARY_PATH}"
4
4
export MONO_PATH=$MONO_PATH:@pkglibdir@:@pkglibdir@/addins
5
5
export TOMBOY_WRAPPER_PATH="@bindir@/@wrapper@"
 
6
TOMBOY_CONFIG_DIR="${XDG_CONFIG_HOME:-$HOME/.config}/tomboy"
 
7
TOMBOY_PANEL_LOG="${TOMBOY_CONFIG_DIR}/tomboy-panel.log"
6
8
 
7
9
THIS_EXE="@pkglibdir@/@target@"
8
10
 
10
12
    export MONO_GAC_PREFIX="@extragac@:$MONO_GAC_PREFIX"
11
13
fi
12
14
 
13
 
exec mono $MONO_EXTRA_ARGS $THIS_EXE --sm-disable --panel-applet "$@"
 
15
mkdir -p `dirname "$TOMBOY_PANEL_LOG"`
 
16
(exec mono $MONO_EXTRA_ARGS $THIS_EXE --sm-disable --panel-applet "$@") &> $TOMBOY_PANEL_LOG