Changeset 73

Show
Ignore:
Timestamp:
04/24/07 06:11:09 (1 year ago)
Author:
takkaria
Message:
  • Move macro command to options screen (#99)
  • Add website to splashscreen (#100)
  • Remove two confusing (and duplicate) options from the knowledge display
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/file/news.txt

    r18 r73  
    77                                |___/ 
    88 
    9                  Version 3.0.8 by Andrew Sidwell and Pete Mack 
     9               Version 3.0.8pre by Andrew Sidwell and Pete Mack 
    1010 
    11            Send comments, bug reports and patches to the newsgroup: 
    12       <news:rec.games.roguelike.angband> or at <http://angband.oook.cz/>. 
     11                   Comments and patches to angband-dev: 
     12             http://angband.oook.cz/mailman/listinfo/angband-dev 
     13        Bug reports to: http://angband.rogueforge.net/trac/newticket 
    1314 
    1415           Based on Moria:   Copyright (c) 1985 Robert Alan Koeneke 
  • trunk/src/cmd4.c

    r71 r73  
    40084008        {{0, "Dump options", (action_f) dump_pref_file, option_dump}, 'A'}, 
    40094009        {{0, 0, 0,}, 0}, /* Interact with */     
     4010        {{0, "Interact with macros (advanced)", (action_f) do_cmd_macros, 0}, 'M'}, 
    40104011        {{0, "Interact with visuals (advanced)", (action_f) do_cmd_visuals, 0}, 'V'}, 
    40114012        {{0, "Interact with colours (advanced)", (action_f) do_cmd_colors, 0}, 'C'}, 
     
    40224023        {{0, "Display feature knowledge", (action_f)do_cmd_knowledge_features, 0}, '5'}, 
    40234024        {{0, "Display self-knowledge", (action_f)self_knowledge, 0}, '6'}, 
    4024         {{0, 0, 0}, 0, 0}, /* other stuff */ 
    4025         {{0, "Load a user pref file", (action_f) do_cmd_pref_file_hack, (void*) 20}, 'L'}, 
    4026         {{0, "Interact with visuals", (action_f) do_cmd_visuals, 0}, 'V'}, 
    40274025}; 
    40284026 
  • trunk/src/dungeon.c

    r70 r73  
    17021702                { 
    17031703                        do_cmd_pref(); 
    1704                         break; 
    1705                 } 
    1706  
    1707                 /* Interact with macros */ 
    1708                 case '@': 
    1709                 { 
    1710                         do_cmd_macros(); 
    17111704                        break; 
    17121705                }