From 3529319b7be0e5935847e1f7f12f7411af2a627e Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Tue, 9 Oct 2007 02:08:58 -0400 Subject: [PATCH] Update some deploy.factor files --- extra/golden-section/deploy.factor | 5 +++++ extra/hello-ui/deploy.factor | 6 +++++- extra/hello-world/deploy.factor | 4 ++++ 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/extra/golden-section/deploy.factor b/extra/golden-section/deploy.factor index 318d03ee4c..3923d258f0 100644 --- a/extra/golden-section/deploy.factor +++ b/extra/golden-section/deploy.factor @@ -1,12 +1,17 @@ USING: tools.deploy.config ; V{ + { strip-io? t } + { strip-prettyprint? t } + { strip-globals? t } { strip-word-props? t } { strip-word-names? t } { strip-dictionary? t } { strip-debugger? t } + { strip-c-types? t } { deploy-math? t } { deploy-compiled? t } { deploy-io? f } { deploy-ui? t } + { "stop-after-last-window?" t } { "bundle-name" "Golden Section.app" } } diff --git a/extra/hello-ui/deploy.factor b/extra/hello-ui/deploy.factor index db728d1eda..2f346e94c6 100644 --- a/extra/hello-ui/deploy.factor +++ b/extra/hello-ui/deploy.factor @@ -1,12 +1,16 @@ USING: tools.deploy.config ; V{ + { strip-prettyprint? t } + { strip-globals? t } { strip-word-props? t } - { strip-word-names? t } + { strip-word-names? f } { strip-dictionary? t } { strip-debugger? t } + { strip-c-types? t } { deploy-math? t } { deploy-compiled? t } { deploy-io? f } { deploy-ui? t } + { "stop-after-last-window?" t } { "bundle-name" "Hello World.app" } } diff --git a/extra/hello-world/deploy.factor b/extra/hello-world/deploy.factor index 1fa0e20503..145f7ecea7 100644 --- a/extra/hello-world/deploy.factor +++ b/extra/hello-world/deploy.factor @@ -1,11 +1,15 @@ USING: tools.deploy.config ; V{ + { strip-prettyprint? t } + { strip-globals? t } { strip-word-props? t } { strip-word-names? t } { strip-dictionary? t } { strip-debugger? t } + { strip-c-types? t } { deploy-math? f } { deploy-compiled? f } { deploy-io? f } { deploy-ui? f } + { "stop-after-last-window?" t } }