diff --git a/locales/en.json b/locales/en.json index e6ef3ed..004f7c8 100644 --- a/locales/en.json +++ b/locales/en.json @@ -3,7 +3,7 @@ "signed_by": "Signed By", "obtained_from": "Obtained From", "last_modified": "Last Modified", - "runtime_environment": "Runtime Environment", + "runtime_environment": "Architecture", "has64bit": "64-Bit", "mac_app_store": "Mac App Store", "identified_developer": "Identified Developer", diff --git a/scripts/applications.py b/scripts/applications.py index 2eb092b..dd7a266 100755 --- a/scripts/applications.py +++ b/scripts/applications.py @@ -51,8 +51,10 @@ def flatten_applications_info(array): device['signed_by'] = obj[item][0] elif item == 'has64BitIntelCode' and obj[item] == 'yes': device['has64bit'] = 1 - elif item == 'arch_kind' and (obj[item] == 'arch_i64' or obj[item] == 'arch_i32_i64' or obj[item] == 'arch_arm_i64' or obj[item] == 'arch_ios'): - device['has64bit'] = 1 + elif item == 'arch_kind': + device['runtime_environment'] = obj[item] + if (obj[item] == 'arch_i64' or obj[item] == 'arch_i32_i64' or obj[item] == 'arch_arm_i64' or obj[item] == 'arch_ios'): + device['has64bit'] = 1 out.append(device) return out diff --git a/views/applications_listing.php b/views/applications_listing.php index b350db1..14652d3 100644 --- a/views/applications_listing.php +++ b/views/applications_listing.php @@ -18,6 +18,7 @@ + diff --git a/views/applications_tab.php b/views/applications_tab.php index 5289346..a39e3c0 100644 --- a/views/applications_tab.php +++ b/views/applications_tab.php @@ -11,6 +11,7 @@ + @@ -26,6 +27,7 @@ obtained_from); ?> last_modified); ?> has64bit); ?> + runtime_environment); ?> path; ?> info; ?>