From ec1690fdcdaee34696ad645ab6f2f3ed1fec42ab Mon Sep 17 00:00:00 2001 From: Daniel Zabari Date: Thu, 19 Sep 2019 14:10:35 -0400 Subject: [PATCH 1/4] Update index.js this is a HUGE missed opportunity for a pun, and I think the pun fits better with the tone of the site generally --- src/levels/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/levels/index.js b/src/levels/index.js index 957193c7..922bfabf 100644 --- a/src/levels/index.js +++ b/src/levels/index.js @@ -190,7 +190,7 @@ var sequenceInfo = exports.sequenceInfo = { 'uk' : 'Переміщуємо роботу туди-сюди' }, about: { - 'en_US': 'Get comfortable with modifying the source tree', + 'en_US': 'Git comfortable with modifying the source tree', 'de_DE': 'Gewöhn dich daran, den Git-Baum zu verändern', 'fr_FR': 'Soyez à l\'aise pour modifier l\'arbre Git', 'es_AR': 'Ponete cómodo con modificar el directorio fuente', From 25bc2350d2f951053c39e2752c0c883db35f71b4 Mon Sep 17 00:00:00 2001 From: Daniel Zabari Date: Fri, 20 Sep 2019 17:30:09 -0400 Subject: [PATCH 2/4] Update index.js made it clear that this is not a typo :P --- src/levels/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/levels/index.js b/src/levels/index.js index 922bfabf..5d343e2a 100644 --- a/src/levels/index.js +++ b/src/levels/index.js @@ -190,7 +190,7 @@ var sequenceInfo = exports.sequenceInfo = { 'uk' : 'Переміщуємо роботу туди-сюди' }, about: { - 'en_US': 'Git comfortable with modifying the source tree', + 'en_US': '"Git" comfortable with modifying the source tree :P', 'de_DE': 'Gewöhn dich daran, den Git-Baum zu verändern', 'fr_FR': 'Soyez à l\'aise pour modifier l\'arbre Git', 'es_AR': 'Ponete cómodo con modificar el directorio fuente', From f245c97a1b10cf5a87663e71c3edee3b4da308c7 Mon Sep 17 00:00:00 2001 From: hongarc Date: Sun, 22 Sep 2019 09:19:15 +0700 Subject: [PATCH 3/4] Update contributor - top 30 contributor --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d70e865f..efb33dc3 100644 --- a/README.md +++ b/README.md @@ -115,12 +115,14 @@ Alternatively, you can also build and run the app in a pre-configured online wor + + @@ -131,8 +133,6 @@ Alternatively, you can also build and run the app in a pre-configured online wor - - [//]: contributor-faces From fa5638f3b89f3f73cffc82232d926c445d6b5cb8 Mon Sep 17 00:00:00 2001 From: Peter Cottle Date: Wed, 25 Sep 2019 10:40:43 +0800 Subject: [PATCH 4/4] Resolves #608 -- enforce word boundary --- src/js/sandbox/commands.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js/sandbox/commands.js b/src/js/sandbox/commands.js index 7f4e359d..1a4c1365 100644 --- a/src/js/sandbox/commands.js +++ b/src/js/sandbox/commands.js @@ -15,12 +15,12 @@ var Warning = Errors.Warning; var CommandResult = Errors.CommandResult; var instantCommands = [ - [/^ls/, function() { + [/^ls\b/, function() { throw new CommandResult({ msg: intl.str('ls-command') }); }], - [/^cd/, function() { + [/^cd\b/, function() { throw new CommandResult({ msg: intl.str('cd-command') });