From d11c42a7cf6b24b38f728e570512b9f8d40e0015 Mon Sep 17 00:00:00 2001 From: Adam Pritchard Date: Sat, 12 Oct 2024 17:11:24 -0400 Subject: [PATCH] update version number and changelog --- src/chrome/backgroundscript.js | 3 +++ src/common/CHANGES.md | 9 ++++++++- src/manifest.json | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/src/chrome/backgroundscript.js b/src/chrome/backgroundscript.js index b077cbcd..d6b680ab 100644 --- a/src/chrome/backgroundscript.js +++ b/src/chrome/backgroundscript.js @@ -63,6 +63,9 @@ chrome.runtime.onInstalled.addListener((details) => { }); function upgradeCheck() { + // DISABLED FOR THIS RELEASE + return; + OptionsStore.get(function(options) { var appManifest = chrome.runtime.getManifest(); diff --git a/src/common/CHANGES.md b/src/common/CHANGES.md index fd711f3d..4b6d680a 100644 --- a/src/common/CHANGES.md +++ b/src/common/CHANGES.md @@ -1,10 +1,17 @@ Change Log ========== +2024-10-03: v2.14.0 +------------------- + +* Fixed [bug #722](https://github.com/adam-p/markdown-here/issues/722): Added support for WebExtensions manifest V3. (If you've seen warnings about the extension lately, this was why.) + - Thanks to [Andrew M. MacFie](https://github.com/amacfie) and [Alexander Popov](https://github.com/AlexWayfer). +* Fixed [bug #865](https://github.com/adam-p/markdown-here/issues/865): Add Chrome Store privacy information. + 2018-09-30: v2.13.4 -------------------- -* Fixed [bug #524] and [bug #526]: Due to v2.13.3 fix, Markdown Here didn't work in Thunderbird with a non-English UI. +* Fixed [bug #524](https://github.com/adam-p/markdown-here/issues/524) and [bug #526](https://github.com/adam-p/markdown-here/issues/526): Due to v2.13.3 fix, Markdown Here didn't work in Thunderbird with a non-English UI. - Thanks to [KSR-Yasuda](https://github.com/KSR-Yasuda), [ensleep](https://github.com/ensleep), [Pedro Silva](https://github.com/pmanu93), [Christophe Meyer](https://github.com/stombi), [littdky](https://github.com/littdky), [Michael Lashkevich](https://github.com/lashkevi), [morsedl](https://github.com/morsedl). diff --git a/src/manifest.json b/src/manifest.json index 2116dbc8..8b44ff6e 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 3, "name": "__MSG_app_name__", - "version": "2.13.4", + "version": "2.14.0", "description": "__MSG_app_slogan__", "homepage_url": "https://markdown-here.com", "default_locale": "en",