Commit 639de262 authored by antoor's avatar antoor

Modified judgment condition

parent f31ec40c
...@@ -4,6 +4,12 @@ ...@@ -4,6 +4,12 @@
## 2016/03 ## 2016/03
### /30
1. 修正更新菜单栏判断条件(win禁止按钮
### /29
1. 完成在线更新功能(目前不支持windows以及开发版本
### /26 ### /26
1. 文件管理双击:size < 100kb ? 编辑 : 下载 1. 文件管理双击:size < 100kb ? 编辑 : 下载
2. 调整 Custom 方式数据库部分代码 // 2-4:感谢[@Medicean](https://github.com/Medicean) 2. 调整 Custom 方式数据库部分代码 // 2-4:感谢[@Medicean](https://github.com/Medicean)
......
...@@ -20,7 +20,7 @@ class Update { ...@@ -20,7 +20,7 @@ class Update {
id: 'check', id: 'check',
type: 'button', type: 'button',
// 调试或者windows平台不支持更新 // 调试或者windows平台不支持更新
disabled: antSword['package']['debug'] || process.platform === 'win', disabled: antSword['package']['debug'] || process.platform === 'win32',
text: LANG['toolbar']['check'], icon: 'check-square-o' text: LANG['toolbar']['check'], icon: 'check-square-o'
}, { type: 'separator' } }, { type: 'separator' }
]); ]);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment