Index: Changelog6.html
===================================================================
--- Changelog6.html (revision 9893)
+++ Changelog6.html (working copy)
@@ -1,6 +1,14 @@
-
Version 6.5.x - 2006-MM-DD
+Version 6.5.1 - 2006-MM-DD
+ - Bug Fixes:
+
- #4157 - Server IP address should be displayed along with version information on basic server setup pages
+
+
+
+Version 6.5.0 - 2006-09-19
+
+
- Firmware updates:
- Firmware 18 for Transporter.
Index: strings.txt
===================================================================
--- strings.txt (revision 9893)
+++ strings.txt (working copy)
@@ -9745,6 +9745,9 @@
SV Ändra
ZH_CN 更动
+SERVER_IP_ADDRESS
+ EN Server IP address
+
PLAYER_IP_ADDRESS
CS IP adresa tohoto přehrávače je:
DE Die IP-Adresse für diesen Player ist:
Index: Slim/Utils/Misc.pm
===================================================================
--- Slim/Utils/Misc.pm (revision 9893)
+++ Slim/Utils/Misc.pm (working copy)
@@ -996,6 +996,14 @@
Slim::Utils::Unicode::currentLocale(),
);
+ my $serverIP = Slim::Utils::Network::hostToAddr(Slim::Utils::Network::hostName());
+ push @diagString, sprintf("%s%s %s",
+
+ Slim::Utils::Strings::string('SERVER_IP_ADDRESS'),
+ Slim::Utils::Strings::string('COLON'),
+ $serverIP,
+ );
+
# Also display the Perl version and MySQL version
push @diagString, sprintf("%s%s %s %s",