new themes, windows installers
|
@ -1,9 +1,9 @@
|
||||||
|
|
||||||
; The name of the installer
|
; The name of the installer
|
||||||
Name "PESTERCHUM3.14a"
|
Name "PESTERCHUM3.418"
|
||||||
|
|
||||||
; The file to write
|
; The file to write
|
||||||
OutFile "pesterchum3.14a.3update.exe"
|
OutFile "pesterchum3.418.update.exe"
|
||||||
|
|
||||||
RequestExecutionLevel admin
|
RequestExecutionLevel admin
|
||||||
|
|
||||||
|
@ -29,7 +29,9 @@ Section "Pesterchum"
|
||||||
File pesterchum.exe
|
File pesterchum.exe
|
||||||
|
|
||||||
Delete "$SMPROGRAMS\Pesterchum\Pesterchum.lnk"
|
Delete "$SMPROGRAMS\Pesterchum\Pesterchum.lnk"
|
||||||
|
Delete "$SMPROGRAMS\Pesterchum\PesterChumDebug.lnk"
|
||||||
CreateShortcut "$SMPROGRAMS\Pesterchum\Pesterchum.lnk" "$INSTDIR\pesterchum.exe"
|
CreateShortcut "$SMPROGRAMS\Pesterchum\Pesterchum.lnk" "$INSTDIR\pesterchum.exe"
|
||||||
|
CreateShortcut "$SMPROGRAMS\Pesterchum\PesterchumDebug.lnk" "$INSTDIR\pesterchum_debug.exe"
|
||||||
|
|
||||||
Goto done
|
Goto done
|
||||||
error:
|
error:
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
|
|
||||||
; The name of the installer
|
; The name of the installer
|
||||||
Name "PESTERCHUM3.14a"
|
Name "PESTERCHUM3.418"
|
||||||
|
|
||||||
; The file to write
|
; The file to write
|
||||||
OutFile "pesterchum3.148.2.exe"
|
OutFile "pesterchum3.418.exe"
|
||||||
|
|
||||||
InstallDir C:\Pesterchum
|
InstallDir C:\Pesterchum
|
||||||
|
|
||||||
|
@ -41,6 +41,7 @@ Section "Pesterchum"
|
||||||
|
|
||||||
CreateDirectory "$SMPROGRAMS\Pesterchum"
|
CreateDirectory "$SMPROGRAMS\Pesterchum"
|
||||||
CreateShortcut "$SMPROGRAMS\Pesterchum\Pesterchum.lnk" "$INSTDIR\pesterchum.exe"
|
CreateShortcut "$SMPROGRAMS\Pesterchum\Pesterchum.lnk" "$INSTDIR\pesterchum.exe"
|
||||||
|
CreateShortcut "$SMPROGRAMS\Pesterchum\PesterchumDebug.lnk" "$INSTDIR\pesterchum_debug.exe"
|
||||||
CreateShortcut "$DESKTOP\Pesterchum.lnk" "$INSTDIR\pesterchum.exe"
|
CreateShortcut "$DESKTOP\Pesterchum.lnk" "$INSTDIR\pesterchum.exe"
|
||||||
CreateShortcut "$SMPROGRAMS\Pesterchum\Readme.lnk" "$INSTDIR\readme.txt"
|
CreateShortcut "$SMPROGRAMS\Pesterchum\Readme.lnk" "$INSTDIR\readme.txt"
|
||||||
CreateShortcut "$SMPROGRAMS\Pesterchum\Uninstall.lnk" "$INSTDIR\uninstall.exe"
|
CreateShortcut "$SMPROGRAMS\Pesterchum\Uninstall.lnk" "$INSTDIR\uninstall.exe"
|
||||||
|
|
9
pesterchum_debug_linux.py
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
# runs pesterchum but appends stdout/err to log file
|
||||||
|
import subprocess
|
||||||
|
import datetime
|
||||||
|
f = open("debug.log", 'a')
|
||||||
|
d = datetime.datetime.now()
|
||||||
|
f.write("=== PESTERCHUM DEBUG %s ===\n" % d.strftime("%m-%d-%y %H-%M"))
|
||||||
|
p = subprocess.Popen(["python", "pesterchum.py"], stdout=f, stderr=subprocess.STDOUT)
|
||||||
|
p.wait()
|
||||||
|
f.close()
|
45
setup.py
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
# Windows-only cx_freeze setup file
|
||||||
|
from cx_Freeze import setup, Executable
|
||||||
|
import sys
|
||||||
|
import os
|
||||||
|
import shutil
|
||||||
|
|
||||||
|
if sys.platform == "win32":
|
||||||
|
base = "Win32GUI"
|
||||||
|
#base = "Console"
|
||||||
|
else:
|
||||||
|
base = "Console"
|
||||||
|
|
||||||
|
setup(
|
||||||
|
name = "PESTERCHUM",
|
||||||
|
version = "3.41",
|
||||||
|
description = "P3ST3RCHUM",
|
||||||
|
executables = [Executable("pesterchum.py",
|
||||||
|
base=base,
|
||||||
|
compress=True,
|
||||||
|
icon="pesterchum.ico",
|
||||||
|
),
|
||||||
|
Executable("pesterchum_debug.py",
|
||||||
|
base=base,
|
||||||
|
compress=True,
|
||||||
|
icon="pesterchum.ico",
|
||||||
|
)])
|
||||||
|
if sys.platform == "win32":
|
||||||
|
os.rename("build/exe.win32-2.6", "build/pesterchum")
|
||||||
|
|
||||||
|
shutil.copytree("themes", "build/pesterchum/themes")
|
||||||
|
shutil.copytree("imageformats", "build/pesterchum/imageformats")
|
||||||
|
shutil.copytree("smilies", "build/pesterchum/smilies")
|
||||||
|
shutil.copy("pesterchum.js", "build/pesterchum/")
|
||||||
|
shutil.copy("C:/Dev/Py26MSdlls-9.0.21022.8/msvc/msvcm90.dll", "build/pesterchum")
|
||||||
|
shutil.copy("C:/Dev/Py26MSdlls-9.0.21022.8/msvc/msvcp90.dll", "build/pesterchum")
|
||||||
|
shutil.copy("C:/Dev/Py26MSdlls-9.0.21022.8/msvc/msvcr90.dll", "build/pesterchum")
|
||||||
|
shutil.copy("C:/Dev/Py26MSdlls-9.0.21022.8/msvc/x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.21022.8_x-ww_d08d0375.manifest",
|
||||||
|
"build/pesterchum")
|
||||||
|
shutil.copy("pesterchum.nsi", "build/pesterchum/")
|
||||||
|
shutil.copy("pesterchum-update.nsi", "build/pesterchum/")
|
||||||
|
os.mkdir("build/pesterchum/profiles")
|
||||||
|
os.mkdir("build/pesterchum/logs")
|
||||||
|
shutil.copy("logs/chums.js", "build/pesterchum/logs")
|
||||||
|
shutil.copy("readme.txt", "build/pesterchum/")
|
||||||
|
shutil.copy("themes.txt", "build/pesterchum/")
|
BIN
themes/FRESHjamz/acceptant.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
themes/FRESHjamz/alarm.wav
Normal file
BIN
themes/FRESHjamz/amazed.png
Normal file
After Width: | Height: | Size: 3 KiB |
BIN
themes/FRESHjamz/apple.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
BIN
themes/FRESHjamz/bemused.png
Normal file
After Width: | Height: | Size: 3 KiB |
BIN
themes/FRESHjamz/blocked.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
themes/FRESHjamz/chumbg.png
Normal file
After Width: | Height: | Size: 5.6 KiB |
BIN
themes/FRESHjamz/chumlabelbg.png
Normal file
After Width: | Height: | Size: 120 B |
BIN
themes/FRESHjamz/chummy.png
Normal file
After Width: | Height: | Size: 3 KiB |
BIN
themes/FRESHjamz/close.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
themes/FRESHjamz/detestful.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
themes/FRESHjamz/devious.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
themes/FRESHjamz/discontent.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
themes/FRESHjamz/distraught.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
themes/FRESHjamz/ecstatic.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
themes/FRESHjamz/fastforward1.png
Normal file
After Width: | Height: | Size: 4 KiB |
BIN
themes/FRESHjamz/fastforward2.png
Normal file
After Width: | Height: | Size: 4 KiB |
BIN
themes/FRESHjamz/fjbg.png
Normal file
After Width: | Height: | Size: 62 KiB |
BIN
themes/FRESHjamz/fjbg.psd
Normal file
BIN
themes/FRESHjamz/insolent.png
Normal file
After Width: | Height: | Size: 3 KiB |
BIN
themes/FRESHjamz/keylime.png
Normal file
After Width: | Height: | Size: 4.1 KiB |
BIN
themes/FRESHjamz/leftarrow.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
themes/FRESHjamz/lemon.png
Normal file
After Width: | Height: | Size: 4.5 KiB |
BIN
themes/FRESHjamz/m.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
themes/FRESHjamz/manipulative.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
themes/FRESHjamz/memo.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
themes/FRESHjamz/mirthful.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
themes/FRESHjamz/mystified.png
Normal file
After Width: | Height: | Size: 3 KiB |
BIN
themes/FRESHjamz/offline.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
themes/FRESHjamz/ohgodwhat.wav
Normal file
BIN
themes/FRESHjamz/orange.png
Normal file
After Width: | Height: | Size: 5.1 KiB |
BIN
themes/FRESHjamz/pause1.png
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
themes/FRESHjamz/pause2.png
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
themes/FRESHjamz/perky.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
themes/FRESHjamz/play1.png
Normal file
After Width: | Height: | Size: 4 KiB |
BIN
themes/FRESHjamz/play2.png
Normal file
After Width: | Height: | Size: 4 KiB |
BIN
themes/FRESHjamz/pleasant.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
themes/FRESHjamz/pranky.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
themes/FRESHjamz/protective.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
themes/FRESHjamz/rancorous.png
Normal file
After Width: | Height: | Size: 3 KiB |
BIN
themes/FRESHjamz/relaxed.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
themes/FRESHjamz/rewind1.png
Normal file
After Width: | Height: | Size: 4 KiB |
BIN
themes/FRESHjamz/rewind2.png
Normal file
After Width: | Height: | Size: 4 KiB |
BIN
themes/FRESHjamz/rightarrow.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
themes/FRESHjamz/sleek.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
themes/FRESHjamz/smooth.png
Normal file
After Width: | Height: | Size: 3 KiB |
254
themes/FRESHjamz/style.js
Normal file
|
@ -0,0 +1,254 @@
|
||||||
|
{"main":
|
||||||
|
{"style": "background-color:rgba(0,0,0,0); background-repeat: no-repeat;",
|
||||||
|
"background-image": "$path/fjbg.png",
|
||||||
|
"size": [613, 401],
|
||||||
|
"icon": "$path/trayicon.png",
|
||||||
|
"newmsgicon": "$path/trayicon2.png",
|
||||||
|
"windowtitle": "FRESHjamz",
|
||||||
|
"close": { "image": "$path/x.png",
|
||||||
|
"size": [13, 13],
|
||||||
|
"loc": [101, 362]},
|
||||||
|
"minimize": { "image": "$path/m.png",
|
||||||
|
"size": [13, 13],
|
||||||
|
"loc": [116, 362]},
|
||||||
|
"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;",
|
||||||
|
"selected": "background-color: #545454",
|
||||||
|
"menuitem": "margin-right:10px;",
|
||||||
|
"loc": [198,141]
|
||||||
|
},
|
||||||
|
"sounds": { "alertsound": "$path/alarm.wav",
|
||||||
|
"ceasesound": "$path/ohgodwhat.wav" },
|
||||||
|
"menus": {"client": {"_name": "Album",
|
||||||
|
"options": "Options",
|
||||||
|
"memos": "Memos",
|
||||||
|
"logviewer": "Pesterlogs",
|
||||||
|
"userlist": "Userlist",
|
||||||
|
"import": "Import",
|
||||||
|
"reconnect": "Reconnect",
|
||||||
|
"idle": "Idle",
|
||||||
|
"exit": "Exit"},
|
||||||
|
"profile": {"_name": "Track",
|
||||||
|
"switch": "Switch",
|
||||||
|
"theme": "Theme",
|
||||||
|
"color": "Color",
|
||||||
|
"block": "Trollslum",
|
||||||
|
"quirks": "Quirks" },
|
||||||
|
"help": { "_name": "Info",
|
||||||
|
"help": "Info",
|
||||||
|
"calsprite": "Calsprite",
|
||||||
|
"about": "About" },
|
||||||
|
"rclickchumlist": {"pester": "Pester",
|
||||||
|
"removechum": "Remove Chum",
|
||||||
|
"blockchum": "Block",
|
||||||
|
"report": "Report",
|
||||||
|
"addchum": "Add Chum",
|
||||||
|
"viewlog": "View Pesterlog",
|
||||||
|
"unblockchum": "Unblock",
|
||||||
|
"banuser": "Ban",
|
||||||
|
"opuser": "Make OP",
|
||||||
|
"quirksoff": "Quirks Off" }
|
||||||
|
},
|
||||||
|
"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],
|
||||||
|
"size": [272, 170],
|
||||||
|
"userlistcolor": "#ff168f",
|
||||||
|
"moods": {
|
||||||
|
|
||||||
|
"chummy": { "icon": "$path/chummy.png", "color": "white" },
|
||||||
|
|
||||||
|
"rancorous": { "icon": "$path/rancorous.png", "color": "#ff168f" },
|
||||||
|
|
||||||
|
"offline": { "icon": "$path/offline.png", "color": "grey"},
|
||||||
|
|
||||||
|
|
||||||
|
"pleasant": { "icon": "$path/pleasant.png", "color": "white" },
|
||||||
|
|
||||||
|
"distraught": { "icon": "$path/distraught.png", "color": "white" },
|
||||||
|
|
||||||
|
"pranky": { "icon": "$path/pranky.png", "color": "white" },
|
||||||
|
|
||||||
|
"smooth": { "icon": "$path/smooth.png", "color": "white" },
|
||||||
|
|
||||||
|
|
||||||
|
"mystified": { "icon": "$path/mystified.png", "color": "white" },
|
||||||
|
|
||||||
|
"amazed": { "icon": "$path/amazed.png", "color": "white" },
|
||||||
|
|
||||||
|
"insolent": { "icon": "$path/insolent.png", "color": "white" },
|
||||||
|
|
||||||
|
"bemused": { "icon": "$path/bemused.png", "color": "white" },
|
||||||
|
|
||||||
|
|
||||||
|
"ecstatic": { "icon": "$path/ecstatic.png", "color": "#ff168f" },
|
||||||
|
|
||||||
|
"relaxed": { "icon": "$path/relaxed.png", "color": "#ff168f" },
|
||||||
|
|
||||||
|
"discontent": { "icon": "$path/discontent.png", "color": "#ff168f" },
|
||||||
|
|
||||||
|
"devious": { "icon": "$path/devious.png", "color": "#ff168f" },
|
||||||
|
|
||||||
|
"sleek": { "icon": "$path/sleek.png", "color": "#ff168f" },
|
||||||
|
|
||||||
|
"detestful": { "icon": "$path/detestful.png", "color": "#ff168f" },
|
||||||
|
|
||||||
|
"mirthful": { "icon": "$path/mirthful.png", "color": "#ff168f" },
|
||||||
|
|
||||||
|
"manipulative": { "icon": "$path/manipulative.png", "color": "#ff168f" },
|
||||||
|
|
||||||
|
"vigorous": { "icon": "$path/vigorous.png", "color": "#ff168f" },
|
||||||
|
|
||||||
|
"perky": { "icon": "$path/perky.png", "color": "#ff168f" },
|
||||||
|
|
||||||
|
"acceptant": { "icon": "$path/acceptant.png", "color": "#ff168f" },
|
||||||
|
|
||||||
|
"protective": { "icon": "$path/protective.png", "color": "lime" },
|
||||||
|
|
||||||
|
"blocked": { "icon": "$path/blocked.png", "color": "#ff168f" }
|
||||||
|
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"trollslum": {
|
||||||
|
"style": "background: black; font-family: 'Arial'; color: white;",
|
||||||
|
"size": [200, 450],
|
||||||
|
"label": { "text": "Trollslum",
|
||||||
|
"style": "color: white ; font: bold; font-family: 'Arial'; border: 0px;" },
|
||||||
|
"chumroll": {"style": "border: 3px solid white; background-color: black; color: white; padding: 5px; font: bold; font-family: 'Arial'; selection-background-color: rgb(100,100,100);" }
|
||||||
|
},
|
||||||
|
"mychumhandle": { "label": { "text": "",
|
||||||
|
"loc": [0,0],
|
||||||
|
"style": "color: rgba(0,0,0,0);" },
|
||||||
|
"handle": { "style": "background: black; padding: 3px; padding-left: 26px; color: white; font-family:'Arial'; font: bold; text-align:left; font-size: 12px; border: 3px solid white;",
|
||||||
|
"loc": [0,0],
|
||||||
|
"size": [0, 0] },
|
||||||
|
"colorswatch": { "loc": [0,0],
|
||||||
|
"size": [0,0],
|
||||||
|
"text": "" },
|
||||||
|
"currentMood": [0, 0]
|
||||||
|
},
|
||||||
|
"defaultwindow": { "style": "color: black; background: #797979; font-family: 'Arial'; font: bold; selection-background-color: rgb(100,100,100);"
|
||||||
|
},
|
||||||
|
"addchum":
|
||||||
|
{ "style": "background-image:url($path/pause1.png); border:0px;",
|
||||||
|
"pressed": "background-image:url($path/pause2.png); border:0px;",
|
||||||
|
"loc": [239, 73],
|
||||||
|
"size": [55, 58],
|
||||||
|
"text": ""
|
||||||
|
},
|
||||||
|
"pester":
|
||||||
|
{ "style": "background-image:url($path/play1.png); border:0px;",
|
||||||
|
"pressed": "background-image:url($path/play2.png); border:0px;",
|
||||||
|
"loc": [180, 73],
|
||||||
|
"size": [55, 58],
|
||||||
|
"text": ""
|
||||||
|
},
|
||||||
|
"block": { "style": "background: rgba(0,0,0,0); border:0px; color: rgba(0,0,0,0);",
|
||||||
|
"loc": [0, 0],
|
||||||
|
"size": [0, 0],
|
||||||
|
"text": ""
|
||||||
|
},
|
||||||
|
"defaultmood": 0,
|
||||||
|
"moodlabel": { "style": "",
|
||||||
|
"loc": [0, 0],
|
||||||
|
"text": ""
|
||||||
|
},
|
||||||
|
"moods": [
|
||||||
|
{ "style": "background-image:url($path/rewind1.png); border:0px;",
|
||||||
|
"selected": "background-image:url($path/rewind2.png); border:0px;",
|
||||||
|
"loc": [298, 73],
|
||||||
|
"size": [55, 58],
|
||||||
|
"text": "",
|
||||||
|
"icon": "",
|
||||||
|
"mood": 2
|
||||||
|
},
|
||||||
|
{ "style": "background-image:url($path/fastforward1.png); border:0px;",
|
||||||
|
"selected": "background-image:url($path/fastforward2.png); border:0px;",
|
||||||
|
"loc": [357, 73],
|
||||||
|
"size": [55, 58],
|
||||||
|
"text": "",
|
||||||
|
"icon": "",
|
||||||
|
"mood": 0
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"convo":
|
||||||
|
{"style": "background: #797979; font-family: 'Arial';",
|
||||||
|
"scrollbar": { "style" : "", "handle": "" },
|
||||||
|
"margins": {"top": 10, "bottom": 10, "left": 10, "right": 10 },
|
||||||
|
"size": [400, 250],
|
||||||
|
"chumlabel": { "style": "background-image:url($path/chumlabelbg.png);background-color:#393939; background-repeat: no-repeat; color: #ff168f; padding: 2px; border:1px solid #c2c2c2; margin-bottom: 4px;",
|
||||||
|
"align": { "h": "left", "v": "center" },
|
||||||
|
"minheight": 22,
|
||||||
|
"maxheight": 36,
|
||||||
|
"text" : "Pestering: $handle"
|
||||||
|
},
|
||||||
|
"textarea": {
|
||||||
|
"style": "background: white; border:2px solid #c2c2c2; font-size: 14px;"
|
||||||
|
},
|
||||||
|
"input": {
|
||||||
|
"style": "background: white;margin-top:5px; border:1px solid #c2c2c2; font-size: 12px;"
|
||||||
|
},
|
||||||
|
"tabwindow" : {
|
||||||
|
"style": "background: black; font-family: 'Arial'"
|
||||||
|
},
|
||||||
|
"tabs": {
|
||||||
|
"style": "border: 2px solid white; background: black; color: white;",
|
||||||
|
"selectedstyle": "border: 3px solid white; background: white; color: black;",
|
||||||
|
"newmsgcolor": "red",
|
||||||
|
"tabstyle": 0
|
||||||
|
},
|
||||||
|
"text": {
|
||||||
|
"beganpester": "began pestering",
|
||||||
|
"ceasepester": "ceased pestering",
|
||||||
|
"blocked": "blocked",
|
||||||
|
"unblocked": "unblocked",
|
||||||
|
"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":
|
||||||
|
{"memoicon": "$path/memo.png",
|
||||||
|
"style": "background: #797979; font-family: 'Arial';",
|
||||||
|
"size": [450,300],
|
||||||
|
"tabs": {
|
||||||
|
"style": "border: 2px solid white; background: black; color: white;",
|
||||||
|
"selectedstyle": "border: 3px solid white; background: white; color: black;",
|
||||||
|
"newmsgcolor": "red",
|
||||||
|
"tabstyle": 0
|
||||||
|
},
|
||||||
|
"label": { "text": "Bulletin Board: $channel",
|
||||||
|
"style": "background-image:url($path/chumlabelbg.png);background-color:#393939; background-repeat: no-repeat; color: #ff168f; padding: 2px; border:1px solid #c2c2c2; margin-bottom: 4px;",
|
||||||
|
"align": { "h": "left", "v": "center" },
|
||||||
|
"minheight": 18,
|
||||||
|
"maxheight": 18
|
||||||
|
},
|
||||||
|
"textarea": {
|
||||||
|
"style": "background: white; border:2px solid #c2c2c2; font-size: 12px;"
|
||||||
|
},
|
||||||
|
"input": {
|
||||||
|
"style": "background: white;margin-top:5px; border:1px solid #c2c2c2; font-size: 12px; margin-bottom: 5px; "
|
||||||
|
},
|
||||||
|
"margins": {"top": 10, "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;",
|
||||||
|
"groove": "border-image:url($path/timeslider.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;" },
|
||||||
|
"arrows": { "left": "$path/leftarrow.png",
|
||||||
|
"right": "$path/rightarrow.png",
|
||||||
|
"style": "width: 19px; height: 19px; border:0px; margin-left: 2px;"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"systemMsgColor": "#646464",
|
||||||
|
"op": { "icon": "$path/smooth.png" }
|
||||||
|
}
|
||||||
|
}
|
BIN
themes/FRESHjamz/timeicon.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
themes/FRESHjamz/timeslider.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
themes/FRESHjamz/trayicon.png
Normal file
After Width: | Height: | Size: 4.6 KiB |
BIN
themes/FRESHjamz/trayicon2.png
Normal file
After Width: | Height: | Size: 4.4 KiB |
BIN
themes/FRESHjamz/vigorous.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
themes/FRESHjamz/x.png
Normal file
After Width: | Height: | Size: 3 KiB |
BIN
themes/Scratch/a.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
themes/Scratch/acceptant.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
themes/Scratch/amazed.png
Normal file
After Width: | Height: | Size: 3 KiB |
BIN
themes/Scratch/bemused.png
Normal file
After Width: | Height: | Size: 3 KiB |
BIN
themes/Scratch/blocked.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
themes/Scratch/chumlabelbg.png
Normal file
After Width: | Height: | Size: 120 B |
BIN
themes/Scratch/chummy.png
Normal file
After Width: | Height: | Size: 3 KiB |
BIN
themes/Scratch/close.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
themes/Scratch/detestful.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
themes/Scratch/devious.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
themes/Scratch/discontent.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
themes/Scratch/distraught.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
themes/Scratch/ecstatic.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
themes/Scratch/insolent.png
Normal file
After Width: | Height: | Size: 3 KiB |
BIN
themes/Scratch/leftarrow.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
themes/Scratch/m.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
themes/Scratch/manipulative.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
themes/Scratch/memo.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
themes/Scratch/mirthful.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
43
themes/Scratch/moods.txt
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
chummy jade 0
|
||||||
|
|
||||||
|
rancorous karkat 1
|
||||||
|
|
||||||
|
offline 2
|
||||||
|
|
||||||
|
pleasant rose 3
|
||||||
|
|
||||||
|
distraught club 4
|
||||||
|
|
||||||
|
pranky john 5
|
||||||
|
|
||||||
|
smooth dave 6
|
||||||
|
|
||||||
|
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
|
||||||
|
|
||||||
|
mystified diamond 19
|
||||||
|
|
||||||
|
amazed heart 20
|
||||||
|
|
||||||
|
insolent spade 21
|
BIN
themes/Scratch/mystified.png
Normal file
After Width: | Height: | Size: 3 KiB |
BIN
themes/Scratch/offline.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
themes/Scratch/offline1.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
themes/Scratch/p.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
themes/Scratch/perky.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
themes/Scratch/pleasant.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
themes/Scratch/pranky.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
themes/Scratch/protective.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
themes/Scratch/rancorous.png
Normal file
After Width: | Height: | Size: 3 KiB |
BIN
themes/Scratch/relaxed.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
themes/Scratch/rightarrow.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
themes/Scratch/scratch.wav
Normal file
BIN
themes/Scratch/scratch2.wav
Normal file
BIN
themes/Scratch/scratchbg.png
Normal file
After Width: | Height: | Size: 192 KiB |
BIN
themes/Scratch/scratchbg.psd
Normal file
BIN
themes/Scratch/shades1.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
themes/Scratch/shades2.png
Normal file
After Width: | Height: | Size: 3 KiB |
BIN
themes/Scratch/sleek.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
themes/Scratch/smooth.png
Normal file
After Width: | Height: | Size: 3 KiB |
252
themes/Scratch/style.js
Normal file
|
@ -0,0 +1,252 @@
|
||||||
|
{"main":
|
||||||
|
{"style": "background-color:rgba(0,0,0,0); background-repeat: no-repeat;",
|
||||||
|
"background-image": "$path/scratchbg.png",
|
||||||
|
"size": [650, 650],
|
||||||
|
"icon": "$path/trayicon.png",
|
||||||
|
"newmsgicon": "$path/trayicon2.png",
|
||||||
|
"windowtitle": "Scratch",
|
||||||
|
"close": { "image": "$path/x.png",
|
||||||
|
"loc": [466, 54]},
|
||||||
|
"minimize": { "image": "$path/m.png",
|
||||||
|
"loc": [450, 60]},
|
||||||
|
"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: black; border:3px solid white;",
|
||||||
|
"selected": "background-color: #545454",
|
||||||
|
"menuitem": "margin-right:10px;",
|
||||||
|
"loc": [175,53]
|
||||||
|
},
|
||||||
|
"sounds": { "alertsound": "$path/scratch.wav",
|
||||||
|
"ceasesound": "$path/scratch2.wav" },
|
||||||
|
"menus": {"client": {"_name": "Album",
|
||||||
|
"options": "Remix",
|
||||||
|
"memos": "Memos",
|
||||||
|
"logviewer": "Pesterlogs",
|
||||||
|
"userlist": "Cronies",
|
||||||
|
"import": "Import",
|
||||||
|
"reconnect": "Reconnect",
|
||||||
|
"idle": "Idle",
|
||||||
|
"exit": "Exit"},
|
||||||
|
"profile": {"_name": "Track",
|
||||||
|
"switch": "Rap Name",
|
||||||
|
"theme": "Theme",
|
||||||
|
"color": "Color",
|
||||||
|
"block": "Haters",
|
||||||
|
"quirks": "Lingo" },
|
||||||
|
"help": { "_name": "Info",
|
||||||
|
"help": "Info",
|
||||||
|
"calsprite": "Calsprite",
|
||||||
|
"about": "The Deal" },
|
||||||
|
"rclickchumlist": {"pester": "Patronize",
|
||||||
|
"removechum": "Forget",
|
||||||
|
"report": "Tell a Coppa",
|
||||||
|
"blockchum": "Slam",
|
||||||
|
"report": "Report",
|
||||||
|
"addchum": "Add to Crew",
|
||||||
|
"viewlog": "View Pesterlog",
|
||||||
|
"unblockchum": "Rectify",
|
||||||
|
"banuser": "Banish",
|
||||||
|
"opuser": "Hype",
|
||||||
|
"quirksoff": "Lingo Off" }
|
||||||
|
},
|
||||||
|
"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],
|
||||||
|
"size": [302, 500],
|
||||||
|
"userlistcolor": "white",
|
||||||
|
"moods": {
|
||||||
|
|
||||||
|
"chummy": { "icon": "$path/chummy.png", "color": "white" },
|
||||||
|
|
||||||
|
"rancorous": { "icon": "$path/rancorous.png", "color": "white" },
|
||||||
|
|
||||||
|
"offline": { "icon": "$path/offline.png", "color": "grey"},
|
||||||
|
|
||||||
|
|
||||||
|
"pleasant": { "icon": "$path/pleasant.png", "color": "white" },
|
||||||
|
|
||||||
|
"distraught": { "icon": "$path/distraught.png", "color": "white" },
|
||||||
|
|
||||||
|
"pranky": { "icon": "$path/pranky.png", "color": "white" },
|
||||||
|
|
||||||
|
"smooth": { "icon": "$path/smooth.png", "color": "white" },
|
||||||
|
|
||||||
|
|
||||||
|
"mystified": { "icon": "$path/mystified.png", "color": "white" },
|
||||||
|
|
||||||
|
"amazed": { "icon": "$path/amazed.png", "color": "white" },
|
||||||
|
|
||||||
|
"insolent": { "icon": "$path/insolent.png", "color": "white" },
|
||||||
|
|
||||||
|
"bemused": { "icon": "$path/bemused.png", "color": "white" },
|
||||||
|
|
||||||
|
|
||||||
|
"ecstatic": { "icon": "$path/ecstatic.png", "color": "red" },
|
||||||
|
|
||||||
|
"relaxed": { "icon": "$path/relaxed.png", "color": "red" },
|
||||||
|
|
||||||
|
"discontent": { "icon": "$path/discontent.png", "color": "red" },
|
||||||
|
|
||||||
|
"devious": { "icon": "$path/devious.png", "color": "red" },
|
||||||
|
|
||||||
|
"sleek": { "icon": "$path/sleek.png", "color": "red" },
|
||||||
|
|
||||||
|
"detestful": { "icon": "$path/detestful.png", "color": "red" },
|
||||||
|
|
||||||
|
"mirthful": { "icon": "$path/mirthful.png", "color": "red" },
|
||||||
|
|
||||||
|
"manipulative": { "icon": "$path/manipulative.png", "color": "red" },
|
||||||
|
|
||||||
|
"vigorous": { "icon": "$path/vigorous.png", "color": "red" },
|
||||||
|
|
||||||
|
"perky": { "icon": "$path/perky.png", "color": "red" },
|
||||||
|
|
||||||
|
"acceptant": { "icon": "$path/acceptant.png", "color": "red" },
|
||||||
|
|
||||||
|
"protective": { "icon": "$path/protective.png", "color": "lime" },
|
||||||
|
|
||||||
|
"blocked": { "icon": "$path/blocked.png", "color": "red" }
|
||||||
|
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"trollslum": {
|
||||||
|
"style": "background: black; font-family: 'Arial'; color: white;",
|
||||||
|
"size": [200, 450],
|
||||||
|
"label": { "text": "Trollslum",
|
||||||
|
"style": "color: white ; font: bold; font-family: 'Arial'; border: 0px;" },
|
||||||
|
"chumroll": {"style": "border: 3px solid white; background-color: black; color: white; padding: 5px; font: bold; font-family: 'Arial'; selection-background-color: rgb(100,100,100);" }
|
||||||
|
},
|
||||||
|
"mychumhandle": { "label": { "text": "",
|
||||||
|
"loc": [0,0],
|
||||||
|
"style": "color: rgba(0,0,0,0);" },
|
||||||
|
"handle": { "style": "background: black; padding: 3px; padding-left: 26px; color: white; font-family:'Arial'; font: bold; text-align:left; font-size: 12px; border: 3px solid white;",
|
||||||
|
"loc": [0,0],
|
||||||
|
"size": [0, 0] },
|
||||||
|
"colorswatch": { "loc": [0,0],
|
||||||
|
"size": [0,0],
|
||||||
|
"text": "" },
|
||||||
|
"currentMood": [0, 0]
|
||||||
|
},
|
||||||
|
"defaultwindow": { "style": "color: black; background: rgb(210,0,0); font-family: 'Arial'; font: bold; selection-background-color: rgb(100,100,100);"
|
||||||
|
},
|
||||||
|
"addchum":
|
||||||
|
{ "style": "background-image:url($path/a.png); border:0px;",
|
||||||
|
"loc": [434, 55],
|
||||||
|
"size": [8, 8],
|
||||||
|
"text": ""
|
||||||
|
},
|
||||||
|
"pester":
|
||||||
|
{ "style": "background: rgba(0,0,0,0); border:0px;",
|
||||||
|
"loc": [0, 0],
|
||||||
|
"size": [0, 0],
|
||||||
|
"text": ""
|
||||||
|
},
|
||||||
|
"block": { "style": "background: rgba(0,0,0,0); border:0px; color: rgba(0,0,0,0);",
|
||||||
|
"loc": [0, 0],
|
||||||
|
"size": [0, 0],
|
||||||
|
"text": ""
|
||||||
|
},
|
||||||
|
"defaultmood": 6,
|
||||||
|
"moodlabel": { "style": "",
|
||||||
|
"loc": [0, 0],
|
||||||
|
"text": ""
|
||||||
|
},
|
||||||
|
"moods": [
|
||||||
|
{ "style": "background-image:url($path/shades1.png); border:0px;",
|
||||||
|
"selected": "background-image:url($path/shades2.png); border:0px;",
|
||||||
|
"loc": [268, 580],
|
||||||
|
"size": [104, 37],
|
||||||
|
"text": "",
|
||||||
|
"icon": "",
|
||||||
|
"mood": 6
|
||||||
|
},
|
||||||
|
{ "style": "background-image:url($path/offline1.png); border:0px;",
|
||||||
|
"selected": "background-image:url($path/offline1.png); border:0px;",
|
||||||
|
"loc": [382, 580],
|
||||||
|
"size": [50, 50],
|
||||||
|
"text": "",
|
||||||
|
"icon": "",
|
||||||
|
"mood": 2
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"convo":
|
||||||
|
{"style": "background: black; font-family: 'Arial';",
|
||||||
|
"scrollbar": { "style" : "", "handle": "" },
|
||||||
|
"margins": {"top": 10, "bottom": 10, "left": 10, "right": 10 },
|
||||||
|
"size": [400, 250],
|
||||||
|
"size": [400, 250],
|
||||||
|
"chumlabel": { "style": "background-image:url($path/chumlabelbg.png);background-color:rgb(180,0,0); 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" : "Pestering: $handle"
|
||||||
|
},
|
||||||
|
"textarea": {
|
||||||
|
"style": "background: white; border:2px solid #c2c2c2; font-size: 14px;"
|
||||||
|
},
|
||||||
|
"input": {
|
||||||
|
"style": "background: white;margin-top:5px; border:1px solid #c2c2c2; font-size: 12px;"
|
||||||
|
},
|
||||||
|
"tabwindow" : {
|
||||||
|
"style": "background: black; font-family: 'Arial'"
|
||||||
|
},
|
||||||
|
"tabs": {
|
||||||
|
"style": "border: 2px solid white; background: black; color: white;",
|
||||||
|
"selectedstyle": "border: 3px solid white; background: white; color: black;",
|
||||||
|
"newmsgcolor": "red",
|
||||||
|
"tabstyle": 0
|
||||||
|
},
|
||||||
|
"text": {
|
||||||
|
"beganpester": "began pestering",
|
||||||
|
"ceasepester": "ceased pestering",
|
||||||
|
"blocked": "blocked",
|
||||||
|
"unblocked": "unblocked",
|
||||||
|
"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":
|
||||||
|
{"memoicon": "$path/memo.png",
|
||||||
|
"style": "background: black; font-family: 'Arial';",
|
||||||
|
"size": [450,300],
|
||||||
|
"tabs": {
|
||||||
|
"style": "border: 2px solid white; background: black; color: white;",
|
||||||
|
"selectedstyle": "border: 3px solid white; background: white; color: black;",
|
||||||
|
"newmsgcolor": "red",
|
||||||
|
"tabstyle": 0
|
||||||
|
},
|
||||||
|
"label": { "text": "Bulletin Board: $channel",
|
||||||
|
"style": "background-image:url($path/chumlabelbg.png);background-color:rgb(180,0,0); background-repeat: no-repeat; color: white; padding: 2px; border:1px solid #c2c2c2; margin-bottom: 4px;",
|
||||||
|
"align": { "h": "left", "v": "center" },
|
||||||
|
"minheight": 18,
|
||||||
|
"maxheight": 18
|
||||||
|
},
|
||||||
|
"textarea": {
|
||||||
|
"style": "background: white; border:2px solid #c2c2c2; font-size: 12px;"
|
||||||
|
},
|
||||||
|
"input": {
|
||||||
|
"style": "background: white;margin-top:5px; border:1px solid #c2c2c2; font-size: 12px; margin-bottom: 5px; "
|
||||||
|
},
|
||||||
|
"margins": {"top": 10, "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;",
|
||||||
|
"groove": "border-image:url($path/timeslider.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;" },
|
||||||
|
"arrows": { "left": "$path/leftarrow.png",
|
||||||
|
"right": "$path/rightarrow.png",
|
||||||
|
"style": "width: 19px; height: 19px; border:0px; margin-left: 2px;"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"systemMsgColor": "#646464",
|
||||||
|
"op": { "icon": "$path/smooth.png" }
|
||||||
|
}
|
||||||
|
}
|
BIN
themes/Scratch/timeicon.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
themes/Scratch/timeslider.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
themes/Scratch/trayicon.png
Normal file
After Width: | Height: | Size: 4.9 KiB |