From e635783235bd444686cb4bda124158b4eaffbd4a Mon Sep 17 00:00:00 2001 From: Louis Ouellet Date: Thu, 6 Nov 2025 09:46:54 -0500 Subject: [PATCH 1/2] General: Version bumped to v0.0.92 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 8ca5673..efd084b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v0.0.91 +v0.0.92 From 281aa51a2642c14ac1778f5d8d3d59f76ff0fc86 Mon Sep 17 00:00:00 2001 From: Louis Ouellet Date: Fri, 7 Nov 2025 09:09:33 -0500 Subject: [PATCH 2/2] General: Increased the memory limit for larger apps (from 1G to 2G). --- install.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install.php b/install.php index c6a287d..cf59dac 100644 --- a/install.php +++ b/install.php @@ -1,4 +1,5 @@ [] if ($argc < 2) { die("Usage: php install.php []\n"); @@ -19,7 +20,7 @@ // Configure PHP Settings - increase execution time and memory limit ini_set('max_execution_time', '600'); // 10 minutes set_time_limit(600); // 10 minutes -ini_set('memory_limit', '1024M'); +ini_set('memory_limit', '2G'); // Check if required commands are available