This commit is contained in:
Jens 2023-05-06 23:32:43 +02:00
parent a76cafc6e2
commit 11f0ee25bf
3 changed files with 13 additions and 2 deletions

View File

@ -11,8 +11,8 @@ android {
compileSdkVersion 31
buildToolsVersion '29.0.2'
useLibrary 'org.apache.http.legacy'
versionCode 131
versionName "1.7.15"
versionCode 132
versionName "1.7.16"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

View File

@ -57,6 +57,15 @@ public class ActivityManageActionRunExecutable extends Activity
saveExecSettings();
}
});
if(getIntent().hasExtra(ActivityManageRule.intentNameActionParameter2))
{
String[] parts = getIntent().getStringExtra(ActivityManageRule.intentNameActionParameter2).split(Action.actionParameter2Split);
etRunExecutablePath.setText(parts[0]);
if(parts.length > 1)
etRunExecutableParameters.setText(parts[1]);
}
}
void saveExecSettings()

View File

@ -0,0 +1,2 @@
* Fixed: Run executable action - when editing values were not loaded in editor
* Added: Variables usable in intent parameters