Skip to content

Commit 68c6728

Browse files
committed
v.5.3.0
1 parent 4a49faa commit 68c6728

File tree

10 files changed

+19
-158
lines changed

10 files changed

+19
-158
lines changed

.DS_Store

-2 KB
Binary file not shown.

.vscode/settings.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
{
22
"compile-hero.disable-compile-files-on-did-save-code": false,
33
"python.pythonPath": "/usr/local/bin/python3",
4-
"apimatic.notifications.whenApiFileIsDetected.enabled": false
4+
"apimatic.notifications.whenApiFileIsDetected.enabled": false,
5+
"cSpell.words": [
6+
"webext"
7+
]
58
}

Makefile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ define BUILD_EXTENSION
66
@echo "---------------------------------------"
77
@cd ./angular && \
88
echo "Using manifest_$(1).json" && \
9-
cp ./src/manifest_$(1).json ./src/manifest.json && \
10-
npm run build:prod && \
11-
npx web-ext build -s ./dist -o && \
12-
VERSION=$$(jq -r '.version' ./src/manifest.json) && \
9+
cp ./src/manifest_$(1).json ./src/manifest.json && \ # Copy the appropriate manifest file
10+
npm run build:prod && \ # Build the Angular app in production mode
11+
npx web-ext build -s ./dist -o && \ # Build the web extension package
12+
VERSION=$$(jq -r '.version' ./src/manifest.json) && \ # Extract version from manifest
1313
cd ./web-ext-artifacts && \
14-
mv mist_extension-$$VERSION.zip mist_extension-$(1)-$$VERSION.zip && \
15-
rm -rf mist_extension-$(1) && \
16-
unzip -q mist_extension-$(1)-$$VERSION.zip -d mist_extension-$(1)
14+
mv mist_extension-$$VERSION.zip mist_extension-$(1)-$$VERSION.zip && \ # Rename the zip file based on browser type
15+
rm -rf mist_extension-$(1) && \ # Remove any existing directory
16+
unzip -q mist_extension-$(1)-$$VERSION.zip -d mist_extension-$(1) # Unzip the package into a directory
1717
endef
1818

1919
.PHONY: help init-openapi init-angular init update-openapi run build webext-ffx webext-chrome webext-all

angular/package-lock.json

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

angular/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mist-extension",
3-
"version": "5.2.1",
3+
"version": "5.3.0",
44
"description": "Generated with @larscom/ng-mist-extension",
55
"scripts": {
66
"start": "npm run watch",

angular/src/assets/api.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

angular/src/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 3,
33
"name": "Mist Extension",
44
"short_name": "mist-extension",
5-
"version": "5.2.1",
5+
"version": "5.3.0",
66
"description": "Web Browser Extension for Mist Developers to provide easier access to Mist APIs",
77
"icons": {
88
"16": "assets/favicon-16x16.png",

angular/src/manifest_chrome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 3,
33
"name": "Mist Extension",
44
"short_name": "mist-extension",
5-
"version": "5.2.1",
5+
"version": "5.3.0",
66
"description": "Web Browser Extension for Mist Developers to provide easier access to Mist APIs",
77
"icons": {
88
"16": "assets/favicon-16x16.png",

angular/src/manifest_ffx.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 3,
33
"name": "Mist Extension",
44
"short_name": "mist-extension",
5-
"version": "5.2.1",
5+
"version": "5.3.0",
66
"description": "Web Browser Extension for Mist Developers to provide easier access to Mist APIs",
77
"icons": {
88
"16": "assets/favicon-16x16.png",

api.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)