0.0.7
5
TODO
|
@ -1,14 +1,13 @@
|
||||||
Features:
|
Features:
|
||||||
* Turn quirks off
|
|
||||||
* User commands/stop user from sending commands accidentally
|
|
||||||
* Hyperlinks
|
* Hyperlinks
|
||||||
* /me ghostDunk's [GD'S]
|
* /me ghostDunk's [GD'S]
|
||||||
* Transparent background
|
* Transparent background
|
||||||
* tab recombining gives wrong window icon
|
* tab recombining gives wrong window icon
|
||||||
* help menu -- about and forum
|
* help menu -- about and forum
|
||||||
* new sound on CEASE and BEGIN?
|
* new sound on CEASE and BEGIN?
|
||||||
-- release alpha
|
|
||||||
* Chat rooms/browser
|
* Chat rooms/browser
|
||||||
|
-- release alpha
|
||||||
|
* User commands/stop user from sending commands accidentally
|
||||||
* shared buddy lists - changes to the buddy list should refresh it?
|
* shared buddy lists - changes to the buddy list should refresh it?
|
||||||
multiple clients share buddy list???
|
multiple clients share buddy list???
|
||||||
* System tray menu
|
* System tray menu
|
||||||
|
|
|
@ -97,7 +97,10 @@ def escapeBrackets(string):
|
||||||
for i in range(0, btlen-etlen):
|
for i in range(0, btlen-etlen):
|
||||||
retval += "</c>"
|
retval += "</c>"
|
||||||
return retval
|
return retval
|
||||||
|
|
||||||
|
#_urlre = re.compile()
|
||||||
|
#def findURLs(string):
|
||||||
|
|
||||||
|
|
||||||
class waitingMessageHolder(object):
|
class waitingMessageHolder(object):
|
||||||
def __init__(self, mainwindow, **msgfuncs):
|
def __init__(self, mainwindow, **msgfuncs):
|
||||||
|
@ -320,7 +323,7 @@ class userProfile(object):
|
||||||
def save(self):
|
def save(self):
|
||||||
handle = self.chat.handle
|
handle = self.chat.handle
|
||||||
try:
|
try:
|
||||||
jsonoutput = json.dumps(self.userprofile, fp)
|
jsonoutput = json.dumps(self.userprofile)
|
||||||
except ValueError, e:
|
except ValueError, e:
|
||||||
raise e
|
raise e
|
||||||
fp = open("profiles/%s.js" % (handle), 'w')
|
fp = open("profiles/%s.js" % (handle), 'w')
|
||||||
|
@ -862,6 +865,7 @@ class PesterText(QtGui.QTextEdit):
|
||||||
|
|
||||||
msg = "<c=%s>%s: %s</c>" % (color, initials, msg)
|
msg = "<c=%s>%s: %s</c>" % (color, initials, msg)
|
||||||
msg = escapeBrackets(msg)
|
msg = escapeBrackets(msg)
|
||||||
|
#msg = findURLs(msg)
|
||||||
self.append(convertColorTags(msg))
|
self.append(convertColorTags(msg))
|
||||||
if chum is me:
|
if chum is me:
|
||||||
window.chatlog.log(parent.chum.handle, convertColorTags(msg, "bbcode"))
|
window.chatlog.log(parent.chum.handle, convertColorTags(msg, "bbcode"))
|
||||||
|
|
|
@ -371,11 +371,13 @@ class PesterUserlist(QtGui.QDialog):
|
||||||
self.userarea.takeItem(self.userarea.row(m))
|
self.userarea.takeItem(self.userarea.row(m))
|
||||||
|
|
||||||
def changeTheme(self, theme):
|
def changeTheme(self, theme):
|
||||||
|
self.theme = theme
|
||||||
self.setStyleSheet(theme["main/defaultwindow/style"])
|
self.setStyleSheet(theme["main/defaultwindow/style"])
|
||||||
self.userarea.setStyleSheet(theme["main/chums/style"])
|
self.userarea.setStyleSheet(theme["main/chums/style"])
|
||||||
self.addChumAction.setText(theme["main/menus/rclickchumlist/addchum"])
|
self.addChumAction.setText(theme["main/menus/rclickchumlist/addchum"])
|
||||||
for item in [self.userarea.row(i) for i in range(0, self.userarea.count())]:
|
for item in [self.userarea.item(i) for i in range(0, self.userarea.count())]:
|
||||||
item.setTextColor(QtGui.QColor(self.theme["main/chums/moods/chummy/color"]))
|
print item.text()
|
||||||
|
item.setTextColor(QtGui.QColor(theme["main/chums/moods/chummy/color"]))
|
||||||
|
|
||||||
@QtCore.pyqtSlot()
|
@QtCore.pyqtSlot()
|
||||||
def addChumSlot(self):
|
def addChumSlot(self):
|
||||||
|
|
BIN
pestermenus.pyc
|
@ -1 +1 @@
|
||||||
{"color": "#ff00ff", "theme": "trollian", "quirks": [], "handle": "ghostDunk"}
|
{"color": "#ff00ff", "theme": "pesterchum", "quirks": [], "handle": "ghostDunk"}
|
Before ![]() (image error) Size: 3.7 KiB |
Before ![]() (image error) Size: 106 B |
Before ![]() (image error) Size: 164 B |
Before ![]() (image error) Size: 127 B |
Before ![]() (image error) Size: 93 B |
Before ![]() (image error) Size: 101 B |
Before ![]() (image error) Size: 50 B |
Before ![]() (image error) Size: 71 B |
Before ![]() (image error) Size: 4.5 KiB |
Before ![]() (image error) Size: 94 B |
Before ![]() (image error) Size: 138 B |
Before ![]() (image error) Size: 134 B |
Before ![]() (image error) Size: 86 B |
|
@ -1,172 +0,0 @@
|
||||||
{"main":
|
|
||||||
{"style": "background-image:url($path/pcbg.png);",
|
|
||||||
"size": [300, 620],
|
|
||||||
"icon": "$path/trayicon.gif",
|
|
||||||
"newmsgicon": "$path/trayicon2.png",
|
|
||||||
"windowtitle": "P3ST3RCHUM",
|
|
||||||
"close": { "image": "$path/x.gif",
|
|
||||||
"loc": [275, 0]},
|
|
||||||
"minimize": { "image": "$path/m.gif",
|
|
||||||
"loc": [255, 0]},
|
|
||||||
"menubar": { "style": "font-family: 'Courier New'; font-weight: bold; font-size: 12px;" },
|
|
||||||
"menu" : { "style": "font-family: 'Courier New'; font-weight: bold; font-size: 12px; background-color: #fdb302;border:2px solid #ffff00",
|
|
||||||
"selected": "background-color: #ffff00",
|
|
||||||
"menuitem": "margin-right:10px;",
|
|
||||||
"loc": [7,3]
|
|
||||||
},
|
|
||||||
"sounds": { "alertsound": "$path/alarm.wav" },
|
|
||||||
"menus": {"client": {"_name": "CLIENT",
|
|
||||||
"options": "OPTIONS",
|
|
||||||
"exit": "EXIT"},
|
|
||||||
"profile": {"_name": "PROFILE",
|
|
||||||
"switch": "SWITCH",
|
|
||||||
"theme": "THEME",
|
|
||||||
"quirks": "QUIRKS"},
|
|
||||||
"rclickchumlist": {"pester": "PESTER",
|
|
||||||
"removechum": "REMOVE CHUM"}
|
|
||||||
},
|
|
||||||
"chums": { "style": "background-color: black;color: white;font: bold;font-family: 'Courier New';selection-background-color:#919191; ",
|
|
||||||
"loc": [20, 65],
|
|
||||||
"size": [266, 270],
|
|
||||||
"moods": { "chummy": { "icon": "$path/chummy.gif",
|
|
||||||
"color": "white" },
|
|
||||||
"offline": { "icon": "$path/offline.gif",
|
|
||||||
"color": "#919191"},
|
|
||||||
"rancorous": { "icon": "$path/rancorous.gif",
|
|
||||||
"color": "red" },
|
|
||||||
"detestful": { "icon": "$path/detestful.gif",
|
|
||||||
"color": "red" },
|
|
||||||
"devious": { "icon": "$path/devious.gif",
|
|
||||||
"color": "white" },
|
|
||||||
"discontent": { "icon": "$path/discontent.gif",
|
|
||||||
"color": "white" },
|
|
||||||
"distraught": { "icon": "$path/distraught.gif",
|
|
||||||
"color": "white" },
|
|
||||||
"ecstatic": { "icon": "$path/estatic.gif",
|
|
||||||
"color": "white" },
|
|
||||||
"pleasant": { "icon": "$path/pleasant.gif",
|
|
||||||
"color": "white" },
|
|
||||||
"relaxed": { "icon": "$path/relaxed.gif",
|
|
||||||
"color": "white" },
|
|
||||||
"sleek": { "icon": "$path/sleek.gif",
|
|
||||||
"color": "white" },
|
|
||||||
"smooth": { "icon": "$path/smooth.gif",
|
|
||||||
"color": "white" },
|
|
||||||
"unruly": { "icon": "$path/unruly.gif",
|
|
||||||
"color": "white" }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"mychumhandle": { "label": { "text": "MYCHUMHANDLE",
|
|
||||||
"loc": [70,380],
|
|
||||||
"style": "color:black;font:bold;" },
|
|
||||||
"handle": { "style": "border:3px solid yellow; background: black; color:white;",
|
|
||||||
"loc": [20,400],
|
|
||||||
"size": [220,30] },
|
|
||||||
"colorswatch": { "loc": [243,400],
|
|
||||||
"size": [40,30],
|
|
||||||
"text": "" }
|
|
||||||
},
|
|
||||||
"defaultwindow": { "style": "background: #fdb302; font-family:'Courier New';font:bold;selection-background-color:#919191; "
|
|
||||||
},
|
|
||||||
"addchum": { "style": "background: #fdb302; border:5px solid yellow; font: bold;",
|
|
||||||
"loc": [20,340],
|
|
||||||
"size": [100, 40],
|
|
||||||
"text": "ADD CHUM"
|
|
||||||
},
|
|
||||||
"pester": { "style": "background: #fdb302; border:5px solid yellow; font: bold;",
|
|
||||||
"loc": [130,340],
|
|
||||||
"size": [100, 40],
|
|
||||||
"text": "PESTER!"
|
|
||||||
},
|
|
||||||
"defaultmood": 0,
|
|
||||||
"moodlabel": { "style": "",
|
|
||||||
"loc": [20, 430],
|
|
||||||
"text": "MOODS"
|
|
||||||
},
|
|
||||||
"moods": [
|
|
||||||
{ "style": "text-align:left; background: white; border:3px solid black; padding: 5px;color:#919191;",
|
|
||||||
"selected": "text-align:left; background: white; border:3px solid black; padding: 5px;font: bold;",
|
|
||||||
"loc": [20, 470],
|
|
||||||
"size": [133, 30],
|
|
||||||
"text": "CHUMMY",
|
|
||||||
"icon": "$path/chummy.gif",
|
|
||||||
"mood": 0
|
|
||||||
},
|
|
||||||
{ "style": "text-align:left; background: white; border:3px solid black; padding: 5px;color: #919191",
|
|
||||||
"selected": "text-align:left; background: white; border:3px solid black; padding: 5px;font: bold;",
|
|
||||||
"loc": [20, 497],
|
|
||||||
"size": [133, 30],
|
|
||||||
"text": "PLEASANT",
|
|
||||||
"icon": "$path/pleasant.gif",
|
|
||||||
"mood": 3
|
|
||||||
},
|
|
||||||
{ "style": "text-align:left; background: white; border:3px solid black; padding: 5px;color:#919191;",
|
|
||||||
"selected": "text-align:left; background: white; border:3px solid black; padding: 5px;font: bold;",
|
|
||||||
"loc": [20, 524],
|
|
||||||
"size": [133, 30],
|
|
||||||
"text": "DISTRAUGHT",
|
|
||||||
"icon": "$path/distraught.gif",
|
|
||||||
"mood": 4
|
|
||||||
},
|
|
||||||
{ "style": "text-align:left; background: white; border:3px solid black; padding: 5px;color:#919191;",
|
|
||||||
"selected": "text-align:left; background: white; border:3px solid black; padding: 5px;font: bold;",
|
|
||||||
"loc": [150, 470],
|
|
||||||
"size": [133, 30],
|
|
||||||
"text": "UNRULY",
|
|
||||||
"icon": "$path/unruly.gif",
|
|
||||||
"mood": 5
|
|
||||||
},
|
|
||||||
{ "style": "text-align:left; background: white; border:3px solid black; padding: 5px;color:#919191;",
|
|
||||||
"selected": "text-align:left; background: white; border:3px solid black; padding: 5px;font: bold;",
|
|
||||||
"loc": [150, 497],
|
|
||||||
"size": [133, 30],
|
|
||||||
"text": "SMOOTH",
|
|
||||||
"icon": "$path/smooth.gif",
|
|
||||||
"mood": 6
|
|
||||||
},
|
|
||||||
{ "style": "text-align:left; background: red; border:3px solid black; padding: 5px;",
|
|
||||||
"selected": "text-align:left; background: red; border:3px solid black; padding: 5px;font: bold;",
|
|
||||||
"loc": [150, 524],
|
|
||||||
"size": [133, 30],
|
|
||||||
"text": "RANCOROUS",
|
|
||||||
"icon": "$path/rancorous.gif",
|
|
||||||
"mood": 1
|
|
||||||
},
|
|
||||||
{ "style": "text-align:center; background: #919191; border:3px solid black; padding: 5px;",
|
|
||||||
"selected": "text-align:center; background: #919191; border:3px solid black; padding: 5px;font: bold;",
|
|
||||||
"loc": [20, 551],
|
|
||||||
"size": [263, 30],
|
|
||||||
"text": "ABSCOND",
|
|
||||||
"icon": "$path/offline.gif",
|
|
||||||
"mood": 2
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"convo":
|
|
||||||
{"style": "background: #fdb302; font-family: 'Courier New'",
|
|
||||||
"size": [600, 500],
|
|
||||||
"chumlabel": { "style": "background: rgba(255, 255, 255, 25%);",
|
|
||||||
"align": { "h": "center", "v": "center" },
|
|
||||||
"minheight": 30,
|
|
||||||
"maxheight": 50,
|
|
||||||
"text" : ":: $handle ::"
|
|
||||||
},
|
|
||||||
"textarea": {
|
|
||||||
"style": "background: white;font:bold;"
|
|
||||||
},
|
|
||||||
"input": {
|
|
||||||
"style": "background: white;"
|
|
||||||
},
|
|
||||||
"tabs": {
|
|
||||||
"style": "",
|
|
||||||
"selectedstyle": "",
|
|
||||||
"newmsgcolor": "#fdb302",
|
|
||||||
"tabstyle": 0
|
|
||||||
},
|
|
||||||
"text": {
|
|
||||||
"beganpester": "began pestering",
|
|
||||||
"ceasepester": "ceased pestering"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
Before ![]() (image error) Size: 3.6 KiB |
Before ![]() (image error) Size: 99 B |
Before ![]() (image error) Size: 61 B |
BIN
themes/pesterchum/acceptant.gif
Normal file
After ![]() (image error) Size: 126 B |
Before ![]() (image error) Size: 164 B After ![]() (image error) Size: 165 B ![]() ![]() |
Before ![]() (image error) Size: 137 B After ![]() (image error) Size: 137 B ![]() ![]() |
Before ![]() (image error) Size: 137 B |
BIN
themes/pesterchum/manipulative.gif
Normal file
After ![]() (image error) Size: 168 B |
Before ![]() (image error) Size: 125 B After ![]() (image error) Size: 125 B ![]() ![]() |
Before ![]() (image error) Size: 127 B After ![]() (image error) Size: 127 B ![]() ![]() |
|
@ -28,41 +28,58 @@
|
||||||
"rclickchumlist": {"pester": "PESTER",
|
"rclickchumlist": {"pester": "PESTER",
|
||||||
"removechum": "REMOVE CHUM",
|
"removechum": "REMOVE CHUM",
|
||||||
"blockchum": "BLOCK",
|
"blockchum": "BLOCK",
|
||||||
"unblockchum": "UNBLOCK",
|
"addchum": "ADD CHUM",
|
||||||
"addchum": "Add Chump"
|
"unblockchum": "UNBLOCK"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"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; ",
|
||||||
"loc": [12, 117],
|
"loc": [12, 117],
|
||||||
"size": [209, 82],
|
"size": [209, 82],
|
||||||
"moods": { "chummy": { "icon": "$path/chummy.gif",
|
"moods": {
|
||||||
"color": "white" },
|
|
||||||
"offline": { "icon": "$path/offline.gif",
|
"chummy": { "icon": "$path/chummy.gif", "color": "white" },
|
||||||
"color": "#646464"},
|
|
||||||
"rancorous": { "icon": "$path/rancorous.gif",
|
"rancorous": { "icon": "$path/rancorous.gif", "color": "red" },
|
||||||
"color": "red" },
|
|
||||||
"detestful": { "icon": "$path/detestful.gif",
|
"offline": { "icon": "$path/offline.gif", "color": "#646464"},
|
||||||
"color": "red" },
|
|
||||||
"devious": { "icon": "$path/devious.gif",
|
|
||||||
"color": "white" },
|
"pleasant": { "icon": "$path/pleasant.gif", "color": "white" },
|
||||||
"discontent": { "icon": "$path/discontent.gif",
|
|
||||||
"color": "white" },
|
"distraught": { "icon": "$path/distraught.gif", "color": "white" },
|
||||||
"distraught": { "icon": "$path/distraught.gif",
|
|
||||||
"color": "white" },
|
"unruly": { "icon": "$path/unruly.gif", "color": "white" },
|
||||||
"ecstatic": { "icon": "$path/estatic.gif",
|
|
||||||
"color": "white" },
|
|
||||||
"pleasant": { "icon": "$path/pleasant.gif",
|
"smooth": { "icon": "$path/smooth.gif", "color": "white" },
|
||||||
"color": "white" },
|
|
||||||
"relaxed": { "icon": "$path/relaxed.gif",
|
|
||||||
"color": "white" },
|
"ecstatic": { "icon": "$path/ecstatic.gif", "color": "red" },
|
||||||
"sleek": { "icon": "$path/sleek.gif",
|
|
||||||
"color": "white" },
|
"relaxed": { "icon": "$path/relaxed.gif", "color": "red" },
|
||||||
"smooth": { "icon": "$path/smooth.gif",
|
|
||||||
"color": "white" },
|
"discontent": { "icon": "$path/discontent.gif", "color": "red" },
|
||||||
"unruly": { "icon": "$path/unruly.gif",
|
|
||||||
"color": "white" },
|
"devious": { "icon": "$path/devious.gif", "color": "red" },
|
||||||
"blocked": { "icon": "$path/blocked.gif",
|
|
||||||
"color": "black" }
|
"sleek": { "icon": "$path/sleek.gif", "color": "red" },
|
||||||
|
|
||||||
|
"detestful": { "icon": "$path/detestful.gif", "color": "red" },
|
||||||
|
|
||||||
|
"mirthful": { "icon": "$path/mirthful.gif", "color": "red" },
|
||||||
|
|
||||||
|
"manipulative": { "icon": "$path/manipulative.gif", "color": "red" },
|
||||||
|
|
||||||
|
"vigorous": { "icon": "$path/vigorous.gif", "color": "red" },
|
||||||
|
|
||||||
|
"perky": { "icon": "$path/perky.gif", "color": "red" },
|
||||||
|
|
||||||
|
"acceptant": { "icon": "$path/acceptant.gif", "color": "red" },
|
||||||
|
|
||||||
|
"protective": { "icon": "$path/protective.gif", "color": "#00ff00" },
|
||||||
|
|
||||||
|
"blocked": { "icon": "$path/blocked.gif", "color": "black" }
|
||||||
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"trollslum": {
|
"trollslum": {
|
||||||
|
@ -87,17 +104,17 @@
|
||||||
"addchum": { "style": "background: rgba(255, 255, 0, 0%); border:2px solid #c48a00; font: bold; color: rgba(0, 0, 0, 0%); font-family:'Courier';",
|
"addchum": { "style": "background: rgba(255, 255, 0, 0%); border:2px solid #c48a00; font: bold; color: rgba(0, 0, 0, 0%); font-family:'Courier';",
|
||||||
"loc": [12,202],
|
"loc": [12,202],
|
||||||
"size": [71, 22],
|
"size": [71, 22],
|
||||||
"text": "ADD CHUM"
|
"text": ""
|
||||||
},
|
},
|
||||||
"pester": { "style": "background: rgba(255, 255, 0, 0%); border:2px solid #c48a00; font: bold; color: rgba(255, 255, 0, 0%); font-family:'Courier';",
|
"pester": { "style": "background: rgba(255, 255, 0, 0%); border:2px solid #c48a00; font: bold; color: rgba(255, 255, 0, 0%); font-family:'Courier';",
|
||||||
"loc": [150,202],
|
"loc": [150,202],
|
||||||
"size": [71, 22],
|
"size": [71, 22],
|
||||||
"text": "PESTER!"
|
"text": ""
|
||||||
},
|
},
|
||||||
"block": { "style": "background: rgba(255, 255, 0, 0%); border:2px solid #c48a00; font: bold; color: rgba(255, 255, 0, 0%); font-family:'Courier';",
|
"block": { "style": "background: rgba(255, 255, 0, 0%); border:2px solid #c48a00; font: bold; color: rgba(255, 255, 0, 0%); font-family:'Courier';",
|
||||||
"loc": [1500,202],
|
"loc": [1500,202],
|
||||||
"size": [0, 0],
|
"size": [0, 0],
|
||||||
"text": "BLOCK"
|
"text": ""
|
||||||
},
|
},
|
||||||
"defaultmood": 0,
|
"defaultmood": 0,
|
||||||
"moodlabel": { "style": "",
|
"moodlabel": { "style": "",
|
||||||
|
@ -158,7 +175,7 @@
|
||||||
"loc": [12, 348],
|
"loc": [12, 348],
|
||||||
"size": [209, 22],
|
"size": [209, 22],
|
||||||
"text": "ABSCOND",
|
"text": "ABSCOND",
|
||||||
"icon": "$path/x.gif",
|
"icon": "",
|
||||||
"mood": 2
|
"mood": 2
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
Before ![]() (image error) Size: 116 B After ![]() (image error) Size: 116 B ![]() ![]() |
BIN
themes/pesterchum/vigorous.gif
Normal file
After ![]() (image error) Size: 172 B |
Before ![]() (image error) Size: 97 B |
Before ![]() (image error) Size: 2.7 KiB After ![]() (image error) Size: 3 KiB ![]() ![]() |
Before ![]() (image error) Size: 108 B After ![]() (image error) Size: 80 B ![]() ![]() |
|
@ -1,270 +1,262 @@
|
||||||
{"main":
|
{"main":
|
||||||
{"style": "background-image:url($path/tnbg.png);background-color:rgba(255,255,255,0);",
|
{"style": "background-image:url($path/tnbg.png);background-color:rgba(255,255,255,0);",
|
||||||
"size": [650, 450],
|
"size": [650, 450],
|
||||||
"icon": "$path/trayicon2.png",
|
"icon": "$path/trayicon.png",
|
||||||
"newmsgicon": "$path/trayicon3.png",
|
"newmsgicon": "$path/trayicon2.png",
|
||||||
"windowtitle": "TROLLIAN",
|
"windowtitle": "TROLLIAN",
|
||||||
"close": { "image": "$path/x.gif",
|
"close": { "image": "$path/x.gif",
|
||||||
"loc": [635, 2]},
|
"loc": [635, 2]},
|
||||||
"minimize": { "image": "$path/m.gif",
|
"minimize": { "image": "$path/m.gif",
|
||||||
"loc": [621, 8]},
|
"loc": [621, 8]},
|
||||||
"menubar": { "style": "font-family: 'Arial'; font-size: 11px; color: rgba(0,0,0,0);" },
|
"menubar": { "style": "font-family: 'Arial'; font-size: 11px; color: rgba(0,0,0,0);" },
|
||||||
|
"menu" : { "style": "font-family: 'Arial'; font-size: 11px; background-color: #c2c2c2; border:1px solid #545454;",
|
||||||
|
"selected": "background-color: #545454",
|
||||||
"menu" : { "style": "font-family: 'Arial'; font-size: 11px; background-color: #c2c2c2; border:1px solid #545454;",
|
"menuitem": "margin-right:14px;",
|
||||||
|
"loc": [14,90]
|
||||||
|
},
|
||||||
"selected": "background-color: #545454",
|
"sounds": { "alertsound": "$path/alarm.wav" },
|
||||||
|
"menus": {"client": {"_name": "Trollian",
|
||||||
|
"options": "Options",
|
||||||
"menuitem": "margin-right:14px;",
|
"userlist": "Fresh Targets",
|
||||||
|
"exit": "Abscond"},
|
||||||
"loc": [14,90]
|
"profile": {"_name": "View",
|
||||||
},
|
"switch": "Trolltag",
|
||||||
|
"theme": "Theme",
|
||||||
"sounds": { "alertsound": "$path/alarm.wav" },
|
"color": "Hemospectrum",
|
||||||
"menus": {"client": {"_name": "Trollian",
|
"block": "Chumpdump",
|
||||||
"options": "Options",
|
"quirks": "Annoying"},
|
||||||
"userlist": "Target List",
|
"rclickchumlist": {"pester": "Troll",
|
||||||
"exit": "Abscond"},
|
"removechum": "Trash",
|
||||||
"profile": {"_name": "View",
|
"blockchum": "Block",
|
||||||
"switch": "Trolltag",
|
"addchum": "Add Chump",
|
||||||
"theme": "Theme",
|
"unblockchum": "Mercy"}
|
||||||
"color": "Hemospectrum",
|
},
|
||||||
"block": "Chumpdump",
|
"chums": { "style": "border: 0px; background-color: white; padding: 5px; font-family: 'Arial';selection-background-color:rgb(200,200,200); ",
|
||||||
"quirks": "Annoying"},
|
"loc": [476, 90],
|
||||||
"rclickchumlist": {"pester": "Troll",
|
"size": [175, 361],
|
||||||
"removechum": "Trash",
|
|
||||||
"blockchum": "Block",
|
"moods": {
|
||||||
"unblockchum": "Mercy",
|
|
||||||
"addchum": "Add Chump"}
|
"chummy": { "icon": "$path/chummy.png", "color": "#63ea00" },
|
||||||
},
|
|
||||||
"chums": { "style": "border: 0px; background-color: white; padding: 5px; font-family: 'Arial';selection-background-color:rgb(200,200,200); ",
|
"rancorous": { "icon": "$path/rancorous.png", "color": "#7f7f7f" },
|
||||||
"loc": [476, 90],
|
|
||||||
"size": [175, 361],
|
"offline": { "icon": "$path/offline.png", "color": "black"},
|
||||||
|
|
||||||
"moods": {
|
|
||||||
|
"pleasant": { "icon": "$path/pleasant.png", "color": "#d69df8" },
|
||||||
"chummy": { "icon": "$path/chummy.png", "color": "#63ea00" },
|
|
||||||
|
"distraught": { "icon": "$path/distraught.png", "color": "#706eba" },
|
||||||
"rancorous": { "icon": "$path/rancorous.png", "color": "#7f7f7f" },
|
|
||||||
|
"unruly": { "icon": "$path/unruly.png", "color": "blue" },
|
||||||
"offline": { "icon": "$path/offline.png", "color": "black"},
|
|
||||||
|
|
||||||
|
"smooth": { "icon": "$path/smooth.png", "color": "red" },
|
||||||
"pleasant": { "icon": "$path/pleasant.png", "color": "#d69df8" },
|
|
||||||
|
|
||||||
"distraught": { "icon": "$path/distraught.png", "color": "#706eba" },
|
"ecstatic": { "icon": "$path/ecstatic.png", "color": "#99004d" },
|
||||||
|
|
||||||
"unruly": { "icon": "$path/unruly.png", "color": "blue" },
|
"relaxed": { "icon": "$path/relaxed.png", "color": "#078446" },
|
||||||
|
|
||||||
|
"discontent": { "icon": "$path/discontent.png", "color": "#a75403" },
|
||||||
"smooth": { "icon": "$path/smooth.png", "color": "red" },
|
|
||||||
|
"devious": { "icon": "$path/devious.png", "color": "#008282" },
|
||||||
|
|
||||||
"ecstatic": { "icon": "$path/ecstatic.png", "color": "#99004d" },
|
"sleek": { "icon": "$path/sleek.png", "color": "#a1a100" },
|
||||||
|
|
||||||
"relaxed": { "icon": "$path/relaxed.png", "color": "#078446" },
|
"detestful": { "icon": "$path/detestful.png", "color": "#6a006a" },
|
||||||
|
|
||||||
"discontent": { "icon": "$path/discontent.png", "color": "#a75403" },
|
"mirthful": { "icon": "$path/mirthful.png", "color": "#450077" },
|
||||||
|
|
||||||
"devious": { "icon": "$path/devious.png", "color": "#008282" },
|
"manipulative": { "icon": "$path/manipulative.png", "color": "#004182" },
|
||||||
|
|
||||||
"sleek": { "icon": "$path/sleek.png", "color": "#a1a100" },
|
"vigorous": { "icon": "$path/vigorous.png", "color": "#0021cb" },
|
||||||
|
|
||||||
"detestful": { "icon": "$path/detestful.png", "color": "#6a006a" },
|
"perky": { "icon": "$path/perky.png", "color": "#406600" },
|
||||||
|
|
||||||
"mirthful": { "icon": "$path/mirthful.png", "color": "#450077" },
|
"acceptant": { "icon": "$path/acceptant.png", "color": "#a10000" },
|
||||||
|
|
||||||
"manipulative": { "icon": "$path/manipulative.png", "color": "#004182" },
|
"protective": { "icon": "$path/protective.png", "color": "white" },
|
||||||
|
|
||||||
"vigorous": { "icon": "$path/vigorous.png", "color": "#0021cb" },
|
"blocked": { "icon": "$path/blocked.png", "color": "black" }
|
||||||
|
|
||||||
"perky": { "icon": "$path/perky.png", "color": "#406600" },
|
}
|
||||||
|
},
|
||||||
"acceptant": { "icon": "$path/acceptant.png", "color": "#a10000" },
|
"trollslum": {
|
||||||
|
"style": "background: rgb(190, 19, 4); font-family: 'Arial'",
|
||||||
"protective": { "icon": "$path/protective.png", "color": "white" },
|
"size": [175, 461],
|
||||||
|
"label": { "text": "Chumpdump",
|
||||||
"blocked": { "icon": "$path/blocked.gif", "color": "black" }
|
"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": "",
|
||||||
"trollslum": {
|
"loc": [85,410],
|
||||||
"style": "background: rgb(190, 19, 4); font-family: 'Arial'",
|
"style": "color:rgba(0,0,0,0);" },
|
||||||
"size": [175, 461],
|
"handle": { "style": "background: rgba(0,0,0,0); color:rgba(0,0,0,0);",
|
||||||
"label": { "text": "Chumpdump",
|
"loc": [0,0],
|
||||||
"style": "color: rgba(0, 0, 0, 100%) ;font:bold; font-family: 'Arial';border: 0px;" },
|
"size": [0,0] },
|
||||||
"chumroll": {"style": "border: 0px; background-color: white; padding: 5px; font-family: 'Arial';selection-background-color:rgb(200,200,200); " }
|
"colorswatch": { "loc": [0,0],
|
||||||
},
|
"size": [0,0],
|
||||||
"mychumhandle": { "label": { "text": "",
|
"text": "" }
|
||||||
"loc": [85,410],
|
},
|
||||||
"style": "color:rgba(0,0,0,0);" },
|
"defaultwindow": { "style": "background: #c2c2c2; font-family:'Arial';font:bold;selection-background-color:#545454; "
|
||||||
"handle": { "style": "background: rgba(0,0,0,0); color:rgba(0,0,0,0);",
|
},
|
||||||
"loc": [0,0],
|
"addchum": { "style": "background: rgba(0,0,0,0); border:0px; color: rgba(0,0,0,0);",
|
||||||
"size": [0,0] },
|
"loc": [475, 67],
|
||||||
"colorswatch": { "loc": [0,0],
|
"size": [175, 18],
|
||||||
"size": [0,0],
|
"text": ""
|
||||||
"text": "" }
|
},
|
||||||
},
|
"pester": { "style": "background: rgba(0,0,0,0); border:0px; color: rgba(0,0,0,0);",
|
||||||
"defaultwindow": { "style": "background: #c2c2c2; font-family:'Arial';font:bold;selection-background-color:#545454; "
|
"loc": [0,0],
|
||||||
},
|
"size": [0, 0],
|
||||||
"addchum": { "style": "background: rgba(0,0,0,0); border:0px; color: rgba(0,0,0,0);",
|
"text": ""
|
||||||
"loc": [475, 67],
|
},
|
||||||
"size": [175, 18],
|
"block": { "style": "background: rgba(0,0,0,0); border:0px; color: rgba(0,0,0,0);",
|
||||||
"text": ""
|
"loc": [1500,202],
|
||||||
},
|
"size": [71, 22],
|
||||||
"pester": { "style": "background: rgba(0,0,0,0); border:0px; color: rgba(0,0,0,0);",
|
"text": ""
|
||||||
"loc": [0,0],
|
},
|
||||||
"size": [0, 0],
|
"defaultmood": 7,
|
||||||
"text": ""
|
"moodlabel": { "style": "",
|
||||||
},
|
"loc": [0, 0],
|
||||||
"block": { "style": "background: rgba(0,0,0,0); border:0px; color: rgba(0,0,0,0);",
|
"text": ""
|
||||||
"loc": [1500,202],
|
},
|
||||||
"size": [71, 22],
|
"moods": [
|
||||||
"text": ""
|
{ "style": "border:0px;",
|
||||||
},
|
"selected": "background-image:url($path/moodcheck1.png); border:0px;",
|
||||||
"defaultmood": 7,
|
"loc": [25, 141],
|
||||||
"moodlabel": { "style": "",
|
"size": [20, 270],
|
||||||
"loc": [0, 0],
|
"text": "",
|
||||||
"text": ""
|
"icon": "",
|
||||||
},
|
"mood": 17
|
||||||
"moods": [
|
},
|
||||||
{ "style": "border:0px;",
|
{ "style": "border:0px;",
|
||||||
"selected": "background-image:url($path/moodcheck1.png); border:0px;",
|
"selected": "background-image:url($path/moodcheck2.png); border:0px;",
|
||||||
"loc": [25, 141],
|
"loc": [60, 141],
|
||||||
"size": [20, 270],
|
"size": [20, 270],
|
||||||
"text": "",
|
"text": "",
|
||||||
"icon": "",
|
"icon": "",
|
||||||
"mood": 17
|
"mood": 9
|
||||||
},
|
},
|
||||||
{ "style": "border:0px;",
|
{ "style": "border:0px;",
|
||||||
"selected": "background-image:url($path/moodcheck2.png); border:0px;",
|
"selected": "background-image:url($path/moodcheck3.png); border:0px;",
|
||||||
"loc": [60, 141],
|
"loc": [95, 141],
|
||||||
"size": [20, 270],
|
"size": [20, 270],
|
||||||
"text": "",
|
"text": "",
|
||||||
"icon": "",
|
"icon": "",
|
||||||
"mood": 9
|
"mood": 11
|
||||||
},
|
},
|
||||||
{ "style": "border:0px;",
|
{ "style": "border:0px;",
|
||||||
"selected": "background-image:url($path/moodcheck3.png); border:0px;",
|
"selected": "background-image:url($path/moodcheck4.png); border:0px;",
|
||||||
"loc": [95, 141],
|
"loc": [130, 141],
|
||||||
"size": [20, 270],
|
"size": [20, 270],
|
||||||
"text": "",
|
"text": "",
|
||||||
"icon": "",
|
"icon": "",
|
||||||
"mood": 11
|
"mood": 1
|
||||||
},
|
},
|
||||||
{ "style": "border:0px;",
|
{ "style": "border:0px;",
|
||||||
"selected": "background-image:url($path/moodcheck4.png); border:0px;",
|
"selected": "background-image:url($path/moodcheck5.png); border:0px;",
|
||||||
"loc": [130, 141],
|
"loc": [165, 141],
|
||||||
"size": [20, 270],
|
"size": [20, 270],
|
||||||
"text": "",
|
"text": "",
|
||||||
"icon": "",
|
"icon": "",
|
||||||
"mood": 1
|
"mood": 16
|
||||||
},
|
},
|
||||||
{ "style": "border:0px;",
|
{ "style": "border:0px;",
|
||||||
"selected": "background-image:url($path/moodcheck5.png); border:0px;",
|
"selected": "background-image:url($path/moodcheck6.png); border:0px;",
|
||||||
"loc": [165, 141],
|
"loc": [200, 141],
|
||||||
"size": [20, 270],
|
"size": [20, 270],
|
||||||
"text": "",
|
"text": "",
|
||||||
"icon": "",
|
"icon": "",
|
||||||
"mood": 16
|
"mood": 8
|
||||||
},
|
},
|
||||||
{ "style": "border:0px;",
|
{ "style": "border:0px;",
|
||||||
"selected": "background-image:url($path/moodcheck6.png); border:0px;",
|
"selected": "background-image:url($path/moodcheck7.png); border:0px;",
|
||||||
"loc": [200, 141],
|
"loc": [235, 141],
|
||||||
"size": [20, 270],
|
"size": [20, 270],
|
||||||
"text": "",
|
"text": "",
|
||||||
"icon": "",
|
"icon": "",
|
||||||
"mood": 8
|
"mood": 10
|
||||||
},
|
},
|
||||||
{ "style": "border:0px;",
|
{ "style": "border:0px;",
|
||||||
"selected": "background-image:url($path/moodcheck7.png); border:0px;",
|
"selected": "background-image:url($path/moodcheck8.png); border:0px;",
|
||||||
"loc": [235, 141],
|
"loc": [270, 141],
|
||||||
"size": [20, 270],
|
"size": [20, 270],
|
||||||
"text": "",
|
"text": "",
|
||||||
"icon": "",
|
"icon": "",
|
||||||
"mood": 10
|
"mood": 14
|
||||||
},
|
},
|
||||||
{ "style": "border:0px;",
|
{ "style": "border:0px;",
|
||||||
"selected": "background-image:url($path/moodcheck8.png); border:0px;",
|
"selected": "background-image:url($path/moodcheck9.png); border:0px;",
|
||||||
"loc": [270, 141],
|
"loc": [305, 141],
|
||||||
"size": [20, 270],
|
"size": [20, 270],
|
||||||
"text": "",
|
"text": "",
|
||||||
"icon": "",
|
"icon": "",
|
||||||
"mood": 14
|
"mood": 15
|
||||||
},
|
},
|
||||||
{ "style": "border:0px;",
|
{ "style": "border:0px;",
|
||||||
"selected": "background-image:url($path/moodcheck9.png); border:0px;",
|
"selected": "background-image:url($path/moodcheck10.png); border:0px;",
|
||||||
"loc": [305, 141],
|
"loc": [340, 141],
|
||||||
"size": [20, 270],
|
"size": [20, 270],
|
||||||
"text": "",
|
"text": "",
|
||||||
"icon": "",
|
"icon": "",
|
||||||
"mood": 15
|
"mood": 13
|
||||||
},
|
},
|
||||||
{ "style": "border:0px;",
|
{ "style": "border:0px;",
|
||||||
"selected": "background-image:url($path/moodcheck10.png); border:0px;",
|
"selected": "background-image:url($path/moodcheck11.png); border:0px;",
|
||||||
"loc": [340, 141],
|
"loc": [375, 141],
|
||||||
"size": [20, 270],
|
"size": [20, 270],
|
||||||
"text": "",
|
"text": "",
|
||||||
"icon": "",
|
"icon": "",
|
||||||
"mood": 13
|
"mood": 12
|
||||||
},
|
},
|
||||||
{ "style": "border:0px;",
|
{ "style": "border:0px;",
|
||||||
"selected": "background-image:url($path/moodcheck11.png); border:0px;",
|
"selected": "background-image:url($path/moodcheck12.png); border:0px;",
|
||||||
"loc": [375, 141],
|
"loc": [410, 141],
|
||||||
"size": [20, 270],
|
"size": [20, 270],
|
||||||
"text": "",
|
"text": "",
|
||||||
"icon": "",
|
"icon": "",
|
||||||
"mood": 12
|
"mood": 7
|
||||||
},
|
},
|
||||||
{ "style": "border:0px;",
|
|
||||||
"selected": "background-image:url($path/moodcheck12.png); border:0px;",
|
{ "style": "border:0px;color: rgba(0, 0, 0, 0%);",
|
||||||
"loc": [410, 141],
|
"selected": "border:0px; color: rgba(0, 0, 0, 0%);",
|
||||||
"size": [20, 270],
|
"loc": [12, 117],
|
||||||
"text": "",
|
"size": [435, 18],
|
||||||
"icon": "",
|
"text": "",
|
||||||
"mood": 7
|
"icon": "",
|
||||||
},
|
"mood": 2
|
||||||
|
}
|
||||||
{ "style": "border:0px;color: rgba(0, 0, 0, 0%);",
|
]
|
||||||
"selected": "border:0px; color: rgba(0, 0, 0, 0%);",
|
},
|
||||||
"loc": [12, 117],
|
"convo":
|
||||||
"size": [435, 18],
|
{"style": "background: rgb(190, 19, 4); font-family: 'Arial'",
|
||||||
"text": "",
|
"size": [308, 194],
|
||||||
"icon": "",
|
"chumlabel": { "style": "background: rgb(255, 38, 18); color: white;",
|
||||||
"mood": 2
|
"align": { "h": "center", "v": "center" },
|
||||||
}
|
"minheight": 30,
|
||||||
]
|
"maxheight": 50,
|
||||||
},
|
"text" : "trolling: $handle"
|
||||||
"convo":
|
},
|
||||||
{"style": "background: rgb(190, 19, 4); font-family: 'Arial'",
|
"textarea": {
|
||||||
"size": [308, 194],
|
"style": "background: white; border:0px;"
|
||||||
"chumlabel": { "style": "background: rgb(255, 38, 18); color: white;",
|
},
|
||||||
"align": { "h": "center", "v": "center" },
|
"input": {
|
||||||
"minheight": 30,
|
"style": "background: white; border:0px solid #c48a00;margin-top:5px;"
|
||||||
"maxheight": 50,
|
},
|
||||||
"text" : "trolling: $handle"
|
"tabs": {
|
||||||
},
|
"style": "",
|
||||||
"textarea": {
|
"selectedstyle": "",
|
||||||
"style": "background: white; border:0px;"
|
"newmsgcolor": "red",
|
||||||
},
|
"tabstyle": 0
|
||||||
"input": {
|
},
|
||||||
"style": "background: white; border:0px solid #c48a00;margin-top:5px;"
|
"text": {
|
||||||
},
|
"beganpester": "began trolling",
|
||||||
"tabs": {
|
"ceasepester": "gave up trolling",
|
||||||
"style": "",
|
"blocked": "blocked",
|
||||||
"selectedstyle": "",
|
"unblocked": "mercifully forgave"
|
||||||
"newmsgcolor": "red",
|
},
|
||||||
"tabstyle": 0
|
"systemMsgColor": "#646464"
|
||||||
},
|
}
|
||||||
"text": {
|
|
||||||
"beganpester": "began trolling",
|
|
||||||
"ceasepester": "gave up trolling",
|
|
||||||
"blocked": "blocked",
|
|
||||||
"unblocked": "mercifully forgave"
|
|
||||||
},
|
|
||||||
"systemMsgColor": "#646464"
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
Before ![]() (image error) Size: 125 B |
Before ![]() (image error) Size: 4 KiB After ![]() (image error) Size: 4 KiB ![]() ![]() |
Before ![]() (image error) Size: 4 KiB After ![]() (image error) Size: 4 KiB ![]() ![]() |