Skip to content

Commit

Permalink
Clean-up NXG references (#691)
Browse files Browse the repository at this point in the history
  • Loading branch information
rajsite committed Aug 14, 2021
1 parent 335f199 commit 439b648
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
lint:
# if: 'false'
runs-on: ubuntu-16.04
runs-on: ubuntu-20.04
timeout-minutes: 25
steps:
- uses: actions/checkout@v2
Expand All @@ -34,7 +34,7 @@ jobs:

web:
# if: 'false'
runs-on: ubuntu-16.04
runs-on: ubuntu-20.04
timeout-minutes: 25
steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
- run: npm run test-min

setup:
runs-on: ubuntu-16.04
runs-on: ubuntu-20.04
timeout-minutes: 25
outputs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
Expand Down Expand Up @@ -219,7 +219,7 @@ jobs:
linux:
# if: 'false'
needs: setup
runs-on: ubuntu-16.04
runs-on: ubuntu-20.04
timeout-minutes: 25
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ SPDX-License-Identifier: MIT

A compact parallel execution runtime for VIs (virtual instruments) saved in VI assembly format (.via files).

The Vireo project provides a subset of LabVIEW runtime functionality for small targets. Example usages are WebVIs and the EV3 support in the _LabVIEW Module for LEGO® MINDSTORMS®_. The LabVIEW features supported are primarily defined by the features needed for the VIA files generated by LabVIEW NXG.
The Vireo project provides a subset of LabVIEW runtime functionality for small targets. Example usages are WebVIs and the EV3 support in the _LabVIEW Module for LEGO® MINDSTORMS®_. The LabVIEW features supported are primarily defined by the features needed for the VIA files generated by [G Web Development Software](https://www.webvi.io/).

# Development

Expand Down
2 changes: 1 addition & 1 deletion docs/Workflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ The esh.exe build is packaged as a nuget package to make it consumeable in .NET
replacing `[newversion]` with the version to update to.

This command will generate a `.nupkg` file in the folder the command is run from.
3. See [installing a nuget package](https://docs.microsoft.com/en-us/nuget/consume-packages/ways-to-install-a-package) for the various ways to install the created package to your .NET application. If you are at NI and working on NXG, follow these steps:
3. See [installing a nuget package](https://docs.microsoft.com/en-us/nuget/consume-packages/ways-to-install-a-package) for the various ways to install the created package to your .NET application. If you are at NI and working on G Web Development Software, follow these steps:
1. Run this command:

```console
Expand Down
2 changes: 1 addition & 1 deletion source/core/Events.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ static inline EventSource GetEventSourceForEventType(EventType eType) {
if (eType == kEventTypeUserEvent)
eSource = kEventSourceUserEvent;
else if (eType >= kEventTypeValueChange)
eSource = kEventSourceNXGUIEvent;
eSource = kEventSourceUIEvent;
return eSource;
}

Expand Down
4 changes: 2 additions & 2 deletions source/include/Events.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ enum { // Event source
kEventSourceActiveXUserInt,
kEventSourceDotNetUserInt,
kEventSourceUserEvent = 25,
kEventSourceNXGUIEvent = 1000
kEventSourceUIEvent = 1000
};

enum {
Expand Down Expand Up @@ -62,7 +62,7 @@ enum { kNotAnEventControlUID = 0 };

struct EventCommonData {
// Common fields
EventSource eventSource; // Event source and type are used internally but not visible in Event structure in NXG
EventSource eventSource; // Event source and type are used internally but not visible in Event structure
EventType eventType;
UInt32 eventTime;
UInt32 eventSeqIndex; // This field is a monotonically increasing event sequence number in actual generated events,
Expand Down

0 comments on commit 439b648

Please sign in to comment.