-rw-r--r-- | noncore/net/wellenreiter/ChangeLog | 6 | ||||
-rw-r--r-- | noncore/net/wellenreiter/README | 6 | ||||
-rw-r--r-- | noncore/net/wellenreiter/TODO | 11 | ||||
-rw-r--r-- | noncore/net/wellenreiter/gui/wellenreiterbase.cpp | 26 | ||||
-rw-r--r-- | noncore/net/wellenreiter/opie-wellenreiter.control | 4 |
5 files changed, 31 insertions, 22 deletions
diff --git a/noncore/net/wellenreiter/ChangeLog b/noncore/net/wellenreiter/ChangeLog index b59f9f9..4855e7d 100644 --- a/noncore/net/wellenreiter/ChangeLog +++ b/noncore/net/wellenreiter/ChangeLog | |||
@@ -1,5 +1,9 @@ | |||
1 | 2004-??-?? Michael Lauer <mickey@Vanille.de> | 1 | 2004-05-04 Michael Lauer <mickey@Vanille.de> |
2 | 2 | ||
3 | * Released as Version 1.0.3 | ||
4 | * Removed the dummy capture file which has always been written to if none was chosen. | ||
5 | * Removed the old dumb hex window tab and added a nice PackageViewer tab. | ||
6 | * Added configuration options for the PackageViewer buffer size. | ||
3 | * Registered a signal handler. We're now trying to gracefully exit and emergency close capture files. | 7 | * Registered a signal handler. We're now trying to gracefully exit and emergency close capture files. |
4 | This should allow reproducing failures. | 8 | This should allow reproducing failures. |
5 | * Added sanity check for compile time vs. run time Wireless Extension versions. | 9 | * Added sanity check for compile time vs. run time Wireless Extension versions. |
diff --git a/noncore/net/wellenreiter/README b/noncore/net/wellenreiter/README index 7607a74..59163b3 100644 --- a/noncore/net/wellenreiter/README +++ b/noncore/net/wellenreiter/README | |||
@@ -2,11 +2,11 @@ | |||
2 | /* W e l l e n r e i t e r I I | 2 | /* W e l l e n r e i t e r I I |
3 | /* =============================== | 3 | /* =============================== |
4 | /* | 4 | /* |
5 | /* Version: 1.0.2 | 5 | /* Version: 1.0.3 |
6 | /************************************************************************ | 6 | /************************************************************************ |
7 | 7 | ||
8 | ---------------------------------------------------- | 8 | ---------------------------------------------------- |
9 | Release Notes for Wellenreiter II / December 2003 | 9 | Release Notes for Wellenreiter II / May 2004 |
10 | ---------------------------------------------------- | 10 | ---------------------------------------------------- |
11 | 11 | ||
12 | ===================== | 12 | ===================== |
@@ -31,7 +31,7 @@ packages for Qt3/X11, depending on the distribution e.g. libqt3-devel, libqt3-de | |||
31 | * as root, './build install' | 31 | * as root, './build install' |
32 | * Wellenreiter will be installed in /usr/local (sorry, no relocation possible yet) | 32 | * Wellenreiter will be installed in /usr/local (sorry, no relocation possible yet) |
33 | 33 | ||
34 | The current CVS version of Wellenreiter II is _not_ X11 compatible. | 34 | NOTE: The current version of Wellenreiter II is _not_ X11 compatible. |
35 | 35 | ||
36 | ===================== | 36 | ===================== |
37 | = Precompiled Binaries | 37 | = Precompiled Binaries |
diff --git a/noncore/net/wellenreiter/TODO b/noncore/net/wellenreiter/TODO index f0a193d..a3d0d3d 100644 --- a/noncore/net/wellenreiter/TODO +++ b/noncore/net/wellenreiter/TODO | |||
@@ -2,11 +2,11 @@ | |||
2 | /* W e l l e n r e i t e r I I | 2 | /* W e l l e n r e i t e r I I |
3 | /* =============================== | 3 | /* =============================== |
4 | /* | 4 | /* |
5 | /* Version: 1.0.2 | 5 | /* Version: 1.0.3 |
6 | /************************************************************************ | 6 | /************************************************************************ |
7 | 7 | ||
8 | ---------------------------------------------------- | 8 | ---------------------------------------------------- |
9 | Ideas as of Wellenreiter II / April 2004 | 9 | Ideas as of Wellenreiter II / May 2004 |
10 | ---------------------------------------------------- | 10 | ---------------------------------------------------- |
11 | 11 | ||
12 | -------- | 12 | -------- |
@@ -30,7 +30,7 @@ | |||
30 | - pester the ethereal folks to settle for an application independant | 30 | - pester the ethereal folks to settle for an application independant |
31 | packet dissection framework... (unlikely) | 31 | packet dissection framework... (unlikely) |
32 | 32 | ||
33 | - adaptive hopping scheme ! | 33 | - implement the adaptive hopping scheme ! |
34 | 34 | ||
35 | - gather interface capabilities | 35 | - gather interface capabilities |
36 | 36 | ||
@@ -48,10 +48,7 @@ | |||
48 | 48 | ||
49 | - distinguish wireless bridges (WDS traffic) | 49 | - distinguish wireless bridges (WDS traffic) |
50 | 50 | ||
51 | - add configuration for scrollback buffer in hex window and log window | 51 | - add configuration for scrollback buffer in log window |
52 | |||
53 | - revamp hex window, make it more sophisticated than just a QMultiLineEdit | ||
54 | - tree view | ||
55 | 52 | ||
56 | - beep over headphone / customizable | 53 | - beep over headphone / customizable |
57 | 54 | ||
diff --git a/noncore/net/wellenreiter/gui/wellenreiterbase.cpp b/noncore/net/wellenreiter/gui/wellenreiterbase.cpp index 9bdf3e0..a29d520 100644 --- a/noncore/net/wellenreiter/gui/wellenreiterbase.cpp +++ b/noncore/net/wellenreiter/gui/wellenreiterbase.cpp | |||
@@ -33,6 +33,7 @@ using namespace Opie; | |||
33 | #include <qtabwidget.h> | 33 | #include <qtabwidget.h> |
34 | #endif | 34 | #endif |
35 | 35 | ||
36 | #define WELLENREITER_VERSION "V1.0.3 (unofficial)" | ||
36 | 37 | ||
37 | /* | 38 | /* |
38 | * Constructs a WellenreiterBase which is a child of 'parent', with the | 39 | * Constructs a WellenreiterBase which is a child of 'parent', with the |
@@ -105,7 +106,14 @@ WellenreiterBase::WellenreiterBase( QWidget* parent, const char* name, WFlags f | |||
105 | PixmapLabel1_3_2->setLineWidth( 2 ); | 106 | PixmapLabel1_3_2->setLineWidth( 2 ); |
106 | PixmapLabel1_3_2->setMargin( 0 ); | 107 | PixmapLabel1_3_2->setMargin( 0 ); |
107 | PixmapLabel1_3_2->setMidLineWidth( 0 ); | 108 | PixmapLabel1_3_2->setMidLineWidth( 0 ); |
108 | PixmapLabel1_3_2->setPixmap( Resource::loadPixmap( "wellenreiter/logo" ) ); | 109 | |
110 | QPixmap logo = Resource::loadPixmap( "wellenreiter/logo" ); | ||
111 | QPainter draw( &logo ); | ||
112 | draw.setPen( Qt::black ); | ||
113 | draw.setFont( QFont( "Fixed", 8 ) ); | ||
114 | draw.drawText( 30, 10, WELLENREITER_VERSION ); | ||
115 | |||
116 | PixmapLabel1_3_2->setPixmap( logo ); | ||
109 | PixmapLabel1_3_2->setScaledContents( TRUE ); | 117 | PixmapLabel1_3_2->setScaledContents( TRUE ); |
110 | PixmapLabel1_3_2->setAlignment( int( QLabel::AlignCenter ) ); | 118 | PixmapLabel1_3_2->setAlignment( int( QLabel::AlignCenter ) ); |
111 | 119 | ||
@@ -168,14 +176,14 @@ bool WellenreiterBase::event( QEvent* ev ) | |||
168 | { | 176 | { |
169 | bool ret = QWidget::event( ev ); | 177 | bool ret = QWidget::event( ev ); |
170 | if ( ev->type() == QEvent::ApplicationFontChange ) { | 178 | if ( ev->type() == QEvent::ApplicationFontChange ) { |
171 | //QFont Log_2_font( Log_2->font() ); | 179 | //QFont Log_2_font( Log_2->font() ); |
172 | //Log_2_font.setFamily( "adobe-courier" ); | 180 | //Log_2_font.setFamily( "adobe-courier" ); |
173 | //Log_2_font.setPointSize( 8 ); | 181 | //Log_2_font.setPointSize( 8 ); |
174 | //Log_2->setFont( Log_2_font ); | 182 | //Log_2->setFont( Log_2_font ); |
175 | QFont TextLabel1_4_2_font( TextLabel1_4_2->font() ); | 183 | QFont TextLabel1_4_2_font( TextLabel1_4_2->font() ); |
176 | TextLabel1_4_2_font.setFamily( "adobe-helvetica" ); | 184 | TextLabel1_4_2_font.setFamily( "adobe-helvetica" ); |
177 | TextLabel1_4_2_font.setPointSize( 10 ); | 185 | TextLabel1_4_2_font.setPointSize( 10 ); |
178 | TextLabel1_4_2->setFont( TextLabel1_4_2_font ); | 186 | TextLabel1_4_2->setFont( TextLabel1_4_2_font ); |
179 | } | 187 | } |
180 | return ret; | 188 | return ret; |
181 | } | 189 | } |
diff --git a/noncore/net/wellenreiter/opie-wellenreiter.control b/noncore/net/wellenreiter/opie-wellenreiter.control index 1d8c482..cbc287a 100644 --- a/noncore/net/wellenreiter/opie-wellenreiter.control +++ b/noncore/net/wellenreiter/opie-wellenreiter.control | |||
@@ -4,7 +4,7 @@ Priority: optional | |||
4 | Section: opie/applications | 4 | Section: opie/applications |
5 | Maintainer: Michael 'Mickey' Lauer <mickeyl@handhelds.org> | 5 | Maintainer: Michael 'Mickey' Lauer <mickeyl@handhelds.org> |
6 | Architecture: arm | 6 | Architecture: arm |
7 | Version: 1.0.2-$SUB_VERSION | 7 | Version: 1.0.3 |
8 | Depends: libqpe1, libpcap0 (0.7.2), libopiecore2, libopienet2 (>=1.8.3), libopieui2 | 8 | Depends: libqpe1, libpcap0 (>=0.7.2), libopiecore2, libopienet2, libopieui2 |
9 | Description: A WaveLAN Network Monitor | 9 | Description: A WaveLAN Network Monitor |
10 | A WaveLAN Network Monitor/Sniffer for the Opie Environment. | 10 | A WaveLAN Network Monitor/Sniffer for the Opie Environment. |