From d3694efd82ed4229820f0b2c53427e7b9c7756ea Mon Sep 17 00:00:00 2001 From: unknown <aherold5@huskers.unl.edu> Date: Mon, 7 Sep 2020 04:02:25 -0500 Subject: [PATCH] Checkpoint 1 commit. themeing and version edits --- catch-rate-calc.code-workspace | 8 ++++++++ {minimal-app => catch-rate-calc}/.gitignore | 0 {minimal-app => catch-rate-calc}/package-lock.json | 0 {minimal-app => catch-rate-calc}/package.json | 4 ++-- {minimal-app => catch-rate-calc}/public/index.html | 6 +++--- {minimal-app => catch-rate-calc}/public/logo.svg | 0 {minimal-app => catch-rate-calc}/public/manifest.json | 6 +++--- .../src/__snapshots__/app.test.js.snap | 0 {minimal-app => catch-rate-calc}/src/app.js | 0 {minimal-app => catch-rate-calc}/src/app.test.js | 0 {minimal-app => catch-rate-calc}/src/app/store.js | 0 .../src/features/counter/counter.js | 0 .../src/features/counter/counter.module.css | 0 .../src/features/counter/counter.test.js | 0 .../src/features/counter/counterSlice.js | 0 .../src/features/counter/counterSlice.test.js | 0 {minimal-app => catch-rate-calc}/src/index.css | 0 {minimal-app => catch-rate-calc}/src/index.js | 0 {minimal-app => catch-rate-calc}/src/serviceWorker.js | 0 {minimal-app => catch-rate-calc}/src/setupTests.js | 0 {minimal-app => catch-rate-calc}/src/testing/mockRedux.js | 0 eslint-config | 2 +- 22 files changed, 17 insertions(+), 9 deletions(-) create mode 100644 catch-rate-calc.code-workspace rename {minimal-app => catch-rate-calc}/.gitignore (100%) rename {minimal-app => catch-rate-calc}/package-lock.json (100%) rename {minimal-app => catch-rate-calc}/package.json (90%) rename {minimal-app => catch-rate-calc}/public/index.html (71%) rename {minimal-app => catch-rate-calc}/public/logo.svg (100%) rename {minimal-app => catch-rate-calc}/public/manifest.json (63%) rename {minimal-app => catch-rate-calc}/src/__snapshots__/app.test.js.snap (100%) rename {minimal-app => catch-rate-calc}/src/app.js (100%) rename {minimal-app => catch-rate-calc}/src/app.test.js (100%) rename {minimal-app => catch-rate-calc}/src/app/store.js (100%) rename {minimal-app => catch-rate-calc}/src/features/counter/counter.js (100%) rename {minimal-app => catch-rate-calc}/src/features/counter/counter.module.css (100%) rename {minimal-app => catch-rate-calc}/src/features/counter/counter.test.js (100%) rename {minimal-app => catch-rate-calc}/src/features/counter/counterSlice.js (100%) rename {minimal-app => catch-rate-calc}/src/features/counter/counterSlice.test.js (100%) rename {minimal-app => catch-rate-calc}/src/index.css (100%) rename {minimal-app => catch-rate-calc}/src/index.js (100%) rename {minimal-app => catch-rate-calc}/src/serviceWorker.js (100%) rename {minimal-app => catch-rate-calc}/src/setupTests.js (100%) rename {minimal-app => catch-rate-calc}/src/testing/mockRedux.js (100%) diff --git a/catch-rate-calc.code-workspace b/catch-rate-calc.code-workspace new file mode 100644 index 0000000..876a149 --- /dev/null +++ b/catch-rate-calc.code-workspace @@ -0,0 +1,8 @@ +{ + "folders": [ + { + "path": "." + } + ], + "settings": {} +} \ No newline at end of file diff --git a/minimal-app/.gitignore b/catch-rate-calc/.gitignore similarity index 100% rename from minimal-app/.gitignore rename to catch-rate-calc/.gitignore diff --git a/minimal-app/package-lock.json b/catch-rate-calc/package-lock.json similarity index 100% rename from minimal-app/package-lock.json rename to catch-rate-calc/package-lock.json diff --git a/minimal-app/package.json b/catch-rate-calc/package.json similarity index 90% rename from minimal-app/package.json rename to catch-rate-calc/package.json index bfba2f6..39534a6 100644 --- a/minimal-app/package.json +++ b/catch-rate-calc/package.json @@ -1,7 +1,7 @@ { - "name": "@unlsoft/minimal", + "name": "gen6-catchrate", "version": "1.0.0", - "description": "A minimal app to be used as starter code for labs and homework.", + "description": "A catch rate calculator for the 6th generation of Pokemon games.", "private": true, "license": "UNLICENSED", "scripts": { diff --git a/minimal-app/public/index.html b/catch-rate-calc/public/index.html similarity index 71% rename from minimal-app/public/index.html rename to catch-rate-calc/public/index.html index cacd90b..33e41e2 100644 --- a/minimal-app/public/index.html +++ b/catch-rate-calc/public/index.html @@ -6,11 +6,11 @@ <link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> <meta name="description" - content="A minimal app to be used as starter code for labs and homework." + content="A catch rate calculator for the 6th generation of Pokemon games." /> - <meta name="theme-color" content="#d00000" /> + <meta name="theme-color" content="#1b79c6" /> <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo.svg" /> - <title>Minimal React Redux App</title> + <title>Gen6 Catch Rate Calculator</title> </head> <body> <noscript>You need to enable JavaScript to run this app.</noscript> diff --git a/minimal-app/public/logo.svg b/catch-rate-calc/public/logo.svg similarity index 100% rename from minimal-app/public/logo.svg rename to catch-rate-calc/public/logo.svg diff --git a/minimal-app/public/manifest.json b/catch-rate-calc/public/manifest.json similarity index 63% rename from minimal-app/public/manifest.json rename to catch-rate-calc/public/manifest.json index 7cef219..63c11b5 100644 --- a/minimal-app/public/manifest.json +++ b/catch-rate-calc/public/manifest.json @@ -1,7 +1,7 @@ { - "short_name": "Minimal App", - "name": "Minimal React Redux App", - "description": "A minimal app to be used as starter code for labs and homework.", + "short_name": "Gen6 Rate Calc", + "name": "Pokemon Gen 6 Catch Rate Calculator", + "description": "A catch rate calculator for the 6th generation of Pokemon games.", "icons": [ { "src": "logo.svg", diff --git a/minimal-app/src/__snapshots__/app.test.js.snap b/catch-rate-calc/src/__snapshots__/app.test.js.snap similarity index 100% rename from minimal-app/src/__snapshots__/app.test.js.snap rename to catch-rate-calc/src/__snapshots__/app.test.js.snap diff --git a/minimal-app/src/app.js b/catch-rate-calc/src/app.js similarity index 100% rename from minimal-app/src/app.js rename to catch-rate-calc/src/app.js diff --git a/minimal-app/src/app.test.js b/catch-rate-calc/src/app.test.js similarity index 100% rename from minimal-app/src/app.test.js rename to catch-rate-calc/src/app.test.js diff --git a/minimal-app/src/app/store.js b/catch-rate-calc/src/app/store.js similarity index 100% rename from minimal-app/src/app/store.js rename to catch-rate-calc/src/app/store.js diff --git a/minimal-app/src/features/counter/counter.js b/catch-rate-calc/src/features/counter/counter.js similarity index 100% rename from minimal-app/src/features/counter/counter.js rename to catch-rate-calc/src/features/counter/counter.js diff --git a/minimal-app/src/features/counter/counter.module.css b/catch-rate-calc/src/features/counter/counter.module.css similarity index 100% rename from minimal-app/src/features/counter/counter.module.css rename to catch-rate-calc/src/features/counter/counter.module.css diff --git a/minimal-app/src/features/counter/counter.test.js b/catch-rate-calc/src/features/counter/counter.test.js similarity index 100% rename from minimal-app/src/features/counter/counter.test.js rename to catch-rate-calc/src/features/counter/counter.test.js diff --git a/minimal-app/src/features/counter/counterSlice.js b/catch-rate-calc/src/features/counter/counterSlice.js similarity index 100% rename from minimal-app/src/features/counter/counterSlice.js rename to catch-rate-calc/src/features/counter/counterSlice.js diff --git a/minimal-app/src/features/counter/counterSlice.test.js b/catch-rate-calc/src/features/counter/counterSlice.test.js similarity index 100% rename from minimal-app/src/features/counter/counterSlice.test.js rename to catch-rate-calc/src/features/counter/counterSlice.test.js diff --git a/minimal-app/src/index.css b/catch-rate-calc/src/index.css similarity index 100% rename from minimal-app/src/index.css rename to catch-rate-calc/src/index.css diff --git a/minimal-app/src/index.js b/catch-rate-calc/src/index.js similarity index 100% rename from minimal-app/src/index.js rename to catch-rate-calc/src/index.js diff --git a/minimal-app/src/serviceWorker.js b/catch-rate-calc/src/serviceWorker.js similarity index 100% rename from minimal-app/src/serviceWorker.js rename to catch-rate-calc/src/serviceWorker.js diff --git a/minimal-app/src/setupTests.js b/catch-rate-calc/src/setupTests.js similarity index 100% rename from minimal-app/src/setupTests.js rename to catch-rate-calc/src/setupTests.js diff --git a/minimal-app/src/testing/mockRedux.js b/catch-rate-calc/src/testing/mockRedux.js similarity index 100% rename from minimal-app/src/testing/mockRedux.js rename to catch-rate-calc/src/testing/mockRedux.js diff --git a/eslint-config b/eslint-config index 1416987..ab3a34e 160000 --- a/eslint-config +++ b/eslint-config @@ -1 +1 @@ -Subproject commit 14169870041a6390249869092a3f319259784b4b +Subproject commit ab3a34e1479e5b61e0800c0a57110f397d0eea4c -- GitLab