diff --git a/CHANGELOG.md b/CHANGELOG.md index 512d112f..46fdd3c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ ## 2016/03 +### /30 + 1. 修正更新菜单栏判断条件(win禁止按钮 + +### /29 + 1. 完成在线更新功能(目前不支持windows以及开发版本 + ### /26 1. 文件管理双击:size < 100kb ? 编辑 : 下载 2. 调整 Custom 方式数据库部分代码 // 2-4:感谢[@Medicean](https://github.com/Medicean) diff --git a/source/modules/settings/update.jsx b/source/modules/settings/update.jsx index 518829b5..210bfb36 100644 --- a/source/modules/settings/update.jsx +++ b/source/modules/settings/update.jsx @@ -20,7 +20,7 @@ class Update { id: 'check', type: 'button', // 调试或者windows平台不支持更新 - disabled: antSword['package']['debug'] || process.platform === 'win', + disabled: antSword['package']['debug'] || process.platform === 'win32', text: LANG['toolbar']['check'], icon: 'check-square-o' }, { type: 'separator' } ]);