From 16dc1ffa05c4f19668a5ffe49e3d1889ad7ebe24 Mon Sep 17 00:00:00 2001 From: Step7750 Date: Tue, 1 Aug 2023 22:01:53 -0600 Subject: [PATCH 1/4] Bumps Version to v3.2.0 --- manifest.json | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/manifest.json b/manifest.json index 1b3a4511..3b482b79 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 3, "name": "CSFloat Market Checker", "short_name": "CSFloat", - "version": "3.1.0", + "version": "3.2.0", "description": "Dedicated API for fetching the float value, paint seed, and screenshots of CS:GO items on the Steam Market or Inventories", "icons": { "16": "icons/16.png", diff --git a/package-lock.json b/package-lock.json index 5657ee0f..f8f8f8a8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "csfloat-extension", - "version": "3.1.0", + "version": "3.2.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "csfloat-extension", - "version": "3.1.0", + "version": "3.2.0", "license": "MIT", "devDependencies": { "@types/chrome": "^0.0.193", diff --git a/package.json b/package.json index 1a5e5e7f..d8ffc582 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "csfloat-extension", - "version": "3.1.0", + "version": "3.2.0", "description": "Dedicated API for fetching the float value, paint seed, and screenshots of CS:GO items on the Steam Market or Inventories", "main": ".eslintrc", "directories": { From 683be222d1aa4b27cfeaee96c52b490ff80ee26e Mon Sep 17 00:00:00 2001 From: Step7750 Date: Tue, 1 Aug 2023 22:06:25 -0600 Subject: [PATCH 2/4] Updates Description --- manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index 3b482b79..82501fc2 100644 --- a/manifest.json +++ b/manifest.json @@ -3,7 +3,7 @@ "name": "CSFloat Market Checker", "short_name": "CSFloat", "version": "3.2.0", - "description": "Dedicated API for fetching the float value, paint seed, and screenshots of CS:GO items on the Steam Market or Inventories", + "description": "Shows the float value, paint seed, and screenshots of Counter-Strike (CS:GO & CS2) items on the Steam Market or Inventories", "icons": { "16": "icons/16.png", "48": "icons/48.png", From 581871767828e7e2b2cc8a164048011a1d97a9e8 Mon Sep 17 00:00:00 2001 From: Step7750 Date: Tue, 1 Aug 2023 22:36:00 -0600 Subject: [PATCH 3/4] Fixes Firefox Addon ID --- webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index 4d026702..aea5bba3 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -25,7 +25,7 @@ function convertToFirefoxManifest(manifest) { }; cp.browser_specific_settings = { gecko: { - id: 'ff_extension@csfloat.com', + id: '{194d0dc6-7ada-41c6-88b8-95d7636fe43c}', strict_min_version: '109.0', }, }; From df5cc41aff0768a9dad2b80c3ea47050c7888857 Mon Sep 17 00:00:00 2001 From: Step7750 Date: Tue, 1 Aug 2023 22:36:08 -0600 Subject: [PATCH 4/4] Adds Build Instructions --- README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/README.md b/README.md index 2ee1eb45..402db240 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,26 @@ CSGOFloat has an extension for Firefox/Chrome that lets you fetch floats directl Please see [`src/`](/src/README.md) for an overview of how the extension works and underlying tech. Contributions are welcome! +### How to Build (Release) + +> `npm install` +> +> `npm run build` + +The resultant build will be in the `dist/` directory. + +Note: You can also use `npm run build_ff` for Firefox + +### How to Build (Development) + +> `npm install` +> +> `npm run start` + +Load the `dist/` directory as a temporary extension in Chrome. Code changes will automatically trigger a re-build. + +Note: You can also use `npm run start_ff` for Firefox + ## Changelog See [Releases](https://github.com/csfloat/extension/releases) for release notes.