From 03dee63378e6c373f4d6cc74c93ba8104ec71392 Mon Sep 17 00:00:00 2001 From: Shad Mickelberry Date: Wed, 17 Apr 2019 08:59:47 -0600 Subject: [PATCH 1/2] Version 9 compatibility for manifest --- layout_admin/manifest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layout_admin/manifest.php b/layout_admin/manifest.php index be7f3b5..d003f9b 100755 --- a/layout_admin/manifest.php +++ b/layout_admin/manifest.php @@ -16,7 +16,7 @@ 'acceptable_sugar_versions' => array ( 'regex_matches' => array( - '7.*','8.*' + '7.*', '8.*', '9.*' ), ), 'acceptable_sugar_flavors' => @@ -32,7 +32,7 @@ 'icon' => '', 'is_uninstallable' => false, 'name' => 'Layout Administration', - 'published_date' => '2018-06-14 08:43:07', + 'published_date' => '2019-04-17 08:58:38', 'type' => 'module', 'version' => time(), 'remove_tables' => 'prompt', From 7efe3b7ecc73275a4fd2ffa8f23724b4e37d7daa Mon Sep 17 00:00:00 2001 From: Shad Mickelberry Date: Mon, 9 Dec 2019 13:26:52 -0700 Subject: [PATCH 2/2] Make package uninstallable in manifest --- layout_admin/.gitignore | 2 ++ layout_admin/manifest.php | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 layout_admin/.gitignore diff --git a/layout_admin/.gitignore b/layout_admin/.gitignore new file mode 100644 index 0000000..baae5e6 --- /dev/null +++ b/layout_admin/.gitignore @@ -0,0 +1,2 @@ +*.zip +*.tar.gz \ No newline at end of file diff --git a/layout_admin/manifest.php b/layout_admin/manifest.php index d003f9b..4983151 100755 --- a/layout_admin/manifest.php +++ b/layout_admin/manifest.php @@ -30,11 +30,11 @@ 'author' => '', 'description' => '', 'icon' => '', - 'is_uninstallable' => false, + 'is_uninstallable' => true, 'name' => 'Layout Administration', 'published_date' => '2019-04-17 08:58:38', 'type' => 'module', - 'version' => time(), + 'version' => '1.2', 'remove_tables' => 'prompt', );