Skip to content

Commit 15798b0

Browse files
authored
Merge pull request #170 from csfloat/feature/bump-v3.2
Bumps Version to v3.2.0
2 parents 9d7ede4 + df5cc41 commit 15798b0

File tree

5 files changed

+26
-6
lines changed

5 files changed

+26
-6
lines changed

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,26 @@ CSGOFloat has an extension for Firefox/Chrome that lets you fetch floats directl
3434

3535
Please see [`src/`](/src/README.md) for an overview of how the extension works and underlying tech. Contributions are welcome!
3636

37+
### How to Build (Release)
38+
39+
> `npm install`
40+
>
41+
> `npm run build`
42+
43+
The resultant build will be in the `dist/` directory.
44+
45+
Note: You can also use `npm run build_ff` for Firefox
46+
47+
### How to Build (Development)
48+
49+
> `npm install`
50+
>
51+
> `npm run start`
52+
53+
Load the `dist/` directory as a temporary extension in Chrome. Code changes will automatically trigger a re-build.
54+
55+
Note: You can also use `npm run start_ff` for Firefox
56+
3757
## Changelog
3858

3959
See [Releases](https://github.com/csfloat/extension/releases) for release notes.

manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"manifest_version": 3,
33
"name": "CSFloat Market Checker",
44
"short_name": "CSFloat",
5-
"version": "3.1.0",
6-
"description": "Dedicated API for fetching the float value, paint seed, and screenshots of CS:GO items on the Steam Market or Inventories",
5+
"version": "3.2.0",
6+
"description": "Shows the float value, paint seed, and screenshots of Counter-Strike (CS:GO & CS2) items on the Steam Market or Inventories",
77
"icons": {
88
"16": "icons/16.png",
99
"48": "icons/48.png",

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "csfloat-extension",
3-
"version": "3.1.0",
3+
"version": "3.2.0",
44
"description": "Dedicated API for fetching the float value, paint seed, and screenshots of CS:GO items on the Steam Market or Inventories",
55
"main": ".eslintrc",
66
"directories": {

webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function convertToFirefoxManifest(manifest) {
2525
};
2626
cp.browser_specific_settings = {
2727
gecko: {
28-
id: 'ff_extension@csfloat.com',
28+
id: '{194d0dc6-7ada-41c6-88b8-95d7636fe43c}',
2929
strict_min_version: '109.0',
3030
},
3131
};

0 commit comments

Comments
 (0)