Skip to content

Commit

Permalink
Prep for 3.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bluecaret committed Oct 13, 2021
1 parent 8597914 commit 0d764c2
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 53 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "carettab",
"version": "3.5.0",
"version": "3.6.1",
"license": "MIT",
"scripts": {
"ng": "ng",
Expand Down
4 changes: 4 additions & 0 deletions src/app/options/dashboard/dashboard.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ <h2 class="mt15">
<svg *ngIf="status === 'updated' && shared.updateType !== 'hidden'" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24px" height="24px"><path d="M0 0h24v24H0V0z" fill="none"/><path d="M12 4c-4.41 0-8 3.59-8 8s3.59 8 8 8 8-3.59 8-8-3.59-8-8-8zm1 13h-2v-6h2v6zm0-8h-2V7h2v2z" fill="limegreen" /><path d="M11 7h2v2h-2zm0 4h2v6h-2zm1-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" fill="#000000"/></svg>
{{'options.dashboard.new' | translate}}
</h2>
<p>{{'options.dashboard.updated' | translate}} October 12, 2021</p>
<ul class="changelog">
<li>Fixed background color bug in Cent Browser.</li>
</ul>
<p>{{'options.dashboard.updated' | translate}} September 19, 2021</p>
<ul class="changelog">
<li>{{'splash.v360.m1' | translate}}</li>
Expand Down
29 changes: 12 additions & 17 deletions src/edgemanifest.json
Original file line number Diff line number Diff line change
@@ -1,38 +1,33 @@
{
"manifest_version": 2,

"name": "__MSG_appName__",
"short_name": "CaretTab",
"description": "__MSG_appDesc__",
"version": "3.6.0",
"version_name": "3.6.0",
"version": "3.6.1",
"version_name": "3.6.1",
"default_locale": "en",

"icons": { "16": "assets/img/icon16.png",
"48": "assets/img/icon48.png",
"128": "assets/img/icon128.png" },

"chrome_url_overrides" : {
"icons": {
"16": "assets/img/icon16.png",
"48": "assets/img/icon48.png",
"128": "assets/img/icon128.png"
},
"chrome_url_overrides": {
"newtab": "index.html"
},

"background": {
"scripts": ["js/update.js"],
"scripts": [
"js/update.js"
],
"persistent": false
},

"offline_enabled": true,

"permissions": [
"storage",
"chrome://favicon/"
],

"optional_permissions": [
"bookmarks",
"topSites"
],

"content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'"

}
}
30 changes: 12 additions & 18 deletions src/ffmanifest.json
Original file line number Diff line number Diff line change
@@ -1,45 +1,39 @@
{
"manifest_version": 2,

"name": "__MSG_appName__",
"short_name": "CaretTab",
"description": "__MSG_appDesc__",
"version": "3.6.0",
"version": "3.6.1",
"default_locale": "en",

"icons": { "16": "assets/img/icon16.png",
"48": "assets/img/icon48.png",
"128": "assets/img/icon128.png" },

"chrome_url_overrides" : {
"icons": {
"16": "assets/img/icon16.png",
"48": "assets/img/icon48.png",
"128": "assets/img/icon128.png"
},
"chrome_url_overrides": {
"newtab": "index.html"
},

"chrome_settings_overrides" : {
"chrome_settings_overrides": {
"homepage": "index.html"
},

"background": {
"scripts": ["js/update.js"]
"scripts": [
"js/update.js"
]
},

"permissions": [
"storage",
"chrome://favicon/"
],

"optional_permissions": [
"bookmarks",
"topSites"
],

"content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",

"applications": {
"gecko": {
"id": "{1ab49626-2e16-405b-ad65-dcaab8decd7b}",
"strict_min_version": "57.0"
}
}

}
}
29 changes: 12 additions & 17 deletions src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,38 +1,33 @@
{
"manifest_version": 2,

"name": "__MSG_appName__",
"short_name": "CaretTab",
"description": "__MSG_appDesc__",
"version": "3.6.0",
"version_name": "3.6.0",
"version": "3.6.1",
"version_name": "3.6.1",
"default_locale": "en",

"icons": { "16": "assets/img/icon16.png",
"48": "assets/img/icon48.png",
"128": "assets/img/icon128.png" },

"chrome_url_overrides" : {
"icons": {
"16": "assets/img/icon16.png",
"48": "assets/img/icon48.png",
"128": "assets/img/icon128.png"
},
"chrome_url_overrides": {
"newtab": "index.html"
},

"background": {
"scripts": ["js/update.js"],
"scripts": [
"js/update.js"
],
"persistent": false
},

"offline_enabled": true,

"permissions": [
"storage",
"chrome://favicon/"
],

"optional_permissions": [
"bookmarks",
"topSites"
],

"content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'"

}
}

0 comments on commit 0d764c2

Please sign in to comment.