@icreate/ics-chromely-plugin-core
Advanced tools
Comparing version 0.0.18-beta3 to 0.0.18-beta4
@@ -449,4 +449,4 @@ import { LogLevels } from '@icreate/core'; | ||
* @Date: 2022-05-05 15:20:51 | ||
* @LastEditors: 文贝 | ||
* @LastEditTime: 2022-10-20 10:54:46 | ||
* @LastEditors: 陶慧灵 | ||
* @LastEditTime: 2022-11-18 10:28:18 | ||
* @Description: | ||
@@ -461,3 +461,3 @@ * @FilePath: \ics-chromely-plugin-core\src\core\regedit.ts | ||
return icsChromelyRequest.function({ | ||
url: "intf/".concat(url), | ||
url: "Regedit/".concat(url), | ||
method: 'POST', | ||
@@ -486,11 +486,2 @@ data: data | ||
}; | ||
Regedit.init = function () { | ||
return this.OperateEx('init'); | ||
}; | ||
Regedit.dispose = function () { | ||
return this.OperateEx('dispose'); | ||
}; | ||
Regedit.bussiness = function (code, param) { | ||
return this.OperateEx('bussiness', { code: code, param: param }); | ||
}; | ||
return Regedit; | ||
@@ -497,0 +488,0 @@ }()); |
@@ -456,4 +456,4 @@ (function (global, factory) { | ||
* @Date: 2022-05-05 15:20:51 | ||
* @LastEditors: 文贝 | ||
* @LastEditTime: 2022-10-20 10:54:46 | ||
* @LastEditors: 陶慧灵 | ||
* @LastEditTime: 2022-11-18 10:28:18 | ||
* @Description: | ||
@@ -468,3 +468,3 @@ * @FilePath: \ics-chromely-plugin-core\src\core\regedit.ts | ||
return icsChromelyRequest__default["default"].function({ | ||
url: "intf/".concat(url), | ||
url: "Regedit/".concat(url), | ||
method: 'POST', | ||
@@ -493,11 +493,2 @@ data: data | ||
}; | ||
Regedit.init = function () { | ||
return this.OperateEx('init'); | ||
}; | ||
Regedit.dispose = function () { | ||
return this.OperateEx('dispose'); | ||
}; | ||
Regedit.bussiness = function (code, param) { | ||
return this.OperateEx('bussiness', { code: code, param: param }); | ||
}; | ||
return Regedit; | ||
@@ -504,0 +495,0 @@ }()); |
@@ -6,4 +6,4 @@ "use strict"; | ||
* @Date: 2022-05-05 15:20:51 | ||
* @LastEditors: 文贝 | ||
* @LastEditTime: 2022-10-20 10:54:46 | ||
* @LastEditors: 陶慧灵 | ||
* @LastEditTime: 2022-11-18 10:28:18 | ||
* @Description: | ||
@@ -19,3 +19,3 @@ * @FilePath: \ics-chromely-plugin-core\src\core\regedit.ts | ||
return ics_chromely_js_sdk_1.default.function({ | ||
url: "intf/".concat(url), | ||
url: "Regedit/".concat(url), | ||
method: 'POST', | ||
@@ -44,11 +44,2 @@ data: data | ||
}; | ||
Regedit.init = function () { | ||
return this.OperateEx('init'); | ||
}; | ||
Regedit.dispose = function () { | ||
return this.OperateEx('dispose'); | ||
}; | ||
Regedit.bussiness = function (code, param) { | ||
return this.OperateEx('bussiness', { code: code, param: param }); | ||
}; | ||
return Regedit; | ||
@@ -55,0 +46,0 @@ }()); |
@@ -9,3 +9,3 @@ export default class Regedit { | ||
*/ | ||
static getRegeditValue(key: string, name: string): Promise<any>; | ||
static getRegeditValue(key: string, name: string): Promise<string>; | ||
/** | ||
@@ -18,6 +18,3 @@ * 设置注册表键值 | ||
*/ | ||
static setRegeditValue(key: string, name: string, value: string): Promise<any>; | ||
static init(): Promise<any>; | ||
static dispose(): Promise<any>; | ||
static bussiness(code: string, param: string): Promise<any>; | ||
static setRegeditValue(key: string, name: string, value: string): Promise<string>; | ||
} |
{ | ||
"name": "@icreate/ics-chromely-plugin-core", | ||
"version": "0.0.18-beta3", | ||
"version": "0.0.18-beta4", | ||
"description": "提供Ics Chromely Client核心本地操作插件js sdk,包含本地日志、主窗体控制、打开三方浏览器、打印机列表、硬件IP和Mac地址、本地配置获取和注册表读写等", | ||
@@ -5,0 +5,0 @@ "keywords": [], |
<!-- | ||
* @Author: 文贝 | ||
* @Date: 2022-02-08 21:36:57 | ||
* @LastEditors: 文贝 | ||
* @LastEditTime: 2022-10-30 21:38:08 | ||
* @LastEditors: 陶慧灵 | ||
* @LastEditTime: 2022-11-18 10:30:17 | ||
* @Descripttion: | ||
@@ -12,6 +12,7 @@ * @FilePath: \ics-chromely-plugin-core\README.md | ||
```bash | ||
npm i @icreate/ics-chromely-plugin-core | ||
npm i @icreate/ics-chromely-plugin-core@0.0.18-beta3 | ||
``` | ||
### feature | ||
``` | ||
0.0.18-beta4 修复获取和设置注册表路由地址 | ||
0.0.18-beta3 增加发送按键事件、切换输入语言、切换为中文输入法、切换为英文输入法、切换当前语言的具体输入法、获取当前语言输入法列表和KeyCode定义 | ||
@@ -168,5 +169,5 @@ 0.0.18-beta2 增加显示屏幕键盘 | ||
// 获取指定的注册表键对应的值 | ||
getRegeditValue(name: string): Promise<string> | ||
getRegeditValue(key: string, name: string): Promise<string> | ||
// 设置注册表键值 | ||
setRegeditValue(name: string, value: string): Promise<string> | ||
setRegeditValue(key: string, name: string, value: string): Promise<string> | ||
``` | ||
@@ -173,0 +174,0 @@ ### ConfigHelper |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
183
156657
2433