@crowdin/cli
Advanced tools
Comparing version 3.5.0 to 3.5.1
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
## [3.5.1] | ||
### Added | ||
- Ability to exclude target languages for source files ([#331](https://github.com/crowdin/crowdin-cli/pull/331)) | ||
- Ability to ignore hidden files during sources upload ([#331](https://github.com/crowdin/crowdin-cli/pull/331)) | ||
### Fixed | ||
- Fix 'glossary list --verbose' for non-managers ([#331](https://github.com/crowdin/crowdin-cli/pull/331)) | ||
- Fix 'download targets' for enterprise ([#331](https://github.com/crowdin/crowdin-cli/pull/331)) | ||
- Fix one message and add handler to 'add source' request ([#331](https://github.com/crowdin/crowdin-cli/pull/331)) | ||
## [3.5.0] | ||
@@ -5,0 +18,0 @@ |
@@ -49,5 +49,5 @@ #! /usr/bin/env node | ||
} | ||
var jreDir = getJdeploySupportDir() + path.sep + 'node_modules' + path.sep + 'node-jre' + path.sep + 'jre'; | ||
try { | ||
@@ -127,3 +127,3 @@ return jreDir + path.sep + getDirectories(jreDir)[0] + path.sep + _driver; | ||
fail("Could not find embedded java at "+getEmbeddedJavaDir()); | ||
} else { | ||
@@ -136,3 +136,3 @@ // Found the embedded version. Add it to the PATH | ||
*/ | ||
} | ||
@@ -156,14 +156,12 @@ //console.log("Java version is "+getJavaVersion()); | ||
process.stdin.on('readable', () => { | ||
var chunk = process.stdin.read(); | ||
if (chunk === null) { | ||
return; | ||
process.stdin.on('readable', function() { | ||
var chunk = null; | ||
while (null !== (chunk = process.stdin.read())) { | ||
try { | ||
child.stdin.write(chunk); | ||
} catch(e){} | ||
} | ||
try { | ||
child.stdin.write(chunk); | ||
} catch(e){} | ||
}); | ||
child.on('close', function(code) { | ||
process.exit(code); | ||
}); | ||
}); |
@@ -13,3 +13,3 @@ { | ||
}, | ||
"version": "3.5.0", | ||
"version": "3.5.1", | ||
"jdeploy": { | ||
@@ -16,0 +16,0 @@ "jar": "dist/crowdin-cli.jar" |
Sorry, the diff of this file is not supported yet
6723632
3
53224