Skip to content

Commit

Permalink
默认取消了自动保存的功能
Browse files Browse the repository at this point in the history
  • Loading branch information
topcss committed Jan 25, 2018
1 parent d002b9c commit 34e8113
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions doc/History.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
[**桌面版脑图**](https://github.com/topcss/DesktopNaotu) 是百度脑图的离线版,帮助你在没有互联网环境的情况下,依然可以使用脑图工具。

## 更新记录
0.1.7 / 2018-1-25
==================

* 解决 导出 Freemind 错误的问题
* 修改 默认取消了自动保存的功能


0.1.6 / 2017-10-31
==================

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "desktopnaotu",
"version": "0.1.6",
"version": "0.1.7",
"description": "桌面版脑图",
"main": "main.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/js/common.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var defaultPath = null, isSutoSave = true;
var defaultPath = null, isSutoSave = false;
var fs = require('fs'),
{ shell } = require('electron'),
{ dialog } = require('electron').remote,
Expand Down
2 changes: 1 addition & 1 deletion src/js/menu-bar.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ var template = [{
{
label: '自动保存',
type: 'checkbox',
checked: true,
checked: false,
click: autoSave
},
{ type: 'separator' },
Expand Down
2 changes: 1 addition & 1 deletion version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
exports.version = [0, 1, 6, 256];
exports.version = [0, 1, 7, 261];

2 comments on commit 34e8113

@daipenguin
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

正在使用非常感谢!
个人觉得默认自动保存更好吧,发现一个问题就是脑图不能上传本地图片

@topcss
Copy link
Member Author

@topcss topcss commented on 34e8113 Mar 8, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

谢谢你的肯定,这个项目纯粹是个人兴趣,能够做对更多人有价值的事情,我会觉得很满足和有意义。

这个功能,很多不了解这个功能的新用户第一次使用会遇到弹框的问题,而我也没想到这么避免,所以干脆就取消了。这样就需要每次手动保存,等我想到更好的方式,之后可能会恢复自动保存的功能的。

Please sign in to comment.