From 9b44388141276e19e27600da681db47f0b3214ae Mon Sep 17 00:00:00 2001 From: Boof <97455552+hexahigh@users.noreply.github.com> Date: Thu, 27 Oct 2022 10:37:32 +0200 Subject: [PATCH] moved 2048 --- {2048 => Games/2048}/.gitignore | 0 {2048 => Games/2048}/.jshintrc | 0 {2048 => Games/2048}/CONTRIBUTING.md | 0 {2048 => Games/2048}/LICENSE.txt | 0 {2048 => Games/2048}/README.md | 0 {2048 => Games/2048}/Rakefile | 0 {2048 => Games/2048}/favicon.ico | Bin {2048 => Games/2048}/index.html | 0 {2048 => Games/2048}/js/animframe_polyfill.js | 0 {2048 => Games/2048}/js/application.js | 0 {2048 => Games/2048}/js/bind_polyfill.js | 0 {2048 => Games/2048}/js/classlist_polyfill.js | 0 {2048 => Games/2048}/js/game_manager.js | 0 {2048 => Games/2048}/js/grid.js | 0 {2048 => Games/2048}/js/html_actuator.js | 0 {2048 => Games/2048}/js/keyboard_input_manager.js | 0 {2048 => Games/2048}/js/local_storage_manager.js | 0 {2048 => Games/2048}/js/tile.js | 0 {2048 => Games/2048}/meta/apple-touch-icon.png | Bin .../meta/apple-touch-startup-image-640x1096.png | Bin .../meta/apple-touch-startup-image-640x920.png | Bin .../2048}/style/fonts/ClearSans-Bold-webfont.eot | Bin .../2048}/style/fonts/ClearSans-Bold-webfont.svg | 0 .../2048}/style/fonts/ClearSans-Bold-webfont.woff | Bin .../2048}/style/fonts/ClearSans-Light-webfont.eot | Bin .../2048}/style/fonts/ClearSans-Light-webfont.svg | 0 .../2048}/style/fonts/ClearSans-Light-webfont.woff | Bin .../2048}/style/fonts/ClearSans-Regular-webfont.eot | Bin .../2048}/style/fonts/ClearSans-Regular-webfont.svg | 0 .../style/fonts/ClearSans-Regular-webfont.woff | Bin {2048 => Games/2048}/style/fonts/clear-sans.css | 0 {2048 => Games/2048}/style/helpers.scss | 0 {2048 => Games/2048}/style/main.css | 0 {2048 => Games/2048}/style/main.scss | 0 34 files changed, 0 insertions(+), 0 deletions(-) rename {2048 => Games/2048}/.gitignore (100%) rename {2048 => Games/2048}/.jshintrc (100%) rename {2048 => Games/2048}/CONTRIBUTING.md (100%) rename {2048 => Games/2048}/LICENSE.txt (100%) rename {2048 => Games/2048}/README.md (100%) rename {2048 => Games/2048}/Rakefile (100%) rename {2048 => Games/2048}/favicon.ico (100%) rename {2048 => Games/2048}/index.html (100%) rename {2048 => Games/2048}/js/animframe_polyfill.js (100%) rename {2048 => Games/2048}/js/application.js (100%) rename {2048 => Games/2048}/js/bind_polyfill.js (100%) rename {2048 => Games/2048}/js/classlist_polyfill.js (100%) rename {2048 => Games/2048}/js/game_manager.js (100%) rename {2048 => Games/2048}/js/grid.js (100%) rename {2048 => Games/2048}/js/html_actuator.js (100%) rename {2048 => Games/2048}/js/keyboard_input_manager.js (100%) rename {2048 => Games/2048}/js/local_storage_manager.js (100%) rename {2048 => Games/2048}/js/tile.js (100%) rename {2048 => Games/2048}/meta/apple-touch-icon.png (100%) rename {2048 => Games/2048}/meta/apple-touch-startup-image-640x1096.png (100%) rename {2048 => Games/2048}/meta/apple-touch-startup-image-640x920.png (100%) rename {2048 => Games/2048}/style/fonts/ClearSans-Bold-webfont.eot (100%) rename {2048 => Games/2048}/style/fonts/ClearSans-Bold-webfont.svg (100%) rename {2048 => Games/2048}/style/fonts/ClearSans-Bold-webfont.woff (100%) rename {2048 => Games/2048}/style/fonts/ClearSans-Light-webfont.eot (100%) rename {2048 => Games/2048}/style/fonts/ClearSans-Light-webfont.svg (100%) rename {2048 => Games/2048}/style/fonts/ClearSans-Light-webfont.woff (100%) rename {2048 => Games/2048}/style/fonts/ClearSans-Regular-webfont.eot (100%) rename {2048 => Games/2048}/style/fonts/ClearSans-Regular-webfont.svg (100%) rename {2048 => Games/2048}/style/fonts/ClearSans-Regular-webfont.woff (100%) rename {2048 => Games/2048}/style/fonts/clear-sans.css (100%) rename {2048 => Games/2048}/style/helpers.scss (100%) rename {2048 => Games/2048}/style/main.css (100%) rename {2048 => Games/2048}/style/main.scss (100%) diff --git a/2048/.gitignore b/Games/2048/.gitignore similarity index 100% rename from 2048/.gitignore rename to Games/2048/.gitignore diff --git a/2048/.jshintrc b/Games/2048/.jshintrc similarity index 100% rename from 2048/.jshintrc rename to Games/2048/.jshintrc diff --git a/2048/CONTRIBUTING.md b/Games/2048/CONTRIBUTING.md similarity index 100% rename from 2048/CONTRIBUTING.md rename to Games/2048/CONTRIBUTING.md diff --git a/2048/LICENSE.txt b/Games/2048/LICENSE.txt similarity index 100% rename from 2048/LICENSE.txt rename to Games/2048/LICENSE.txt diff --git a/2048/README.md b/Games/2048/README.md similarity index 100% rename from 2048/README.md rename to Games/2048/README.md diff --git a/2048/Rakefile b/Games/2048/Rakefile similarity index 100% rename from 2048/Rakefile rename to Games/2048/Rakefile diff --git a/2048/favicon.ico b/Games/2048/favicon.ico similarity index 100% rename from 2048/favicon.ico rename to Games/2048/favicon.ico diff --git a/2048/index.html b/Games/2048/index.html similarity index 100% rename from 2048/index.html rename to Games/2048/index.html diff --git a/2048/js/animframe_polyfill.js b/Games/2048/js/animframe_polyfill.js similarity index 100% rename from 2048/js/animframe_polyfill.js rename to Games/2048/js/animframe_polyfill.js diff --git a/2048/js/application.js b/Games/2048/js/application.js similarity index 100% rename from 2048/js/application.js rename to Games/2048/js/application.js diff --git a/2048/js/bind_polyfill.js b/Games/2048/js/bind_polyfill.js similarity index 100% rename from 2048/js/bind_polyfill.js rename to Games/2048/js/bind_polyfill.js diff --git a/2048/js/classlist_polyfill.js b/Games/2048/js/classlist_polyfill.js similarity index 100% rename from 2048/js/classlist_polyfill.js rename to Games/2048/js/classlist_polyfill.js diff --git a/2048/js/game_manager.js b/Games/2048/js/game_manager.js similarity index 100% rename from 2048/js/game_manager.js rename to Games/2048/js/game_manager.js diff --git a/2048/js/grid.js b/Games/2048/js/grid.js similarity index 100% rename from 2048/js/grid.js rename to Games/2048/js/grid.js diff --git a/2048/js/html_actuator.js b/Games/2048/js/html_actuator.js similarity index 100% rename from 2048/js/html_actuator.js rename to Games/2048/js/html_actuator.js diff --git a/2048/js/keyboard_input_manager.js b/Games/2048/js/keyboard_input_manager.js similarity index 100% rename from 2048/js/keyboard_input_manager.js rename to Games/2048/js/keyboard_input_manager.js diff --git a/2048/js/local_storage_manager.js b/Games/2048/js/local_storage_manager.js similarity index 100% rename from 2048/js/local_storage_manager.js rename to Games/2048/js/local_storage_manager.js diff --git a/2048/js/tile.js b/Games/2048/js/tile.js similarity index 100% rename from 2048/js/tile.js rename to Games/2048/js/tile.js diff --git a/2048/meta/apple-touch-icon.png b/Games/2048/meta/apple-touch-icon.png similarity index 100% rename from 2048/meta/apple-touch-icon.png rename to Games/2048/meta/apple-touch-icon.png diff --git a/2048/meta/apple-touch-startup-image-640x1096.png b/Games/2048/meta/apple-touch-startup-image-640x1096.png similarity index 100% rename from 2048/meta/apple-touch-startup-image-640x1096.png rename to Games/2048/meta/apple-touch-startup-image-640x1096.png diff --git a/2048/meta/apple-touch-startup-image-640x920.png b/Games/2048/meta/apple-touch-startup-image-640x920.png similarity index 100% rename from 2048/meta/apple-touch-startup-image-640x920.png rename to Games/2048/meta/apple-touch-startup-image-640x920.png diff --git a/2048/style/fonts/ClearSans-Bold-webfont.eot b/Games/2048/style/fonts/ClearSans-Bold-webfont.eot similarity index 100% rename from 2048/style/fonts/ClearSans-Bold-webfont.eot rename to Games/2048/style/fonts/ClearSans-Bold-webfont.eot diff --git a/2048/style/fonts/ClearSans-Bold-webfont.svg b/Games/2048/style/fonts/ClearSans-Bold-webfont.svg similarity index 100% rename from 2048/style/fonts/ClearSans-Bold-webfont.svg rename to Games/2048/style/fonts/ClearSans-Bold-webfont.svg diff --git a/2048/style/fonts/ClearSans-Bold-webfont.woff b/Games/2048/style/fonts/ClearSans-Bold-webfont.woff similarity index 100% rename from 2048/style/fonts/ClearSans-Bold-webfont.woff rename to Games/2048/style/fonts/ClearSans-Bold-webfont.woff diff --git a/2048/style/fonts/ClearSans-Light-webfont.eot b/Games/2048/style/fonts/ClearSans-Light-webfont.eot similarity index 100% rename from 2048/style/fonts/ClearSans-Light-webfont.eot rename to Games/2048/style/fonts/ClearSans-Light-webfont.eot diff --git a/2048/style/fonts/ClearSans-Light-webfont.svg b/Games/2048/style/fonts/ClearSans-Light-webfont.svg similarity index 100% rename from 2048/style/fonts/ClearSans-Light-webfont.svg rename to Games/2048/style/fonts/ClearSans-Light-webfont.svg diff --git a/2048/style/fonts/ClearSans-Light-webfont.woff b/Games/2048/style/fonts/ClearSans-Light-webfont.woff similarity index 100% rename from 2048/style/fonts/ClearSans-Light-webfont.woff rename to Games/2048/style/fonts/ClearSans-Light-webfont.woff diff --git a/2048/style/fonts/ClearSans-Regular-webfont.eot b/Games/2048/style/fonts/ClearSans-Regular-webfont.eot similarity index 100% rename from 2048/style/fonts/ClearSans-Regular-webfont.eot rename to Games/2048/style/fonts/ClearSans-Regular-webfont.eot diff --git a/2048/style/fonts/ClearSans-Regular-webfont.svg b/Games/2048/style/fonts/ClearSans-Regular-webfont.svg similarity index 100% rename from 2048/style/fonts/ClearSans-Regular-webfont.svg rename to Games/2048/style/fonts/ClearSans-Regular-webfont.svg diff --git a/2048/style/fonts/ClearSans-Regular-webfont.woff b/Games/2048/style/fonts/ClearSans-Regular-webfont.woff similarity index 100% rename from 2048/style/fonts/ClearSans-Regular-webfont.woff rename to Games/2048/style/fonts/ClearSans-Regular-webfont.woff diff --git a/2048/style/fonts/clear-sans.css b/Games/2048/style/fonts/clear-sans.css similarity index 100% rename from 2048/style/fonts/clear-sans.css rename to Games/2048/style/fonts/clear-sans.css diff --git a/2048/style/helpers.scss b/Games/2048/style/helpers.scss similarity index 100% rename from 2048/style/helpers.scss rename to Games/2048/style/helpers.scss diff --git a/2048/style/main.css b/Games/2048/style/main.css similarity index 100% rename from 2048/style/main.css rename to Games/2048/style/main.css diff --git a/2048/style/main.scss b/Games/2048/style/main.scss similarity index 100% rename from 2048/style/main.scss rename to Games/2048/style/main.scss