OSDN Git Service

shogi-server/shogi-server.git
13 years agoshogi_server/league.rb: Improved performance of Persistance#get_players.
daigo [Sun, 11 Jul 2010 09:34:23 +0000 (18:34 +0900)]
shogi_server/league.rb: Improved performance of Persistance#get_players.

It took about 20 seconds for a large size of players (5,300 lines in
players.yaml). Now it completes in an instance.

13 years agoSet initial values to BasicPlayer's instance variables.
daigo [Sun, 11 Jul 2010 09:22:05 +0000 (18:22 +0900)]
Set initial values to BasicPlayer's instance variables.

13 years agoUpdated usage.
Daigo Moriwaki [Sat, 10 Jul 2010 10:17:05 +0000 (19:17 +0900)]
Updated usage.

13 years agoAdded a sample command line to run the server.
daigo [Thu, 8 Jul 2010 12:57:00 +0000 (21:57 +0900)]
Added a sample command line to run the server.

13 years ago* [shogi-server]
daigo [Fri, 2 Jul 2010 02:57:56 +0000 (11:57 +0900)]
* [shogi-server]
  - A new command line option:
      --floodgate-names GameStringA[,GameStringB[,...]]
  - Floodgate time configuration file:
    You need to set starting times of floodgate groups in
    configuration files under the top directory. Each floodgat
    e group requires a correspoding configuration file named
    "<game_name>.conf". The file will be re-read once just after a
    game starts.

13 years agoAdded some module functions related to DateTime or Time.
daigo [Sat, 26 Jun 2010 06:14:14 +0000 (15:14 +0900)]
Added some module functions related to DateTime or Time.

13 years agoMerge branch 'master' of git.sourceforge.jp:/gitroot/shogi-server/shogi-server
Daigo Moriwaki [Tue, 22 Jun 2010 00:27:23 +0000 (09:27 +0900)]
Merge branch 'master' of git.sourceforge.jp:/gitroot/shogi-server/shogi-server

13 years agoImproved stability of test results.
daigo [Sat, 19 Jun 2010 08:19:59 +0000 (17:19 +0900)]
Improved stability of test results.

TestClientAtmark#test_toryomight sometimes fail. Adding a short
sleep interval makes this issue happen less likely. 10 of 10 trials
were successful.

13 years agoImproved stability of test results.
daigo [Sat, 19 Jun 2010 08:06:06 +0000 (17:06 +0900)]
Improved stability of test results.

TestTwoSameMoves#test_two_same_moves might sometimes fail. Adding a short
sleep interval makes this issue happen less likely.  10 of 10 trials
were successful.

13 years agoAdded a test case for Floodgate#game_name?
Daigo Moriwaki [Sun, 6 Jun 2010 13:55:59 +0000 (22:55 +0900)]
Added a test case for Floodgate#game_name?

13 years agoRefactored MockLogger class.
Daigo Moriwaki [Sun, 6 Jun 2010 13:46:18 +0000 (22:46 +0900)]
Refactored MockLogger class.

13 years agoProvided more test cases for Monitor features.
Daigo Moriwaki [Tue, 1 Jun 2010 14:22:04 +0000 (23:22 +0900)]
Provided more test cases for Monitor features.

13 years ago- shogi_server/command.rb: Fixed an issue that MONITOR2OFF did not
Daigo Moriwaki [Tue, 1 Jun 2010 13:52:50 +0000 (22:52 +0900)]
- shogi_server/command.rb: Fixed an issue that MONITOR2OFF did not
  work. Thanks to HIDECHI and koudayu.

14 years agoHelp the write_thread to terminate
Daigo Moriwaki [Mon, 10 May 2010 12:25:22 +0000 (21:25 +0900)]
Help the write_thread to terminate

14 years agoImproved performance and stability of tests.
Daigo Moriwaki [Mon, 10 May 2010 12:23:47 +0000 (21:23 +0900)]
Improved performance and stability of tests.

14 years agoAdded a benchmark program.
Daigo Moriwaki [Sat, 8 May 2010 04:58:49 +0000 (13:58 +0900)]
Added a benchmark program.
ex: time ruby1.9.1 benchmark.rb csa/wdoor+floodgate-900-0+gps_normal+gps_l+20100507120007.csa 10

14 years ago* [mk_rate]
Daigo Moriwaki [Sat, 8 May 2010 02:22:52 +0000 (11:22 +0900)]
* [mk_rate]
  - Previously mk_rate did not count in draw games. Now a draw game
    is considered to weight 0.5 win and 0.5 loss. Respect
    Inaniwa-shogi which strategically aims to draw.
  - a new command line option, --skip-draw-games. In this mode, draw
    games are just ignored as mk_rate previously did.

14 years ago- shogi_server/player.rb:
daigo [Sun, 25 Apr 2010 04:25:52 +0000 (13:25 +0900)]
- shogi_server/player.rb:
  Log a warning message in a case that a player closes a connection suddenly.

I investigated this issue: http://d.hatena.ne.jp/mkomiya/20100424/1272095860

14 years agoAdded a comment for gets_safe()
daigo [Sun, 25 Apr 2010 04:25:24 +0000 (13:25 +0900)]
Added a comment for gets_safe()

14 years ago- shogi_server/command.rb:
daigo [Tue, 13 Apr 2010 13:50:11 +0000 (22:50 +0900)]
- shogi_server/command.rb:
  Equality of MonitorHandler class was wrong. %%MONITOROFF and
  %%MONITOR2OFF may cause unexpected behavior. This issue has been
  fixed. Thanks to Kota Fujiwara for reporting.

14 years ago* [shogi-server] Ignore the last move of two sequential ones
daigo [Sun, 7 Mar 2010 12:56:01 +0000 (21:56 +0900)]
* [shogi-server] Ignore the last move of two sequential ones

- If two sequential moves from a player are identical, the last
  one will be ignored and a game is in play. This situation might
  happen with human players, especially on slow network,
  impatiently sending a move twice.

14 years ago* [shogi-server] The server now provides more accurate time control.
Daigo Moriwaki [Sat, 27 Feb 2010 14:52:14 +0000 (23:52 +0900)]
* [shogi-server] The server now provides more accurate time control.

Previouslly, a player's thinking time included a time waiting to get th
e giant lock. This may have caused games to time up, especially, during
byo-yomi etc.

14 years agoForgot to add this file at the previous commit.
Daigo Moriwaki [Sat, 23 Jan 2010 08:37:44 +0000 (17:37 +0900)]
Forgot to add this file at the previous commit.

14 years ago* [shogi-server]
Daigo Moriwaki [Sat, 23 Jan 2010 08:35:29 +0000 (17:35 +0900)]
* [shogi-server]
  - Experimental feature: support handicapped games.
    Game names that have the following prefixes are recognized as
    handicapped games. Turn symbols "+" and "-" mean Uwate (expert)
    and Shitate (beginner) respectively (i.e. Uwate players first).
    "*" is not available.
    - hclance_
    - hcbishop_
    - hcrook_
    - hcrooklance_
    - hc2p_
    - hc4p_
    - hc6p_
    - hc10p_

14 years agoProposal implementation of a new command called MONITOR2{ON,OFF}.
Daigo Moriwaki [Fri, 15 Jan 2010 10:25:39 +0000 (19:25 +0900)]
Proposal implementation of a new command called MONITOR2{ON,OFF}.

* [shogi-server]
  - shogi_server/command.rb, test/TC_command.rb
    Proposal implementation of a new command called MONITOR2{ON,OFF}.
    When the MONITOR2ON command is issued by a player, the server
    immediately sends the player the entire contents of a record
    file of the game, i.e. history of moves and so on, at that time.
    Then, the server will forward subsequent moves like they are
    appended to the record file.
  - Behavior changed: A player monitoring a game with MONITORON will
    not receive Game#show again when a gaming player resigns (:toryo).

14 years ago* Converted the repository from Subversion to Git.
Daigo Moriwaki [Sun, 10 Jan 2010 07:47:20 +0000 (16:47 +0900)]
* Converted the repository from Subversion to Git.

14 years agoFloodgate games were not started. This issue has been fixed. git-svn
beatles [Sun, 27 Dec 2009 04:26:46 +0000 (04:26 +0000)]
Floodgate games were not started. This issue has been fixed.

14 years ago* [shogi-server]
beatles [Sat, 26 Dec 2009 01:40:20 +0000 (01:40 +0000)]
* [shogi-server]
  - The server can now provide multiple floodgate modes such as
    floodgate-900-0 and floodgate-3600-0.

14 years agoThe game_name attribute has been moved to the super class, BasicPlayer.
beatles [Sat, 26 Dec 2009 01:40:19 +0000 (01:40 +0000)]
The game_name attribute has been moved to the super class, BasicPlayer.

In order to test cases using BasicPlayer class, it now requires the game_name attribute.

14 years ago- shogi-server, shogi_server/league/floodgate.rb: Changed the argument of Floodgate...
beatles [Sat, 26 Dec 2009 01:40:18 +0000 (01:40 +0000)]
- shogi-server, shogi_server/league/floodgate.rb: Changed the argument of Floodgate.new.

14 years agoMoved TestPairing class to test/TC_pairing.rb.
beatles [Sat, 26 Dec 2009 01:40:17 +0000 (01:40 +0000)]
Moved TestPairing class to test/TC_pairing.rb.

Refactoring.

14 years ago- shogi_server/pairing.rb: Added a new class: StartGameWithoutHumans.
beatles [Sat, 26 Dec 2009 01:40:16 +0000 (01:40 +0000)]
- shogi_server/pairing.rb: Added a new class: StartGameWithoutHumans.

This tries to make pairs trying to avoid a human-human match. This is now enabled instread of the previous class: StartGame.

14 years ago- shogi_server/player.rb: Added new methods: is_human? and is_computer?.
beatles [Sat, 26 Dec 2009 01:40:15 +0000 (01:40 +0000)]
- shogi_server/player.rb: Added new methods: is_human? and is_computer?.

  A human player is recommened to use a name ending with '_human'.
  ex. 'hoge_human', 'hoge_human@p1'

14 years agoTook (a bit) care of Windows platforms.
beatles [Fri, 4 Dec 2009 10:32:07 +0000 (10:32 +0000)]
Took (a bit) care of Windows platforms.

The HUP signal is not supported by Ruby on Windows. Now it is disabled on Windows.

14 years agoCorrected.
beatles [Sun, 29 Nov 2009 14:52:39 +0000 (14:52 +0000)]
Corrected.

14 years agoAdded a tool to investicate statistics of csa kifu files
beatles [Wed, 25 Nov 2009 09:00:59 +0000 (09:00 +0000)]
Added a tool to investicate statistics of csa kifu files

14 years ago* [mk_rate]
beatles [Sun, 15 Nov 2009 13:24:45 +0000 (13:24 +0000)]
* [mk_rate]
  - Added a new command line option: --base-date. You can specify a
    base date to calculate rating scores. Games in the `future' are
    ignored for the calculation.

14 years agoAdded a new feature, LoggingObserver, which logs a result of each game.
beatles [Sun, 15 Nov 2009 13:24:44 +0000 (13:24 +0000)]
Added a new feature, LoggingObserver, which logs a result of each game.

14 years agoCorrected typo
beatles [Sun, 15 Nov 2009 13:24:44 +0000 (13:24 +0000)]
Corrected typo

14 years agoIn a case of the Errno::ECONNRESET error, the error is correctly logged to the server...
beatles [Sun, 15 Nov 2009 13:24:43 +0000 (13:24 +0000)]
In a case of the Errno::ECONNRESET error, the error is correctly logged to the server log file.

14 years agoSplit GameResult related classes to shogi_server/game_result.rb
beatles [Sun, 15 Nov 2009 13:24:42 +0000 (13:24 +0000)]
Split GameResult related classes to shogi_server/game_result.rb

14 years agoOne more correction.
beatles [Sun, 8 Nov 2009 14:38:12 +0000 (14:38 +0000)]
One more correction.

14 years agoCorrected.
beatles [Sun, 8 Nov 2009 14:36:33 +0000 (14:36 +0000)]
Corrected.

14 years ago* [mk_rate]
beatles [Sun, 8 Nov 2009 13:48:48 +0000 (13:48 +0000)]
* [mk_rate]
  - Split a pre-process collecting game results from csa files into
    a new command, mk_game_results. Now, Generating players.html
    requires two steps as follows:
      % ./mk_game_results dir_of_csa_files > 00list
      % ./mk_rate 00list > players.html
      or
      % ./mk_game_results dir_of_csa_files | ./mk_rate > players.html
    (Closes: #19454)

14 years agoRemoved the deprecated method.
beatles [Sun, 8 Nov 2009 13:48:48 +0000 (13:48 +0000)]
Removed the deprecated method.

14 years agospecify size
tkaneko [Wed, 4 Nov 2009 11:57:32 +0000 (11:57 +0000)]
specify size

14 years agoCorrected the expected results.
beatles [Sun, 1 Nov 2009 13:32:36 +0000 (13:32 +0000)]
Corrected the expected results.

14 years agotest_not_uchifuzume was not erronously executed. Now the method is tested.
beatles [Sun, 1 Nov 2009 13:32:35 +0000 (13:32 +0000)]
test_not_uchifuzume was not erronously executed. Now the method is tested.

14 years agoImproved stability of the test result.
beatles [Sun, 1 Nov 2009 13:32:34 +0000 (13:32 +0000)]
Improved stability of the test result.

14 years agochanged x-bias of black and that of white, in order to place the evaluation by the...
tkaneko [Tue, 6 Oct 2009 07:29:30 +0000 (07:29 +0000)]
changed x-bias of black and that of white, in order to place the evaluation by the last-moved player at the rightmost

14 years agoRemoved a debugging line
beatles [Sun, 23 Aug 2009 14:05:24 +0000 (14:05 +0000)]
Removed a debugging line

14 years ago* Return [...] +OK after %%SETBUOY and %%DELETEBUOY commands
beatles [Sun, 9 Aug 2009 06:17:36 +0000 (06:17 +0000)]
* Return [...] +OK after %%SETBUOY and %%DELETEBUOY commands
* A buoy game was not started after %%SETBUOY command.

14 years ago* Starting a buoy game by %%GAME caused an server error.
beatles [Sun, 9 Aug 2009 06:17:35 +0000 (06:17 +0000)]
* Starting a buoy game by %%GAME caused an server error.
* To_Move of a proposed game lines was incorrect.

14 years agoRemoved a debug line.
beatles [Sat, 8 Aug 2009 05:28:00 +0000 (05:28 +0000)]
Removed a debug line.

14 years ago* The counter of a buoy game is decremented before the game is started.
beatles [Thu, 6 Aug 2009 14:35:37 +0000 (14:35 +0000)]
* The counter of a buoy game is decremented before the game is started.
* GETBUOYCOUNT returns -1 when a non-existing game is searched.

14 years agoForgot to add them at r338
beatles [Wed, 29 Jul 2009 13:53:03 +0000 (13:53 +0000)]
Forgot to add them at r338

14 years agoExperimantal implementation for specified games, codenamed Buoy.
beatles [Wed, 29 Jul 2009 13:48:31 +0000 (13:48 +0000)]
Experimantal implementation for specified games, codenamed Buoy.

14 years ago* [shogi-server]
beatles [Wed, 29 Jul 2009 13:48:30 +0000 (13:48 +0000)]
* [shogi-server]
  - Added shogi_server/command.rb: refactored commands out of player.rb, and assign a dedicated class for each command

14 years agoAdded a test case for Floodgate::History
beatles [Thu, 18 Jun 2009 13:28:09 +0000 (13:28 +0000)]
Added a test case for Floodgate::History

14 years ago* [shogi-server]
beatles [Thu, 18 Jun 2009 13:28:08 +0000 (13:28 +0000)]
* [shogi-server]
  - An emtpy floodgate_history.yaml caused a server error. This
    issue has been fixed.
    (Closes: #15124)

14 years ago* [shogi-server]
beatles [Wed, 17 Jun 2009 14:44:24 +0000 (14:44 +0000)]
* [shogi-server]
  - If a new game matched between two players is not started within
    a certain time (default 120 seconds) (i.e. the agree_waiting or
    start_waiting state lasts too long), the Server REJECTs the game.
    (Closes: #14425)

14 years agoAdded more test cases.
beatles [Wed, 17 Jun 2009 14:44:23 +0000 (14:44 +0000)]
Added more test cases.

14 years ago* [shogi-server]
beatles [Mon, 15 Jun 2009 14:24:34 +0000 (14:24 +0000)]
* [shogi-server]
  - When a Gote player AGREEd a new game and then a Sente player
    logged out (LOGOUT), the Gote incorrectly received a LOGOUT message
    from the server. Since Gote's state was not AGREEd or STARTed yet,
    the Gote should be REJECTed. This issue has been fixed.
    (Closes: #17335)

14 years ago* [shogi-server]
beatles [Sun, 14 Jun 2009 08:14:59 +0000 (08:14 +0000)]
* [shogi-server]
  - The Board could not recognize a certain pattern of
    Oute-Sennichite. This issue has been fixed.
    (Closes: #13966)

15 years agoAdded a new file: utils/correct-bug14635.rb
beatles [Sun, 22 Mar 2009 07:09:02 +0000 (07:09 +0000)]
Added a new file: utils/correct-bug14635.rb

15 years agoImproved performance.
beatles [Sat, 7 Mar 2009 10:55:20 +0000 (10:55 +0000)]
Improved performance.

15 years ago* [shogi-server]
beatles [Sun, 15 Feb 2009 14:37:18 +0000 (14:37 +0000)]
* [shogi-server]
  - A duplicated comment that is the one of the previous (or older)
    move might be erroneously recorded in a csa file. This issue has
    been fixed. (Closes: #15080)

15 years agoPlayer names are compared in a case-insensitive way.
beatles [Sun, 15 Feb 2009 14:37:17 +0000 (14:37 +0000)]
Player names are compared in a case-insensitive way.

15 years ago * [utils/csa-filter.rb]
beatles [Wed, 11 Feb 2009 06:06:24 +0000 (06:06 +0000)]
 * [utils/csa-filter.rb]
   - Added a new file. This program filters CSA files.

15 years ago* [shogi-server]
beatles [Sun, 1 Feb 2009 05:44:10 +0000 (05:44 +0000)]
* [shogi-server]
  - The shogi-server records csa files of games in an illegal
    format. This issue has been fixed. (Closes: #14635)
  - A ##[MONITOR] command for showing a game result such as %TORYO
    was not correct. This issue has been fixed.

15 years agoForgot to add this file.
beatles [Tue, 13 Jan 2009 14:08:32 +0000 (14:08 +0000)]
Forgot to add this file.

15 years agoApplied the changes at r315 [mk_rate] to the test cases.
beatles [Tue, 13 Jan 2009 14:08:32 +0000 (14:08 +0000)]
Applied the changes at r315 [mk_rate] to the test cases.

15 years ago* [shogi_server]
beatles [Tue, 13 Jan 2009 13:53:05 +0000 (13:53 +0000)]
* [shogi_server]
  - It failed to proccess a game result, OuteKaihiMoreWin where a
    checked king does not escape. This issue has been fixed.

15 years ago- shogi_server/players.rb: When a player was finishing with its
beatles [Fri, 2 Jan 2009 23:47:47 +0000 (23:47 +0000)]
- shogi_server/players.rb: When a player was finishing with its
  write socket broken, there was a chance that the thread of the
  player in the giant lock had to wait for a long time (about 20
  seconds), which might cause threads of other players stop and
  time out. (Closes: #14469)

15 years ago* [shogi-server]
beatles [Fri, 2 Jan 2009 23:47:44 +0000 (23:47 +0000)]
* [shogi-server]
  - shogi_server/timeout_queue.rb: the timeout parameter of the
    constructor was not respected erroneously. This issue
    has been fixed.

15 years agoStub files connecting to a shogigraphic server.
beatles [Fri, 2 Jan 2009 02:27:47 +0000 (02:27 +0000)]
Stub files connecting to a shogigraphic server.

15 years ago[mk_html]
beatles [Tue, 30 Dec 2008 06:46:47 +0000 (06:46 +0000)]
[mk_html]
- Added a new option: --footer filename, which inserts contents of
  the filename at the bottom of a genrated page. A text specific to
  wdoor should be written by using this option.
  (Closes: #14470)
- It does no more depend on RDoc. RDoc::usage does not work well
  (due to RDoc).

15 years agoForgot to add a new file.
beatles [Sun, 28 Dec 2008 15:10:42 +0000 (15:10 +0000)]
Forgot to add a new file.

15 years ago* [mk_rate]
beatles [Sun, 28 Dec 2008 15:10:10 +0000 (15:10 +0000)]
* [mk_rate]
  - File names can be put into STDIN instead of specifying directory
    names in command line arguments.
* [csa-file-filter]
  - New file. It filters kifu files and is of use for a pre-filter
    of mk_rate.

15 years ago[mk_rate]
beatles [Sun, 28 Dec 2008 01:41:16 +0000 (01:41 +0000)]
[mk_rate]
- Check kifu files more carefully so that files that contain
  incomplete records are skipped.
-  mk_rate might have failed to alloc due to out of memory. Now it
   consumes less memory (about 200MB instead of 2GB).

15 years agoRevert the previouse commit on "[mk_rate]"
beatles [Sun, 28 Dec 2008 01:41:15 +0000 (01:41 +0000)]
Revert the previouse commit on "[mk_rate]"

This reverts commit 10280ef2b8d87355bb0999cf0ec344e85904c50e.

15 years ago[mk_rate]
beatles [Sat, 27 Dec 2008 12:27:40 +0000 (12:27 +0000)]
[mk_rate]
- Check kifu files more carefully so that files that contain
  incomplete records are skipped.
- Optimized for speed and memory size so that mk_rate might fail
  to alloc due to out of memory.

15 years agoCheck kifu files more carefully so that inproper files are skipped.
beatles [Fri, 26 Dec 2008 11:07:51 +0000 (11:07 +0000)]
Check kifu files more carefully so that inproper files are skipped.
An error example that has been fixed:
/home/kaneko/bin/mk_rate:570:in `add': Never reached! (RuntimeError)
  from /home/kaneko/bin/mk_rate:612:in `grep'
  from /home/kaneko/bin/mk_rate:675:in `main'
  from /home/kaneko/bin/mk_rate:675:in `glob'
  from /home/kaneko/bin/mk_rate:675:in `main'
  from /home/kaneko/bin/mk_rate:739

15 years agoValidate a yaml file for floodagte history. If it is invalid, the default value ...
beatles [Sun, 14 Dec 2008 15:13:19 +0000 (15:13 +0000)]
Validate a yaml file for floodagte history. If it is invalid, the default value (an empty array) is used.

15 years ago* [shogi-server]
beatles [Sat, 13 Dec 2008 13:37:45 +0000 (13:37 +0000)]
* [shogi-server]
  - A lotated log file is moved to $topdir/YYYY/MM/DD.
    (Closes: #14245)

15 years ago* [shogi-server]
beatles [Sat, 13 Dec 2008 13:37:44 +0000 (13:37 +0000)]
* [shogi-server]
  - Improved an existance check and etc. of directories specified
    by command line options, expecially in case of the daemon mode.
    (Closes: #14244)

15 years ago* Changed the stley of the comment lines to RDoc's one.
beatles [Sun, 30 Nov 2008 15:12:15 +0000 (15:12 +0000)]
* Changed the stley of the comment lines to RDoc's one.
* Added Prerequires and Install descriptoins.
* Added Makefile that can generate html documents using RDoc.

15 years agoBetter message for a failure case
beatles [Sun, 30 Nov 2008 09:15:35 +0000 (09:15 +0000)]
Better message for a failure case

15 years agoPieces in hands are correctly recognized now.
beatles [Sun, 30 Nov 2008 09:15:34 +0000 (09:15 +0000)]
Pieces in hands are correctly recognized now.

15 years agoRefactoring. Moved a method from the test case to board.rb so that the method is...
beatles [Sun, 30 Nov 2008 09:15:33 +0000 (09:15 +0000)]
Refactoring. Moved a method from the test case to board.rb so that the method is available in anoth
er test case.

15 years ago* [shogi-server]
beatles [Fri, 28 Nov 2008 10:56:05 +0000 (10:56 +0000)]
* [shogi-server]
  - Added sample/*.sh for command line samples.

15 years agoChecked the status of the write thread before sending an "end" message.
beatles [Wed, 26 Nov 2008 14:22:25 +0000 (14:22 +0000)]
Checked the status of the write thread before sending an "end" message.

15 years agoShortened a debug message.
beatles [Wed, 26 Nov 2008 14:22:02 +0000 (14:22 +0000)]
Shortened a debug message.

15 years agoImproved the test case.
beatles [Wed, 26 Nov 2008 14:02:16 +0000 (14:02 +0000)]
Improved the test case.

15 years agoFailed to correctly check Floodgate game names due to the carelss change at the previ...
beatles [Tue, 25 Nov 2008 14:50:43 +0000 (14:50 +0000)]
Failed to correctly check Floodgate game names due to the carelss change at the previous commit.

15 years agoAdded a comment for --floodgate-history
beatles [Tue, 25 Nov 2008 03:41:48 +0000 (03:41 +0000)]
Added a comment for --floodgate-history

15 years agoFixed a typo
beatles [Tue, 25 Nov 2008 03:41:47 +0000 (03:41 +0000)]
Fixed a typo

15 years agoRemoved a redundant log message
beatles [Tue, 25 Nov 2008 03:41:46 +0000 (03:41 +0000)]
Removed a redundant log message

15 years ago* Debugged History.
beatles [Tue, 25 Nov 2008 03:41:46 +0000 (03:41 +0000)]
* Debugged History.
* Debugged the command line for History.
* log_info() is an alias to log_message().

15 years agoImproved log messages.
beatles [Tue, 25 Nov 2008 03:41:44 +0000 (03:41 +0000)]
Improved log messages.