diff --git a/catch-rate-calc.code-workspace b/catch-rate-calc.code-workspace new file mode 100644 index 0000000000000000000000000000000000000000..876a1499c09dc083612f43c53c0ae71b9c30c5b1 --- /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 bfba2f61864fad953869eedffe3451c4dfbdc9cf..39534a61649d93c3a990bf22eb05fcf1918d504a 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 cacd90bba5b8c6a46ce40d576f8e34aa95e5f8fb..33e41e2976e01ff7313747c4ccc3fed24fed83f3 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 7cef2195cedb5ea82e56edb5dfb2c8b74fbed9d8..63c11b55747cc3c524bef9236f836abba054568c 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 14169870041a6390249869092a3f319259784b4b..ab3a34e1479e5b61e0800c0a57110f397d0eea4c 160000 --- a/eslint-config +++ b/eslint-config @@ -1 +1 @@ -Subproject commit 14169870041a6390249869092a3f319259784b4b +Subproject commit ab3a34e1479e5b61e0800c0a57110f397d0eea4c