annotate gen_changelog.sh @ 1783:b0352818977b

Allow to switch to fullscreen mode using LIRC. Imagine the following situation (which happened to me several times) : you want to see photos from your bed or your sofa so you launch geeqie and go to the right directory, then you take your remote control and sit comfortably far from your keyboard and mouse. And when you want to begin to watch photos, you realize you forgot to enable full screen! You have to stand up and to go until your computer and come back, whereas you could have done it with your remote control. Patch by Bernard Massot.
author zas_
date Tue, 05 Jan 2010 17:49:50 +0000
parents 0c918f8b1f51
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1290
0c918f8b1f51 Update ChangeLog using C locale date format, add a script to ease future updates.
zas_
parents:
diff changeset
1 #!/bin/bash
0c918f8b1f51 Update ChangeLog using C locale date format, add a script to ease future updates.
zas_
parents:
diff changeset
2
0c918f8b1f51 Update ChangeLog using C locale date format, add a script to ease future updates.
zas_
parents:
diff changeset
3 # Script to update ChangeLog file,
0c918f8b1f51 Update ChangeLog using C locale date format, add a script to ease future updates.
zas_
parents:
diff changeset
4 # it keeps "pre-svn" history and insert svn log at top,
0c918f8b1f51 Update ChangeLog using C locale date format, add a script to ease future updates.
zas_
parents:
diff changeset
5 # it uses C locale for date format.
0c918f8b1f51 Update ChangeLog using C locale date format, add a script to ease future updates.
zas_
parents:
diff changeset
6 # It has to be run where ChangeLog is.
0c918f8b1f51 Update ChangeLog using C locale date format, add a script to ease future updates.
zas_
parents:
diff changeset
7 # Old ChangeLog is saved as ChangeLog.bak
0c918f8b1f51 Update ChangeLog using C locale date format, add a script to ease future updates.
zas_
parents:
diff changeset
8
0c918f8b1f51 Update ChangeLog using C locale date format, add a script to ease future updates.
zas_
parents:
diff changeset
9 [ ! -e "ChangeLog" ] && exit 1
0c918f8b1f51 Update ChangeLog using C locale date format, add a script to ease future updates.
zas_
parents:
diff changeset
10
0c918f8b1f51 Update ChangeLog using C locale date format, add a script to ease future updates.
zas_
parents:
diff changeset
11 tail -6614 ChangeLog > ChangeLog.$$.old && \
0c918f8b1f51 Update ChangeLog using C locale date format, add a script to ease future updates.
zas_
parents:
diff changeset
12 LC_ALL=C svn log -rHEAD:220 > ChangeLog.$$.new && \
0c918f8b1f51 Update ChangeLog using C locale date format, add a script to ease future updates.
zas_
parents:
diff changeset
13 cat ChangeLog.$$.old >> ChangeLog.$$.new && \
0c918f8b1f51 Update ChangeLog using C locale date format, add a script to ease future updates.
zas_
parents:
diff changeset
14 mv -f ChangeLog ChangeLog.bak && \
0c918f8b1f51 Update ChangeLog using C locale date format, add a script to ease future updates.
zas_
parents:
diff changeset
15 mv -f ChangeLog.$$.new ChangeLog
0c918f8b1f51 Update ChangeLog using C locale date format, add a script to ease future updates.
zas_
parents:
diff changeset
16
0c918f8b1f51 Update ChangeLog using C locale date format, add a script to ease future updates.
zas_
parents:
diff changeset
17 rm -f ChangeLog.$$.old
0c918f8b1f51 Update ChangeLog using C locale date format, add a script to ease future updates.
zas_
parents:
diff changeset
18 exit 0