Skip to content

Commit 0cf88bc

Browse files
committed
Update after 0.5.2 release.
1 parent 0498bc6 commit 0cf88bc

File tree

6 files changed

+13
-14
lines changed

6 files changed

+13
-14
lines changed

ChangeLog

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
QFE version SVN ==============================================================
2+
...
3+
4+
QFE version 0.5.2 === Released 20.02.2008 ====================================
25
- Fix decode "FMPT" and "TOPT" kludges in MSG-areas.
36
- Fixes to compile on FreeBSD.
47
- Fix crash on empty included file in fidoconfig.
58
- Patch for HUSKY no more be needed.
6-
...
79

8-
QFE version 0.5.1 === Released 27.01.2007 ======================================
10+
QFE version 0.5.1 === Released 27.01.2007 ====================================
911
- Fix update squish base UID when write new message.
1012
- Fix write new message & delete message in Jam-areas.
1113
- Fix UU & Base64 decoder for work with badly-encoded parts.

config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define _CONFIG_H_
33

44
/* QFE Version */
5-
#define QFE_VERSION "0.5.1-svn"
5+
#define QFE_VERSION "0.5.2-svn"
66

77
/* QFE SVN Revision */
88
#define QFE_REVISION "$LastChangedRevision$"

misc/make_dist.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ mkdir -p .tmp
1818
rm -f .tmp/$1
1919

2020
PROGDIR=`pwd`
21-
PROGDIR=`basename $PROGDIR`
21+
PROGDIR=`basename "$PROGDIR"`
2222
OUTFILE=$PROGDIR/.tmp/$1
2323

2424
cd ..
25-
tar --exclude=$PROGDIR/.distignore --exclude-from=$PROGDIR/.distignore -jcvf $OUTFILE $PROGDIR
26-
mv -f $OUTFILE $PROGDIR
27-
cd $PWDDIR
25+
tar --exclude="$PROGDIR/.distignore" --exclude-from="$PROGDIR/.distignore" -jcvf $OUTFILE "$PROGDIR"
26+
mv -f $OUTFILE "$PROGDIR"
27+
cd "$PWDDIR"
2828

2929
exit 0

qfe.lsm

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Begin4
22
Title: qfe
3-
Version: 0.5.1
4-
Entered-date: 2007-01-27
3+
Version: 0.5.2
4+
Entered-date: 2008-02-20
55
Description: QFE is full-featured cross-platform FTN message editor with a
66
graphical interface written on C++/Qt, and does not depend on
77
either KDE, Gnome or other window managers.
@@ -14,9 +14,7 @@ Keywords: qt, gui, graphical, fido, ftn, fidonet, message, mail, editor
1414
Author: shc@users.sourceforge.net (Alexander Shiyan)
1515
Maintained-by: shc@users.sourceforge.net (Alexander Shiyan)
1616
Primary-site: http://dl.sourceforge.net/sourceforge/qfe/
17-
260 kB qfe-0.5.1.tar.bz2
18-
264 kB qfe-0.5.1-0.fc5.src.rpm
19-
528 kB qfe-0.5.1-0.fc5.i386.rpm
17+
260 kB qfe-0.5.2.tar.bz2
2018
Alternate-site: http://qfe.sourceforge.net/
2119
Platforms: Linux, MacOS X, Win32. Depends on Qt-library.
2220
Copying-policy: GPL

qfe.pri

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ win32 {
123123
QMAKE_UIC = $$QMAKE_UIC -tr QObject::tr
124124

125125
unix {
126-
VERSION = $$system(awk '/QFE_VERSION/ {print $3}' <$$PWD/config.h | sed s/\"//g)
126+
VERSION = $$system(awk '/QFE_VERSION/ {print $3}' <"$$PWD/config.h" | sed s/\"//g)
127127
}
128128

129129
!win32 {

qfe.pro

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ DEPENDPATH += doc src
4040

4141
unix:!mac:exists(.distignore) {
4242
DISTARCH = "$$MAINTARGET"-"$$VERSION".tar.bz2
43-
DIRNAME = $$system(basename `pwd`)
4443

4544
dist.target = dist
4645
dist.commands = @cd misc && sh -c "./make_dist.sh $$DISTARCH"

0 commit comments

Comments
 (0)