|
From: <xer...@us...> - 2026-07-24 20:43:32
|
Revision: 1681
http://sourceforge.net/p/seq/svn/1681
Author: xerxes00
Date: 2026-07-24 20:43:30 +0000 (Fri, 24 Jul 2026)
Log Message:
-----------
Document capture/map/log settings in seqdef.xml; fix EQDateTimeFormat typo
Add CaptureBufferSize, CaptureSnapLen, MapDir, LogWorldPackets,
WorldLogFilename and DBStrFile to seqdef.xml with their existing code
defaults, so they appear in --dump-config and can be edited without
knowing the internal name. No behavior change.
Fix a misspelled preference key in MessageWindow: it read
"EQDateTimeForamt" while Terminal reads/writes "EQDateTimeFormat", so
the message window never picked up the configured format.
Modified Paths:
--------------
showeq/branches/xerxes-trunk-dev/conf/seqdef.xml
showeq/branches/xerxes-trunk-dev/src/messagewindow.cpp
Modified: showeq/branches/xerxes-trunk-dev/conf/seqdef.xml
===================================================================
--- showeq/branches/xerxes-trunk-dev/conf/seqdef.xml 2026-07-24 20:22:38 UTC (rev 1680)
+++ showeq/branches/xerxes-trunk-dev/conf/seqdef.xml 2026-07-24 20:43:30 UTC (rev 1681)
@@ -9,6 +9,14 @@
<seqpreferences version="1.0" >
<!-- ============================================================= -->
<section name="Network" >
+ <property name="CaptureBufferSize" >
+ <int value="4" />
+ <comment>libpcap capture buffer size in MB</comment>
+ </property>
+ <property name="CaptureSnapLen" >
+ <int value="2" />
+ <comment>libpcap per-packet snap length in KB (value is multiplied by 1024)</comment>
+ </property>
<property name="Device" >
<string value="eth0" />
<comment>your network device</comment>
@@ -560,6 +568,10 @@
<!-- ============================================================= -->
<!-- Map Manager Options -->
<section name="MapMgr" >
+ <property name="MapDir" >
+ <string value="" />
+ <comment>Shared maps directory (also settable with --maps-dir); empty = use the user/pkg maps dir</comment>
+ </property>
<property name="DefaultLineColor" >
<color name="gray" />
<comment>Default color for new lines</comment>
@@ -2110,6 +2122,14 @@
<!-- ============================================================= -->
<!-- Packet Logging options -->
<section name="PacketLogging" >
+ <property name="LogWorldPackets" >
+ <bool value="false" />
+ <comment>Log world packets to the world log file</comment>
+ </property>
+ <property name="WorldLogFilename" >
+ <string value="world.log" />
+ <comment>Filename for world packet logging</comment>
+ </property>
<property name="LogAllPackets" >
<bool value="false" />
<comment>Log al packets to global log file</comment>
@@ -2351,6 +2371,10 @@
<!-- ============================================================= -->
<!-- Options to Control the User Interface -->
<section name="Interface" >
+ <property name="DBStrFile" >
+ <string value="dbstr_us.txt" />
+ <comment>String database file (AA titles, etc.); required for AA ability names</comment>
+ </property>
<property name="Caption" >
<string value="ShowEQ - Main (ctrl+alt+t to toggle menubar)" />
<comment>Window caption</comment>
Modified: showeq/branches/xerxes-trunk-dev/src/messagewindow.cpp
===================================================================
--- showeq/branches/xerxes-trunk-dev/src/messagewindow.cpp 2026-07-24 20:22:38 UTC (rev 1680)
+++ showeq/branches/xerxes-trunk-dev/src/messagewindow.cpp 2026-07-24 20:43:30 UTC (rev 1681)
@@ -498,7 +498,7 @@
m_dateTimeFormat = pSEQPrefs->getPrefString("DateTimeFormat",
preferenceName(),
m_dateTimeFormat);
- m_eqDateTimeFormat = pSEQPrefs->getPrefString("EQDateTimeForamt",
+ m_eqDateTimeFormat = pSEQPrefs->getPrefString("EQDateTimeFormat",
preferenceName(),
m_eqDateTimeFormat);
m_displayType = pSEQPrefs->getPrefBool("DisplayType", preferenceName(),
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|