Fix all themes for newest version
This commit is contained in:
parent
18725f8518
commit
c2fa5491af
12 changed files with 249 additions and 167 deletions
2
irc.py
2
irc.py
|
@ -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)
|
||||||
|
|
20
memos.py
20
memos.py
|
@ -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,20 @@ class PesterMemo(PesterConvo):
|
||||||
self.optionsMenu.addAction(self.logchum)
|
self.optionsMenu.addAction(self.logchum)
|
||||||
self.optionsMenu.addAction(self.invitechum)
|
self.optionsMenu.addAction(self.invitechum)
|
||||||
|
|
||||||
self.chanModeMenu = QtGui.QMenu("Memo Settings", self)
|
self.chanModeMenu = QtGui.QMenu(self.mainwindow.theme["main/menus/rclickchumlist/memosetting"], self)
|
||||||
self.chanNoquirks = QtGui.QAction("Disable Quirks", self)
|
self.chanNoquirks = QtGui.QAction(self.mainwindow.theme["main/menus/rclickchumlist/memonoquirk"], 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(self.mainwindow.theme["main/menus/rclickchumlist/memohidden"], self)
|
||||||
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 +546,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"])
|
||||||
|
|
|
@ -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:
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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; ",
|
||||||
|
|
|
@ -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; ",
|
||||||
|
|
|
@ -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; ",
|
||||||
|
|
|
@ -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;",
|
||||||
|
|
|
@ -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; ",
|
||||||
|
|
Loading…
Reference in a new issue