Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: xerx593/scripting-javascript
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 76e0083
Choose a base ref
...
head repository: scijava/scripting-javascript
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4f365ec
Choose a head ref
  • 7 commits
  • 7 files changed
  • 1 contributor

Commits on May 31, 2022

  1. Widgets.js: stop using charCodeAt

    It is not a supported function in Nashorn.
    
    Widgets.js:48 TypeError: oCharacter.charCodeAt is not a function
    	at jdk.nashorn.internal.runtime.ECMAErrors.error(ECMAErrors.java:57)
    	at jdk.nashorn.internal.runtime.ECMAErrors.typeError(ECMAErrors.java:213)
    	at jdk.nashorn.internal.runtime.ECMAErrors.typeError(ECMAErrors.java:185)
    	at jdk.nashorn.internal.runtime.ECMAErrors.typeError(ECMAErrors.java:172)
    	at jdk.nashorn.internal.runtime.Undefined.lookup(Undefined.java:102)
    	at jdk.nashorn.internal.runtime.linker.NashornLinker.getGuardedInvocation(NashornLinker.java:106)
    	at jdk.nashorn.internal.runtime.linker.NashornLinker.getGuardedInvocation(NashornLinker.java:98)
    	at jdk.internal.dynalink.support.CompositeTypeBasedGuardingDynamicLinker.getGuardedInvocation(CompositeTypeBasedGuardingDynamicLinker.java:176)
    	at jdk.internal.dynalink.support.CompositeGuardingDynamicLinker.getGuardedInvocation(CompositeGuardingDynamicLinker.java:124)
    	at jdk.internal.dynalink.support.LinkerServicesImpl.getGuardedInvocation(LinkerServicesImpl.java:154)
    	at jdk.internal.dynalink.DynamicLinker.relink(DynamicLinker.java:253)
    	at jdk.nashorn.internal.scripts.Script$15$Widgets.:program(Widgets.js:48)
    	at jdk.nashorn.internal.runtime.ScriptFunctionData.invoke(ScriptFunctionData.java:637)
    	at jdk.nashorn.internal.runtime.ScriptFunction.invoke(ScriptFunction.java:494)
    	at jdk.nashorn.internal.runtime.ScriptRuntime.apply(ScriptRuntime.java:393)
    	at jdk.nashorn.api.scripting.NashornScriptEngine.evalImpl(NashornScriptEngine.java:449)
    	at jdk.nashorn.api.scripting.NashornScriptEngine.evalImpl(NashornScriptEngine.java:406)
    	at jdk.nashorn.api.scripting.NashornScriptEngine.evalImpl(NashornScriptEngine.java:402)
    	at jdk.nashorn.api.scripting.NashornScriptEngine.eval(NashornScriptEngine.java:155)
    	at javax.script.AbstractScriptEngine.eval(AbstractScriptEngine.java:264)
    	at org.scijava.script.ScriptModule.run(ScriptModule.java:157)
    	at org.scijava.module.ModuleRunner.run(ModuleRunner.java:163)
    	at org.scijava.module.ModuleRunner.call(ModuleRunner.java:124)
    	at org.scijava.module.ModuleRunner.call(ModuleRunner.java:63)
    	at org.scijava.thread.DefaultThreadService.lambda$wrap$2(DefaultThreadService.java:225)
    	at java.util.concurrent.FutureTask.run(FutureTask.java:266)
    	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
    	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    	at java.lang.Thread.run(Thread.java:750)
    ctrueden committed May 31, 2022
    Configuration menu
    Copy the full SHA
    7ea61df View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2022

  1. Configuration menu
    Copy the full SHA
    85715c8 View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2023

  1. POM: update imagej.net URLs

    ctrueden committed Mar 10, 2023
    Configuration menu
    Copy the full SHA
    03dcd4b View commit details
    Browse the repository at this point in the history
  2. Happy New Year 2023

    ctrueden committed Mar 10, 2023
    Configuration menu
    Copy the full SHA
    4c3cc0d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    428d9a0 View commit details
    Browse the repository at this point in the history
  4. POM: use HTTPS for schema location URL

    Maven no longer supports plain HTTP for the schema location.
    
    And using HTTP now generates errors in Eclipse (and probably other IDEs).
    ctrueden committed Mar 10, 2023
    Configuration menu
    Copy the full SHA
    8fa6bb7 View commit details
    Browse the repository at this point in the history
  5. Bump to next development cycle

    Signed-off-by: Curtis Rueden <[email protected]>
    ctrueden committed Mar 10, 2023
    Configuration menu
    Copy the full SHA
    4f365ec View commit details
    Browse the repository at this point in the history
Loading