adding commits from main dir

This commit is contained in:
Martin Karkowski 2022-07-17 22:26:33 +02:00
parent 7898317d4a
commit 2b9f5d6913
6 changed files with 11 additions and 8 deletions

View File

@ -157,3 +157,8 @@ Inital commit, which is working with the browser
- relocating `IUiDefinition` to `lib/types/ui/helpers.interface` - relocating `IUiDefinition` to `lib/types/ui/helpers.interface`
- influences `lib/ui/helpers.browser` and `lib/ui/helpers.nodejs` - influences `lib/ui/helpers.browser` and `lib/ui/helpers.nodejs`
# 1.3.0
- Fixes:
- Small Syntax-Fixes for better parsing.
- Added:
-`py-helpers`: Added a Parser, which will create a Tree and then will be used to transpile the coresponding ast.

View File

@ -1 +1 @@
1.2.2 1.3.0

View File

@ -324,7 +324,7 @@ export async function runNopeBackend(
} }
let _closing = false; let _closing = false;
const _dispose = (reason?, p?) => { const _dispose = (reason, p) => {
if (_closing) { if (_closing) {
return; return;
} }

View File

@ -90,7 +90,7 @@ export class EventCommunicationInterface implements ICommunicationInterface {
this.id = generateId(); this.id = generateId();
} }
detailListeners?( detailListeners(
type: "event" | "rpc" | "data" | "response", type: "event" | "rpc" | "data" | "response",
listeners: string[] listeners: string[]
) { ) {

View File

@ -616,8 +616,8 @@ export class NopeConnectivityManager implements INopeConnectivityManager {
const getLoad = () => { const getLoad = () => {
const cpus = os.cpus(); const cpus = os.cpus();
let totalTime = 0, let totalTime = 0;
idleTime = 0; let idleTime = 0;
// Determine the current load: // Determine the current load:
for (const cpu of cpus) { for (const cpu of cpus) {

View File

@ -274,8 +274,6 @@ export interface IRenderData {
/** /**
* Flag showing whether the Service is connected to a backend or not * Flag showing whether the Service is connected to a backend or not
* *
* @type {INopeObservable<boolean>}
* @memberof INoPEConnectService
*/ */
readonly sessionsConnected: INopeObservable<boolean>; readonly sessionsConnected: INopeObservable<boolean>;