My favorites | Sign in
Project Logo
                
Details: Show all Hide all

Earlier this year

  • Oct 23, 2009
    issue 6 (Animation jitters on canvases creates with help SWTDefaultIm...) reported by navatski   -   What steps will reproduce the problem? 1. run demoapp many times 2. 3. What is the expected output? What do you see instead? What version of the product are you using? On what operating system? 1.0(jme 19) WinXP SP3 Please provide any additional information below. if I try to run demoapp many times (run 1, close it, run 2, close....) - animation and camera motion jitters(twitches). This trouble occurs in all my implementations of SWTDefaultImplementation. If I use similar code in game extends SimpleGame - all right, no jitters. This problem only helps to restart the computer.
    What steps will reproduce the problem? 1. run demoapp many times 2. 3. What is the expected output? What do you see instead? What version of the product are you using? On what operating system? 1.0(jme 19) WinXP SP3 Please provide any additional information below. if I try to run demoapp many times (run 1, close it, run 2, close....) - animation and camera motion jitters(twitches). This trouble occurs in all my implementations of SWTDefaultImplementation. If I use similar code in game extends SimpleGame - all right, no jitters. This problem only helps to restart the computer.
  • Aug 10, 2009
    Problems Wiki page commented on by kristian.sons   -   Hi, thanks for this nice little project. It works fine for me. Unfortunally the flickering on resize is not acceptable. Do you think you will find a solution for this, soon? Kristian
    Hi, thanks for this nice little project. It works fine for me. Unfortunally the flickering on resize is not acceptable. Do you think you will find a solution for this, soon? Kristian
  • Jul 15, 2009
    Tutorial Wiki page commented on by amitojhanspal   -   Where is the class Updatable?
    Where is the class Updatable?

Older

  • Dec 20, 2008
    r97 (Replaced return statement in init method's guard condition w...) committed by ian.phillips   -   Replaced return statement in init method's guard condition with a logged warning.
    Replaced return statement in init method's guard condition with a logged warning.
  • Dec 20, 2008
    issue 5 (Update jME libraries to the latest revision r4075) Status changed by ablochberger   -   No more compile errors due to missing classes
    Status: Verified
    No more compile errors due to missing classes
    Status: Verified
  • Dec 19, 2008
    issue 5 (Update jME libraries to the latest revision r4075) Status changed by ian.phillips   -   Marked as fixed, please verify.
    Status: Fixed
    Marked as fixed, please verify.
    Status: Fixed
  • Dec 19, 2008
    issue 5 (Update jME libraries to the latest revision r4075) commented on by ian.phillips   -   Fixed. Sorry about that!
    Fixed. Sorry about that!
  • Dec 19, 2008
    r96 (Updated Monkey Engine JARs to latest version. This required...) committed by ian.phillips   -   Updated Monkey Engine JARs to latest version. This required a couple of small changes to the SWT canvas class, the pertinent question is why does this class live in JME and Monklypse at the same time?
    Updated Monkey Engine JARs to latest version. This required a couple of small changes to the SWT canvas class, the pertinent question is why does this class live in JME and Monklypse at the same time?
  • Dec 19, 2008
    issue 5 (Update jME libraries to the latest revision r4075) reported by ablochberger   -   As in MW3D new classes are already being used (AbstractBox,...) the new jar files must be bundled with monklypse
    As in MW3D new classes are already being used (AbstractBox,...) the new jar files must be bundled with monklypse
  • Dec 03, 2008
    r95 (Add platform filter to ensure plug-in is only loaded on Inte...) committed by ian.phillips   -   Add platform filter to ensure plug-in is only loaded on Intel macs.
    Add platform filter to ensure plug-in is only loaded on Intel macs.
  • Nov 24, 2008
    issue 4 (Bug in SWTKeyInput) Status changed by ablochberger   -   Ok, so this must be implemented in a different way.
    Status: Accepted
    Ok, so this must be implemented in a different way.
    Status: Accepted
  • Nov 24, 2008
    issue 4 (Bug in SWTKeyInput) commented on by seb.sch...@gmx.de   -   It still does not work, I am afraid. Now pressed always equals false. According to the JavaDoc of e.stateMask, this bit vector only contains information about the modifier keys.
    It still does not work, I am afraid. Now pressed always equals false. According to the JavaDoc of e.stateMask, this bit vector only contains information about the modifier keys.
  • Nov 23, 2008
    issue 4 (Bug in SWTKeyInput) Status changed by ablochberger   -   can you please verify, if this works now?
    Status: Fixed
    can you please verify, if this works now?
    Status: Fixed
  • Nov 23, 2008
    r94 (issue 4) committed by ablochberger   -   issue 4
  • Nov 23, 2008
    issue 4 (Bug in SWTKeyInput) changed by ablochberger   -  
    Status: Accepted
    Owner: ablochberger
    Status: Accepted
    Owner: ablochberger
  • Nov 23, 2008
    issue 4 (Bug in SWTKeyInput) commented on by ablochberger   -   Maybe the correct code should be: boolean pressed = (e.stateMask & SWT.KeyDown) == SWT.KeyDown; or boolean pressed = (e.stateMask & SWT.KeyDown) != 0;
    Maybe the correct code should be: boolean pressed = (e.stateMask & SWT.KeyDown) == SWT.KeyDown; or boolean pressed = (e.stateMask & SWT.KeyDown) != 0;
  • Nov 23, 2008
    r93 (Fixes to ensure Java 1.5 compliance (needed for SWT on Mac O...) committed by ian.phillips   -   Fixes to ensure Java 1.5 compliance (needed for SWT on Mac OS X). * Fixed up all of the manifests to specify J2SE-1.5 as the execution environment. * Removed all of the @Override annotations on methods that are only implementing interfaces.
    Fixes to ensure Java 1.5 compliance (needed for SWT on Mac OS X). * Fixed up all of the manifests to specify J2SE-1.5 as the execution environment. * Removed all of the @Override annotations on methods that are only implementing interfaces.
  • Nov 19, 2008
    issue 4 (Bug in SWTKeyInput) reported by seb.sch...@gmx.de   -   When receiving onKey events, the parameter pressed is always set to true, regardless if a key is pressed or released. In SWTKeyInput.update(), I think the following line is not correct: boolean pressed = (e.stateMask | SWT.KeyDown) == 1; e.stateMask does only contain the state of the modifier keys. The KeyEvent itself does not store whether is was generated by pressing or releasing a key I think.
    When receiving onKey events, the parameter pressed is always set to true, regardless if a key is pressed or released. In SWTKeyInput.update(), I think the following line is not correct: boolean pressed = (e.stateMask | SWT.KeyDown) == 1; e.stateMask does only contain the state of the modifier keys. The KeyEvent itself does not store whether is was generated by pressing or releasing a key I think.
  • Nov 17, 2008
    r92 (updated features to unzip if there is an inner jar) committed by pflanzenmoerder   -   updated features to unzip if there is an inner jar
    updated features to unzip if there is an inner jar
  • Oct 26, 2008
    r91 ([No log message]) committed by ablochberger   -   [No log message]
    [No log message]
  • Oct 17, 2008
    PageName Wiki page deleted by pflanzenmoerder
  • Oct 17, 2008
    Tutorial Wiki page added by pflanzenmoerder
  • Oct 17, 2008
    PageName Wiki page added by pflanzenmoerder
  • Oct 16, 2008
    r87 ([No log message]) committed by pflanzenmoerder   -   [No log message]
    [No log message]
  • Oct 16, 2008
    r86 ([No log message]) committed by pflanzenmoerder   -   [No log message]
    [No log message]
  • Oct 16, 2008
    r85 (Initial import.) committed by pflanzenmoerder   -   Initial import.
    Initial import.
  • Oct 16, 2008
    r84 ([No log message]) committed by pflanzenmoerder   -   [No log message]
    [No log message]
  • Oct 16, 2008
    r83 (Initial import.) committed by pflanzenmoerder   -   Initial import.
    Initial import.
  • Oct 16, 2008
    r82 ([No log message]) committed by pflanzenmoerder   -   [No log message]
    [No log message]
  • Oct 16, 2008
    r81 (Initial import.) committed by pflanzenmoerder   -   Initial import.
    Initial import.
  • Oct 16, 2008
    r80 ([No log message]) committed by pflanzenmoerder   -   [No log message]
    [No log message]
  • Oct 16, 2008
    r79 (Initial import.) committed by pflanzenmoerder   -   Initial import.
    Initial import.
  • Oct 16, 2008
    r78 ([No log message]) committed by pflanzenmoerder   -   [No log message]
    [No log message]
  • Oct 16, 2008
    r77 (Initial import.) committed by pflanzenmoerder   -   Initial import.
    Initial import.
  • Oct 16, 2008
    r76 ([No log message]) committed by pflanzenmoerder   -   [No log message]
    [No log message]
  • Oct 16, 2008
    r75 (Initial import.) committed by pflanzenmoerder   -   Initial import.
    Initial import.
  • Oct 16, 2008
    r74 ([No log message]) committed by pflanzenmoerder   -   [No log message]
    [No log message]
  • Oct 16, 2008
    r73 (Initial import.) committed by pflanzenmoerder   -   Initial import.
    Initial import.
  • Oct 16, 2008
    r72 ([No log message]) committed by pflanzenmoerder   -   [No log message]
    [No log message]
  • Sep 30, 2008
    issue 3 (Fixing jME sources) Status changed by ablochberger   -  
    Status: Fixed
    Status: Fixed
  • Sep 30, 2008
    issue 1 (Update-Site for Monklypse) Status changed by ablochberger   -   http://www.rifidi.org/update
    Status: Fixed
  • Sep 25, 2008
    r71 (removed some empty methods ) committed by pflanzenmoerder   -   removed some empty methods
    removed some empty methods
  • Sep 25, 2008
    r70 (fixed docs and license headers) committed by pflanzenmoerder   -   fixed docs and license headers
    fixed docs and license headers
  • Sep 20, 2008
    r69 (feature and update site) committed by ablochberger   -   feature and update site
    feature and update site
  • Sep 20, 2008
    r68 (Initial import.) committed by ablochberger   -   Initial import.
    Initial import.
  • Sep 20, 2008
    r67 (Initial import.) committed by ablochberger   -   Initial import.
    Initial import.
  • Sep 15, 2008
    r66 (-- Exposing jme package. -- Protecting field with JMEComposi...) committed by boobish   -   -- Exposing jme package. -- Protecting field with JMEComposite.
    -- Exposing jme package. -- Protecting field with JMEComposite.
  • Sep 15, 2008
    r65 (- fixed missing exports - added some needed methods to the i...) committed by pflanzenmoerder   -   - fixed missing exports - added some needed methods to the implementors
    - fixed missing exports - added some needed methods to the implementors
  • Sep 12, 2008
    r64 (replaced wrong version of jmephysics with new one from googl...) committed by pflanzenmoerder   -   replaced wrong version of jmephysics with new one from google code
    replaced wrong version of jmephysics with new one from google code
  • Sep 12, 2008
    r63 (fixed missing jar) committed by pflanzenmoerder   -   fixed missing jar
    fixed missing jar
 
Hosted by Google Code