Versiones actuales: ||| Galaxytool: v5.1 ||| Galaxytoolbar: v2.6.32 |||

Diferencia entre revisiones de «Galaxietool Changelog»

De Galaxytool wiki
Saltar a: navegación, buscar
 
Línea 1: Línea 1:
"; } mysql_connect($dbhost,$dbusername,$dbpassword) or die(mysql_error()); mysql_select_db($dbname) or die(mysql_error()); // Tabelle f�r die Galaxieansichten+ echo "Create Table for galaxie view...\n"; $query = "CREATE TABLE ".$dbtablename." ( galaxie int(2) NOT NULL default '0', system int(3) NOT NULL default '0', planet int(2) NOT NULL default '0', mond char(1) NOT NULL default '', coordinates varchar(9) NOT NULL default '', mondgr smallint(5) unsigned NOT NULL default '0', metall int(10) unsigned NOT NULL default '0', kristall int(10) unsigned NOT NULL default '0', ally varchar(10) NOT NULL default '', planetname varchar(20) NOT NULL default '', spielername varchar(30) NOT NULL default '', ogame_playerid int(11) unsigned NOT NULL default '0', status varchar(5) NOT NULL default '', zeit varchar(20) NOT NULL default '', userid smallint(6) unsigned NOT NULL default '0', notices enum('true','false') NOT NULL default 'false', reports enum('true','false') NOT NULL default 'false', PRIMARY KEY (galaxie,system,planet), KEY spielername (spielername), KEY ally (ally), KEY status (status), KEY coordinates (coordinates) )"; mysql_query($query) or die(mysql_error()); echo " done
+
v 3.52
\n"; // Tabelle f�r die Benutzerverwaltung echo "Create Table for users...\n"; $query = "CREATE TABLE $utablename ( id smallint(10) unsigned NOT NULL auto_increment, username varchar(20) NOT NULL default '', userpass varchar(32) NOT NULL default '', ogame_playerid int(11) unsigned NOT NULL default '0', email varchar(50) NOT NULL default '', ingame varchar(20) NOT NULL default '', allytag varchar(10) NOT NULL default '', stylepath varchar(255) NOT NULL default '', cansearch enum('true','false') NOT NULL default 'false', caninsert enum('true','false') NOT NULL default 'false', statusview enum('true','false') NOT NULL default 'false', probeview enum('true','false') NOT NULL default 'false', userman enum('true','false') NOT NULL default 'false', allyhistory enum('true','false') NOT NULL default 'false', diplomatic enum('true','false') NOT NULL default 'false', status enum('email','admin','active') NOT NULL default 'email', logins smallint(5) unsigned NOT NULL default '0', lastlogin datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (id), UNIQUE KEY username (username) )"; mysql_query($query) or die(mysql_error()); echo " done
+
 
\n"; // Adminuser eintragen echo "Create first user (admin) ...\n"; $query = "INSERT INTO $utablename (id, username, userpass, stylepath, cansearch, caninsert, statusview, probeview, userman, allyhistory, diplomatic, status) VALUES (1, 'admin', md5('galatool'),'styles.css', 'true', 'true', 'true', 'true', 'true', 'true', 'true', 'active')"; mysql_query($query) or die(mysql_error()); echo " done
+
    * changes at french language files
\n"; echo "Create Table for Playerstats...\n"; $query = "CREATE TABLE $pstablename ( `playername` varchar(30) NOT NULL default '', `ally` varchar(30) NOT NULL default '', `ogame_playerid` int(11) unsigned NOT NULL default '0', `rank` smallint(5) unsigned NOT NULL default '0', `points` int(10) unsigned NOT NULL default '0', `frank` smallint(5) unsigned NOT NULL default '0', `fpoints` int(10) unsigned NOT NULL default '0', `rrank` smallint(5) unsigned NOT NULL default '0', `rpoints` int(10) unsigned NOT NULL default '0', `last_update` varchar(20) NOT NULL default '', PRIMARY KEY (`playername`), UNIQUE KEY `ogame_playerid` (`ogame_playerid`) )"; mysql_query($query) or die(mysql_error()); echo " done
+
    * table headers at english "extended report search" are now filled correctly
\n"; echo "Create Table for Allystats...\n"; $query = "CREATE TABLE $astablename ( `allyname` varchar(30) NOT NULL default '', `rank` smallint(5) unsigned NOT NULL default '0', `points` int(10) unsigned NOT NULL default '0', `frank` smallint(5) unsigned NOT NULL default '0', `fpoints` int(10) unsigned NOT NULL default '0', `rrank` smallint(5) unsigned NOT NULL default '0', `rpoints` int(10) unsigned NOT NULL default '0', `members` smallint(5) unsigned NOT NULL default '0', `allystatus` enum('nap','ally','war','boycott','neutral','nothing','own','wing') NOT NULL default 'nothing', `last_update` varchar(20) NOT NULL default '', PRIMARY KEY (`allyname`) )"; mysql_query($query) or die(mysql_error()); echo " done
+
    * spaces at alliance tags are no longer removed by the toolbar (toolbar 1.41)
\n"; echo "Create Table for notices...\n"; $query = "CREATE TABLE $noticetable ( id int(11) NOT NULL auto_increment, userid smallint(6) NOT NULL default '0', public enum('true','false') NOT NULL default 'true', noticetext text NOT NULL, coordinates varchar(9) NOT NULL default '', timevalue varchar(20) NOT NULL default '', PRIMARY KEY (id), UNIQUE KEY coordinates (coordinates,userid), KEY userid (userid), KEY public (public), KEY coordinates_2 (coordinates) )"; mysql_query($query) or die(mysql_error()); echo " done
+
    * problem with own statistic page fixed
\n"; echo "Create Table for Reports...\n"; $query = "CREATE TABLE $reporttable ( id int(10) unsigned NOT NULL auto_increment, coordinates varchar(9) NOT NULL default '', moon enum('true','false') NOT NULL default 'false', metal int(10) unsigned NOT NULL default '0', crystal int(10) unsigned NOT NULL default '0', deuterium int(10) unsigned NOT NULL default '0', energy int(10) unsigned NOT NULL default '0', kt mediumint(8) unsigned NOT NULL default '0', gt mediumint(8) unsigned NOT NULL default '0', lj mediumint(8) unsigned NOT NULL default '0', sj mediumint(8) unsigned NOT NULL default '0', krz mediumint(8) unsigned NOT NULL default '0', ss mediumint(8) unsigned NOT NULL default '0', kolo mediumint(8) unsigned NOT NULL default '0', rec mediumint(8) unsigned NOT NULL default '0', spio mediumint(8) unsigned NOT NULL default '0', bomb mediumint(8) unsigned NOT NULL default '0', zerri mediumint(8) unsigned NOT NULL default '0', ds mediumint(8) unsigned NOT NULL default '0', sat mediumint(8) unsigned NOT NULL default '0', rak mediumint(8) unsigned NOT NULL default '0', ll mediumint(8) unsigned NOT NULL default '0', sl mediumint(8) unsigned NOT NULL default '0', ion mediumint(8) unsigned NOT NULL default '0', gauss mediumint(8) unsigned NOT NULL default '0', plasma mediumint(8) unsigned NOT NULL default '0', ksk mediumint(8) unsigned NOT NULL default '0', gsk mediumint(8) unsigned NOT NULL default '0', arak mediumint(8) unsigned NOT NULL default '0', irak mediumint(8) unsigned NOT NULL default '0', memi tinyint(3) unsigned NOT NULL default '0', krimi tinyint(3) unsigned NOT NULL default '0', deutsyn tinyint(3) unsigned NOT NULL default '0', solar tinyint(3) unsigned NOT NULL default '0', fusion tinyint(3) unsigned NOT NULL default '0', robo tinyint(3) unsigned NOT NULL default '0', nani tinyint(3) unsigned NOT NULL default '0', rawe tinyint(3) unsigned NOT NULL default '0', mesp tinyint(3) unsigned NOT NULL default '0', krissp tinyint(3) unsigned NOT NULL default '0', deutsp tinyint(3) unsigned NOT NULL default '0', folab tinyint(3) unsigned NOT NULL default '0', terra tinyint(3) unsigned NOT NULL default '0', allydep tinyint(3) unsigned NOT NULL default '0', raksilo tinyint(3) unsigned NOT NULL default '0', mbase tinyint(3) unsigned NOT NULL default '0', sensor tinyint(3) unsigned NOT NULL default '0', sprungtor tinyint(3) unsigned NOT NULL default '0', spiolvl tinyint(3) unsigned NOT NULL default '0', computech tinyint(3) unsigned NOT NULL default '0', waffentech tinyint(3) unsigned NOT NULL default '0', schildtech tinyint(3) unsigned NOT NULL default '0', rpz tinyint(3) unsigned NOT NULL default '0', energytech tinyint(3) unsigned NOT NULL default '0', hypertech tinyint(3) unsigned NOT NULL default '0', vbt tinyint(3) unsigned NOT NULL default '0', impulse tinyint(3) unsigned NOT NULL default '0', hra tinyint(3) unsigned NOT NULL default '0', lasertech tinyint(3) unsigned NOT NULL default '0', iontech tinyint(3) unsigned NOT NULL default '0', plasmatech tinyint(3) unsigned NOT NULL default '0', forschungsnetz tinyint(3) unsigned NOT NULL default '0', gravi tinyint(3) unsigned NOT NULL default '0', fleet_resis bigint(20) unsigned NOT NULL default '0', defence_resis bigint(20) unsigned NOT NULL default '0', scantime varchar(14) NOT NULL default '', scanned enum('ressources','fleet','defence','buildings','research') NOT NULL default 'ressources', PRIMARY KEY (id), UNIQUE KEY coordinates_2 (coordinates,moon) )"; mysql_query($query) or die(mysql_error()); echo " done
+
    * fixed problem with time intervall search at alliance history
\n"; echo "Create Table for IP Addresses...\n"; $query = "CREATE TABLE $iptablename ( id int(10) unsigned NOT NULL auto_increment, userid smallint(5) unsigned NOT NULL default '0', ip varchar(15) NOT NULL default '', logintime datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (id) )"; mysql_query($query) or die(mysql_error()); echo " done
+
 
\n"; echo "Create Table for Shoutbox...\n"; $query = "CREATE TABLE $shouttable ( id mediumint(8) unsigned NOT NULL auto_increment, username varchar(20) NOT NULL default '', shouttext varchar(255) NOT NULL default '', shoutdate datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (id) )"; mysql_query($query) or die(mysql_error()); echo " done
+
 
\n"; echo "Create Table for Allyhistory...\n"; $query = "CREATE TABLE $allyhistory ( id int(10) unsigned NOT NULL auto_increment, ogame_playerid int(11) unsigned NOT NULL default '0', playername varchar(30) NOT NULL default '', alliance varchar(30) NOT NULL default 'main', score int(11) unsigned NOT NULL default '0', date_added date NOT NULL default '0000-00-00', PRIMARY KEY (id), UNIQUE KEY ogame_playerid (ogame_playerid,date_added) )"; mysql_query($query) or die(mysql_error()); echo " done
+
v 3.51
\n"; echo "Installation complete."; ?>
+
 
 +
    * search for allytag works again
 +
    * fix at install.php (was not complete)
 +
    * legend at allyhistory is now below the graph
 +
    * to prevent a timeout, the session gets refreshed every 1000 seconds
 +
    * sorting at allyhistory works also if there are input fields for the alliance
 +
    * second graph is shown again at allyhistory
 +
    * missing french translation inserted (still some languages not complete!)
 +
    * download link and help link links directly to the corresponding page
 +
 
 +
 
 +
v 3.5
 +
 
 +
    * changed "COLOR" to "color" at BB Codes
 +
    * search for at least XXX Resources (metal+crystal+deut) at reports
 +
    * more information at index page after login -> number of moons, raidable planets, empty systems, full systems && values have a dot 
 +
      as divider
 +
    * sorting at allyhistory and userstatistics
 +
    * no permission needed to view allyhistory ONLY for inserting and deleting
 +
    * players can now be removed from allyhistory if they have left the alliance
 +
    * galaxyview navigation as in ogame (left,right,up,down,tab)
 +
    * each report is colored at report search - depending on its age
 +
    * enter a timespan at allyhistory to see the progress of your member
 +
    * newly registered players will receive an email when their account is activated
 +
    * wings are now supported at allyhistory
 +
    * new feature for working with reports (extended search which is very useful for planning raids)
 +
    * reportparser extended: shows if the report was from a moon and tells when entries could not be inserted because they were not at
 +
      the probe list
 +
    * inserted / canceled reports are now shown in different colors at the list
 +
    * reports from moons are now also recognized as moon when a lunarbase, jumpgate or sensor phalanx is built there
 +
    * reduced traffic sent by the toolbar for statistics and galaxy views
 +
 
 +
 
 +
v 3.42
 +
 
 +
    * No "space" at the end of the attributes.php file any more (caused some problems)
 +
    * BB Code-page-bug removed at show.php
 +
    * Reportproblem fixed
 +
    * adjustments for balkan
 +
    * adjustments for turkish language
 +
    * adjustments for polish language (moons still cause some problems with copy & paste)
 +
 
 +
 
 +
v 3.41
 +
 
 +
    * bugfixes!
 +
 
 +
 
 +
v 3.4
 +
 
 +
    * many fixes for the changes at .org universes
 +
    * display what moons can scan a system
 +
    * display what planets can send missiles
 +
    * adjustments at the galaxyplugin file to work with toolbar 1.3
 +
    * new feature: ally history
 +
    * new permission: diplomat (allow to change status at allystats)
 +
    * splitted config.php into two files (new file: attributes.php)
 +
    * added charset to every page (can be changed at attributes.php)
 +
    * adjustments for polish
 +
    * bug fixed for polish and turkish moon reports
 +
    * adjustments at the danish language file
 +
    * standard search now as BB-Code results possible
 +
    * extend report search: - search with player / ally name
 +
    * report field values > 0 means more units/level than that. < 0 means at max the absolute value of this number for the units/level
 +
    * report address is now recognized by tools like speedsim
 +
 
 +
 
 +
v 3.3
 +
 
 +
    * removed security hole (passwords are stored with normal characters only a-z,A-Z,0-9! - so change your password before updating or
 +
      ask your admin after updating to change your password, or request a new password)
 +
    * redesigned report parser
 +
    * added a check to verify that server url and session url are always matching (security reasons)
 +
    * stats update for own playerstats fixed (updating own stats is now possible)
 +
    * adjusted timescales from db status
 +
    * added email-from to the config file
 +
    * email-from is used to send an email to this address when someone registered himself at the tool
 +
    * moved the version definition from each language file to the config file
 +
    * you can add your own text at the register page, just change the content of the register.txt file (which you should not overwrite
 +
      during update process in the future)
 +
    * You can now insert more than one galaxyview OR report at the text area
 +
    * notices linked at report-search results
 +
    * search for score and fleetstatistics now with range
 +
    * added danish language (banned players are not recognized because they have the same letter "s" as strong players at the galaxy )
 +
 
 +
 
 +
v 3.2
 +
 
 +
    * added italian and turkish
 +
    * up to 50 galaxies are possible now (german u50 has so many)
 +
    * fixed report parser
 +
    * added tooltips as known from ogame instead of using title attributes (update of skins needed)
 +
    * noob status stored at the database from now on
 +
    * noob player flag is shown at galaxy view and search result
 +
    * search for players which are not banned, vacation mode or noob
 +
    * playerstatus is now shown in the same colors as in ogame
 +
    * added playerstats/allystats to the internal galaxy view with tooltips
 +
    * adjusted parser for changes at portugues ogame
 +
 
 +
 
 +
v 3.15
 +
 
 +
    * removed debugging information from spioparser.inc.php and galaxyplugin.php (may cause problems)
 +
    * set the entry for fleetrank at the constants
 +
 
 +
 
 +
v 3.14
 +
 
 +
    * Search for players with fleetrank
 +
    * fixed a bug with moons at spanish version
 +
    * added polish as new language
 +
    * removed check for empty mysql password
 +
 
 +
 
 +
v 3.13
 +
 
 +
    * bugs fixed
 +
    * this version can receive reports from the galaxy toolbar
 +
    * number of players at vacation mode shown at the overview page
 +
 
 +
 
 +
v 3.12
 +
 
 +
    * fixed a heavy bug in the galaxyplugin.php file
 +
 
 +
 
 +
v 3.11
 +
 
 +
    * 403 forbidden if you try to insert data with the toolbar and you don't have access to it - instead of saying it was inserted
 +
    * Bug fixed with updated galaxy views from the toolbar - reports and notices in that systems were not displayed any longer
 +
    * more information if parsing fails
 +
    * Bugfix at the javatool parsing file for french, balkan and portugues
 +
 
 +
 
 +
v 3.1
 +
 
 +
    * declaring default language in config.php
 +
    * playerstatus localized in every language
 +
    * espionage reports now searchable using time values
 +
    * now you can see which parts of an espionage report were discovered and which not
 +
    * searching in espionage reports uses now >= instead of > (and only values different from 0)
 +
    * adding / viewing espionage reports now changeable at the user management
 +
    * update.php modified so you do not need to modify it manualy
 +
    * search function can now find players of the top X
 +
    * added statistics for players and alliances
 +
    * allies can have a speacial status like war, own ally ... - you mark them and the get a special color at the search or galaxy view
 +
      page
 +
    * search for an empty string at notices gets now 0 results
 +
    * public and private notices have a different color at the notice overview page - also the update time is shown there
 +
    * created a file for the galaxy toolbar to receive the information from it
 +
    * with the galaxy toolbar you can add / update the statistics (cannot be done with copy & paste)
 +
    * added "balkan" and french as new languages
 +
    * searching an alliance out of the galaxy view and searching a player directly after that works now as expected
 +
    * updated parser to the latest galaxy view changes from version 0.72c
 +
    * user can register himself at the tool - admin only has to activate the account and give the permissions
 +
    * number of logins counted
 +
    * enhanced user management
 +
    * detailed user information (last login, last IPs to see who is sharing his account)
 +
    * renamed $ostats_universe and $ostats_server to $ostat_ ... to avoid confusion with www.ostats.de
 +
    * added a shoutbox at the overview page
 +
    * stats older than 30 days are removed at every stats update
 +
    * for skin makers - some new colors were added and i cleaned up the file a bit
 +
 
 +
 
 +
v 3.04
 +
 
 +
    * Bugfix in Spioparser: Research Lab was not interpreted correctly
 +
    * Bugfix in Galaxyview-Parser : under special circumstances the galaxy view was not analysed correctly, the playerstatus was always
 +
      wrong!
 +
    * added dutch language
 +
    * Bugfix with update finder - it was the wrong link (https instead of http) so the update finder did not work
 +
 
 +
 
 +
v 3.03
 +
 
 +
    * added missing Terraformer building
 +
    * bug fixed: reports with inter-planetary missiles were not analysed completely
 +
 
 +
 
 +
v 3.02
 +
 
 +
    * column 'mond' specified twice - Bug removed
 +
 
 +
 
 +
v 3.01
 +
 
 +
    * Bugxfixing -update!
 +
 
 +
 
 +
v 3.0
 +
 
 +
    * several bugs fixed
 +
    * Search with time values possible
 +
    * Search for debris field
 +
    * Search for colonizeable planets
 +
    * Search for planets with notices
 +
    * Search for planets with reports
 +
    * Analysing of espionage reports (one report for each planet and each moon)
 +
    * Notices for each coordinates (every player can add private or public notices to coordinates to store information about the target
 +
      (fleet, saving behavour ...)
 +
    * Search within notices and reports
 +
    * added spanish language - for output and for analysing spanish reports and galaxy views
 +
    * skins changeable -- usermanagement (change password) and there you can add an url to an alternativ styles.css
 +
    * check for new version if you click on the version on the left side
 +
    * displays the universe
 +
    * Ostats links integrated
 +
    * Example of galaxy view changed
 +
 
 +
 
 +
 
 +
v 2.22
 +
 
 +
    * fixed javahelp.php, so the javatool is usable again
 +
 
 +
 
 +
v 2.21
 +
 
 +
    * bugfix within the galaxy status view
 +
    * improvements within the galaxy view parser to parse the new layout
 +
    * additional tables for user and allystats
 +
    * search results now chooseable between 10,20,50 or 100 results per page
 +
    * improved the internal galaxy view
 +
    * - navigation as you know it from ogame
 +
    * - click on a player or ally opens up the search site with the specific results
 +
    * - shows the date of the entry
 +
    * - moon and df size is shown
 +
    * no white "session timeout" page - moved to the login page instead
 +
    * developer board is the english ogame board now
 +
    * inserted galaxy view to the menu bar on the left
 +
    * fixed problem with moon searches
 +
 
 +
 
 +
 
 +
v 2.11
 +
 
 +
    * bugfix within the functions.inc.php, so own links are shown correctly now
 +
    * bugfix withen the secret/index.php, stats are now correct

Revisión del 19:00 23 feb 2007

v 3.52

   * changes at french language files
   * table headers at english "extended report search" are now filled correctly
   * spaces at alliance tags are no longer removed by the toolbar (toolbar 1.41)
   * problem with own statistic page fixed
   * fixed problem with time intervall search at alliance history


v 3.51

   * search for allytag works again
   * fix at install.php (was not complete)
   * legend at allyhistory is now below the graph
   * to prevent a timeout, the session gets refreshed every 1000 seconds
   * sorting at allyhistory works also if there are input fields for the alliance
   * second graph is shown again at allyhistory
   * missing french translation inserted (still some languages not complete!)
   * download link and help link links directly to the corresponding page


v 3.5

   * changed "COLOR" to "color" at BB Codes
   * search for at least XXX Resources (metal+crystal+deut) at reports
   * more information at index page after login -> number of moons, raidable planets, empty systems, full systems && values have a dot  
     as divider
   * sorting at allyhistory and userstatistics
   * no permission needed to view allyhistory ONLY for inserting and deleting
   * players can now be removed from allyhistory if they have left the alliance
   * galaxyview navigation as in ogame (left,right,up,down,tab)
   * each report is colored at report search - depending on its age
   * enter a timespan at allyhistory to see the progress of your member
   * newly registered players will receive an email when their account is activated
   * wings are now supported at allyhistory
   * new feature for working with reports (extended search which is very useful for planning raids)
   * reportparser extended: shows if the report was from a moon and tells when entries could not be inserted because they were not at 
     the probe list
   * inserted / canceled reports are now shown in different colors at the list
   * reports from moons are now also recognized as moon when a lunarbase, jumpgate or sensor phalanx is built there
   * reduced traffic sent by the toolbar for statistics and galaxy views


v 3.42

   * No "space" at the end of the attributes.php file any more (caused some problems)
   * BB Code-page-bug removed at show.php
   * Reportproblem fixed
   * adjustments for balkan
   * adjustments for turkish language
   * adjustments for polish language (moons still cause some problems with copy & paste)


v 3.41

   * bugfixes!


v 3.4

   * many fixes for the changes at .org universes
   * display what moons can scan a system
   * display what planets can send missiles
   * adjustments at the galaxyplugin file to work with toolbar 1.3
   * new feature: ally history
   * new permission: diplomat (allow to change status at allystats)
   * splitted config.php into two files (new file: attributes.php)
   * added charset to every page (can be changed at attributes.php)
   * adjustments for polish
   * bug fixed for polish and turkish moon reports
   * adjustments at the danish language file
   * standard search now as BB-Code results possible
   * extend report search: - search with player / ally name
   * report field values > 0 means more units/level than that. < 0 means at max the absolute value of this number for the units/level
   * report address is now recognized by tools like speedsim


v 3.3

   * removed security hole (passwords are stored with normal characters only a-z,A-Z,0-9! - so change your password before updating or 
     ask your admin after updating to change your password, or request a new password)
   * redesigned report parser
   * added a check to verify that server url and session url are always matching (security reasons)
   * stats update for own playerstats fixed (updating own stats is now possible)
   * adjusted timescales from db status
   * added email-from to the config file
   * email-from is used to send an email to this address when someone registered himself at the tool
   * moved the version definition from each language file to the config file
   * you can add your own text at the register page, just change the content of the register.txt file (which you should not overwrite 
     during update process in the future)
   * You can now insert more than one galaxyview OR report at the text area
   * notices linked at report-search results
   * search for score and fleetstatistics now with range
   * added danish language (banned players are not recognized because they have the same letter "s" as strong players at the galaxy )


v 3.2

   * added italian and turkish
   * up to 50 galaxies are possible now (german u50 has so many)
   * fixed report parser
   * added tooltips as known from ogame instead of using title attributes (update of skins needed)
   * noob status stored at the database from now on
   * noob player flag is shown at galaxy view and search result
   * search for players which are not banned, vacation mode or noob
   * playerstatus is now shown in the same colors as in ogame
   * added playerstats/allystats to the internal galaxy view with tooltips
   * adjusted parser for changes at portugues ogame


v 3.15

   * removed debugging information from spioparser.inc.php and galaxyplugin.php (may cause problems)
   * set the entry for fleetrank at the constants


v 3.14

   * Search for players with fleetrank
   * fixed a bug with moons at spanish version
   * added polish as new language
   * removed check for empty mysql password


v 3.13

   * bugs fixed
   * this version can receive reports from the galaxy toolbar
   * number of players at vacation mode shown at the overview page


v 3.12

   * fixed a heavy bug in the galaxyplugin.php file


v 3.11

   * 403 forbidden if you try to insert data with the toolbar and you don't have access to it - instead of saying it was inserted
   * Bug fixed with updated galaxy views from the toolbar - reports and notices in that systems were not displayed any longer
   * more information if parsing fails
   * Bugfix at the javatool parsing file for french, balkan and portugues


v 3.1

   * declaring default language in config.php
   * playerstatus localized in every language
   * espionage reports now searchable using time values
   * now you can see which parts of an espionage report were discovered and which not
   * searching in espionage reports uses now >= instead of > (and only values different from 0)
   * adding / viewing espionage reports now changeable at the user management
   * update.php modified so you do not need to modify it manualy
   * search function can now find players of the top X
   * added statistics for players and alliances
   * allies can have a speacial status like war, own ally ... - you mark them and the get a special color at the search or galaxy view 
     page
   * search for an empty string at notices gets now 0 results
   * public and private notices have a different color at the notice overview page - also the update time is shown there
   * created a file for the galaxy toolbar to receive the information from it
   * with the galaxy toolbar you can add / update the statistics (cannot be done with copy & paste)
   * added "balkan" and french as new languages
   * searching an alliance out of the galaxy view and searching a player directly after that works now as expected
   * updated parser to the latest galaxy view changes from version 0.72c
   * user can register himself at the tool - admin only has to activate the account and give the permissions
   * number of logins counted
   * enhanced user management
   * detailed user information (last login, last IPs to see who is sharing his account)
   * renamed $ostats_universe and $ostats_server to $ostat_ ... to avoid confusion with www.ostats.de
   * added a shoutbox at the overview page
   * stats older than 30 days are removed at every stats update
   * for skin makers - some new colors were added and i cleaned up the file a bit


v 3.04

   * Bugfix in Spioparser: Research Lab was not interpreted correctly
   * Bugfix in Galaxyview-Parser : under special circumstances the galaxy view was not analysed correctly, the playerstatus was always 
     wrong!
   * added dutch language
   * Bugfix with update finder - it was the wrong link (https instead of http) so the update finder did not work


v 3.03

   * added missing Terraformer building
   * bug fixed: reports with inter-planetary missiles were not analysed completely


v 3.02

   * column 'mond' specified twice - Bug removed


v 3.01

   * Bugxfixing -update!


v 3.0

   * several bugs fixed
   * Search with time values possible
   * Search for debris field
   * Search for colonizeable planets
   * Search for planets with notices
   * Search for planets with reports
   * Analysing of espionage reports (one report for each planet and each moon)
   * Notices for each coordinates (every player can add private or public notices to coordinates to store information about the target 
     (fleet, saving behavour ...)
   * Search within notices and reports
   * added spanish language - for output and for analysing spanish reports and galaxy views
   * skins changeable -- usermanagement (change password) and there you can add an url to an alternativ styles.css
   * check for new version if you click on the version on the left side
   * displays the universe
   * Ostats links integrated
   * Example of galaxy view changed


v 2.22

   * fixed javahelp.php, so the javatool is usable again


v 2.21

   * bugfix within the galaxy status view
   * improvements within the galaxy view parser to parse the new layout
   * additional tables for user and allystats
   * search results now chooseable between 10,20,50 or 100 results per page
   * improved the internal galaxy view
   * - navigation as you know it from ogame
   * - click on a player or ally opens up the search site with the specific results
   * - shows the date of the entry
   * - moon and df size is shown
   * no white "session timeout" page - moved to the login page instead
   * developer board is the english ogame board now
   * inserted galaxy view to the menu bar on the left
   * fixed problem with moon searches


v 2.11

   * bugfix within the functions.inc.php, so own links are shown correctly now
   * bugfix withen the secret/index.php, stats are now correct