Skip to content

Commit

Permalink
Bumped app.latestResourceCommitHash
Browse files Browse the repository at this point in the history
  • Loading branch information
adamlui committed Jan 19, 2025
1 parent 51844ec commit c74841c
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@
// @description:zu Ziba itshala lokucabanga okuzoshintshwa ngokuzenzakalelayo uma ukubuka chatgpt.com
// @author Adam Lui
// @namespace https://github.com/adamlui
// @version 2025.1.19
// @version 2025.1.19.1
// @license MIT
// @icon https://assets.autoclearchatgpt.com/images/icons/openai/black/icon48.png?v=f461c06
// @icon64 https://assets.autoclearchatgpt.com/images/icons/openai/black/icon64.png?v=f461c06
Expand Down Expand Up @@ -286,7 +286,7 @@
version: GM_info.script.version, configKeyPrefix: 'autoclearChatGPThistory',
chatgptJSver: /chatgpt\.js@([\d.]+)/.exec(GM_info.scriptMetaStr)[1],
urls: { update: 'https://gm.autoclearchatgpt.com' },
latestResourceCommitHash: '05a0d8c' // for cached app.json + messages.json + navicon in toggles.sidebar.insert()
latestResourceCommitHash: '8a92baa' // for cached app.json + messages.json + navicon in toggles.sidebar.insert()
}
app.urls.resourceHost = `https://cdn.jsdelivr.net/gh/adamlui/autoclear-chatgpt-history@${app.latestResourceCommitHash}`
const remoteAppData = await new Promise(resolve => xhr({
Expand Down
2 changes: 1 addition & 1 deletion chatgpt-auto-continue/chromium/extension/service-worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ chrome.runtime.onMessage.addListener(async req => {
(async () => {
const app = {
version: chrome.runtime.getManifest().version,
latestResourceCommitHash: 'b81310f', // for cached app.json + icons.questionMark.src
latestResourceCommitHash: '93749bb', // for cached app.json + icons.questionMark.src
urls: {},
chatgptJSver: /v(\d+\.\d+\.\d+)/.exec(await (await fetch(chrome.runtime.getURL('lib/chatgpt.js'))).text())[1]
}
Expand Down
2 changes: 1 addition & 1 deletion chatgpt-auto-continue/firefox/extension/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ chrome.runtime.onMessage.addListener(async req => {
(async () => {
const app = {
version: chrome.runtime.getManifest().version,
latestResourceCommitHash: 'b81310f', // for cached app.json + icons.questionMark.src
latestResourceCommitHash: '93749bb', // for cached app.json + icons.questionMark.src
urls: {},
chatgptJSver: /v(\d+\.\d+\.\d+)/.exec(await (await fetch(chrome.runtime.getURL('lib/chatgpt.js'))).text())[1]
}
Expand Down
2 changes: 1 addition & 1 deletion chatgpt-infinity/chrome/extension/service-worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ chrome.runtime.onMessage.addListener(async req => {
(async () => {
const app = {
version: chrome.runtime.getManifest().version,
latestResourceCommitHash: '64cabb3', // for cached app.json...
latestResourceCommitHash: '42e5099', // for cached app.json...
// ... + navicon in toggles.sidebar.insert() + icons.questionMark.src
urls: {},
chatgptJSver: /v(\d+\.\d+\.\d+)/.exec(await (await fetch(chrome.runtime.getURL('lib/chatgpt.js'))).text())[1]
Expand Down
2 changes: 1 addition & 1 deletion chatgpt-infinity/firefox/extension/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ chrome.runtime.onMessage.addListener(async req => {
(async () => {
const app = {
version: chrome.runtime.getManifest().version,
latestResourceCommitHash: '64cabb3', // for cached app.json...
latestResourceCommitHash: '42e5099', // for cached app.json...
// ... + navicon in toggles.sidebar.insert() + icons.questionMark.src
urls: {},
chatgptJSver: /v(\d+\.\d+\.\d+)/.exec(await (await fetch(chrome.runtime.getURL('lib/chatgpt.js'))).text())[1]
Expand Down
2 changes: 1 addition & 1 deletion chatgpt-widescreen/chrome/extension/service-worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ chrome.runtime.onMessage.addListener(async req => {
// Init APP data
const app = {
version: chrome.runtime.getManifest().version,
latestResourceCommitHash: '7a20e13', // for cached app.json + sites.json + icons.questionMark.src
latestResourceCommitHash: 'f0e18e2', // for cached app.json + sites.json + icons.questionMark.src
urls: {},
chatgptJSver: /v(\d+\.\d+\.\d+)/.exec(await (await fetch(chrome.runtime.getURL('lib/chatgpt.js'))).text())[1]
}
Expand Down
2 changes: 1 addition & 1 deletion chatgpt-widescreen/firefox/extension/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ chrome.runtime.onMessage.addListener(async req => {
// Init APP data
const app = {
version: chrome.runtime.getManifest().version,
latestResourceCommitHash: '7a20e13', // for cached app.json + sites.json + icons.questionMark.src
latestResourceCommitHash: 'f0e18e2', // for cached app.json + sites.json + icons.questionMark.src
urls: {},
chatgptJSver: /v(\d+\.\d+\.\d+)/.exec(await (await fetch(chrome.runtime.getURL('lib/chatgpt.js'))).text())[1]
}
Expand Down

0 comments on commit c74841c

Please sign in to comment.