mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 10:45:47 +00:00
chore(package) v7.6.0
This commit is contained in:
parent
2edf7f8321
commit
c86c7a8c88
6 changed files with 15 additions and 18 deletions
|
|
@ -1,3 +1,10 @@
|
|||
2017.09.11, v7.6.0
|
||||
|
||||
feature:
|
||||
- (vim) add find support with: "/", "n" and "N"
|
||||
- (package) yaspeller v4.0.0
|
||||
|
||||
|
||||
2017.09.08, v7.5.2
|
||||
|
||||
fix:
|
||||
|
|
|
|||
3
HELP.md
3
HELP.md
|
|
@ -1,4 +1,4 @@
|
|||
# Cloud Commander v7.5.2
|
||||
# Cloud Commander v7.6.0
|
||||
|
||||
### [Main][MainURL] [Blog][BlogURL] Live(![Heroku][Heroku_LIVE_IMG] [Heroku][HerokuURL], ![Now][NOW_LIVE_IMG] [Now][NowURL])
|
||||
|
||||
|
|
@ -634,6 +634,7 @@ There is a lot ways to be involved in `Cloud Commander` development:
|
|||
|
||||
Version history
|
||||
---------------
|
||||
- *2017.09.11*, **[v7.6.0](//github.com/coderaiser/cloudcmd/releases/tag/v7.6.0)**
|
||||
- *2017.09.08*, **[v7.5.2](//github.com/coderaiser/cloudcmd/releases/tag/v7.5.2)**
|
||||
- *2017.09.08*, **[v7.5.1](//github.com/coderaiser/cloudcmd/releases/tag/v7.5.1)**
|
||||
- *2017.09.08*, **[v7.5.0](//github.com/coderaiser/cloudcmd/releases/tag/v7.5.0)**
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
# Cloud Commander v7.5.2 [![License][LicenseIMGURL]][LicenseURL] [![NPM version][NPMIMGURL]][NPMURL] [![Dependency Status][DependencyStatusIMGURL]][DependencyStatusURL] [![Build Status][BuildStatusIMGURL]][BuildStatusURL] [![Now status][BuildAppveyorIMGURL]][BuildAppveyorURL] [![Package Quality][PackageQualityIMGURL]][PackageQualityURL] [![Codacy][CodacyIMG]][CodacyURL] [![Gitter][GitterIMGURL]][GitterURL] [](#backers) [](#sponsors)
|
||||
# Cloud Commander v7.6.0 [![License][LicenseIMGURL]][LicenseURL] [![NPM version][NPMIMGURL]][NPMURL] [![Dependency Status][DependencyStatusIMGURL]][DependencyStatusURL] [![Build Status][BuildStatusIMGURL]][BuildStatusURL] [![Now status][BuildAppveyorIMGURL]][BuildAppveyorURL] [![Package Quality][PackageQualityIMGURL]][PackageQualityURL] [![Codacy][CodacyIMG]][CodacyURL] [![Gitter][GitterIMGURL]][GitterURL] [](#backers) [](#sponsors)
|
||||
|
||||
### [Main][MainURL] [Blog][BlogURL] Live([Heroku][HerokuURL], [Now][NowURL])
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
'use strict';
|
||||
/* global DOM */
|
||||
|
||||
const fullstore = require('fullstore');
|
||||
const fullstore = require('fullstore/legacy');
|
||||
const limier = require('limier');
|
||||
const Info = DOM.CurrentInfo;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "cloudcmd",
|
||||
"version": "7.5.2",
|
||||
"version": "7.6.0",
|
||||
"author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
|
||||
"description": "Orthodox web file manager with console and editor",
|
||||
"homepage": "http://cloudcmd.io",
|
||||
|
|
|
|||
|
|
@ -7,14 +7,11 @@ const dir = '../../../../client/key/vim/';
|
|||
|
||||
const {
|
||||
getDOM,
|
||||
getCloudCmd,
|
||||
} = require('./globals');
|
||||
|
||||
global.DOM = global.DOM || getDOM();
|
||||
global.CloudCmd = global.CloudCmd || getCloudCmd();
|
||||
|
||||
const DOM = global.DOM
|
||||
const CloudCmd = global.CloudCmd;
|
||||
const DOM = global.DOM;
|
||||
|
||||
const {
|
||||
find,
|
||||
|
|
@ -56,24 +53,16 @@ test('cloudcmd: client: vim: findPrevious', (t) => {
|
|||
});
|
||||
|
||||
test('cloudcmd: client: vim: _next', (t) => {
|
||||
const result = _next(1, 2)
|
||||
const result = _next(1, 2);
|
||||
|
||||
t.notOk(result, 'should return 0');
|
||||
t.end();
|
||||
});
|
||||
|
||||
test('cloudcmd: client: vim: _previous', (t) => {
|
||||
const result = _previous(0, 2)
|
||||
const result = _previous(0, 2);
|
||||
|
||||
t.equal(result, 1, 'should return 1');
|
||||
t.end();
|
||||
});
|
||||
|
||||
function clean(path) {
|
||||
delete require.cache[require.resolve(path)];
|
||||
}
|
||||
|
||||
function stub(name, fn) {
|
||||
require.cache[require.resolve(name)].exports = fn;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue