From dcf38dc7fa2b6df4429dd265bef1bf5ce80c26a5 Mon Sep 17 00:00:00 2001 From: Luis Blanco Date: Tue, 28 Nov 2023 20:58:53 +0400 Subject: [PATCH] Adjust readme --- README.md | 10 ++++------ src/build-unix.js | 4 ++-- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 0e13bcd..22bf412 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Lib Binaries +# libUIOHook Binaries This is a part of [Node3D](https://github.com/raub) project. @@ -10,16 +10,14 @@ This is a part of [Node3D](https://github.com/raub) project. npm i -s deps-uiohook-raub ``` -This dependency package is distributing **Bullet Physics** +This dependency package is distributing **libUIOHook** binaries through **NPM** for **Node.js** addons. * Platforms (x64): Windows x64, Linux x64, OSX x64, Linux Aarch64. -* Library: Bullet physics, see list below. +* Library: libUIOHook. * Linking: static lib-type. -See the official -[Bullet3 manual](https://github.com/bulletphysics/bullet3/blob/master/docs/Bullet_User_Manual.pdf) -and [examples](https://github.com/bulletphysics/bullet3/tree/master/examples). +See the [libUIOHook repository](https://github.com/kwhat/libuiohook). See [uiohook-raub](https://github.com/raub/uiohook-raub/tree/master/src) for how the libraries may be used in a Node.js addon. diff --git a/src/build-unix.js b/src/build-unix.js index f11d762..26d1f44 100644 --- a/src/build-unix.js +++ b/src/build-unix.js @@ -39,7 +39,7 @@ const updateSystem = async () => { const buildLib = async () => { try { - console.log('Bullet Build Started'); + console.log('U Build Started'); const { stderr, stdout } = await exec(`sh ${getScriptForLib()}`); if (stdout) { console.error(stdout); @@ -47,7 +47,7 @@ const buildLib = async () => { if (stderr) { console.error(stderr); } - console.log('Bullet Build Finished'); + console.log('U Build Finished'); console.log('-------------------'); } catch (error) { fail(error);