From 4ff4b52202b1c5dbfe2b80580bbe7d93132ab05c Mon Sep 17 00:00:00 2001 From: undergroundwires Date: Fri, 24 Jul 2020 15:43:19 +0100 Subject: [PATCH] code area now shows "how" before "why" --- src/presentation/TheCodeArea.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/presentation/TheCodeArea.vue b/src/presentation/TheCodeArea.vue index 7ee76e88..249dda4c 100644 --- a/src/presentation/TheCodeArea.vue +++ b/src/presentation/TheCodeArea.vue @@ -13,16 +13,16 @@ const NothingChosenCode = new CodeBuilder() .appendCommentLine('privacy.sexy — 🔐 Enforce privacy & security best-practices on Windows') .appendLine() + .appendCommentLine('-- 🤔 How to use') + .appendCommentLine(' 📙 Start by exploring different categories and choosing different tweaks.') + .appendCommentLine(' 📙 You can select "Recommended" on the top to select "safer" tweaks. Always double check!') + .appendCommentLine(' 📙 After you choose any tweak, you can download & copy to execute your script.') + .appendLine() .appendCommentLine('-- 🧐 Why privacy.sexy') .appendCommentLine(' ✔️ Rich tweak pool to harden security & privacy of the OS and other softwares on it.') .appendCommentLine(' ✔️ You don\'t need to run any compiled software on your system, just run the generated scripts.') .appendCommentLine(' ✔️ Have full visibility into what the tweaks do as you enable them.') .appendCommentLine(' ✔️ Free software, 100% transparency: both application & infrastructure code are open-sourced.') - .appendLine() - .appendCommentLine('-- 🤔 How to use') - .appendCommentLine(' 📙 Start by exploring different categories and choosing different tweaks.') - .appendCommentLine(' 📙 You can select "Recommended" on the top to select "safer" tweaks. Always double check!') - .appendCommentLine(' 📙 After you choose any tweak, you can download & copy to execute your script.') .toString(); @Component