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: NuCoMP/mcnp-language-server-vscode
base: v0.0.14
Choose a base ref
...
head repository: NuCoMP/mcnp-language-server-vscode
compare: master
Choose a head ref
  • 4 commits
  • 4 files changed
  • 1 contributor

Commits on Dec 7, 2022

  1. Copy the full SHA
    e773a34 View commit details

Commits on Jan 19, 2023

  1. Copy the full SHA
    625bf3d View commit details
  2. LS enum updates

    kowalp committed Jan 19, 2023
    Copy the full SHA
    3595cf9 View commit details
  3. Updated to version 0.0.15

    kowalp committed Jan 19, 2023
    Copy the full SHA
    fa233fc View commit details
Binary file modified mcnp-server/lib/gov.lanl.mcnp-1.0.0-SNAPSHOT.jar
Binary file not shown.
Binary file modified mcnp-server/lib/gov.lanl.mcnp.ide-1.0.0-SNAPSHOT.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions package.json
@@ -2,7 +2,7 @@
"name": "nucomp-mcnp",
"displayName": "MCNP Language Server",
"description": "MCNP input validation and editor services. Also supports plot and run scripts.",
"version": "0.0.14",
"version": "0.0.15",
"featureFlags": {
"usingNewPythonInterpreterPathApi": true,
"usingNewPythonInterpreterPathApiV2": true
@@ -236,7 +236,7 @@
},
"nucomp-mcnp.fileDirectoryAsCwd": {
"type": "boolean",
"default": false,
"default": true,
"description": "Whether to use the directory of the file to be executed as the working directory.",
"scope": "resource"
},
4 changes: 2 additions & 2 deletions src/translate_mcnp_openmc.py
@@ -1,5 +1,5 @@
from mcnpy.translate_to_openmc import translate
from mcnpy.translate_mcnp_openmc import translate_file

if __name__ == '__main__':
import sys
translate(sys.argv[1])
translate_file(sys.argv[1])