Skip to content

Commit

Permalink
Merge branch '2024-06' into fixes-214
Browse files Browse the repository at this point in the history
  • Loading branch information
lesquoyb committed Jun 14, 2024
2 parents 6fa979f + 6352522 commit b69ec89
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 21 deletions.
11 changes: 0 additions & 11 deletions gama.feature.dependencies/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -151,17 +151,6 @@
version="0.0.0"
unpack="false"/>

<plugin
id="org.eclipse.equinox.security.win32.x86_64"
os="win32"
ws="win32"
arch="x86_64"
download-size="0"
install-size="0"
version="0.0.0"
fragment="true"
unpack="false"/>

<plugin
id="org.eclipse.core.filebuffers"
download-size="0"
Expand Down
Binary file modified gama.processor/gama.processor.jar
Binary file not shown.
6 changes: 3 additions & 3 deletions gama.processor/processor/Generate Processor.jardesc
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
</manifest>
<selectedElements exportClassFiles="false" exportJavaFiles="true" exportOutputFolder="true">
<folder path="/gama.processor/META-INF"/>
<file path="/gama.processor/pom.xml"/>
<file path="/gama.processor/.classpath"/>
<file path="/gama.processor/.project"/>
<javaElement handleIdentifier="=gama.annotations/src"/>
<file path="/gama.processor/build.properties"/>
<file path="/gama.processor/.classpath"/>
<file path="/gama.processor/plugin.xml"/>
<file path="/gama.processor/pom.xml"/>
<javaElement handleIdentifier="=gama.annotations/src"/>
</selectedElements>
</jardesc>
2 changes: 1 addition & 1 deletion gama.product/extraresources/headless/osx/gama-headless.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ fi

ini_arguments=$(read_from_ini)

if ! $java -cp "$( dirname "${BASH_SOURCE[0]}" )"/../Eclipse/plugins/org.eclipse.equinox.launcher*.jar -Xms512m $memory ${ini_arguments[@]} -Djava.awt.headless=true org.eclipse.core.launcher.Main -configuration "$( dirname "${BASH_SOURCE[0]}" )"/configuration -application gama.headless.product -data $passWork "$@"; then
if ! $java -cp "$( dirname "${BASH_SOURCE[0]}" )"/../Eclipse/plugins/org.eclipse.equinox.launcher*.jar -Xms512m $memory ${ini_arguments[@]} -Djava.awt.headless=true org.eclipse.equinox.launcher.Main -configuration "$( dirname "${BASH_SOURCE[0]}" )"/configuration -application gama.headless.product -data $passWork "$@"; then
echo "Error in you command, here's the log :"
cat $passWork/.metadata/.log
exit 1
Expand Down
2 changes: 1 addition & 1 deletion gama.product/extraresources/headless/unix/gama-headless.sh
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ fi

ini_arguments=$(read_from_ini)

if ! $java -cp "${headless_path}"/../plugins/org.eclipse.equinox.launcher*.jar -Xms512m $memory ${ini_arguments[@]} org.eclipse.core.launcher.Main -configuration "${headless_path}"/configuration -application gama.headless.product -data $passWork "$@"; then
if ! $java -cp "${headless_path}"/../plugins/org.eclipse.equinox.launcher*.jar -Xms512m $memory ${ini_arguments[@]} org.eclipse.equinox.launcher.Main -configuration "${headless_path}"/configuration -application gama.headless.product -data $passWork "$@"; then
echo "Error in you command, here's the log :"
cat $passWork/.metadata/.log
exit 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ for /f "usebackq delims=" %%a in (..\GAMA.ini) do (

if exist ..\jdk\ (
echo "JDK"
call ..\jdk\bin\java -cp !result! -Xms512m -Xmx%memory% !ini_arguments! -Djava.awt.headless=true org.eclipse.core.launcher.Main -configuration ./configuration -application gama.headless.product -data "%workDir%" !param!
call ..\jdk\bin\java -cp !result! -Xms512m -Xmx%memory% !ini_arguments! -Djava.awt.headless=true org.eclipse.equinox.launcher.Main -configuration ./configuration -application gama.headless.product -data "%workDir%" !param!
) else (
echo "JAVA_HOME"
call "%JAVA_HOME%\bin\java.exe" -cp !result! -Xms512m -Xmx%memory% !ini_arguments! -Djava.awt.headless=true org.eclipse.core.launcher.Main -configuration ./configuration -application gama.headless.product -data "%workDir%" !param!
call "%JAVA_HOME%\bin\java.exe" -cp !result! -Xms512m -Xmx%memory% !ini_arguments! -Djava.awt.headless=true org.eclipse.equinox.launcher.Main -configuration ./configuration -application gama.headless.product -data "%workDir%" !param!
)
4 changes: 2 additions & 2 deletions gama.ui.application/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ Require-Bundle: org.eclipse.core.runtime,
org.eclipse.core.expressions,
org.eclipse.ui.workbench,
org.eclipse.e4.core.services,
org.eclipse.osgi.services,
org.eclipse.e4.core.contexts,
org.eclipse.e4.ui.css.swt.theme,
org.eclipse.e4.ui.css.swt,
org.eclipse.e4.ui.workbench.addons.swt,
org.eclipse.e4.ui.workbench.renderers.swt,
org.eclipse.e4.ui.workbench.swt,
org.eclipse.e4.ui.css.core
org.eclipse.e4.ui.css.core,
org.osgi.service.event
Bundle-Vendor: UMMISCO
Bundle-Version: 0.0.0.qualifier
Bundle-ManifestVersion: 2
Expand Down
2 changes: 1 addition & 1 deletion gama.ui.shared/src/gama/ui/shared/utils/CleanupHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ public void perspectiveActivated(final IWorkbenchPage page, final IPerspectiveDe
}
w.getMenuManager().update(true);
w.getMenuBarManager().update(true);
cm.updateAll(true);
cm.resetItemOrder();
// WorkaroundForIssue3210.run(cm);
} catch (final Exception e) {}
});
Expand Down

0 comments on commit b69ec89

Please sign in to comment.