From 5f879bceabdc8776959197f7b7890001f27ea71c Mon Sep 17 00:00:00 2001 From: Ajay Ramachandran Date: Tue, 10 Mar 2020 23:30:53 -0400 Subject: [PATCH 1/5] Fixed where repo-token was inputted in release workflow --- .github/workflows/release.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7765c18f..21a2fe2a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -67,12 +67,10 @@ jobs: uses: Shopify/upload-to-release@master with: args: builds/ChromeExtension.zip - env: repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Upload to release uses: Shopify/upload-to-release@master with: args: builds/FirefoxExtension.zip - env: repo-token: ${{ secrets.GITHUB_TOKEN }} From 0467dd5d2163df13eec0dd53da41af7b953f2511 Mon Sep 17 00:00:00 2001 From: Ajay Ramachandran Date: Wed, 11 Mar 2020 19:39:08 -0400 Subject: [PATCH 2/5] Made sure no skips are scheduled while paused --- src/content.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/content.ts b/src/content.ts index 218a5401..dd1e6e47 100644 --- a/src/content.ts +++ b/src/content.ts @@ -452,6 +452,7 @@ function cancelSponsorSchedule(): void { */ function startSponsorSchedule(currentTime?: number): void { cancelSponsorSchedule(); + if (video.paused) return; if (Config.config.disableSkipping || channelWhitelisted){ return; From e73d79071c15f1438680c54e3f9146e7cde3866d Mon Sep 17 00:00:00 2001 From: Joe Dowd Date: Wed, 18 Mar 2020 00:15:04 +0000 Subject: [PATCH 3/5] Added copy debug information to clipboard options element. --- public/_locales/en/messages.json | 12 ++++++++++ public/options/options.html | 14 +++++++++++ src/options.ts | 41 ++++++++++++++++++++++++++++++++ 3 files changed, 67 insertions(+) diff --git a/public/_locales/en/messages.json b/public/_locales/en/messages.json index 6dbec4bd..e26d1419 100644 --- a/public/_locales/en/messages.json +++ b/public/_locales/en/messages.json @@ -440,5 +440,17 @@ }, "incorrectlyFormattedOptions": { "message": "This JSON is not formatted correctly. Your options have not been changed." + }, + "copyDebugInformation": { + "message": "Copy Debug Information To Clipboard" + }, + "copyDebugInformationFailed": { + "message": "Failed to write to clipboard" + }, + "copyDebugInformationOptions": { + "message": "Copies information to the clipboard to be provided to a developer when raising a bug / when a developer requests it. Sensitive information such as your user ID, whitelisted channels, and custom server address have been removed. However it does contain information such as your useragent, browser, operating system, and extension version number. " + }, + "copyDebugInformationComplete": { + "message": "The debug information has been copied to the clip board. Feel free to remove any information you would rather not share. Save this in a text file or paste into the bug report." } } diff --git a/public/options/options.html b/public/options/options.html index 37139c31..0dc3e4d8 100644 --- a/public/options/options.html +++ b/public/options/options.html @@ -334,6 +334,20 @@

+
+
+ __MSG_copyDebugInformation__ +
+ +
+ +
__MSG_copyDebugInformationOptions__
+
+ +
+
+ +