Skip to content

Commit ea3ff8b

Browse files
committed
Merge branch 'staging'
2 parents 72141fa + 45273d4 commit ea3ff8b

38 files changed

Lines changed: 12378 additions & 214 deletions

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
1-
[![license](https://img.shields.io/github/license/TobitSoftware/chayns-web-light.svg)](./LICENSE) [![GitHub pull requests](https://img.shields.io/github/issues-pr/TobitSoftware/chayns-web-light.svg)](../../pulls) [![](https://img.shields.io/github/issues-pr-closed-raw/TobitSoftware/chayns-web-light.svg)](../../pulls?q=is%3Apr+is%3Aclosed)
1+
[![license](https://img.shields.io/github/license/TobitSoftware/chaynsnet-runtime.svg)](./LICENSE)
2+
[![GitHub pull requests](https://img.shields.io/github/issues-pr/TobitSoftware/chaynsnet-runtime.svg)](../../pulls)
3+
[![](https://img.shields.io/github/issues-pr-closed-raw/TobitSoftware/chaynsnet-runtime.svg)](../../pulls?q=is%3Apr+is%3Aclosed)
24

3-
## ChaynsWebLight
4-
The ChaynsWebLight is an standalone runtime environment for chayns tapps.
5-
It self has no User Interface, it displays only the tapp content.
5+
## chayns®net runtime
6+
The chayns®net runtime is an standalone runtime environment for chayns tapps.
7+
It self has no user interface, it only displays the tapp content.
68

79
Take a look at the repository wiki for more information.
810

911

1012
#### Installation
1113
1. Clone this repository
12-
2. Run <code>npm i</code>
14+
2. Run `npm i`
1315

1416
> If you have no access to the internal tobit.software npm server you need to remove/replace the usage of the package `chayns-logger`.
1517

check-chayns-logger.js

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
try {
22
require('chayns-logger');
33
} catch (e) {
4-
if (e.message.indexOf('window') === -1) {
5-
console.log(`\x1b[31m----------------------------------------------------------------------------------------------------------------------
6-
| chayns-logger is not installed!
7-
| The chayns-logger npm package is not open source. Please remove or replace the chayns-logger with your own logger.
8-
----------------------------------------------------------------------------------------------------------------------\n\x1b[0m`);
4+
if (e.message.indexOf('Cannot find module') > -1) {
5+
console.log(`\x1b[31m[chayns®net runtime] The npm package 'chayns-logger' is not installed!`);
6+
console.log(` It is a tobit software internal package.`);
7+
console.log(` Please remove usage of the package or replace it with your own logger. \n\x1b[0m`);
98
}
109
}

index.ejs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@
88

99
<link rel="shortcut icon" href="data:image/x-icon;," type="image/x-icon">
1010

11-
<link rel="stylesheet" href="https://chayns-res.tobit.com/API/v3.1/css/chayns.min.css">
12-
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css">
13-
1411
<style>
1512
ul {
1613
list-style: none;

0 commit comments

Comments
 (0)