Skip to content

Commit 0f558e4

Browse files
ert78gbmondalaci
authored andcommitted
refactore: create feature modules (#387)
* add @angular/cli to the project * increase nodejs version -> 8.2.1 * add lerna * merge web and shared module * move electron module into packages as uhk-agent Electron agent functionality is not working * delete symlinker * convert private properties to public of component if used in html * revert uhk-message.component * fix component path * fix the correct name of the uhk-message.component.scss * building web and electron module * delete uhk-renderer package * handle device connect disconnect state * add privilege detection * fix set privilege functionality * turn back download keymap functionality * add bootstrap, select2 js and fix null pointer exception * turn back upload data to keyboard * fix send keymap * fix test-serializer * add missing package.json * merging * fix appveyor build * fix linting * turn back electron storage service * commit the missing electron-datastorage-repository * update node to 8.3.0 in .nvmrc and log node version in appveyor build * set exact version number in appveyor build * vertical align privilege and missing device components * set back node version to 8 in appveyor * move node-usb dependency from usb dir to root maybe it is fix the appveyor build * revert usb to root * fix electron builder script * fix electron builder script * turn off electron devtools * remove CTRL+U functionality * fix CTRL+o * fix lint error * turnoff store freeze * start process when got `Error: EPERM: operation not permitted` error * move files from root usb dir -> packages/usb
1 parent 97770f6 commit 0f558e4

File tree

524 files changed

+26966
-6396
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

524 files changed

+26966
-6396
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
node_modules
2-
npm-debug.log
2+
*-debug.log
33
.vscode
44
dist
55
.idea

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8.1.4
1+
8.3.0

appveyor.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,13 @@ install:
2020
- ps: Install-Product node $env:nodejs_version
2121
- set CI=true
2222
- set PATH=%APPDATA%\npm;%PATH%
23-
- npm install
23+
- node -v
24+
- npm -v
25+
- appveyor-retry npm install
2426

2527
test_script:
26-
- npm run build
27-
- npm run build:test
28+
- appveyor-retry npm run build
29+
- appveyor-retry npm run build:test
2830
- npm run lint
2931
- npm run test
3032
- npm run release

electron/README.md

-2
This file was deleted.

electron/src/.gitignore

-1
This file was deleted.

electron/src/app/app.component.html

-7
This file was deleted.

electron/src/app/app.component.scss

-6
This file was deleted.

electron/src/app/app.component.ts

-28
This file was deleted.

electron/src/app/app.routes.ts

-35
This file was deleted.

electron/src/app/index.ts

-1
This file was deleted.

electron/src/components/keymap/edit/index.ts

-1
This file was deleted.

electron/src/components/keymap/edit/keymap-edit.component.ts

-98
This file was deleted.

electron/src/components/keymap/index.ts

-1
This file was deleted.

electron/src/components/missing-device/missing-device.component.ts

-27
This file was deleted.

electron/src/components/privilege-checker/privilege-checker.component.ts

-135
This file was deleted.

electron/src/components/uhk-message/uhk-message.component.ts

-12
This file was deleted.

0 commit comments

Comments
 (0)