Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,7 @@ _book
dist
/.history
/test/temp_files

# ide
/.idea/
/.vscode/
84 changes: 42 additions & 42 deletions biz/webui/htdocs/js/index.js

Large diffs are not rendered by default.

9 changes: 7 additions & 2 deletions biz/webui/htdocs/src/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -580,6 +580,11 @@ var Index = React.createClass({
href: 'https://avwo.github.io/whistle/update.html',
icon: false
},
{
name: 'ChangeLog',
href: 'https://github.com/avwo/whistle/blob/master/CHANGELOG.md',
icon: false
},
{
name: 'Issue',
href: 'https://github.com/avwo/whistle/issues/new',
Expand Down Expand Up @@ -866,7 +871,7 @@ var Index = React.createClass({
composerData = data;
}
});

events.on('showPluginOption', function(_, plugin) {
if (!plugin) {
return;
Expand All @@ -892,7 +897,7 @@ var Index = React.createClass({
events.on('hidePluginOption', function() {
self.refs.iframeDialog.hide();
});

events.on('download', function(_, data) {
self.download(data);
});
Expand Down
3 changes: 3 additions & 0 deletions docs/zh/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# 更新日志

详见:[更新日志](https://github.com/avwo/whistle/blob/master/CHANGELOG.md)
1 change: 1 addition & 0 deletions docs/zh/SUMMARY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Summary

* [关于whistle](README.md)
* [更新日志](CHANGELOG.md)
* [安装启动](install.md)
* [代理与证书](proxy.md)
* [命令行参数](options.md)
Expand Down