-
Notifications
You must be signed in to change notification settings - Fork 285
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
3,288 additions
and
723 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -103,3 +103,5 @@ dist-zip | |
|
||
# TernJS port file | ||
.tern-port | ||
dev.md | ||
src/popup/App copy.vue |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -79,128 +79,46 @@ <h2>如何使用</h2> | |
alt="主界面5"> | ||
</div> | ||
<h2>更新说明</h2> | ||
<h3>v1.8.0</h3> | ||
<ul> | ||
<li>新增查看基金详情功能,点击基金名称即可查看估值图、走势图等相关信息。</li> | ||
<li>新增基金配置信息的导入导出功能。</li> | ||
<li>修复页面布局中的bug。</li> | ||
</ul> | ||
<h3>v1.7.1</h3> | ||
<ul> | ||
<li>新增查看持有收益功能,添加持仓成本后,可以统计持仓总收益。</li> | ||
<li>修复设置页面中的bug。</li> | ||
</ul> | ||
<h3>v1.7.0</h3> | ||
<ul> | ||
<li>新增暗色模式主题。</li> | ||
<li>顶部指数信息支持动态修改。</li> | ||
<li>暂停实时更新功能改为全局生效。</li> | ||
<li>修复删除特别关注的基金后,脚本还实时更新的异常。</li> | ||
</ul> | ||
<h3>v1.6.0</h3> | ||
<div id="changelog"> | ||
<div v-for="el in logList" :key="el.version"> | ||
<h3>{{el.version}}</h3> | ||
<ul> | ||
<li v-for="(i, ind) in el.content" :key="ind"> | ||
{{i.content}} | ||
</li> | ||
</ul> | ||
</div> | ||
|
||
<ul> | ||
<li>解决基金添加后无法显示、基金丢失等异常问题。</li> | ||
<li>增加按类别排序功能。</li> | ||
<li>增加拖拽排序功能。</li> | ||
<li>添加基金时增加搜索与多选功能。</li> | ||
</ul> | ||
<h3>v1.5.6</h3> | ||
|
||
<ul> | ||
<li>修复不同时区的时间异常问题。</li> | ||
</ul> | ||
|
||
<h3>v1.5.5</h3> | ||
|
||
<ul> | ||
<li>改个名字,φ(>ω<*) 听说名字越长越厉害。</li> <li>优化滚动条效果,调整页面布局。</li> | ||
<li>优化基金名称过长时的显示效果。</li> | ||
</ul> | ||
|
||
<h3>v1.5.4</h3> | ||
|
||
<ul> | ||
<li>有小伙伴反馈找不到设置入口,现在主页面增加设置入口,主页面布局调整。</li> | ||
<li>设置页增加源码入口,感兴趣的小伙伴可以帮忙点个star。</li> | ||
</ul> | ||
|
||
<h3>v1.5.3</h3> | ||
|
||
<ul> | ||
<li>优化持有金额与估值收益的计算方式,持有金额为上一个结算日的金额,估值收益为当前估算的收益额。</li> | ||
<li>添加基金总收益项。</li> | ||
</ul> | ||
|
||
<h3>v1.5.2</h3> | ||
|
||
<ul> | ||
<li>优化页面布局,拆分份额与收益信息选项。</li> | ||
</ul> | ||
|
||
<h3>v1.5.1</h3> | ||
|
||
<ul> | ||
<li>功能优化。</li> | ||
</ul> | ||
|
||
<h3>v1.5.0</h3> | ||
|
||
<ul> | ||
<li>增加基金排序功能。</li> | ||
<li>新增设置选项,右键应用选择‘选项’即可进入设置。</li> | ||
<li>完善节假日信息,可在设置中更新最新节假日信息。</li> | ||
<li>增加收益估算功能,填写持有份额后即可自动计算每日收益,需在设置中开启。</li> | ||
</ul> | ||
|
||
<h3>v1.4.3</h3> | ||
|
||
<ul> | ||
<li>解决因个别新发行基金数据错误而产生的数据异常问题。</li> | ||
</ul> | ||
|
||
<h3>v1.4.2</h3> | ||
|
||
<ul> | ||
<li>修复休市中角标颜色异常的bug。</li> | ||
</ul> | ||
|
||
<h3>v1.4.1</h3> | ||
|
||
<ul> | ||
<li>涨跌颜色调整。</li> | ||
</ul> | ||
|
||
<h3>v1.4.0</h3> | ||
|
||
<ul> | ||
<li>优化代码,完善功能。</li> | ||
</ul> | ||
|
||
<h3>v1.3.2</h3> | ||
|
||
<ul> | ||
<li>优化特别关注功能。</li> | ||
</ul> | ||
|
||
<h3>v1.3.1</h3> | ||
|
||
<ul> | ||
<li>增加特别关注功能,实时角标提醒;</li> | ||
<li>增加简单的休市逻辑,休市状态不再实时更新数据。</li> | ||
</ul> | ||
|
||
<h3>v1.2.0</h3> | ||
|
||
<ul> | ||
<li>修复个别基金数据无法正常获取的问题;</li> | ||
</ul> | ||
</div> | ||
|
||
<h2>隐私协议</h2> | ||
|
||
<p><a href="https://x2rr.github.io/funds/privacy.html">点击跳转</a></p> | ||
</div> | ||
|
||
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> | ||
<script> | ||
var vm = new Vue({ | ||
el: "#changelog", | ||
data: { | ||
logList: [] | ||
}, | ||
mounted() { | ||
let _this = this; | ||
$.ajax({ | ||
type: "get", | ||
url: "./src/common/changeLog.json", | ||
dataType: "json", | ||
success: function (data) { | ||
_this.logList = data; | ||
}, | ||
error: function () {} | ||
}); | ||
} | ||
}); | ||
</script> | ||
|
||
|
||
</body> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -87,126 +87,52 @@ <h2>如何使用</h2> | |
alt="主界面5"> | ||
</div> | ||
<h2>更新说明</h2> | ||
<h3>v1.8.0</h3> | ||
<div id="changelog"> | ||
<div v-for="el in logList" :key="el.version"> | ||
<h3>{{el.version}}</h3> | ||
<ul> | ||
<li v-for="(i, ind) in el.content" :key="ind"> | ||
{{i.content}} | ||
</li> | ||
</ul> | ||
</div> | ||
|
||
</div> | ||
<!-- <h3>v1.8.0</h3> | ||
<ul> | ||
<li>新增查看基金详情功能,点击基金名称即可查看估值图、走势图等相关信息。</li> | ||
<li>新增基金配置信息的导入导出功能。</li> | ||
<li>修复页面布局中的bug。</li> | ||
</ul> | ||
<h3>v1.7.1</h3> | ||
<ul> | ||
<li>新增查看持有收益功能,添加持仓成本后,可以统计持仓总收益。</li> | ||
<li>修复设置页面中的bug。</li> | ||
</ul> | ||
<h3>v1.7.0</h3> | ||
<ul> | ||
<li>新增暗色模式主题。</li> | ||
<li>顶部指数信息支持动态修改。</li> | ||
<li>暂停实时更新功能改为全局生效。</li> | ||
<li>修复删除特别关注的基金后,脚本还实时更新的异常。</li> | ||
</ul> | ||
<h3>v1.6.0</h3> | ||
<ul> | ||
<li>解决基金添加后无法显示、基金丢失等异常问题。</li> | ||
<li>增加按类别排序功能。</li> | ||
<li>增加拖拽排序功能。</li> | ||
<li>添加基金时增加搜索与多选功能。</li> | ||
</ul> | ||
<h3>v1.5.6</h3> | ||
<ul> | ||
<li>修复不同时区的时间异常问题。</li> | ||
</ul> | ||
<h3>v1.5.5</h3> | ||
|
||
<ul> | ||
<li>改个名字,φ(>ω<*) 听说名字越长越厉害。</li> <li>优化滚动条效果,调整页面布局。</li> | ||
<li>优化基金名称过长时的显示效果。</li> | ||
</ul> | ||
|
||
<h3>v1.5.4</h3> | ||
|
||
<ul> | ||
<li>有小伙伴反馈找不到设置入口,现在主页面增加设置入口,主页面布局调整。</li> | ||
<li>设置页增加源码入口,感兴趣的小伙伴可以帮忙点个star。</li> | ||
</ul> | ||
|
||
<h3>v1.5.3</h3> | ||
|
||
<ul> | ||
<li>优化持有金额与估值收益的计算方式,持有金额为上一个结算日的金额,估值收益为当前估算的收益额。</li> | ||
<li>添加基金总收益项。</li> | ||
</ul> | ||
|
||
<h3>v1.5.2</h3> | ||
|
||
<ul> | ||
<li>优化页面布局,拆分份额与收益信息选项。</li> | ||
</ul> | ||
|
||
<h3>v1.5.1</h3> | ||
|
||
<ul> | ||
<li>功能优化。</li> | ||
</ul> | ||
|
||
<h3>v1.5.0</h3> | ||
|
||
<ul> | ||
<li>增加基金排序功能。</li> | ||
<li>新增设置选项,右键应用选择‘选项’即可进入设置。</li> | ||
<li>完善节假日信息,可在设置中更新最新节假日信息。</li> | ||
<li>增加收益估算功能,填写持有份额后即可自动计算每日收益,需在设置中开启。</li> | ||
</ul> | ||
</ul> --> | ||
|
||
<h3>v1.4.3</h3> | ||
|
||
<ul> | ||
<li>解决因个别新发行基金数据错误而产生的数据异常问题。</li> | ||
</ul> | ||
|
||
<h3>v1.4.2</h3> | ||
|
||
<ul> | ||
<li>修复休市中角标颜色异常的bug。</li> | ||
</ul> | ||
|
||
<h3>v1.4.1</h3> | ||
|
||
<ul> | ||
<li>涨跌颜色调整。</li> | ||
</ul> | ||
|
||
<h3>v1.4.0</h3> | ||
|
||
<ul> | ||
<li>优化代码,完善功能。</li> | ||
</ul> | ||
|
||
<h3>v1.3.2</h3> | ||
|
||
<ul> | ||
<li>优化特别关注功能。</li> | ||
</ul> | ||
|
||
<h3>v1.3.1</h3> | ||
|
||
<ul> | ||
<li>增加特别关注功能,实时角标提醒;</li> | ||
<li>增加简单的休市逻辑,休市状态不再实时更新数据。</li> | ||
</ul> | ||
|
||
<h3>v1.2.0</h3> | ||
|
||
<ul> | ||
<li>修复个别基金数据无法正常获取的问题;</li> | ||
</ul> | ||
|
||
<h2>隐私协议</h2> | ||
|
||
<p><a href="https://x2rr.github.io/funds/privacy.html">点击跳转</a></p> | ||
</div> | ||
|
||
|
||
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> | ||
<script> | ||
var vm = new Vue({ | ||
el: "#changelog", | ||
data: { | ||
logList: [] | ||
}, | ||
mounted() { | ||
let _this = this; | ||
$.ajax({ | ||
type: "get", | ||
url: "./src/common/changeLog.json", | ||
dataType: "json", | ||
success: function (data) { | ||
_this.logList = data; | ||
}, | ||
error: function () { | ||
} | ||
}); | ||
} | ||
}); | ||
</script> | ||
</body> | ||
|
||
</html> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.