3 Commits
0.3.1 ... 0.3.2

Author SHA1 Message Date
6fa1736321 version bump 2019-09-09 01:05:14 +02:00
890438ffe9 Fixed a issue with launching router on osx 2019-09-09 01:04:56 +02:00
ebf6f2577a Use self to avoid error 2019-09-09 00:48:19 +02:00
3 changed files with 5 additions and 6 deletions

View File

@ -98,7 +98,7 @@ I2PProcessService.prototype =
this._isConsoleRunning(function(res) {
if (res!=4) {
// Yes, 4 is success
let canStartPromise = this._config_checker.ensure_config()
let canStartPromise = self._config_checker.ensure_config()
canStartPromise.then(() => {
self._logger.log(3, 'Starting the router')
self.I2PStartAndControlI2P(true)

View File

@ -6,7 +6,7 @@
<em:name>I2pbutton</em:name>
<em:creator>Meeh, Mikal Villa</em:creator>
<em:id>i2pbutton@geti2p.net</em:id>
<em:version>0.3.1</em:version>
<em:version>0.3.2</em:version>
<em:multiprocessCompatible>true</em:multiprocessCompatible>
<em:homepageURL>https://geti2p.net/en/download/lab</em:homepageURL>
<em:iconURL>chrome://i2pbutton/skin/i2p.png</em:iconURL>

View File

@ -290,18 +290,17 @@ const LauncherUtil = {
}
}
i2pFile = LauncherUtilInternal._appDir.clone()
try {
// Turn 'path' into an absolute path.
i2pFile = LauncherUtilInternal._appDir.clone()
if (this.isMac) {
i2pFile.append("I2PBrowser")
} else {
if (!this.isMac) {
let lnxpath = i2pFile.clone()
lnxpath.append(path)
return lnxpath
}
//i2pFile.appendRelativePath(path)
logger.log(2, `getI2PFile - Path before append: ${i2pFile.path}`)
i2pFile.appendRelativePath(path)
logger.log(2, `getI2PFile - Gonna try path ${i2pFile.path}`)