Merge remote-tracking branch 'upstream/master'

Conflicts:
	memos.py
This commit is contained in:
Lexi 2011-07-13 07:25:26 +01:00
commit 3fe764268a
60 changed files with 310 additions and 491 deletions

View file

@ -56,6 +56,7 @@ CHANGELOG
* Remote quirk shutoff in memos - Kiooeht [evacipatedBox] * Remote quirk shutoff in memos - Kiooeht [evacipatedBox]
* Compress exit dumps into one line - Kiooeht [evacipatedBox] (Idea: Lexi [lexicalNuance]) * Compress exit dumps into one line - Kiooeht [evacipatedBox] (Idea: Lexi [lexicalNuance])
* Display channel mode change message - Kiooeht [evacipatedBox] * Display channel mode change message - Kiooeht [evacipatedBox]
* Disable quirks in +c memos - Lexi [lexicalNuance]
* Bug fixes * Bug fixes
* Logviewer updates - Kiooeht [evacipatedBox] * Logviewer updates - Kiooeht [evacipatedBox]
* Memo scrollbar thing - Kiooeht [evacipatedBox] * Memo scrollbar thing - Kiooeht [evacipatedBox]
@ -76,6 +77,9 @@ CHANGELOG
* Don't delete random chum when blocking someone not on chumroll - Kiooeht [evacipatedBox] * Don't delete random chum when blocking someone not on chumroll - Kiooeht [evacipatedBox]
* Openning global userlist doesn't reset OP status of memo users - Kiooeht [evacipatedBox] * Openning global userlist doesn't reset OP status of memo users - Kiooeht [evacipatedBox]
* Alt characters don't break on random replace - Kiooeht [evacipatedBox] * Alt characters don't break on random replace - Kiooeht [evacipatedBox]
* Trollian 2.5 tray icon is now Trollian icon - Kiooeht [evacipatedBox]
* Mac Bug fixes
* Create all datadir stuff - Lexi [lexicalNuance]
### 3.14.1 ### 3.14.1
* Pesterchum 3.14 - illuminatedwax [ghostDunk] * Pesterchum 3.14 - illuminatedwax [ghostDunk]

View file

@ -280,6 +280,10 @@ class PesterProfile(object):
else: modeon = "no longer" else: modeon = "no longer"
return "<c=%s>Memo is %s <c=black>%s</c> by <c=%s>%s</c></c>" % \ return "<c=%s>Memo is %s <c=black>%s</c> by <c=%s>%s</c></c>" % \
(syscolor.name(), modeon, modeverb, opchum.colorhtml(), opinit) (syscolor.name(), modeon, modeverb, opchum.colorhtml(), opinit)
def memoquirkkillmsg(self, opchum, opgrammar, syscolor):
opinit = opgrammar.pcf+opchum.initials()+opgrammar.number
return "<c=%s><c=%s>%s</c> turned off you quirk.</c>" % \
(syscolor.name(), opchum.colorhtml(), opinit)
@staticmethod @staticmethod
def checkLength(handle): def checkLength(handle):

2
irc.py
View file

@ -341,7 +341,7 @@ class PesterHandler(DefaultCommandHandler):
handle = nick[0:nick.find("!")] handle = nick[0:nick.find("!")]
logging.info("---> recv \"CTCP %s :%s\"" % (handle, msg[1:-1])) logging.info("---> recv \"CTCP %s :%s\"" % (handle, msg[1:-1]))
if msg[1:-1] == "VERSION": if msg[1:-1] == "VERSION":
helpers.ctcp_reply(self.parent.cli, handle, "VERSION", "Pesterchum %s\x01" % (_pcVersion)) helpers.ctcp_reply(self.parent.cli, handle, "VERSION", "Pesterchum %s" % (_pcVersion))
elif msg[1:-1].startswith("NOQUIRKS") and chan[0] == "#": elif msg[1:-1].startswith("NOQUIRKS") and chan[0] == "#":
op = nick[0:nick.find("!")] op = nick[0:nick.find("!")]
self.parent.quirkDisable.emit(chan, msg[10:-1], op) self.parent.quirkDisable.emit(chan, msg[10:-1], op)

View file

@ -374,7 +374,7 @@ class PesterMemo(PesterConvo):
self.voiceAction = QtGui.QAction(self.mainwindow.theme["main/menus/rclickchumlist/voiceuser"], self) self.voiceAction = QtGui.QAction(self.mainwindow.theme["main/menus/rclickchumlist/voiceuser"], self)
self.connect(self.voiceAction, QtCore.SIGNAL('triggered()'), self.connect(self.voiceAction, QtCore.SIGNAL('triggered()'),
self, QtCore.SLOT('voiceSelectedUser()')) self, QtCore.SLOT('voiceSelectedUser()'))
self.quirkDisableAction = QtGui.QAction("Kill Quirk", self) self.quirkDisableAction = QtGui.QAction(self.mainwindow.theme["main/menus/rclickchumlist/quirkkill"], self)
self.connect(self.quirkDisableAction, QtCore.SIGNAL('triggered()'), self.connect(self.quirkDisableAction, QtCore.SIGNAL('triggered()'),
self, QtCore.SLOT('killQuirkUser()')) self, QtCore.SLOT('killQuirkUser()'))
self.userlist.optionsMenu.addAction(self.addchumAction) self.userlist.optionsMenu.addAction(self.addchumAction)
@ -395,20 +395,29 @@ class PesterMemo(PesterConvo):
self.optionsMenu.addAction(self.logchum) self.optionsMenu.addAction(self.logchum)
self.optionsMenu.addAction(self.invitechum) self.optionsMenu.addAction(self.invitechum)
<<<<<<< HEAD
self.chanModeMenu = QtGui.QMenu("Memo Settings", self) self.chanModeMenu = QtGui.QMenu("Memo Settings", self)
self.chanNoquirks = QtGui.QAction("Disable Quirks", self) self.chanNoquirks = QtGui.QAction("Disable Quirks", self)
self.chanNoquirks.setCheckable(True) self.chanNoquirks.setCheckable(True)
self.connect(self.chanNoquirks, QtCore.SIGNAL('toggled(bool)'), self.connect(self.chanNoquirks, QtCore.SIGNAL('toggled(bool)'),
self, QtCore.SLOT('noquirksChan(bool)')) self, QtCore.SLOT('noquirksChan(bool)'))
self.chanHide = QtGui.QAction("Hidden", self) self.chanHide = QtGui.QAction("Hidden", self)
=======
self.chanModeMenu = QtGui.QMenu(self.mainwindow.theme["main/menus/rclickchumlist/memosetting"], self)
self.chanNoquirks = QtGui.QAction(self.mainwindow.theme["main/menus/rclickchumlist/memonoquirk"], self)
self.chanNoquirks.setCheckable(True)
self.connect(self.chanNoquirks, QtCore.SIGNAL('toggled(bool)'),
self, QtCore.SLOT('noquirksChan(bool)'))
self.chanHide = QtGui.QAction(self.mainwindow.theme["main/menus/rclickchumlist/memohidden"], self)
>>>>>>> upstream/master
self.chanHide.setCheckable(True) self.chanHide.setCheckable(True)
self.connect(self.chanHide, QtCore.SIGNAL('toggled(bool)'), self.connect(self.chanHide, QtCore.SIGNAL('toggled(bool)'),
self, QtCore.SLOT('hideChan(bool)')) self, QtCore.SLOT('hideChan(bool)'))
self.chanInvite = QtGui.QAction("Invite-Only", self) self.chanInvite = QtGui.QAction(self.mainwindow.theme["main/menus/rclickchumlist/memoinvite"], self)
self.chanInvite.setCheckable(True) self.chanInvite.setCheckable(True)
self.connect(self.chanInvite, QtCore.SIGNAL('toggled(bool)'), self.connect(self.chanInvite, QtCore.SIGNAL('toggled(bool)'),
self, QtCore.SLOT('inviteChan(bool)')) self, QtCore.SLOT('inviteChan(bool)'))
self.chanMod = QtGui.QAction("Mute", self) self.chanMod = QtGui.QAction(self.mainwindow.theme["main/menus/rclickchumlist/memomute"], self)
self.chanMod.setCheckable(True) self.chanMod.setCheckable(True)
self.connect(self.chanMod, QtCore.SIGNAL('toggled(bool)'), self.connect(self.chanMod, QtCore.SIGNAL('toggled(bool)'),
self, QtCore.SLOT('modChan(bool)')) self, QtCore.SLOT('modChan(bool)'))
@ -546,9 +555,15 @@ class PesterMemo(PesterConvo):
self.banuserAction.setText(theme["main/menus/rclickchumlist/banuser"]) self.banuserAction.setText(theme["main/menus/rclickchumlist/banuser"])
self.opAction.setText(theme["main/menus/rclickchumlist/opuser"]) self.opAction.setText(theme["main/menus/rclickchumlist/opuser"])
self.voiceAction.setText(theme["main/menus/rclickchumlist/voiceuser"]) self.voiceAction.setText(theme["main/menus/rclickchumlist/voiceuser"])
self.quirkDisableAction.setText("Kill Quirk") self.quirkDisableAction.setText(theme["main/menus/rclickchumlist/quirkkill"])
self.quirksOff.setText(theme["main/menus/rclickchumlist/quirksoff"]) self.quirksOff.setText(theme["main/menus/rclickchumlist/quirksoff"])
self.logchum.setText(theme["main/menus/rclickchumlist/viewlog"]) self.logchum.setText(theme["main/menus/rclickchumlist/viewlog"])
self.invitechum.setText(theme["main/menus/rclickchumlist/invitechum"])
self.chanModeMenu.setTitle(theme["main/menus/rclickchumlist/memosetting"])
self.chanNoquirks.setText(theme["main/menus/rclickchumlist/memonoquirk"])
self.chanHide.setText(theme["main/menus/rclickchumlist/memohidden"])
self.chanInvite.setText(theme["main/menus/rclickchumlist/memoinvite"])
self.chanMod.setText(theme["main/menus/rclickchumlist/memomute"])
self.timeinput.setFixedWidth(theme["memos/time/text/width"]) self.timeinput.setFixedWidth(theme["memos/time/text/width"])
self.timeinput.setStyleSheet(theme["memos/time/text/style"]) self.timeinput.setStyleSheet(theme["memos/time/text/style"])
@ -819,7 +834,22 @@ class PesterMemo(PesterConvo):
if msg == self.mainwindow.profile().handle: if msg == self.mainwindow.profile().handle:
self.quirksOff.setChecked(True) self.quirksOff.setChecked(True)
self.applyquirks = False self.applyquirks = False
<<<<<<< HEAD
# TODO: Politely notify the client # TODO: Politely notify the client
=======
systemColor = QtGui.QColor(self.mainwindow.theme["memos/systemMsgColor"])
chum = self.mainwindow.profile()
opchum = PesterProfile(op)
if self.times.has_key(op):
opgrammar = self.times[op].getGrammar()
elif op == self.mainwindow.profile().handle:
opgrammar = self.time.getGrammar()
else:
opgrammar = TimeGrammar("CURRENT", "C", "RIGHT NOW")
msg = chum.memoquirkkillmsg(opchum, opgrammar, systemColor)
self.textArea.append(convertTags(msg))
self.mainwindow.chatlog.log(self.channel, msg)
>>>>>>> upstream/master
@QtCore.pyqtSlot(QtCore.QString, QtCore.QString, QtCore.QString) @QtCore.pyqtSlot(QtCore.QString, QtCore.QString, QtCore.QString)
def userPresentChange(self, handle, channel, update): def userPresentChange(self, handle, channel, update):

View file

@ -1476,6 +1476,7 @@ class AboutPesterchum(QtGui.QDialog):
self.credits = QtGui.QLabel("Programming by:\n\ self.credits = QtGui.QLabel("Programming by:\n\
illuminatedwax (ghostDunk)\n\ illuminatedwax (ghostDunk)\n\
Kiooeht (evacipatedBox)\n\ Kiooeht (evacipatedBox)\n\
Lexi (lexicalNuance)\n\
alGore\n\ alGore\n\
\n\ \n\
Art by:\n\ Art by:\n\
@ -1485,7 +1486,6 @@ Art by:\n\
Special Thanks:\n\ Special Thanks:\n\
ABT\n\ ABT\n\
gamblingGenocider\n\ gamblingGenocider\n\
Lexi (lexicalNuance)\n\
Eco-Mono") Eco-Mono")
self.ok = QtGui.QPushButton("OK", self) self.ok = QtGui.QPushButton("OK", self)

View file

@ -491,7 +491,10 @@ def themeChecker(theme):
"main/chums/userlistcolor", "main/defaultwindow/style", \ "main/chums/userlistcolor", "main/defaultwindow/style", \
"main/chums/moods", "main/chums/moods/chummy/icon", "main/menus/help/help", \ "main/chums/moods", "main/chums/moods/chummy/icon", "main/menus/help/help", \
"main/menus/help/calsprite", "main/menus/help/nickserv", \ "main/menus/help/calsprite", "main/menus/help/nickserv", \
"main/menus/rclickchumlist/invitechum", "main/menus/client/randen"] "main/menus/rclickchumlist/invitechum", "main/menus/client/randen", \
"main/menus/rclickchumlist/memosetting", "main/menus/rclickchumlist/memonoquirk", \
"main/menus/rclickchumlist/memohidden", "main/menus/rclickchumlist/memoinvite", \
"main/menus/rclickchumlist/memomute"]
for n in needs: for n in needs:
try: try:

View file

@ -1713,7 +1713,7 @@ class PesterWindow(MovingWindow):
@QtCore.pyqtSlot() @QtCore.pyqtSlot()
def checkPing(self): def checkPing(self):
curtime = int(time()) curtime = int(time())
if curtime - self.lastping > 300: if curtime - self.lastping > 600:
self.pingServer.emit() self.pingServer.emit()
def profile(self): def profile(self):
@ -1972,6 +1972,9 @@ class PesterWindow(MovingWindow):
self.switch.setText(theme["main/menus/profile/switch"]) self.switch.setText(theme["main/menus/profile/switch"])
self.profilemenu.setTitle(theme["main/menus/profile/_name"]) self.profilemenu.setTitle(theme["main/menus/profile/_name"])
self.aboutAction.setText(self.theme["main/menus/help/about"]) self.aboutAction.setText(self.theme["main/menus/help/about"])
self.helpAction.setText(self.theme["main/menus/help/help"])
self.botAction.setText(self.theme["main/menus/help/calsprite"])
self.nickServAction.setText(self.theme["main/menus/help/nickserv"])
self.helpmenu.setTitle(self.theme["main/menus/help/_name"]) self.helpmenu.setTitle(self.theme["main/menus/help/_name"])
# moods # moods
@ -2200,7 +2203,14 @@ class PesterWindow(MovingWindow):
def deliverNotice(self, handle, msg): def deliverNotice(self, handle, msg):
h = unicode(handle) h = unicode(handle)
m = unicode(msg) m = unicode(msg)
if h == self.randhandler.randNick: if m.startswith("Your nickname is now being changed to"):
changedto = m[39:-1]
msgbox = QtGui.QMessageBox()
msgbox.setText("This chumhandle has been registered; you may not use it.")
msgbox.setInformativeText("Your handle is now being changed to %s." % (changedto))
msgbox.setStandardButtons(QtGui.QMessageBox.Ok | QtGui.QMessageBox.Cancel)
ret = msgbox.exec_()
elif h == self.randhandler.randNick:
self.randhandler.incoming(msg) self.randhandler.incoming(msg)
elif self.convos.has_key(h): elif self.convos.has_key(h):
self.newMessage(h, m) self.newMessage(h, m)

View file

@ -6,10 +6,10 @@
"newmsgicon": "$path/trayicon2.png", "newmsgicon": "$path/trayicon2.png",
"windowtitle": "FRESHjamz", "windowtitle": "FRESHjamz",
"close": { "image": "$path/x.png", "close": { "image": "$path/x.png",
"size": [13, 13], "size": [13, 13],
"loc": [101, 362]}, "loc": [101, 362]},
"minimize": { "image": "$path/m.png", "minimize": { "image": "$path/m.png",
"size": [13, 13], "size": [13, 13],
"loc": [116, 362]}, "loc": [116, 362]},
"menubar": { "style": "font-family: 'Arial'; font-size: 11px; font: bold; color: white;" }, "menubar": { "style": "font-family: 'Arial'; font-size: 11px; font: bold; color: white;" },
"menu" : { "style": "font-family: 'Arial'; font-size: 11px; font: bold; color: white; background-color: #393939; border:3px solid #797979;", "menu" : { "style": "font-family: 'Arial'; font-size: 11px; font: bold; color: white; background-color: #393939; border:3px solid #797979;",
@ -18,15 +18,17 @@
"loc": [198,141] "loc": [198,141]
}, },
"sounds": { "alertsound": "$path/alarm.wav", "sounds": { "alertsound": "$path/alarm.wav",
"ceasesound": "$path/ohgodwhat.wav" }, "ceasesound": "$path/ohgodwhat.wav" },
"menus": {"client": {"_name": "Album", "menus": {"client": {"_name": "Album",
"options": "Options", "options": "Options",
"memos": "Memos", "memos": "Memos",
"logviewer": "Pesterlogs", "logviewer": "Pesterlogs",
"randen": "Random Encounter",
"userlist": "Userlist", "userlist": "Userlist",
"addgroup": "Add Group",
"import": "Import", "import": "Import",
"reconnect": "Reconnect", "reconnect": "Reconnect",
"idle": "Idle", "idle": "Idle",
"exit": "Exit"}, "exit": "Exit"},
"profile": {"_name": "Track", "profile": {"_name": "Track",
"switch": "Switch", "switch": "Switch",
@ -36,76 +38,88 @@
"quirks": "Quirks" }, "quirks": "Quirks" },
"help": { "_name": "Info", "help": { "_name": "Info",
"help": "Info", "help": "Info",
"calsprite": "Calsprite", "calsprite": "Calsprite",
"nickserv": "NickServ",
"about": "About" }, "about": "About" },
"rclickchumlist": {"pester": "Pester", "rclickchumlist": {"pester": "Pester",
"removechum": "Remove Chum", "removechum": "Remove Chum",
"report": "Report",
"blockchum": "Block", "blockchum": "Block",
"report": "Report",
"addchum": "Add Chum", "addchum": "Add Chum",
"viewlog": "View Pesterlog", "viewlog": "View Pesterlog",
"unblockchum": "Unblock", "unblockchum": "Unblock",
"removegroup": "Remove Group",
"renamegroup": "Rename Group",
"movechum": "Move To",
"banuser": "Ban", "banuser": "Ban",
"opuser": "Make OP", "opuser": "Make OP",
"quirksoff": "Quirks Off" } "voiceuser": "Give Voice",
"quirkkill": "Kill Quirk",
"quirksoff": "Quirks Off",
"invitechum": "Invite Chump",
"memosetting": "Memo Settings",
"memonoquirk": "Disable Quirks",
"memohidden": "Hidden",
"memoinvite": "Invite-Only",
"memomute": "Mute" }
}, },
"chums": { "style": "font-size: 16px; background-image:url($path/chumbg.png); background-color: #414141; background-repeat: no-repeat; font-family: 'Arial'; border: 0px; selection-background-color: #222222; color: #ff168f;", "chums": { "style": "font-size: 16px; background-image:url($path/chumbg.png); background-color: #414141; background-repeat: no-repeat; font-family: 'Arial'; border: 0px; selection-background-color: #222222; color: #ff168f;",
"loc": [189, 162], "loc": [189, 162],
"size": [272, 170], "size": [272, 170],
"userlistcolor": "#ff168f", "userlistcolor": "#ff168f",
"moods": { "moods": {
"chummy": { "icon": "$path/chummy.png", "color": "white" }, "chummy": { "icon": "$path/chummy.png", "color": "white" },
"rancorous": { "icon": "$path/rancorous.png", "color": "#ff168f" }, "rancorous": { "icon": "$path/rancorous.png", "color": "#ff168f" },
"offline": { "icon": "$path/offline.png", "color": "grey"}, "offline": { "icon": "$path/offline.png", "color": "grey"},
"pleasant": { "icon": "$path/pleasant.png", "color": "white" }, "pleasant": { "icon": "$path/pleasant.png", "color": "white" },
"distraught": { "icon": "$path/distraught.png", "color": "white" }, "distraught": { "icon": "$path/distraught.png", "color": "white" },
"pranky": { "icon": "$path/pranky.png", "color": "white" }, "pranky": { "icon": "$path/pranky.png", "color": "white" },
"smooth": { "icon": "$path/smooth.png", "color": "white" }, "smooth": { "icon": "$path/smooth.png", "color": "white" },
"mystified": { "icon": "$path/mystified.png", "color": "white" }, "mystified": { "icon": "$path/mystified.png", "color": "white" },
"amazed": { "icon": "$path/amazed.png", "color": "white" }, "amazed": { "icon": "$path/amazed.png", "color": "white" },
"insolent": { "icon": "$path/insolent.png", "color": "white" }, "insolent": { "icon": "$path/insolent.png", "color": "white" },
"bemused": { "icon": "$path/bemused.png", "color": "white" }, "bemused": { "icon": "$path/bemused.png", "color": "white" },
"ecstatic": { "icon": "$path/ecstatic.png", "color": "#ff168f" }, "ecstatic": { "icon": "$path/ecstatic.png", "color": "#ff168f" },
"relaxed": { "icon": "$path/relaxed.png", "color": "#ff168f" }, "relaxed": { "icon": "$path/relaxed.png", "color": "#ff168f" },
"discontent": { "icon": "$path/discontent.png", "color": "#ff168f" }, "discontent": { "icon": "$path/discontent.png", "color": "#ff168f" },
"devious": { "icon": "$path/devious.png", "color": "#ff168f" }, "devious": { "icon": "$path/devious.png", "color": "#ff168f" },
"sleek": { "icon": "$path/sleek.png", "color": "#ff168f" }, "sleek": { "icon": "$path/sleek.png", "color": "#ff168f" },
"detestful": { "icon": "$path/detestful.png", "color": "#ff168f" }, "detestful": { "icon": "$path/detestful.png", "color": "#ff168f" },
"mirthful": { "icon": "$path/mirthful.png", "color": "#ff168f" }, "mirthful": { "icon": "$path/mirthful.png", "color": "#ff168f" },
"manipulative": { "icon": "$path/manipulative.png", "color": "#ff168f" }, "manipulative": { "icon": "$path/manipulative.png", "color": "#ff168f" },
"vigorous": { "icon": "$path/vigorous.png", "color": "#ff168f" }, "vigorous": { "icon": "$path/vigorous.png", "color": "#ff168f" },
"perky": { "icon": "$path/perky.png", "color": "#ff168f" }, "perky": { "icon": "$path/perky.png", "color": "#ff168f" },
"acceptant": { "icon": "$path/acceptant.png", "color": "#ff168f" }, "acceptant": { "icon": "$path/acceptant.png", "color": "#ff168f" },
"protective": { "icon": "$path/protective.png", "color": "lime" }, "protective": { "icon": "$path/protective.png", "color": "lime" },
"blocked": { "icon": "$path/blocked.png", "color": "#ff168f" } "blocked": { "icon": "$path/blocked.png", "color": "#ff168f" }
} }
}, },
"trollslum": { "trollslum": {
@ -128,16 +142,16 @@
}, },
"defaultwindow": { "style": "color: black; background: #797979; font-family: 'Arial'; font: bold; selection-background-color: rgb(100,100,100);" "defaultwindow": { "style": "color: black; background: #797979; font-family: 'Arial'; font: bold; selection-background-color: rgb(100,100,100);"
}, },
"addchum": "addchum":
{ "style": "background-image:url($path/pause1.png); border:0px;", { "style": "background-image:url($path/pause1.png); border:0px;",
"pressed": "background-image:url($path/pause2.png); border:0px;", "pressed": "background-image:url($path/pause2.png); border:0px;",
"loc": [239, 73], "loc": [239, 73],
"size": [55, 58], "size": [55, 58],
"text": "" "text": ""
}, },
"pester": "pester":
{ "style": "background-image:url($path/play1.png); border:0px;", { "style": "background-image:url($path/play1.png); border:0px;",
"pressed": "background-image:url($path/play2.png); border:0px;", "pressed": "background-image:url($path/play2.png); border:0px;",
"loc": [180, 73], "loc": [180, 73],
"size": [55, 58], "size": [55, 58],
"text": "" "text": ""
@ -153,14 +167,14 @@
"text": "" "text": ""
}, },
"moods": [ "moods": [
{ "style": "background-image:url($path/rewind1.png); border:0px;", { "style": "background-image:url($path/rewind1.png); border:0px;",
"selected": "background-image:url($path/rewind2.png); border:0px;", "selected": "background-image:url($path/rewind2.png); border:0px;",
"loc": [298, 73], "loc": [298, 73],
"size": [55, 58], "size": [55, 58],
"text": "", "text": "",
"icon": "", "icon": "",
"mood": 2 "mood": 2
}, },
{ "style": "background-image:url($path/fastforward1.png); border:0px;", { "style": "background-image:url($path/fastforward1.png); border:0px;",
"selected": "background-image:url($path/fastforward2.png); border:0px;", "selected": "background-image:url($path/fastforward2.png); border:0px;",
"loc": [357, 73], "loc": [357, 73],
@ -189,7 +203,7 @@
"style": "background: white;margin-top:5px; border:1px solid #c2c2c2; font-size: 12px;" "style": "background: white;margin-top:5px; border:1px solid #c2c2c2; font-size: 12px;"
}, },
"tabwindow" : { "tabwindow" : {
"style": "background: black; font-family: 'Arial'" "style": "background: black; font-family: 'Arial'"
}, },
"tabs": { "tabs": {
"style": "border: 2px solid white; background: black; color: white;", "style": "border: 2px solid white; background: black; color: white;",
@ -235,15 +249,15 @@
"userlist": { "width": 125, "userlist": { "width": 125,
"style": "font-size: 12px; background: white; margin-left: 5px; margin-bottom: 5px; border:2px solid #c2c2c2; padding: 5px; font-family: 'Arial';selection-background-color:rgb(200,200,200);" "style": "font-size: 12px; background: white; margin-left: 5px; margin-bottom: 5px; border:2px solid #c2c2c2; padding: 5px; font-family: 'Arial';selection-background-color:rgb(200,200,200);"
}, },
"time": { "text": { "width": 75, "time": { "text": { "width": 75,
"style": "color: black; font:bold; border:1px solid #c2c2c2; background: white; height: 19px;" "style": "color: black; font:bold; border:1px solid #c2c2c2; background: white; height: 19px;"
}, },
"slider": { "style": " border:1px solid #c2c2c2;", "slider": { "style": " border:1px solid #c2c2c2;",
"groove": "border-image:url($path/timeslider.png);", "groove": "border-image:url($path/timeslider.png);",
"handle": "image:url($path/timeicon.png);" "handle": "image:url($path/timeicon.png);"
}, },
"buttons": { "style": "border:1px solid #ff9dcf; height: 17px; width: 50px; color: white; font-family: 'Arial'; background: #ff168f; margin-left: 2px;" }, "buttons": { "style": "border:1px solid #ff9dcf; height: 17px; width: 50px; color: white; font-family: 'Arial'; background: #ff168f; margin-left: 2px;" },
"arrows": { "left": "$path/leftarrow.png", "arrows": { "left": "$path/leftarrow.png",
"right": "$path/rightarrow.png", "right": "$path/rightarrow.png",
"style": "width: 19px; height: 19px; border:0px; margin-left: 2px;" "style": "width: 19px; height: 19px; border:0px; margin-left: 2px;"
} }
@ -251,4 +265,4 @@
"systemMsgColor": "#646464", "systemMsgColor": "#646464",
"op": { "icon": "$path/smooth.png" } "op": { "icon": "$path/smooth.png" }
} }
} }

View file

@ -16,15 +16,17 @@
"loc": [175,53] "loc": [175,53]
}, },
"sounds": { "alertsound": "$path/scratch.wav", "sounds": { "alertsound": "$path/scratch.wav",
"ceasesound": "$path/scratch2.wav" }, "ceasesound": "$path/scratch2.wav" },
"menus": {"client": {"_name": "Album", "menus": {"client": {"_name": "Album",
"options": "Remix", "options": "Remix",
"memos": "Memos", "memos": "Memos",
"logviewer": "Pesterlogs", "logviewer": "Pesterlogs",
"randen": "Random Encounter",
"userlist": "Cronies", "userlist": "Cronies",
"addgroup": "New Crew",
"import": "Import", "import": "Import",
"reconnect": "Reconnect", "reconnect": "Reconnect",
"idle": "Idle", "idle": "Idle",
"exit": "Exit"}, "exit": "Exit"},
"profile": {"_name": "Track", "profile": {"_name": "Track",
"switch": "Rap Name", "switch": "Rap Name",
@ -34,77 +36,88 @@
"quirks": "Lingo" }, "quirks": "Lingo" },
"help": { "_name": "Info", "help": { "_name": "Info",
"help": "Info", "help": "Info",
"calsprite": "Calsprite", "calsprite": "Calsprite",
"nickserv": "NickServ",
"about": "The Deal" }, "about": "The Deal" },
"rclickchumlist": {"pester": "Patronize", "rclickchumlist": {"pester": "Patronize",
"removechum": "Forget", "removechum": "Forget",
"report": "Tell a Coppa", "report": "Tell a Coppa",
"blockchum": "Slam", "blockchum": "Slam",
"report": "Report",
"addchum": "Add to Crew", "addchum": "Add to Crew",
"viewlog": "View Pesterlog", "viewlog": "View Pesterlog",
"unblockchum": "Rectify", "unblockchum": "Rectify",
"removegroup": "Forget Crew",
"renamegroup": "Rename Crew",
"movechum": "Change Crew",
"banuser": "Banish", "banuser": "Banish",
"opuser": "Hype", "opuser": "Hype",
"quirksoff": "Lingo Off" } "voiceuser": "Let Rap",
"quirkkill": "Kill Quirk",
"quirksoff": "Lingo Off",
"invitechum": "Invite Crew",
"memosetting": "Memo Settings",
"memonoquirk": "Disable Quirks",
"memohidden": "Hidden",
"memoinvite": "Invite-Only",
"memomute": "Mute" }
}, },
"chums": { "style": "font-size: 16px; background: black; border: 3px solid white; font-family: 'Arial';selection-background-color:rgb(100,100,100); color: white;", "chums": { "style": "font-size: 16px; background: black; border: 3px solid white; font-family: 'Arial';selection-background-color:rgb(100,100,100); color: white;",
"loc": [175, 70], "loc": [175, 70],
"size": [302, 500], "size": [302, 500],
"userlistcolor": "white", "userlistcolor": "white",
"moods": { "moods": {
"chummy": { "icon": "$path/chummy.png", "color": "white" }, "chummy": { "icon": "$path/chummy.png", "color": "white" },
"rancorous": { "icon": "$path/rancorous.png", "color": "white" }, "rancorous": { "icon": "$path/rancorous.png", "color": "white" },
"offline": { "icon": "$path/offline.png", "color": "grey"}, "offline": { "icon": "$path/offline.png", "color": "grey"},
"pleasant": { "icon": "$path/pleasant.png", "color": "white" }, "pleasant": { "icon": "$path/pleasant.png", "color": "white" },
"distraught": { "icon": "$path/distraught.png", "color": "white" }, "distraught": { "icon": "$path/distraught.png", "color": "white" },
"pranky": { "icon": "$path/pranky.png", "color": "white" }, "pranky": { "icon": "$path/pranky.png", "color": "white" },
"smooth": { "icon": "$path/smooth.png", "color": "white" }, "smooth": { "icon": "$path/smooth.png", "color": "white" },
"mystified": { "icon": "$path/mystified.png", "color": "white" }, "mystified": { "icon": "$path/mystified.png", "color": "white" },
"amazed": { "icon": "$path/amazed.png", "color": "white" }, "amazed": { "icon": "$path/amazed.png", "color": "white" },
"insolent": { "icon": "$path/insolent.png", "color": "white" }, "insolent": { "icon": "$path/insolent.png", "color": "white" },
"bemused": { "icon": "$path/bemused.png", "color": "white" }, "bemused": { "icon": "$path/bemused.png", "color": "white" },
"ecstatic": { "icon": "$path/ecstatic.png", "color": "red" }, "ecstatic": { "icon": "$path/ecstatic.png", "color": "red" },
"relaxed": { "icon": "$path/relaxed.png", "color": "red" }, "relaxed": { "icon": "$path/relaxed.png", "color": "red" },
"discontent": { "icon": "$path/discontent.png", "color": "red" }, "discontent": { "icon": "$path/discontent.png", "color": "red" },
"devious": { "icon": "$path/devious.png", "color": "red" }, "devious": { "icon": "$path/devious.png", "color": "red" },
"sleek": { "icon": "$path/sleek.png", "color": "red" }, "sleek": { "icon": "$path/sleek.png", "color": "red" },
"detestful": { "icon": "$path/detestful.png", "color": "red" }, "detestful": { "icon": "$path/detestful.png", "color": "red" },
"mirthful": { "icon": "$path/mirthful.png", "color": "red" }, "mirthful": { "icon": "$path/mirthful.png", "color": "red" },
"manipulative": { "icon": "$path/manipulative.png", "color": "red" }, "manipulative": { "icon": "$path/manipulative.png", "color": "red" },
"vigorous": { "icon": "$path/vigorous.png", "color": "red" }, "vigorous": { "icon": "$path/vigorous.png", "color": "red" },
"perky": { "icon": "$path/perky.png", "color": "red" }, "perky": { "icon": "$path/perky.png", "color": "red" },
"acceptant": { "icon": "$path/acceptant.png", "color": "red" }, "acceptant": { "icon": "$path/acceptant.png", "color": "red" },
"protective": { "icon": "$path/protective.png", "color": "lime" }, "protective": { "icon": "$path/protective.png", "color": "lime" },
"blocked": { "icon": "$path/blocked.png", "color": "red" } "blocked": { "icon": "$path/blocked.png", "color": "red" }
} }
}, },
"trollslum": { "trollslum": {
@ -127,13 +140,13 @@
}, },
"defaultwindow": { "style": "color: black; background: rgb(210,0,0); font-family: 'Arial'; font: bold; selection-background-color: rgb(100,100,100);" "defaultwindow": { "style": "color: black; background: rgb(210,0,0); font-family: 'Arial'; font: bold; selection-background-color: rgb(100,100,100);"
}, },
"addchum": "addchum":
{ "style": "background-image:url($path/a.png); border:0px;", { "style": "background-image:url($path/a.png); border:0px;",
"loc": [434, 55], "loc": [434, 55],
"size": [8, 8], "size": [8, 8],
"text": "" "text": ""
}, },
"pester": "pester":
{ "style": "background: rgba(0,0,0,0); border:0px;", { "style": "background: rgba(0,0,0,0); border:0px;",
"loc": [0, 0], "loc": [0, 0],
"size": [0, 0], "size": [0, 0],
@ -150,14 +163,14 @@
"text": "" "text": ""
}, },
"moods": [ "moods": [
{ "style": "background-image:url($path/shades1.png); border:0px;", { "style": "background-image:url($path/shades1.png); border:0px;",
"selected": "background-image:url($path/shades2.png); border:0px;", "selected": "background-image:url($path/shades2.png); border:0px;",
"loc": [268, 580], "loc": [268, 580],
"size": [104, 37], "size": [104, 37],
"text": "", "text": "",
"icon": "", "icon": "",
"mood": 6 "mood": 6
}, },
{ "style": "background-image:url($path/offline1.png); border:0px;", { "style": "background-image:url($path/offline1.png); border:0px;",
"selected": "background-image:url($path/offline1.png); border:0px;", "selected": "background-image:url($path/offline1.png); border:0px;",
"loc": [382, 580], "loc": [382, 580],
@ -187,7 +200,7 @@
"style": "background: white;margin-top:5px; border:1px solid #c2c2c2; font-size: 12px;" "style": "background: white;margin-top:5px; border:1px solid #c2c2c2; font-size: 12px;"
}, },
"tabwindow" : { "tabwindow" : {
"style": "background: black; font-family: 'Arial'" "style": "background: black; font-family: 'Arial'"
}, },
"tabs": { "tabs": {
"style": "border: 2px solid white; background: black; color: white;", "style": "border: 2px solid white; background: black; color: white;",
@ -233,15 +246,15 @@
"userlist": { "width": 125, "userlist": { "width": 125,
"style": "font-size: 12px; background: white; margin-left: 5px; margin-bottom: 5px; border:2px solid #c2c2c2; padding: 5px; font-family: 'Arial';selection-background-color:rgb(200,200,200);" "style": "font-size: 12px; background: white; margin-left: 5px; margin-bottom: 5px; border:2px solid #c2c2c2; padding: 5px; font-family: 'Arial';selection-background-color:rgb(200,200,200);"
}, },
"time": { "text": { "width": 75, "time": { "text": { "width": 75,
"style": "color: black; font:bold; border:1px solid #c2c2c2; background: white; height: 19px;" "style": "color: black; font:bold; border:1px solid #c2c2c2; background: white; height: 19px;"
}, },
"slider": { "style": " border:1px solid #c2c2c2;", "slider": { "style": " border:1px solid #c2c2c2;",
"groove": "border-image:url($path/timeslider.png);", "groove": "border-image:url($path/timeslider.png);",
"handle": "image:url($path/timeicon.png);" "handle": "image:url($path/timeicon.png);"
}, },
"buttons": { "style": "border:1px solid rgb(166,166,166); height: 17px; width: 50px; color: white; font-family: 'Arial'; background: black; margin-left: 2px;" }, "buttons": { "style": "border:1px solid rgb(166,166,166); height: 17px; width: 50px; color: white; font-family: 'Arial'; background: black; margin-left: 2px;" },
"arrows": { "left": "$path/leftarrow.png", "arrows": { "left": "$path/leftarrow.png",
"right": "$path/rightarrow.png", "right": "$path/rightarrow.png",
"style": "width: 19px; height: 19px; border:0px; margin-left: 2px;" "style": "width: 19px; height: 19px; border:0px; margin-left: 2px;"
} }
@ -249,4 +262,4 @@
"systemMsgColor": "#646464", "systemMsgColor": "#646464",
"op": { "icon": "$path/smooth.png" } "op": { "icon": "$path/smooth.png" }
} }
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -1 +0,0 @@
["ectoBiologist", "tentacleTherapist", "turntechGodhead", "gardenGnostic", "carcinoGeneticist", "terminallyCapricious", "cuttlefishCuller", "apocalypseArisen", "arachnidsGrip", "gallowsCalibrator", "arsenicCatnip", "adiosToreador", "caligulasAquarium", "centaursTesticle", "grimAuxiliatrix", "twinArmageddons"]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 301 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

View file

@ -1,35 +0,0 @@
chummy jade 0
pleasant rose 3
pranky john 5
smooth dave 6
rancorous karkat 1
ecstatic feferi 7
relaxed kanaya 8
discontent tavros 9
devious terezi 10
sleek sollux 11
detestful eridan 12
mirthful gamzee 13
manipulative vriska 14
vigorous equius 15
perky nepeta 16
acceptant aradia 17
protective doc scratch 18
offline 2

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 342 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

View file

@ -1,4 +1,5 @@
{"main": {"inherits": "trollian",
"main":
{"style": "background-color:rgba(0,0,0,0); background-repeat: no-repeat;", {"style": "background-color:rgba(0,0,0,0); background-repeat: no-repeat;",
"background-image": "$path/tnbg2.png", "background-image": "$path/tnbg2.png",
"size": [650, 450], "size": [650, 450],
@ -6,244 +7,14 @@
"newmsgicon": "$path/trayicon2.png", "newmsgicon": "$path/trayicon2.png",
"windowtitle": "TROLLIAN", "windowtitle": "TROLLIAN",
"close": { "image": "$path/x.png", "close": { "image": "$path/x.png",
"loc": [635, 2]}, "loc": [639, 4]},
"minimize": { "image": "$path/m.png", "minimize": { "image": "$path/m.png",
"loc": [621, 8]}, "loc": [625, 10]},
"menubar": { "style": "font-family: 'Arial'; font-size: 11px; color: rgba(0,0,0,0);" }, "sounds": { "alertsound": "$path/alarm.wav",
"menu" : { "style": "font-family: 'Arial'; font-size: 11px; background-color: #c2c2c2; border:1px solid #545454;", "memosound": "$path/alarm2.wav"},
"selected": "background-color: #545454", "chums": { "scrollbar": { "handle": "background-color:#13cae0;height:20px;border:2px solid #12c4ff;" }
"menuitem": "margin-right:14px;",
"loc": [14,90]
}, },
"sounds": { "alertsound": "$path/alarm.wav" }, "defaultmood": 10
"menus": {"client": {"_name": "Trollian",
"options": "Options",
"memos": "Memos",
"userlist": "Fresh Targets",
"import": "import U2;",
"idle": "Idle",
"exit": "Abscond"},
"profile": {"_name": "View",
"switch": "Trolltag",
"theme": "Theme",
"color": "Hemospectrum",
"block": "Chumpdump",
"quirks": "Annoying" },
"help": { "_name": "Help",
"about": "About" },
"rclickchumlist": {"pester": "Troll",
"removechum": "Trash",
"blockchum": "Block",
"addchum": "Add Chump",
"unblockchum": "Mercy",
"banuser": "Ban",
"opuser": "Promote",
"quirksoff": "Quirks Off" }
},
"chums": { "style": "font-size: 12px; background: white; border:0px; font-family: 'Arial';selection-background-color:rgb(200,200,200); ",
"scrollbar": { "style" : "background-color:#c2c2c2;",
"handle": "background-color:#13cae0;height:20px;border:2px solid #12c4ff;",
"downarrow": "",
"darrowstyle": "",
"uparrow": "",
"uarrowstyle": ""
},
"loc": [477, 91],
"size": [171, 357],
"userlistcolor": "black",
"moods": {
"chummy": { "icon": "$path/chummy.png", "color": "#63ea00" },
"rancorous": { "icon": "$path/rancorous.png", "color": "#7f7f7f" },
"offline": { "icon": "$path/offline.png", "color": "black"},
"pleasant": { "icon": "$path/pleasant.png", "color": "#d69df8" },
"distraught": { "icon": "$path/distraught.png", "color": "#706eba" },
"pranky": { "icon": "$path/pranky.png", "color": "blue" },
"smooth": { "icon": "$path/smooth.png", "color": "red" },
"ecstatic": { "icon": "$path/ecstatic.png", "color": "#99004d" },
"relaxed": { "icon": "$path/relaxed.png", "color": "#078446" },
"discontent": { "icon": "$path/discontent.png", "color": "#a75403" },
"devious": { "icon": "$path/devious.png", "color": "#008282" },
"sleek": { "icon": "$path/sleek.png", "color": "#a1a100" },
"detestful": { "icon": "$path/detestful.png", "color": "#6a006a" },
"mirthful": { "icon": "$path/mirthful.png", "color": "#450077" },
"manipulative": { "icon": "$path/manipulative.png", "color": "#004182" },
"vigorous": { "icon": "$path/vigorous.png", "color": "#0021cb" },
"perky": { "icon": "$path/perky.png", "color": "#406600" },
"acceptant": { "icon": "$path/acceptant.png", "color": "#a10000" },
"protective": { "icon": "$path/protective.png", "color": "white" },
"blocked": { "icon": "$path/blocked.png", "color": "black" }
}
},
"trollslum": {
"style": "background: rgb(190, 19, 4); font-family: 'Arial'",
"size": [175, 461],
"label": { "text": "Chumpdump",
"style": "color: rgba(0, 0, 0, 100%) ;font:bold; font-family: 'Arial';border: 0px;" },
"chumroll": {"style": "border: 0px; background-color: white; padding: 5px; font-family: 'Arial';selection-background-color:rgb(200,200,200); " }
},
"mychumhandle": { "label": { "text": "",
"loc": [0,0],
"style": "color:rgba(0,0,0,0);" },
"handle": { "style": "background: rgba(0,0,0,0); color:rgba(0,0,0,0);",
"loc": [0,0],
"size": [0,0] },
"colorswatch": { "loc": [0,0],
"size": [0,0],
"text": "" }
},
"defaultwindow": { "style": "background: #c2c2c2; font-family:'Arial';font:bold;selection-background-color:#545454; "
},
"addchum": { "style": "background: rgba(0,0,0,0); border:0px; color: rgba(0,0,0,0);",
"loc": [475, 67],
"size": [175, 18],
"text": ""
},
"pester": { "style": "background: rgba(0,0,0,0); border:0px; color: rgba(0,0,0,0);",
"loc": [0,0],
"size": [0, 0],
"text": ""
},
"block": { "style": "background: rgba(0,0,0,0); border:0px; color: rgba(0,0,0,0);",
"loc": [1500,202],
"size": [71, 22],
"text": ""
},
"defaultmood": 10,
"moodlabel": { "style": "",
"loc": [0, 0],
"text": ""
},
"moods": [
{ "style": "border:0px;",
"selected": "background-image:url($path/moodcheck1.png); border:0px;",
"loc": [25, 141],
"size": [20, 270],
"text": "",
"icon": "",
"mood": 17
},
{ "style": "border:0px;",
"selected": "background-image:url($path/moodcheck2.png); border:0px;",
"loc": [60, 141],
"size": [20, 270],
"text": "",
"icon": "",
"mood": 9
},
{ "style": "border:0px;",
"selected": "background-image:url($path/moodcheck3.png); border:0px;",
"loc": [95, 141],
"size": [20, 270],
"text": "",
"icon": "",
"mood": 11
},
{ "style": "border:0px;",
"selected": "background-image:url($path/moodcheck4.png); border:0px;",
"loc": [130, 141],
"size": [20, 270],
"text": "",
"icon": "",
"mood": 1
},
{ "style": "border:0px;",
"selected": "background-image:url($path/moodcheck5.png); border:0px;",
"loc": [165, 141],
"size": [20, 270],
"text": "",
"icon": "",
"mood": 16
},
{ "style": "border:0px;",
"selected": "background-image:url($path/moodcheck6.png); border:0px;",
"loc": [200, 141],
"size": [20, 270],
"text": "",
"icon": "",
"mood": 8
},
{ "style": "border:0px;",
"selected": "background-image:url($path/moodcheck7.png); border:0px;",
"loc": [235, 141],
"size": [20, 270],
"text": "",
"icon": "",
"mood": 10
},
{ "style": "border:0px;",
"selected": "background-image:url($path/moodcheck8.png); border:0px;",
"loc": [270, 141],
"size": [20, 270],
"text": "",
"icon": "",
"mood": 14
},
{ "style": "border:0px;",
"selected": "background-image:url($path/moodcheck9.png); border:0px;",
"loc": [305, 141],
"size": [20, 270],
"text": "",
"icon": "",
"mood": 15
},
{ "style": "border:0px;",
"selected": "background-image:url($path/moodcheck10.png); border:0px;",
"loc": [340, 141],
"size": [20, 270],
"text": "",
"icon": "",
"mood": 13
},
{ "style": "border:0px;",
"selected": "background-image:url($path/moodcheck11.png); border:0px;",
"loc": [375, 141],
"size": [20, 270],
"text": "",
"icon": "",
"mood": 12
},
{ "style": "border:0px;",
"selected": "background-image:url($path/moodcheck12.png); border:0px;",
"loc": [410, 141],
"size": [20, 270],
"text": "",
"icon": "",
"mood": 7
},
{ "style": "border:0px;color: rgba(0, 0, 0, 0%);",
"selected": "border:0px; color: rgba(0, 0, 0, 0%);",
"loc": [12, 117],
"size": [435, 18],
"text": "",
"icon": "",
"mood": 2
}
]
}, },
"convo": "convo":
{"style": "background: #04a6be; font-family: 'Arial';", {"style": "background: #04a6be; font-family: 'Arial';",
@ -251,79 +22,42 @@
"margins": {"top": 22, "bottom": 9, "left": 10, "right": 4 }, "margins": {"top": 22, "bottom": 9, "left": 10, "right": 4 },
"size": [400, 250], "size": [400, 250],
"size": [400, 250], "size": [400, 250],
"chumlabel": { "style": "background-image:url($path/chumlabelbg.png);background-color:#12e6ff; background-repeat: no-repeat; color: white; padding: 2px; border:1px solid #c2c2c2; margin-bottom: 4px;", "chumlabel": { "style": "background-image:url($path/chumlabelbg.png);background-color:#12e6ff; background-repeat: no-repeat; color: white; padding: 2px; border:1px solid #c2c2c2; margin-bottom: 4px;"
"align": { "h": "left", "v": "center" },
"minheight": 22,
"maxheight": 36,
"text" : "trolling: $handle"
}, },
"textarea": {
"style": "background: white; border:2px solid #c2c2c2; font-size: 14px;"
},
"input": {
"style": "background: white;margin-top:5px; border:1px solid #c2c2c2; margin-right: 54px; font-size: 12px; height: 19px;"
},
"tabwindow" : { "tabwindow" : {
"style": "background: rgb(190, 19, 4); font-family: 'Arial'" "style": "background: #04a6be; font-family: 'Arial'"
}, },
"tabs": { "tabs": {
"style": "", "style": "",
"selectedstyle": "", "selectedstyle": "",
"newmsgcolor": "red", "newmsgcolor": "#04a6be",
"tabstyle": 0 "tabstyle": 0
}, }
"text": {
"beganpester": "began trolling",
"ceasepester": "gave up trolling",
"blocked": "blocked",
"unblocked": "mercifully forgave",
"openmemo": "opened memo on board",
"joinmemo": "responded to memo",
"closememo": "ceased responding to memo",
"kickedmemo": "You have been banned from this memo!"
},
"systemMsgColor": "#646464"
}, },
"memos": "memos":
{"memoicon": "$path/memo.png", {"style": "background-color: #04a6be; font-family: 'Arial';",
"style": "background-color: #04a6be; font-family: 'Arial';",
"size": [450,300], "size": [450,300],
"tabs": { "tabs": {
"style": "", "style": "",
"selectedstyle": "", "selectedstyle": "",
"newmsgcolor": "red", "newmsgcolor": "#04a6be",
"tabstyle": 0 "tabstyle": 0
}, },
"label": { "text": "Bulletin Board: $channel", "label": { "text": "Bulletin Board: $channel",
"style": "background-image:url($path/chumlabelbg.png);background-color:#12e6ff; background-repeat: no-repeat; color: white; padding: 2px; border:1px solid #c2c2c2; margin-bottom: 4px;", "style": "background-image:url($path/chumlabelbg.png);background-color:#12e6ff; background-repeat: no-repeat; color: white; padding: 2px; border:1px solid #c2c2c2; margin-bottom: 4px;"
"align": { "h": "left", "v": "center" },
"minheight": 18,
"maxheight": 36
}, },
"textarea": { "time": { "text": { "width": 75,
"style": "background: white; border:2px solid #c2c2c2; font-size: 12px;" "style": "color: black; font:bold; border:1px solid #c2c2c2; background: white; height: 19px;"
},
"input": {
"style": "background: white;margin-top:5px; border:1px solid #c2c2c2; font-size: 12px; height: 19px; margin-bottom: 5px; "
},
"margins": {"top": 22, "bottom": 10, "left": 9, "right": 4 },
"userlist": { "width": 125,
"style": "font-size: 12px; background: white; margin-left: 5px; margin-bottom: 5px; border:2px solid #c2c2c2; padding: 5px; font-family: 'Arial';selection-background-color:rgb(200,200,200);"
},
"time": { "text": { "width": 75,
"style": "color: black; font:bold; border:1px solid #c2c2c2; background: white; height: 19px;"
}, },
"slider": { "style": " border:1px solid #c2c2c2;", "slider": { "style": " border:1px solid #c2c2c2;",
"groove": "border-image:url($path/timeslider.png);", "groove": "border-image:url($path/timeslider.png);",
"handle": "image:url($path/aquaicon.png);" "handle": "image:url($path/aquaicon.png);"
}, },
"buttons": { "style": "border:1px solid #68a1a6; height: 17px; width: 50px; color: #8fc6cd; font-family: 'Arial'; background: #04a6be; margin-left: 2px;" }, "buttons": { "style": "border:1px solid #68a1a6; height: 17px; width: 50px; color: #8fc6cd; font-family: 'Arial'; background: #04a6be; margin-left: 2px;" },
"arrows": { "left": "$path/leftarrow.png", "arrows": { "left": "$path/leftarrow.png",
"right": "$path/rightarrow.png", "right": "$path/rightarrow.png",
"style": "width: 19px; height: 19px; border:0px; margin-left: 2px;" "style": "width: 19px; height: 19px; border:0px; margin-left: 2px;"
} }
}, }
"systemMsgColor": "#646464",
"op": { "icon": "$path/op.png" }
} }
} }

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -16,15 +16,17 @@
"loc": [225,133] "loc": [225,133]
}, },
"sounds": { "alertsound": "$path/alarm.wav", "sounds": { "alertsound": "$path/alarm.wav",
"ceasesound": "$path/cease.wav" }, "ceasesound": "$path/cease.wav" },
"menus": {"client": {"_name": "Client", "menus": {"client": {"_name": "Client",
"options": "Options", "options": "Options",
"memos": "Memos", "memos": "Memos",
"logviewer": "Pesterlogs", "logviewer": "Pesterlogs",
"randen": "Random Encounter",
"userlist": "Userlist", "userlist": "Userlist",
"addgroup": "Add Group",
"import": "Import", "import": "Import",
"reconnect": "Reconnect", "reconnect": "Reconnect",
"idle": "Idle", "idle": "Idle",
"exit": "Exit"}, "exit": "Exit"},
"profile": {"_name": "Profile", "profile": {"_name": "Profile",
"switch": "Chumhandle", "switch": "Chumhandle",
@ -34,77 +36,88 @@
"quirks": "Quirks" }, "quirks": "Quirks" },
"help": { "_name": "Help", "help": { "_name": "Help",
"help": "Help", "help": "Help",
"calsprite": "Calsprite", "calsprite": "Calsprite",
"nickserv": "NickServ",
"about": "About" }, "about": "About" },
"rclickchumlist": {"pester": "Pester", "rclickchumlist": {"pester": "Pester",
"removechum": "Remove", "removechum": "Remove",
"report": "Report", "report": "Report",
"blockchum": "Block", "blockchum": "Block",
"report": "Report",
"addchum": "Add Chum", "addchum": "Add Chum",
"viewlog": "View Pesterlog", "viewlog": "View Pesterlog",
"unblockchum": "Unblock", "unblockchum": "Unblock",
"removegroup": "Remove Group",
"renamegroup": "Rename Group",
"movechum": "Move To",
"banuser": "Ban", "banuser": "Ban",
"opuser": "Promote", "opuser": "Promote",
"quirksoff": "Quirks Off" } "voiceuser": "Give Voice",
"quirkkill": "Kill Quirk",
"quirksoff": "Quirks Off",
"invitechum": "Invite Chump",
"memosetting": "Memo Settings",
"memonoquirk": "Disable Quirks",
"memohidden": "Hidden",
"memoinvite": "Invite-Only",
"memomute": "Mute" }
}, },
"chums": { "style": "font-size: 12px; background: black; border: 3px solid white; font:bold; font-family: 'Arial';selection-background-color:rgb(100,100,100); color: white;", "chums": { "style": "font-size: 12px; background: black; border: 3px solid white; font:bold; font-family: 'Arial';selection-background-color:rgb(100,100,100); color: white;",
"loc": [225, 150], "loc": [225, 150],
"size": [202, 294], "size": [202, 294],
"userlistcolor": "white", "userlistcolor": "white",
"moods": { "moods": {
"chummy": { "icon": "$path/chummy.png", "color": "#63ea00" }, "chummy": { "icon": "$path/chummy.png", "color": "#63ea00" },
"rancorous": { "icon": "$path/rancorous.png", "color": "#7f7f7f" }, "rancorous": { "icon": "$path/rancorous.png", "color": "#7f7f7f" },
"offline": { "icon": "$path/offline.png", "color": "white"}, "offline": { "icon": "$path/offline.png", "color": "white"},
"pleasant": { "icon": "$path/pleasant.png", "color": "#d69df8" }, "pleasant": { "icon": "$path/pleasant.png", "color": "#d69df8" },
"distraught": { "icon": "$path/distraught.png", "color": "#706eba" }, "distraught": { "icon": "$path/distraught.png", "color": "#706eba" },
"pranky": { "icon": "$path/pranky.png", "color": "blue" }, "pranky": { "icon": "$path/pranky.png", "color": "blue" },
"smooth": { "icon": "$path/smooth.png", "color": "red" }, "smooth": { "icon": "$path/smooth.png", "color": "red" },
"mystified": { "icon": "$path/mystified.png", "color": "red" }, "mystified": { "icon": "$path/mystified.png", "color": "red" },
"amazed": { "icon": "$path/amazed.png", "color": "red" }, "amazed": { "icon": "$path/amazed.png", "color": "red" },
"insolent": { "icon": "$path/insolent.png", "color": "white" }, "insolent": { "icon": "$path/insolent.png", "color": "white" },
"bemused": { "icon": "$path/bemused.png", "color": "white" }, "bemused": { "icon": "$path/bemused.png", "color": "white" },
"ecstatic": { "icon": "$path/ecstatic.png", "color": "#99004d" }, "ecstatic": { "icon": "$path/ecstatic.png", "color": "#99004d" },
"relaxed": { "icon": "$path/relaxed.png", "color": "#078446" }, "relaxed": { "icon": "$path/relaxed.png", "color": "#078446" },
"discontent": { "icon": "$path/discontent.png", "color": "#a75403" }, "discontent": { "icon": "$path/discontent.png", "color": "#a75403" },
"devious": { "icon": "$path/devious.png", "color": "#008282" }, "devious": { "icon": "$path/devious.png", "color": "#008282" },
"sleek": { "icon": "$path/sleek.png", "color": "#a1a100" }, "sleek": { "icon": "$path/sleek.png", "color": "#a1a100" },
"detestful": { "icon": "$path/detestful.png", "color": "#6a006a" }, "detestful": { "icon": "$path/detestful.png", "color": "#6a006a" },
"mirthful": { "icon": "$path/mirthful.png", "color": "#450077" }, "mirthful": { "icon": "$path/mirthful.png", "color": "#450077" },
"manipulative": { "icon": "$path/manipulative.png", "color": "#004182" }, "manipulative": { "icon": "$path/manipulative.png", "color": "#004182" },
"vigorous": { "icon": "$path/vigorous.png", "color": "#0021cb" }, "vigorous": { "icon": "$path/vigorous.png", "color": "#0021cb" },
"perky": { "icon": "$path/perky.png", "color": "#406600" }, "perky": { "icon": "$path/perky.png", "color": "#406600" },
"acceptant": { "icon": "$path/acceptant.png", "color": "#a10000" }, "acceptant": { "icon": "$path/acceptant.png", "color": "#a10000" },
"protective": { "icon": "$path/protective.png", "color": "white" }, "protective": { "icon": "$path/protective.png", "color": "white" },
"blocked": { "icon": "$path/blocked.png", "color": "white" } "blocked": { "icon": "$path/blocked.png", "color": "white" }
} }
}, },
"trollslum": { "trollslum": {
@ -127,14 +140,14 @@
}, },
"defaultwindow": { "style": "color: black; background: rgb(210,0,0); font-family: 'Arial'; font: bold; selection-background-color: rgb(100,100,100);" "defaultwindow": { "style": "color: black; background: rgb(210,0,0); font-family: 'Arial'; font: bold; selection-background-color: rgb(100,100,100);"
}, },
"addchum": "addchum":
{ "style": "background-image:url($path/addchum1.png); border:0px;", { "style": "background-image:url($path/addchum1.png); border:0px;",
"pressed": "background-image:url($path/addchum2.png); border:0px;", "pressed": "background-image:url($path/addchum2.png); border:0px;",
"loc": [225, 564], "loc": [225, 564],
"size": [50, 50], "size": [50, 50],
"text": "" "text": ""
}, },
"pester": "pester":
{ "style": "background-image:url($path/pester1.png); border:0px;", { "style": "background-image:url($path/pester1.png); border:0px;",
"pressed": "background-image:url($path/pester2.png); border:0px;", "pressed": "background-image:url($path/pester2.png); border:0px;",
"loc": [367, 564], "loc": [367, 564],
@ -248,8 +261,8 @@
"icon": "", "icon": "",
"mood": 7 "mood": 7
}, },
{ "style": "background-image:url($path/john1.png); border:0px;", { "style": "background-image:url($path/john1.png); border:0px;",
"selected": "background-image:url($path/john2.png); border:0px;", "selected": "background-image:url($path/john2.png); border:0px;",
"loc": [367, 27], "loc": [367, 27],
"size": [50, 50], "size": [50, 50],
@ -257,7 +270,7 @@
"icon": "", "icon": "",
"mood": 5 "mood": 5
}, },
{ "style": "background-image:url($path/rose1.png); border:0px;", { "style": "background-image:url($path/rose1.png); border:0px;",
"selected": "background-image:url($path/rose2.png); border:0px;", "selected": "background-image:url($path/rose2.png); border:0px;",
"loc": [30, 369], "loc": [30, 369],
"size": [50, 50], "size": [50, 50],
@ -265,7 +278,7 @@
"icon": "", "icon": "",
"mood": 3 "mood": 3
}, },
{ "style": "background-image:url($path/dave1.png); border:0px;", { "style": "background-image:url($path/dave1.png); border:0px;",
"selected": "background-image:url($path/dave2.png); border:0px;", "selected": "background-image:url($path/dave2.png); border:0px;",
"loc": [99, 494], "loc": [99, 494],
"size": [50, 50], "size": [50, 50],
@ -273,7 +286,7 @@
"icon": "", "icon": "",
"mood": 6 "mood": 6
}, },
{ "style": "background-image:url($path/jade1.png); border:0px;", { "style": "background-image:url($path/jade1.png); border:0px;",
"selected": "background-image:url($path/jade2.png); border:0px;", "selected": "background-image:url($path/jade2.png); border:0px;",
"loc": [566, 369], "loc": [566, 369],
"size": [50, 50], "size": [50, 50],
@ -281,7 +294,7 @@
"icon": "", "icon": "",
"mood": 0 "mood": 0
}, },
{ "style": "background-image:url($path/bec1.png); border:0px;", { "style": "background-image:url($path/bec1.png); border:0px;",
"selected": "background-image:url($path/bec2.png); border:0px;", "selected": "background-image:url($path/bec2.png); border:0px;",
"loc": [492, 494], "loc": [492, 494],
"size": [50, 50], "size": [50, 50],
@ -289,8 +302,8 @@
"icon": "", "icon": "",
"mood": 18 "mood": 18
}, },
{ "style": "background-image:url($path/hearts1.png); border:0px;", { "style": "background-image:url($path/hearts1.png); border:0px;",
"selected": "background-image:url($path/hearts2.png); border:0px;", "selected": "background-image:url($path/hearts2.png); border:0px;",
"loc": [492, 101], "loc": [492, 101],
"size": [50, 50], "size": [50, 50],
@ -298,7 +311,7 @@
"icon": "", "icon": "",
"mood": 20 "mood": 20
}, },
{ "style": "background-image:url($path/spades1.png); border:0px;", { "style": "background-image:url($path/spades1.png); border:0px;",
"selected": "background-image:url($path/spades2.png); border:0px;", "selected": "background-image:url($path/spades2.png); border:0px;",
"loc": [99, 101], "loc": [99, 101],
"size": [50, 50], "size": [50, 50],
@ -306,7 +319,7 @@
"icon": "", "icon": "",
"mood": 21 "mood": 21
}, },
{ "style": "background-image:url($path/diamonds1.png); border:0px;", { "style": "background-image:url($path/diamonds1.png); border:0px;",
"selected": "background-image:url($path/diamonds2.png); border:0px;", "selected": "background-image:url($path/diamonds2.png); border:0px;",
"loc": [30, 225], "loc": [30, 225],
"size": [50, 50], "size": [50, 50],
@ -314,7 +327,7 @@
"icon": "", "icon": "",
"mood": 19 "mood": 19
}, },
{ "style": "background-image:url($path/clubs1.png); border:0px;", { "style": "background-image:url($path/clubs1.png); border:0px;",
"selected": "background-image:url($path/clubs2.png); border:0px;", "selected": "background-image:url($path/clubs2.png); border:0px;",
"loc": [566, 225], "loc": [566, 225],
"size": [50, 50], "size": [50, 50],
@ -322,7 +335,7 @@
"icon": "", "icon": "",
"mood": 22 "mood": 22
}, },
{ "style": "background-image:url($path/offline1.png); border:0px;", { "style": "background-image:url($path/offline1.png); border:0px;",
"selected": "background-image:url($path/offline2.png); border:0px;", "selected": "background-image:url($path/offline2.png); border:0px;",
"loc": [223, 27], "loc": [223, 27],
@ -352,7 +365,7 @@
"style": "background: white;margin-top:5px; border:1px solid #c2c2c2; font-size: 12px;" "style": "background: white;margin-top:5px; border:1px solid #c2c2c2; font-size: 12px;"
}, },
"tabwindow" : { "tabwindow" : {
"style": "background: black; font-family: 'Arial'" "style": "background: black; font-family: 'Arial'"
}, },
"tabs": { "tabs": {
"style": "border: 2px solid white; background: black; color: white;", "style": "border: 2px solid white; background: black; color: white;",
@ -398,15 +411,15 @@
"userlist": { "width": 125, "userlist": { "width": 125,
"style": "font-size: 12px; background: white; margin-left: 5px; margin-bottom: 5px; border:2px solid #c2c2c2; padding: 5px; font-family: 'Arial';selection-background-color:rgb(200,200,200);" "style": "font-size: 12px; background: white; margin-left: 5px; margin-bottom: 5px; border:2px solid #c2c2c2; padding: 5px; font-family: 'Arial';selection-background-color:rgb(200,200,200);"
}, },
"time": { "text": { "width": 75, "time": { "text": { "width": 75,
"style": "color: black; font:bold; border:1px solid #c2c2c2; background: white; height: 19px;" "style": "color: black; font:bold; border:1px solid #c2c2c2; background: white; height: 19px;"
}, },
"slider": { "style": " border:1px solid #c2c2c2;", "slider": { "style": " border:1px solid #c2c2c2;",
"groove": "border-image:url($path/timeslider.png);", "groove": "border-image:url($path/timeslider.png);",
"handle": "image:url($path/timeicon.png);" "handle": "image:url($path/timeicon.png);"
}, },
"buttons": { "style": "border:1px solid rgb(166,166,166); height: 17px; width: 50px; color: white; font-family: 'Arial'; background: black; margin-left: 2px;" }, "buttons": { "style": "border:1px solid rgb(166,166,166); height: 17px; width: 50px; color: white; font-family: 'Arial'; background: black; margin-left: 2px;" },
"arrows": { "left": "$path/leftarrow.png", "arrows": { "left": "$path/leftarrow.png",
"right": "$path/rightarrow.png", "right": "$path/rightarrow.png",
"style": "width: 19px; height: 19px; border:0px; margin-left: 2px;" "style": "width: 19px; height: 19px; border:0px; margin-left: 2px;"
} }
@ -414,4 +427,4 @@
"systemMsgColor": "#646464", "systemMsgColor": "#646464",
"op": { "icon": "$path/smooth.png" } "op": { "icon": "$path/smooth.png" }
} }
} }

View file

@ -24,7 +24,7 @@
"addgroup": "Add Group", "addgroup": "Add Group",
"import": "Import", "import": "Import",
"reconnect": "Reconnect", "reconnect": "Reconnect",
"idle": "Idle", "idle": "Idle",
"exit": "Exit"}, "exit": "Exit"},
"profile": {"_name": "Profile", "profile": {"_name": "Profile",
"switch": "Switch", "switch": "Switch",
@ -50,8 +50,14 @@
"banuser": "Ban User", "banuser": "Ban User",
"opuser": "Make OP", "opuser": "Make OP",
"voiceuser": "Give Voice", "voiceuser": "Give Voice",
"quirkkill": "Kill Quirk",
"quirksoff": "Quirks Off", "quirksoff": "Quirks Off",
"invitechum": "Invite Chum" "invitechum": "Invite Chum",
"memosetting": "Memo Settings",
"memonoquirk": "Disable Quirks",
"memohidden": "Hidden",
"memoinvite": "Invite-Only",
"memomute": "Mute"
} }
}, },
"chums": { "style": "text-align: center; border:0px; background-image:url($path/chumbg.png); background-color: #ffe400; background-repeat: no-repeat; color: white; font-family: 'Century Gothic';selection-background-color:#646464; font-size:18px; ", "chums": { "style": "text-align: center; border:0px; background-image:url($path/chumbg.png); background-color: #ffe400; background-repeat: no-repeat; color: white; font-family: 'Century Gothic';selection-background-color:#646464; font-size:18px; ",

View file

@ -26,8 +26,8 @@
"userlist": "Userlist", "userlist": "Userlist",
"addgroup": "Add Group", "addgroup": "Add Group",
"import": "Import", "import": "Import",
"reconnect": "Reconnect", "reconnect": "Reconnect",
"idle": "Idle", "idle": "Idle",
"exit": "Exit"}, "exit": "Exit"},
"profile": {"_name": "Profile", "profile": {"_name": "Profile",
"switch": "Switch", "switch": "Switch",
@ -53,8 +53,14 @@
"banuser": "Ban User", "banuser": "Ban User",
"opuser": "Make OP", "opuser": "Make OP",
"voiceuser": "Give Voice", "voiceuser": "Give Voice",
"quirkkill": "Kill Quirk",
"quirksoff": "Quirks Off", "quirksoff": "Quirks Off",
"invitechum": "Invite Chum" "invitechum": "Invite Chum",
"memosetting": "Memo Settings",
"memonoquirk": "Disable Quirks",
"memohidden": "Hidden",
"memoinvite": "Invite-Only",
"memomute": "Mute"
} }
}, },
"chums": { "style": "border:0px; background-image:url($path/chumbg.png); background-color: rgb(110,110,110); background-repeat: no-repeat; color: white; font-family: 'Arial';selection-background-color:#646464; font-size:14px; ", "chums": { "style": "border:0px; background-image:url($path/chumbg.png); background-color: rgb(110,110,110); background-repeat: no-repeat; color: white; font-family: 'Arial';selection-background-color:#646464; font-size:14px; ",

View file

@ -53,8 +53,14 @@
"banuser": "BAN USER", "banuser": "BAN USER",
"opuser": "MAKE OP", "opuser": "MAKE OP",
"voiceuser": "GIVE VOICE", "voiceuser": "GIVE VOICE",
"quirkkill": "KILL QUIRK",
"quirksoff": "QUIRKS OFF", "quirksoff": "QUIRKS OFF",
"invitechum": "INVITE CHUM" "invitechum": "INVITE CHUM",
"memosetting": "MEMO SETTINGS",
"memonoquirk": "DISABLE QUIRKS",
"memohidden": "HIDDEN",
"memoinvite": "INVITE-ONLY",
"memomute": "MUTE"
} }
}, },
"chums": { "style": "border:2px solid yellow; background-color: black;color: white;font: bold;font-family: 'Courier';selection-background-color:#646464; ", "chums": { "style": "border:2px solid yellow; background-color: black;color: white;font: bold;font-family: 'Courier';selection-background-color:#646464; ",

View file

@ -26,7 +26,7 @@
"addgroup": "Add Group", "addgroup": "Add Group",
"import": "import U2;", "import": "import U2;",
"reconnect": "Reconnect", "reconnect": "Reconnect",
"idle": "Idle", "idle": "Idle",
"exit": "Abscond"}, "exit": "Abscond"},
"profile": {"_name": "View", "profile": {"_name": "View",
"switch": "Trolltag", "switch": "Trolltag",
@ -52,8 +52,14 @@
"banuser": "Ban", "banuser": "Ban",
"opuser": "Promote", "opuser": "Promote",
"voiceuser": "Let Speak", "voiceuser": "Let Speak",
"quirkkill": "Kill Quirk",
"quirksoff": "Quirks Off", "quirksoff": "Quirks Off",
"invitechum": "Invite Chump" } "invitechum": "Invite Chump",
"memosetting": "Memo Settings",
"memonoquirk": "Disable Quirks",
"memohidden": "Hidden",
"memoinvite": "Invite-Only",
"memomute": "Mute" }
}, },
"chums": { "style": "font-size: 12px; background: white; border:0px; font-family: 'Arial';selection-background-color:rgb(200,200,200); ", "chums": { "style": "font-size: 12px; background: white; border:0px; font-family: 'Arial';selection-background-color:rgb(200,200,200); ",
"scrollbar": { "style" : "background-color:#c2c2c2;", "scrollbar": { "style" : "background-color:#c2c2c2;",

Binary file not shown.

Before

Width:  |  Height:  |  Size: 339 B

After

Width:  |  Height:  |  Size: 4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4 KiB

View file

@ -53,8 +53,14 @@
"banuser": "Expel User", "banuser": "Expel User",
"opuser": "Promote", "opuser": "Promote",
"voiceuser": "Let Speak", "voiceuser": "Let Speak",
"quirkkill": "Kill Quirk",
"quirksoff": "Quirks Off", "quirksoff": "Quirks Off",
"invitechum": "Invite User" "invitechum": "Invite User",
"memosetting": "Memo Settings",
"memonoquirk": "Disable Quirks",
"memohidden": "Hidden",
"memoinvite": "Invite-Only",
"memomute": "Mute"
} }
}, },
"chums": { "style": "border:0px; background-color: white; font: bold;font-family: 'Courier';selection-background-color: black; ", "chums": { "style": "border:0px; background-color: white; font: bold;font-family: 'Courier';selection-background-color: black; ",