Skip to content

Commit 70b2071

Browse files
author
shengyonggen
committed
Release 0.14.6
1 parent 5961488 commit 70b2071

File tree

14 files changed

+43
-23
lines changed

14 files changed

+43
-23
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.14.6 (2025-3-14)
2+
1. 新增
3+
- 抖音、支付宝、快手,新增神策 SAT 渠道功能,需要使用插件,插件 sat-channel 在对应的小程序目录下面。
4+
15
## 0.14.5 (2025-2-13)
26
1. 优化
37
- getPresetProperties 新增 latest 相关属性。

README.md

Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,11 @@
99

1010
神策小程序、小游戏的打包集合
1111

12-
## 新书推荐
12+
## 更新日志
1313

14-
| 《ASM 全埋点开发实战》 | 《数据驱动:从方法到实践》 | 《Android 全埋点解决方案》 | 《iOS 全埋点解决方案》
15-
| ------ | ------ | ------ | ------ |
16-
| [![《ASM 全埋点开发实战》](https://opensource.sensorsdata.cn/wp-content/uploads/ASM-全埋点thumbnail_1.jpg)](https://item.jd.com/14058352.html) | [![《数据驱动:从方法到实践》](https://opensource.sensorsdata.cn/wp-content/uploads/data_driven_book_1.jpg)](https://item.jd.com/12322322.html) | [![《Android 全埋点解决方案》](https://opensource.sensorsdata.cn/wp-content/uploads/Android-全埋点thumbnail_1.png)](https://item.jd.com/12574672.html) | [![《iOS 全埋点解决方案》](https://opensource.sensorsdata.cn/wp-content/uploads/iOS-全埋点thumbnail_1.png)](https://item.jd.com/12867068.html)
14+
请参见 [CHANGELOG.md](CHANGELOG.md)
1715

1816
## License
1917

20-
Copyright 2015-2023 Sensors Data Inc.
18+
[License 协议](LICENSE)
2119

22-
Licensed under the Apache License, Version 2.0 (the "License");
23-
you may not use this file except in compliance with the License.
24-
You may obtain a copy of the License at
25-
26-
http://www.apache.org/licenses/LICENSE-2.0
27-
28-
Unless required by applicable law or agreed to in writing, software
29-
distributed under the License is distributed on an "AS IS" BASIS,
30-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
31-
See the License for the specific language governing permissions and
32-
limitations under the License.

demo/app.js

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
import sensors from './dist/mp-xx/index.esm.js';
3+
// 如果需要额外引入插件
4+
//import plugin from './dist/mp-xx/plugin/sat-channel/index.esm.js';
5+
// 如果需要额外引入插件
6+
//sensors.use(plugin);
7+
8+
// 注意需要将神策的代码,放在 app.js 靠前的位置
9+
sensors.init({
10+
name:'sensors',
11+
server_url:'http://xxx.com',
12+
show_log:true,
13+
autoTrack:{}
14+
})
15+
16+
//app.js
17+
App({
18+
onLaunch: function (option) {
19+
console.info('App onLaunch',option);
20+
21+
}
22+
})

demo/readme.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# 使用说明
2+
在 demo 中提供了 app.js ,演示了如何载入 SDK
3+
4+

dist/mp-alipay/index.cjs.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/mp-alipay/index.esm.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/mp-alipay/plugin/sat-channel/index.esm.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/mp-bytedance/index.cjs.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/mp-bytedance/index.esm.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/mp-bytedance/plugin/sat-channel/index.esm.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)