Skip to content

Commit

Permalink
v4.38 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
kalcaddle committed Feb 25, 2019
1 parent 4bdfcd6 commit 538bb10
Show file tree
Hide file tree
Showing 23 changed files with 48 additions and 43 deletions.
7 changes: 5 additions & 2 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
### ver4.38 `2019/2/25`
-----
#### update:
- 排序优化:文件夹列表,中文排序支持按拼音进行排序
- 针对移动端APP进行兼容适配优化
- 部门列表过多时,排序效率优化。
- https请求优化兼容
- cad分享无法预览问题解决
- 新增hook点
- 其他细节优化

#### fix bug
- https请求优化兼容
- cad分享无法预览问题解决

### ver4.37 `2018/11/28`
-----
#### update:
Expand Down
2 changes: 1 addition & 1 deletion app/controller/utils.php

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion plugins/toolsCommon/static/pie/.pie.tif

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/js/app/src/api/default/main.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/js/app/src/api/view/main.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/js/app/src/app/main.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/js/app/src/desktop/main.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/js/app/src/edit/main.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/js/app/src/editor/main.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/js/app/src/explorer/main.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/js/app/src/explorerWap/main.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/js/app/src/plugins/main.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/js/app/src/setting/main.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/js/app/src/shareEditor/main.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/js/app/src/shareExplorer/main.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/js/app/src/shareIndex/main.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/js/app/src/user/main.js

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion static/js/lib/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -658,6 +658,8 @@ var pathTools = (function(){
* https://github.com/overset/javascript-natural-sort/blob/master/naturalSort.js
*/
var strSort = function(a,b){
if(a == undefined ) return 1;
if(b == undefined ) return -1;
if($.isNumeric(a) && $.isNumeric(b)){
a = parseFloat(a);b = parseFloat(b);
return a==b?0:(a>b?1:-1);
Expand Down Expand Up @@ -705,7 +707,7 @@ var pathTools = (function(){
}else{
//英文字符排在中文字符前
if( aChar.charCodeAt() < 255 || bChar.charCodeAt() < 255){
if(bChar==bChar) continue;
if(aChar==bChar) continue;
return aChar>bChar?1:-1;
}
//中文数字排在所有汉字前
Expand Down
4 changes: 2 additions & 2 deletions static/style/skin/base/app_code_edit.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/style/skin/base/app_desktop.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/style/skin/base/app_editor.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions static/style/skin/base/app_explorer.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/style/skin/base/app_setting.css

Large diffs are not rendered by default.

0 comments on commit 538bb10

Please sign in to comment.