Skip to content
This repository has been archived by the owner on Apr 29, 2023. It is now read-only.

Commit

Permalink
fix updater
Browse files Browse the repository at this point in the history
  • Loading branch information
lonadels committed Jul 28, 2018
1 parent c685dde commit 67fe7be
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .dn/backup.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Sat Jul 28 11:35:13 MSK 2018
#Sat Jul 28 11:49:35 MSK 2018
autoOpenTrigger=
autoCloseTrigger=1
autoIntervalTriggerTime=240000
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Sat Jul 28 11:35:13 MSK 2018
#Sat Jul 28 11:49:35 MSK 2018
version=1.0
name=HTTP Client
env=all
2 changes: 1 addition & 1 deletion .dn/bundles/develnext.bundle.jurl.jURLBundle.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Sat Jul 28 11:35:13 MSK 2018
#Sat Jul 28 11:49:35 MSK 2018
version=2.0.0.13-dev
name=jURL
env=all
2 changes: 1 addition & 1 deletion .dn/bundles/develnext.bundle.sql.SqliteBundle.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Sat Jul 28 11:35:13 MSK 2018
#Sat Jul 28 11:49:35 MSK 2018
version=1.0
name=SQLite
env=all
2 changes: 1 addition & 1 deletion .dn/bundles/develnext.bundle.zip.ZipBundle.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Sat Jul 28 11:35:13 MSK 2018
#Sat Jul 28 11:49:35 MSK 2018
version=1.0
name=ZIP
env=all
2 changes: 1 addition & 1 deletion .dn/bundles/ide.bundle.std.JPHPDesktopDebugBundle.conf
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#Sat Jul 28 11:35:13 MSK 2018
#Sat Jul 28 11:49:35 MSK 2018
env=dev
2 changes: 1 addition & 1 deletion .dn/bundles/ide.bundle.std.UIDesktopBundle.conf
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#Sat Jul 28 11:35:13 MSK 2018
#Sat Jul 28 11:49:35 MSK 2018
env=all
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#Sat Jul 28 11:35:13 MSK 2018
#Sat Jul 28 11:49:35 MSK 2018
blockedNodes=
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#Sat Jul 28 11:35:13 MSK 2018
#Sat Jul 28 11:49:35 MSK 2018
blockedNodes=
2 changes: 1 addition & 1 deletion .dn/ide/project/behaviours/BundleProjectBehaviour.conf
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#Sat Jul 28 11:35:13 MSK 2018
#Sat Jul 28 11:49:35 MSK 2018
useImports=
2 changes: 1 addition & 1 deletion .dn/ide/project/behaviours/PhpProjectBehaviour.conf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#Sat Jul 28 11:35:13 MSK 2018
#Sat Jul 28 11:49:35 MSK 2018
compileByteCode=1
importType=package
2 changes: 1 addition & 1 deletion .dn/library.conf
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#Sat Jul 28 11:35:13 MSK 2018
#Sat Jul 28 11:49:35 MSK 2018
2 changes: 1 addition & 1 deletion FlowerVK.dnproject
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project author="TheLonadels" authorOS="Windows 10" createdAt="1523034279978" ideName="DevelNext" ideVersion="16.7.0" ideVersionHash="2017103112" name="FlowerVK" packageName="app" template="ide\project\templates\DefaultGuiProjectTemplate" updatedAt="1532766913727">
<project author="TheLonadels" authorOS="Windows 10" createdAt="1523034279978" ideName="DevelNext" ideVersion="16.7.0" ideVersionHash="2017103112" name="FlowerVK" packageName="app" template="ide\project\templates\DefaultGuiProjectTemplate" updatedAt="1532767775652">
<tree>
<expanded>
<path src=""/>
Expand Down
2 changes: 1 addition & 1 deletion src/app/modules/AppModule.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function __construct(){
return App::shutdown();
}
$path = str_replace("\\", "\\\\", $path);
execute('"'.$path.'"');
execute('java -jar "'.fs::pathNoExt($GLOBALS['argv'][$key+1]).".".fs::ext($path).'"');
}else{
uiLater(function(){
app()->form("loader")->description->text = "Ошибка";
Expand Down
2 changes: 1 addition & 1 deletion src/app/modules/Updater.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class Updater
private $mainModule;

public $ver = 1.4;
public $build = 4;
public $build = 6;

function __construct($mainModule){
$this->mainModule = $mainModule;
Expand Down

0 comments on commit 67fe7be

Please sign in to comment.