mirror of
https://github.com/Lightcord/Lightcord.git
synced 2025-04-12 00:55:40 +02:00
Going to 0.0.307
This commit is contained in:
parent
d2a715cfd6
commit
ef8f005dfd
@ -1,5 +1,5 @@
|
||||
export const minimumDiscordVersion = "0.0.306";
|
||||
export const currentDiscordVersion = (window.DiscordNative && window.DiscordNative.remoteApp && window.DiscordNative.remoteApp.getVersion && window.DiscordNative.remoteApp.getVersion()) || "0.0.306";
|
||||
export const minimumDiscordVersion = "0.0.307";
|
||||
export const currentDiscordVersion = (window.DiscordNative && window.DiscordNative.remoteApp && window.DiscordNative.remoteApp.getVersion && window.DiscordNative.remoteApp.getVersion()) || "0.0.307";
|
||||
export const minSupportedVersion = "0.3.0";
|
||||
export const bbdVersion = "0.3.5";
|
||||
export const bbdChangelog = {
|
||||
|
@ -40,7 +40,7 @@ electron.ipcMain.on(APP_GET_RELEASE_CHANNEL_SYNC, event => {
|
||||
|
||||
electron.ipcMain.on(APP_GET_HOST_VERSION_SYNC, event => {
|
||||
// hardcode because Discord could identify Lightcord or could simply bug.
|
||||
event.returnValue = "0.0.306"//electron.app.getVersion();
|
||||
event.returnValue = "0.0.307"//electron.app.getVersion();
|
||||
});
|
||||
|
||||
electron.ipcMain.handle(APP_GET_MODULE_VERSIONS, (() => {
|
||||
|
@ -1,17 +1,17 @@
|
||||
import { getCommitID } from "./common/git"
|
||||
const pak = require("../package.json")
|
||||
|
||||
export const releaseChannel:"stable"|"canary"|"ptb"|"development" = "stable"
|
||||
export const version = "0.0.306"
|
||||
export const commit = getCommitID()
|
||||
export default {
|
||||
releaseChannel,
|
||||
version,
|
||||
commit
|
||||
}
|
||||
|
||||
global["BuildInfo"] = {
|
||||
releaseChannel,
|
||||
version: pak.version,
|
||||
commit
|
||||
import { getCommitID } from "./common/git"
|
||||
const pak = require("../package.json")
|
||||
|
||||
export const releaseChannel:"stable"|"canary"|"ptb"|"development" = "stable"
|
||||
export const version = "0.0.307"
|
||||
export const commit = getCommitID()
|
||||
export default {
|
||||
releaseChannel,
|
||||
version,
|
||||
commit
|
||||
}
|
||||
|
||||
global["BuildInfo"] = {
|
||||
releaseChannel,
|
||||
version: pak.version,
|
||||
commit
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user