sdeboy      2004/05/21 22:55:02

  Modified:    src/java/org/apache/log4j/chainsaw
                        ChainsawToolBarAndMenus.java
               src/java/org/apache/log4j/chainsaw/help release-notes.html
  Log:
  Removed jdk1.4-specific code (shift_down_mask to shift_mask).  Chainsaw can now be 
ran on jdk1.3 or greater.
  
  Revision  Changes    Path
  1.43      +1 -1      
logging-log4j/src/java/org/apache/log4j/chainsaw/ChainsawToolBarAndMenus.java
  
  Index: ChainsawToolBarAndMenus.java
  ===================================================================
  RCS file: 
/home/cvs/logging-log4j/src/java/org/apache/log4j/chainsaw/ChainsawToolBarAndMenus.java,v
  retrieving revision 1.42
  retrieving revision 1.43
  diff -u -r1.42 -r1.43
  --- ChainsawToolBarAndMenus.java      14 May 2004 02:43:35 -0000      1.42
  +++ ChainsawToolBarAndMenus.java      22 May 2004 05:55:02 -0000      1.43
  @@ -801,7 +801,7 @@
       //    action.putValue(Action.MNEMONIC_KEY, new Integer(KeyEvent.VK_F));
       action.putValue(
         Action.ACCELERATOR_KEY,
  -      KeyStroke.getKeyStroke(KeyEvent.VK_F3, KeyEvent.SHIFT_DOWN_MASK));
  +      KeyStroke.getKeyStroke(KeyEvent.VK_F3, KeyEvent.SHIFT_MASK));
       action.putValue(
         Action.SHORT_DESCRIPTION,
         "Find the previous occurrence of the rule from the current row");
  
  
  
  1.10      +1 -0      
logging-log4j/src/java/org/apache/log4j/chainsaw/help/release-notes.html
  
  Index: release-notes.html
  ===================================================================
  RCS file: 
/home/cvs/logging-log4j/src/java/org/apache/log4j/chainsaw/help/release-notes.html,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- release-notes.html        22 May 2004 05:26:12 -0000      1.9
  +++ release-notes.html        22 May 2004 05:55:02 -0000      1.10
  @@ -15,6 +15,7 @@
    <li>Corrected a bug in XML decoders which caused a Swing exception when rendering 
the exception column - discovered by Stephen Pain.</li>
   <li>Events loaded from an XML-formatted file are now processed like other events 
(throttled based on responsiveness setting and conforming to cyclic buffer limits) - 
discovered by Stephen Pain.</li>
   <li>Changed how 'scroll to bottom' is activated and deactivated.  Now, scrolling 
occurs only if 'scroll to bottom' is selected in the context menu AND the last row is 
selected.  To deactivate scrolling, select a row other than last row.  To re-activate 
scrolling, press ctrl-end to select the last row.  (Scrolling is bypassed in two 
cases: a find is active, or when the bottom row is not selected as described above.)  
Scrolling enhancement suggested by Hani.</li>
  +<li>Removed jdk1.4-specific code - Chainsaw can now be ran on JDK1.3 or greater</li>
   </ul>
   
   <h2>20 May 2004</h2>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to