This is an automated email from the ASF dual-hosted git repository.

jw3 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/daffodil-vscode.git


The following commit(s) were added to refs/heads/main by this push:
     new 65947b1  Update old references and package.json
65947b1 is described below

commit 65947b1e0bea83d43a2f3f5b8858de54cf82e863
Author: John Wass <[email protected]>
AuthorDate: Tue Oct 12 08:16:54 2021 -0400

    Update old references and package.json
    
    - eliminate all links and code referring to jw3 repo
    - update package.json for Apache publishing
    - general cleanup on package.json
    - remove nightly build
---
 .github/workflows/nightly.yml                      | 63 ----------------------
 README.md                                          |  4 +-
 package.json                                       | 15 +++---
 .../org.apache.daffodil.debugger.dap/DAPodil.scala |  2 +-
 src/daffodilDebugger.ts                            |  2 +-
 5 files changed, 10 insertions(+), 76 deletions(-)

diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml
deleted file mode 100644
index 03ff6b3..0000000
--- a/.github/workflows/nightly.yml
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 2021 Concurrent Technologies Corporation, Nteligen LLC
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-#     http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
----
-name: Deploy Nightly
-on:
-  schedule:
-    - cron: '0 2 * * *' # run at 2 AM UTC
-
-jobs:
-  nightly:
-    name: Deploy nightly
-    runs-on: ubuntu-latest
-    steps:
-      - uses: actions/checkout@v2
-
-      - name: Setup node
-        uses: actions/setup-node@v1
-        with:
-          node-version: '14.x'
-
-      - name: Install dependencies
-        run: yarn install
-
-      - name: Check formatting
-        run: |
-          yarn run prettier src -c
-
-      - name: Yarn Compile
-        run: yarn compile
-
-      - name: Get filename
-        run: |
-          GIT_ID=$(git describe)
-          VSIX_FILE="daffodil-debugger-${GIT_ID}.vsix"
-          echo "VSIX_FILE=${VSIX_FILE}" >> $GITHUB_ENV
-      
-      - name: Create vsix
-        run: |
-          yarn run package -o ${{env.VSIX_FILE}}
-      
-      - name: Deploy release
-        uses: WebFreak001/[email protected]
-        env:
-          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # automatically provided 
by github actions
-        with:
-          upload_url: 
https://uploads.github.com/repos/jw3/example-daffodil-vscode/releases/45167120/assets{?name,label}
-          release_id: 45167120 
-          asset_path: ${{github.workspace}}/${{env.VSIX_FILE}}
-          asset_name: ${{env.VSIX_FILE}}
-          asset_content_type: vsix
-          max_releases: 5
diff --git a/README.md b/README.md
index a3934ca..afa610b 100644
--- a/README.md
+++ b/README.md
@@ -26,11 +26,11 @@ This is a VS Code extension which enables the interactive 
debugging of DFDL sche
 
 ## Installation
 
-Until the extension is available in the [VS Code Extension 
Marketplace](https://marketplace.visualstudio.com/vscode), please download the 
latest `.vsix` file from the [releases 
page](https://github.com/jw3/example-daffodil-vscode/releases). Then install it 
by either:
+Until the extension is available in the [VS Code Extension 
Marketplace](https://marketplace.visualstudio.com/vscode), please download the 
latest `.vsix` file from the [releases 
page](https://github.com/apache/daffodil-vscode/releases). Then install it by 
either:
   * using the "Extensions: Install from VSIX" command from within VS Code 
(open the Command Palette with Shift-Command-P, then type `vsix` to bring up 
the command and pointing it at the downloaded `vsix` file); or
   * on the command-line via `code --install-extension 
<path-to-downloaded-vsix>`.
 
 
 ## Usage
 
-Please refer to the Wiki page at 
https://github.com/jw3/example-daffodil-vscode/wiki
+Please refer to the Wiki page at https://github.com/apache/daffodil-vscode/wiki
diff --git a/package.json b/package.json
index 9d86748..3397447 100644
--- a/package.json
+++ b/package.json
@@ -1,13 +1,11 @@
 {
   "name": "daffodil-debugger",
-  "displayName": "Daffodil Debugger",
+  "displayName": "Apache Daffodil Schema Debugger",
+  "description": "VS Code extension for Apache Daffodil DFDL schema debugging",
   "version": "1.0.0",
-  "publisher": "jw3",
-  "description": "Daffodil Schema Debugger: debug DFDL schema files using 
Apache Daffodil.",
+  "publisher": "asf",
+  "author": "Apache Daffodil",
   "license": "Apache-2.0",
-  "keywords": [
-    "multi-root ready"
-  ],
   "engines": {
     "vscode": "^1.55.0"
   },
@@ -16,13 +14,12 @@
     "Debuggers",
     "Snippets"
   ],
-  "private": true,
   "repository": {
     "type": "git",
-    "url": "https://github.com/jw3/example-daffodil-vscode.git";
+    "url": "https://github.com/apache/daffodil-vscode.git";
   },
   "bugs": {
-    "url": "https://github.com/jw3/example-daffodil-vscode/issues";
+    "url": "https://github.com/apache/daffodil-vscode/issues";
   },
   "scripts": {
     "vscode:prepublish": "yarn run package-ext",
diff --git 
a/server/core/src/main/scala/org.apache.daffodil.debugger.dap/DAPodil.scala 
b/server/core/src/main/scala/org.apache.daffodil.debugger.dap/DAPodil.scala
index 7a7abce..81d93a2 100644
--- a/server/core/src/main/scala/org.apache.daffodil.debugger.dap/DAPodil.scala
+++ b/server/core/src/main/scala/org.apache.daffodil.debugger.dap/DAPodil.scala
@@ -751,7 +751,7 @@ object DAPodil extends IOApp {
       supportsExceptionInfoRequest: Boolean = false,
       supportsDataBreakpoints: Boolean = false,
       supportsClipboardContext: Boolean = false,
-      // disable loaded sources as it is handled in the extension: 
https://github.com/jw3/example-daffodil-vscode/issues/95
+      // disable loaded sources as it is handled in the extension: 
https://github.com/apache/daffodil-vscode/issues/25
       supportsLoadedSourcesRequest: Boolean = false
   )
 }
diff --git a/src/daffodilDebugger.ts b/src/daffodilDebugger.ts
index ef060a0..730210a 100644
--- a/src/daffodilDebugger.ts
+++ b/src/daffodilDebugger.ts
@@ -45,7 +45,7 @@ class Artifact {
 }
 
 const daffodilVersion = '3.1.0' // TODO: will become a runtime parameter 
driven by config or artifacts in the releases repo
-const backend = new Backend('jw3', 'example-daffodil-vscode') // TODO: move to 
apache repo
+const backend = new Backend('apache', 'daffodil-vscode')
 const artifact = new Artifact(daffodilVersion)
 
 // Class for getting release data

Reply via email to