diff --git a/mozilla/plugin/oji/MRJCarbon/plugin/CHANGES b/mozilla/plugin/oji/MRJCarbon/plugin/CHANGES index ebf665266fb..35ead265c22 100644 --- a/mozilla/plugin/oji/MRJCarbon/plugin/CHANGES +++ b/mozilla/plugin/oji/MRJCarbon/plugin/CHANGES @@ -1,3 +1,15 @@ +Changes since 1.0: + +1. Fixed a crash caused by leaving pending Java exceptions in a JNIEnv, when loading +LiveConnect classes that were incompatible with ours. Thanks Apple! + +2. Worked around a change to com.apple.mrj.JavaEmbedding.JE_AppletViewer in Jaguar's JVM +that was no longer implementing the java.applet.AppletContext. Now reading the panel field, +which is an instance of a sun.applet.AppletPanel, which has a getApplet() method. + +3. Worked around Apple's shipped netscape.* classes by prepending MRJPlugin.jar to the +boot classpath, instead of adding it to the regular application class path. + Changes since 1.0fc2: 1. Return correct value when mouse clicks occur within the applet. The browser is still diff --git a/mozilla/plugin/oji/MRJCarbon/plugin/INSTALL.txt b/mozilla/plugin/oji/MRJCarbon/plugin/INSTALL.txt index 05631393205..a6b7e478d4b 100644 --- a/mozilla/plugin/oji/MRJCarbon/plugin/INSTALL.txt +++ b/mozilla/plugin/oji/MRJCarbon/plugin/INSTALL.txt @@ -1,4 +1,4 @@ -MRJPluginCarbon v1.0 Install Notes +MRJPluginCarbon v1.0.1 Install Notes This short document explains how to install the MRJ Plugin for Mac OS X. The process for installing the plugin has been greatly simplified from previous releases. Simply drag the file MRJPluginCarbon into the folder diff --git a/mozilla/plugin/oji/MRJCarbon/plugin/MRJPlugin.properties b/mozilla/plugin/oji/MRJCarbon/plugin/MRJPlugin.properties index fe42ce431a9..75dda1b488c 100644 --- a/mozilla/plugin/oji/MRJCarbon/plugin/MRJPlugin.properties +++ b/mozilla/plugin/oji/MRJCarbon/plugin/MRJPlugin.properties @@ -1,4 +1,4 @@ # MRJPlugin.properties netscape.oji.plugin.console.append=false -netscape.oji.plugin.version=1.0 +netscape.oji.plugin.version=1.0.1 netscape.oji.plugin.security=com.apple.mrj.JavaEmbedding.JE_AppletSecurity diff --git a/mozilla/plugin/oji/MRJCarbon/plugin/Resources/Version.rsrc b/mozilla/plugin/oji/MRJCarbon/plugin/Resources/Version.rsrc index 299655edddf..ae01c6ea6ec 100644 Binary files a/mozilla/plugin/oji/MRJCarbon/plugin/Resources/Version.rsrc and b/mozilla/plugin/oji/MRJCarbon/plugin/Resources/Version.rsrc differ