This is an automated email from the ASF dual-hosted git repository. jw3 pushed a commit to branch issues_3_4 in repository https://gitbox.apache.org/repos/asf/daffodil-vscode.git
commit 510507924559f558f87e0ae597ae6ff12b11e49e Author: John Wass <[email protected]> AuthorDate: Mon Oct 11 06:53:07 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 +++++------ src/daffodilDebugger.ts | 2 +- 4 files changed, 9 insertions(+), 75 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..bd46d9f 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,11 @@ { "name": "daffodil-debugger", - "displayName": "Daffodil Debugger", + "displayName": "Apache Daffodil Debugger Extension", + "description": "VS Code extension for Apache Daffodil Schema Debugger", "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/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
