Skip to content

Commit 6c22b28

Browse files
hotfix launchers do not load apps
1 parent ebfae83 commit 6c22b28

8 files changed

Lines changed: 8 additions & 8 deletions

File tree

kratos.gid/apps/DEMLauncher/app.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
],
77
"start_script":"::DemLauncher::Init",
88
"requeriments":{
9-
"apps":["DEM", "DEMPFEM", "FluidDEM", "CDEM"],
9+
"display_apps":["DEM", "DEMPFEM", "FluidDEM", "CDEM"],
1010
"minimum_gid_version":"15.1.3d"
1111
},
1212
"permissions": {

kratos.gid/apps/DEMLauncher/start.tcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace eval ::DemLauncher {
77
proc ::DemLauncher::Init { app } {
88
variable available_apps
99

10-
set available_apps [dict get [$app getProperty requeriments] apps]
10+
set available_apps [dict get [$app getProperty requeriments] display_apps]
1111
# Allow to open the tree
1212
set ::spdAux::TreeVisibility 0
1313

kratos.gid/apps/FluidLauncher/app.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
],
77
"start_script":"::FluidLauncher::Init",
88
"requeriments":{
9-
"apps":["Fluid","EmbeddedFluid", "PotentialFluid", "Buoyancy", "ConjugateHeatTransfer", "FluidDEM"],
9+
"display_apps":["Fluid","EmbeddedFluid", "PotentialFluid", "Buoyancy", "ConjugateHeatTransfer", "FluidDEM"],
1010
"minimum_gid_version":"15.1.3d"
1111
},
1212
"permissions": {

kratos.gid/apps/FluidLauncher/start.tcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace eval ::FluidLauncher {
77
proc ::FluidLauncher::Init { app } {
88
variable available_apps
99

10-
set available_apps [dict get [$app getProperty requeriments] apps]
10+
set available_apps [dict get [$app getProperty requeriments] display_apps]
1111

1212
::FluidLauncher::FluidAppSelectorWindow
1313
}

kratos.gid/apps/PfemLauncher/app.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
],
77
"start_script":"::PfemLauncher::Init",
88
"requeriments":{
9-
"apps":["PfemFluid", "DEMPFEM", "PfemThermic"],
9+
"display_apps":["PfemFluid", "DEMPFEM", "PfemThermic"],
1010
"minimum_gid_version":"15.1.3d"
1111
},
1212
"permissions": {

kratos.gid/apps/PfemLauncher/start.tcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace eval ::PfemLauncher {
77
proc ::PfemLauncher::Init { app } {
88
variable available_apps
99

10-
set available_apps [dict get [$app getProperty requeriments] apps]
10+
set available_apps [dict get [$app getProperty requeriments] display_apps]
1111
# Allow to open the tree
1212
set ::spdAux::TreeVisibility 0
1313

kratos.gid/apps/ThermicLauncher/app.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
],
77
"start_script": "::ThermicLauncher::Init",
88
"requeriments": {
9-
"apps": [
9+
"display_apps": [
1010
"ConvectionDiffusion",
1111
"Buoyancy",
1212
"ConjugateHeatTransfer"

kratos.gid/apps/ThermicLauncher/start.tcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace eval ::ThermicLauncher {
77
proc ::ThermicLauncher::Init { app } {
88
variable available_apps
99

10-
set available_apps [dict get [$app getProperty requeriments] apps]
10+
set available_apps [dict get [$app getProperty requeriments] display_apps]
1111

1212
::ThermicLauncher::AppSelectorWindow
1313
}

0 commit comments

Comments
 (0)