Skip to content

Commit 05532fe

Browse files
author
Alfredo
committed
bump version
1 parent 5728016 commit 05532fe

File tree

2 files changed

+81
-76
lines changed

2 files changed

+81
-76
lines changed

docs/Release Notes/v1.4.8.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# [v1.4.8] Release Notes
2+
3+
This release re-adds the `lightning.force.com` pattern for Setup pages. This is needed due to production orgs not yet using the `my.salesforce-setup.com` pattern.
4+
5+
For this version, you may still import Tabs using `tabTitle` and `url` (and `org`); however, from version 1.5.0, you'll have to import Tabs using `label` and `url` (and `org`). All versions of the extension until verion 1.5.0 will automatically redownload the imported list of Tabs with `label` instead of `tabTitle`. We thank you for your understanding.

manifest/template-manifest.json

+76-76
Original file line numberDiff line numberDiff line change
@@ -1,77 +1,77 @@
11
{
2-
"manifest_version": 3,
3-
"name": "Again, Why Salesforce",
4-
"version": "1.4.7",
5-
"permissions": [
6-
"storage",
7-
"activeTab",
8-
"contextMenus",
9-
"downloads"
10-
],
11-
"description": "Create and manage custom tabs in the available space on Salesforce Lightning Setup page.",
12-
"homepage_url": "https://github.com/Astisme/again-why-salesforce",
13-
"content_scripts": [
14-
{
15-
"matches": [
16-
"https://*.my.salesforce-setup.com/lightning/setup/*",
17-
"https://*.lightning.force.com/lightning/setup/*"
18-
],
19-
"js": [
20-
"salesforce/bundledContent.js"
21-
],
22-
"run_at": "document_end"
23-
}
24-
],
25-
"web_accessible_resources": [
26-
{
27-
"resources": [
28-
"salesforce/lightning-navigation.js"
29-
],
30-
"matches": [
31-
"https://*.my.salesforce-setup.com/*",
32-
"https://*.lightning.force.com/*"
33-
]
34-
},
35-
{
36-
"resources": [
37-
"assets/svgs/*.svg",
38-
"assets/icons/*.png"
39-
],
40-
"matches": [
41-
"https://*.my.salesforce-setup.com/*",
42-
"https://*.lightning.force.com/*"
43-
]
44-
}
45-
],
46-
"icons": {
47-
"16": "assets/icons/awsf-16.png",
48-
"32": "assets/icons/awsf-32.png",
49-
"64": "assets/icons/awsf-64.png",
50-
"128": "assets/icons/awsf-128.png",
51-
"256": "assets/icons/awsf-256.png",
52-
"512": "assets/icons/awsf-512.png",
53-
"1024": "assets/icons/awsf-1024.png"
54-
},
55-
"action": {
56-
"default_title": "Again, Why Salesforce",
57-
"default_popup": "action/popup/popup.html"
58-
},
59-
"background": {
60-
"service_worker": "background/bundledBackground.js",
61-
"scripts": [
62-
"background/bundledBackground.js"
63-
],
64-
"type": "module"
65-
},
66-
"minimum_chrome_version": "120.0.0",
67-
"browser_specific_settings": {
68-
"gecko": {
69-
70-
"strict_min_version": "112.0"
71-
},
72-
"safari": {
73-
"strict_min_version": "14"
74-
}
75-
},
76-
"incognito": "spanning"
77-
}
2+
"manifest_version": 3,
3+
"name": "Again, Why Salesforce",
4+
"version": "1.4.8",
5+
"permissions": [
6+
"storage",
7+
"activeTab",
8+
"contextMenus",
9+
"downloads"
10+
],
11+
"description": "Create and manage custom tabs in the available space on Salesforce Lightning Setup page.",
12+
"homepage_url": "https://github.com/Astisme/again-why-salesforce",
13+
"content_scripts": [
14+
{
15+
"matches": [
16+
"https://*.my.salesforce-setup.com/lightning/setup/*",
17+
"https://*.lightning.force.com/lightning/setup/*"
18+
],
19+
"js": [
20+
"salesforce/bundledContent.js"
21+
],
22+
"run_at": "document_end"
23+
}
24+
],
25+
"web_accessible_resources": [
26+
{
27+
"resources": [
28+
"salesforce/lightning-navigation.js"
29+
],
30+
"matches": [
31+
"https://*.my.salesforce-setup.com/*",
32+
"https://*.lightning.force.com/*"
33+
]
34+
},
35+
{
36+
"resources": [
37+
"assets/svgs/*.svg",
38+
"assets/icons/*.png"
39+
],
40+
"matches": [
41+
"https://*.my.salesforce-setup.com/*",
42+
"https://*.lightning.force.com/*"
43+
]
44+
}
45+
],
46+
"icons": {
47+
"16": "assets/icons/awsf-16.png",
48+
"32": "assets/icons/awsf-32.png",
49+
"64": "assets/icons/awsf-64.png",
50+
"128": "assets/icons/awsf-128.png",
51+
"256": "assets/icons/awsf-256.png",
52+
"512": "assets/icons/awsf-512.png",
53+
"1024": "assets/icons/awsf-1024.png"
54+
},
55+
"action": {
56+
"default_title": "Again, Why Salesforce",
57+
"default_popup": "action/popup/popup.html"
58+
},
59+
"background": {
60+
"service_worker": "background/bundledBackground.js",
61+
"scripts": [
62+
"background/bundledBackground.js"
63+
],
64+
"type": "module"
65+
},
66+
"minimum_chrome_version": "120.0.0",
67+
"browser_specific_settings": {
68+
"gecko": {
69+
70+
"strict_min_version": "112.0"
71+
},
72+
"safari": {
73+
"strict_min_version": "14"
74+
}
75+
},
76+
"incognito": "spanning"
77+
}

0 commit comments

Comments
 (0)