- Download https://github.com/Jiiks/BetterDiscordApp/releases/download/0.2.8/BD0.2.8Windows.zip
- Extract
- Run BetterDiscordWI.exe
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="http://xhr-progressive-timeouts.googlecode.com/hg/trunk/lib/xhr-pt.js"></script> | |
<style type="text/css"> | |
#debug .info { color: silver; } | |
#debug .ok { color: green; } | |
#debug .error { color: red; } | |
</style> | |
</head> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Module to access Camelot Unchained's REST API | |
// Originally written by Mehuge (https://www.github.com/Mehuge) | |
var Promise = require('./basic-promise.js'); | |
var util = require('util'); | |
var request = require('request'); | |
var servers = []; | |
function restAPI(name) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function doThings(todo, whenDone, thereWereErrors) { | |
var tasks = todo.length, errors = 0; | |
function finish() { | |
task --; | |
if (task === 0) { | |
// everything is done | |
if (errors) { | |
// but there were errors | |
thereWereErrors(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"imports": { | |
"resources": [ | |
/* all unitframe related resources from the cu-components module */ | |
{ resource: "cu-components/unitframe/images", dest: "images/unitframe" }, | |
{ resource: "cu-components/unitframe/styles", dest: "styles" }, | |
/* just the portrait resources required */ | |
{ resource: "cu-components/unitframe/portrait/images", dest: "images/unitframe/portrait" } | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var handleReceiveConfigVars; | |
cu.OnInitialized(function () { | |
cu.GetConfigVars(Options.activeConfigIndex); | |
cu.Listen('HandleReceiveConfigVars', function(configs) { | |
if (handleReceiveConfigVars) { | |
handleReceiveConfigVars(configs); | |
handleReceiveConfigVars = null; | |
} | |
}); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lib/cu-components/cu-components.bundle.js | |
lib/cu-components/cu-components.css | |
lib/cu-components/unitframe/unitframe.bundle.js | |
lib/cu-components/skillbar/skillbar.bundle.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Based on https://github.com/schchr/cordova-plugin-timers/ | |
private int timerCount = 0; | |
private Hashtable<Integer, PendingIntent> timerIntents; | |
AlarmManager alarmManager = null; | |
private PluginResult setTimeout(JSONArray args) throws JSONException { | |
final int timerId = ++timerCount; | |
int time = args.getInt(0); | |
BroadcastReceiver mReceiver = new BroadcastReceiver() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<meta name="apple-mobile-web-app-capable" content="yes"> | |
<input type="file"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# add the following above </Location> | |
RewriteEngine On | |
RedirectMatch "/trac/([A-Z]*)/changeset/([0-9]*)$" "/trac/changeset/$2/$1" |
OlderNewer