diff --git a/CHANGELOG.md b/CHANGELOG.md index f834085..3514bfd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,13 +3,23 @@ ## [v2.1.0] - 2021-4-4 +### Added +- Server prompt + interface for adding & removing servers. +- Custom text for numerous themes. (Mostly just made things consistent, for example, "REPORT BUG" to "Report Bug" for Trollian.) +- Added theme support for "Beep on Message", "Flash on Message", "Mute Notifications". + ### Fixed - Fixed current mood icon not showing up. - Fixed "CHUMHANDLE:" not fitting on some themes. -- Fixed console capitalization. - -### Added -- Server prompt +- Fixed "CONSOLE" & "REPORT BUG" menu options not being updated on theme change. +- Incorrect hex for color in MSChum theme. +- Fixed \_datadir not being used for certain json files. +- Fixed "Specified color without alpha value but alpha given: 'rgb 0,0,0,0'" in johntierchum +- Fixed "RGB parameters out of range" in MSChum +- Fixed nothing.png not being present in battlefield theme. +- Fixed "Report" string not being updated in convo window when changing theme. +- Fixed pesterChumAction's text not being updated in memo windows when changing theme. +- Fixed incorrect sRGB profile in paperchum. ### Changed - Made it so handle and ident are passed to ``_max_msg_len``, so, hopefully the text cutoff will be *slightly* less restrictive. diff --git a/TODO.md b/TODO.md index 6b62a7d..9c7ca11 100644 --- a/TODO.md +++ b/TODO.md @@ -9,3 +9,6 @@ - Exclude unnecessary imports for builds. - Mask & target not being passed to ``_max_msg_len``. - No error message when Pesterchum fails to join a channel. (For example, when the channel name length is over CHANNELLEN) + - Choose memo window doesn't get updated on theme change. + - Right click menu's color doesn't get updated on theme change in memos. + - Closed windows sometimes stay open. \ No newline at end of file diff --git a/convo.py b/convo.py index 5e82143..ba4e190 100644 --- a/convo.py +++ b/convo.py @@ -649,15 +649,29 @@ class PesterConvo(QtWidgets.QFrame): # Easiest solution: Implement a 'Mute' option that overrides all # notifications for that window, save for mentions. # TODO: Look into setting up theme support here. - self._beepToggle = QtWidgets.QAction("Beep on Message", self) + + # Theme support :3c + #if self.mainwindow.theme.has_key("main/menus/rclickchumlist/beeponmessage"): + try: + self._beepToggle = QtWidgets.QAction(self.mainwindow.theme["main/menus/rclickchumlist/beeponmessage"], self) + except: + self._beepToggle = QtWidgets.QAction("BEEP ON MESSAGE", self) self._beepToggle.setCheckable(True) self._beepToggle.toggled[bool].connect(self.toggleBeep) - self._flashToggle = QtWidgets.QAction("Flash on Message", self) + #if self.mainwindow.theme.has_key("main/menus/rclickchumlist/flashonmessage"): + try: + self._flashToggle = QtWidgets.QAction(self.mainwindow.theme["main/menus/rclickchumlist/flashonmessage"], self) + except: + self._flashToggle = QtWidgets.QAction("FLASH ON MESSAGE", self) self._flashToggle.setCheckable(True) self._flashToggle.toggled[bool].connect(self.toggleFlash) - self._muteToggle = QtWidgets.QAction("Mute Notifications", self) + #if self.mainwindow.theme.has_key("main/menus/rclickchumlist/mutenotifications"): + try: + self._muteToggle = QtWidgets.QAction(self.mainwindow.theme["main/menus/rclickchumlist/mutenotifications"], self) + except: + self._muteToggle = QtWidgets.QAction("MUTE NOTIFICATIONS", self) self._muteToggle.setCheckable(True) self._muteToggle.toggled[bool].connect(self.toggleMute) @@ -862,6 +876,29 @@ class PesterConvo(QtWidgets.QFrame): self.unblockchum.setText(self.mainwindow.theme["main/menus/rclickchumlist/unblockchum"]) self.logchum.setText(self.mainwindow.theme["main/menus/rclickchumlist/viewlog"]) + #if self.mainwindow.theme.has_key("main/menus/rclickchumlist/beeponmessage"): + try: + self._beepToggle.setText(self.mainwindow.theme["main/menus/rclickchumlist/beeponmessage"]) + except: + self._beepToggle.setText("BEEP ON MESSAGE") + + #if self.mainwindow.theme.has_key("main/menus/rclickchumlist/flashonmessage"): + try: + self._flashToggle.setText(self.mainwindow.theme["main/menus/rclickchumlist/flashonmessage"]) + except: + self._flashToggle.setText("FLASH ON MESSAGE", self) + + #if self.mainwindow.theme.has_key("main/menus/rclickchumlist/mutenotifications"): + try: + self._muteToggle.setText(self.mainwindow.theme["main/menus/rclickchumlist/mutenotifications"]) + except: + self._muteToggle.setText("MUTE NOTIFICATIONS") + + #if self.mainwindow.theme.has_key("main/menus/rclickchumlist/report"): + try: + self.reportchum.setText(self.mainwindow.theme["main/menus/rclickchumlist/report"]) + except: + pass self.textArea.changeTheme(theme) self.textInput.changeTheme(theme) diff --git a/memos.py b/memos.py index a48af02..6e27c00 100644 --- a/memos.py +++ b/memos.py @@ -420,15 +420,27 @@ class PesterMemo(PesterConvo): self.invitechum = QtWidgets.QAction(self.mainwindow.theme["main/menus/rclickchumlist/invitechum"], self) self.invitechum.triggered.connect(self.inviteChums) - self._beepToggle = QtWidgets.QAction("Beep on Message", self) + #if self.mainwindow.theme.has_key("main/menus/rclickchumlist/beeponmessage"): + try: + self._beepToggle = QtWidgets.QAction(self.mainwindow.theme["main/menus/rclickchumlist/beeponmessage"], self) + except: + self._beepToggle = QtWidgets.QAction("BEEP ON MESSAGE", self) self._beepToggle.setCheckable(True) self._beepToggle.toggled[bool].connect(self.toggleBeep) - self._flashToggle = QtWidgets.QAction("Flash on Message", self) + #if self.mainwindow.theme.has_key("main/menus/rclickchumlist/flashonmessage"): + try: + self._flashToggle = QtWidgets.QAction(self.mainwindow.theme["main/menus/rclickchumlist/flashonmessage"], self) + except: + self._flashToggle = QtWidgets.QAction("FLASH ON MESSAGE", self) self._flashToggle.setCheckable(True) self._flashToggle.toggled[bool].connect(self.toggleFlash) - self._muteToggle = QtWidgets.QAction("Mute Notifications", self) + #if self.mainwindow.theme.has_key("main/menus/rclickchumlist/mutenotifications"): + try: + self._muteToggle = QtWidgets.QAction(self.mainwindow.theme["main/menus/rclickchumlist/mutenotifications"], self) + except: + self._muteToggle = QtWidgets.QAction("MUTE NOTIFICATIONS", self) self._muteToggle.setCheckable(True) self._muteToggle.toggled[bool].connect(self.toggleMute) @@ -638,6 +650,29 @@ class PesterMemo(PesterConvo): self.timeswitchr.setIconSize(rarrow.realsize()) self.timeswitchr.setStyleSheet(self.mainwindow.theme["memos/time/arrows/style"]) + #if self.mainwindow.theme.has_key("main/menus/rclickchumlist/beeponmessage"): + try: + self._beepToggle.setText(self.mainwindow.theme["main/menus/rclickchumlist/beeponmessage"]) + except: + self._beepToggle.setText("BEEP ON MESSAGE") + + #if self.mainwindow.theme.has_key("main/menus/rclickchumlist/flashonmessage"): + try: + self._flashToggle.setText(self.mainwindow.theme["main/menus/rclickchumlist/flashonmessage"]) + except: + self._flashToggle.setText("FLASH ON MESSAGE") + + #if self.mainwindow.theme.has_key("main/menus/rclickchumlist/mutenotifications"): + try: + self._muteToggle.setText(self.mainwindow.theme["main/menus/rclickchumlist/mutenotifications"]) + except: + self._muteToggle.setText("MUTE NOTIFICATIONS") + + #if self.mainwindow.theme.has_key("main/menus/rclickchumlist/pester"): + try: + self.pesterChumAction.setText(self.mainwindow.theme["main/menus/rclickchumlist/pester"]) + except: + pass def changeTheme(self, theme): self.initTheme(theme) diff --git a/pesterchum.py b/pesterchum.py index 95fcd07..d97e172 100644 --- a/pesterchum.py +++ b/pesterchum.py @@ -350,13 +350,20 @@ class chumArea(RightClickTree): return self.optionsMenu def startDrag(self, dropAction): - # create mime data object - mime = QtCore.QMimeData() - mime.setData('application/x-item', '???') - # start drag - drag = QtGui.QDrag(self) - drag.setMimeData(mime) - drag.start(QtCore.Qt.MoveAction) +## Traceback (most recent call last): +## File "pesterchum.py", line 355, in startDrag +## mime.setData('application/x-item', '???') +## TypeErroreError: setData(self, str, Union[QByteArray, bytes, bytearray]): argument 2 has unexpected type 'str' + try: + # create mime data object + mime = QtCore.QMimeData() + mime.setData('application/x-item', '???') + # start drag + drag = QtGui.QDrag(self) + drag.setMimeData(mime) + drag.start(QtCore.Qt.MoveAction) + except: + logging.exception('') def dragMoveEvent(self, event): if event.mimeData().hasFormat("application/x-item"): @@ -1236,7 +1243,13 @@ class PesterWindow(MovingWindow): self.chanServAction.triggered.connect(self.loadChanServ) self.aboutAction = QtWidgets.QAction(self.theme["main/menus/help/about"], self) self.aboutAction.triggered.connect(self.aboutPesterchum) - self.reportBugAction = QtWidgets.QAction("REPORT BUG", self) + + # Because I can't expect all themes to have this included. + if self.theme.has_key("main/menus/help/reportbug"): + self.reportBugAction = QtWidgets.QAction(self.theme["main/menus/help/reportbug"], self) + else: + self.reportBugAction = QtWidgets.QAction("REPORT BUG", self) + self.reportBugAction.triggered.connect(self.reportBug) helpmenu = self.menu.addMenu(self.theme["main/menus/help/_name"]) self.helpmenu = helpmenu @@ -1730,6 +1743,11 @@ class PesterWindow(MovingWindow): except: self.console.action.setText("Console") + try: + self.reportBugAction.setText(self.theme["main/menus/help/reportbug"]) + except: + self.reportBugAction.setText("REPORT BUG") + # moods self.moodsLabel.setText(theme["main/moodlabel/text"]) self.moodsLabel.move(*theme["main/moodlabel/loc"]) @@ -2975,7 +2993,7 @@ class PesterWindow(MovingWindow): try: server = { "server": server_and_port[0], - "port": server_and_port[1], + "port": int(server_and_port[1]),# to make sure port is a valid integer, and raise an exception if it cannot be converted. "TLS": self.TLS_checkbox.isChecked() } logging.info("server: "+str(server)) @@ -3050,19 +3068,21 @@ class PesterWindow(MovingWindow): self.changeServerAskedToReset = True self.resetServerlist() return 1 + + selected_entry = None for i in range(len(server_list_obj)): if server_list_obj[i]["server"] == self.removeServerBox.currentText(): selected_entry = i - - server_list_obj.pop(selected_entry) - - try: - with open(_datadir + "serverlist.json", "w") as server_file: - server_file.write(json.dumps(server_list_obj, indent = 4)) - server_file.close() - except: - logging.error("failed") + if selected_entry != None: + server_list_obj.pop(selected_entry) + + try: + with open(_datadir + "serverlist.json", "w") as server_file: + server_file.write(json.dumps(server_list_obj, indent = 4)) + server_file.close() + except: + logging.error("failed") self.changeServer() diff --git a/themes/BettyBother/style.js b/themes/BettyBother/style.js index da7cbf1..657b4d3 100755 --- a/themes/BettyBother/style.js +++ b/themes/BettyBother/style.js @@ -54,7 +54,10 @@ "opuser": "MAKE OP", "voiceuser": "GIVE VOICE", "quirksoff": "QUIRKS OFF", - "invitechum": "INVITE CHUM" + "invitechum": "INVITE CHUM", + "beeponmessage": "BEEP ON MESSAGE", + "flashonmessage": "FLASH ON MESSAGE", + "mutenotifications": "MUTE NOTIFICATIONS" } }, "chums": { "style": "border:0px; background-image:url($path/chumbg.png); background-color: rgb(102,102,102); background-repeat: no-repeat; color: white;font: bold;font-family: 'Arial';selection-background-color:#646464; ", diff --git a/themes/FRESHjamz/style.js b/themes/FRESHjamz/style.js index 1b23a63..972075b 100755 --- a/themes/FRESHjamz/style.js +++ b/themes/FRESHjamz/style.js @@ -26,21 +26,25 @@ "randen": "Random Encounter", "userlist": "Userlist", "addgroup": "Add Group", + "talk": "Pester", "import": "Import", "reconnect": "Reconnect", "idle": "Idle", - "exit": "Exit"}, + "exit": "Exit", + "console": "Console"}, "profile": {"_name": "Track", "switch": "Switch", "theme": "Theme", "color": "Color", "block": "Trollslum", - "quirks": "Quirks" }, + "quirks": "Quirks"}, "help": { "_name": "Info", "help": "Info", "calsprite": "Calsprite", + "chanserv": "ChanServ", "nickserv": "NickServ", - "about": "About" }, + "about": "About", + "reportbug": "Report Bug"}, "rclickchumlist": {"pester": "Pester", "removechum": "Remove Chum", "report": "Report", @@ -62,7 +66,10 @@ "memonoquirk": "Disable Quirks", "memohidden": "Hidden", "memoinvite": "Invite-Only", - "memomute": "Mute" } + "memomute": "Mute", + "beeponmessage": "Beep on Message", + "flashonmessage": "Flash on Message", + "mutenotifications": "Mute Notifications" } }, "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], diff --git a/themes/MSChum/style.js b/themes/MSChum/style.js index b146955..cce3035 100755 --- a/themes/MSChum/style.js +++ b/themes/MSChum/style.js @@ -123,7 +123,7 @@ "text": "" }, "currentMood": [18, 249] }, - "defaultwindow": { "style": "background: #22222; font-family:'Courier';font:bold;selection-background-color:#F1F1F1; " + "defaultwindow": { "style": "background: #F1F1F1; font-family:'Courier';font:bold;selection-background-color:#F1F1F1; " }, "addchum": { "style": "background: rgba(255, 255, 0, 0%); border:2px solid #000000; font: bold; color: rgba(0, 0, 0, 0%); font-family:'Courier';", "pressed" : "background: rgb(255, 255, 255, 30%);", @@ -218,7 +218,7 @@ }, "margins": {"top": 0, "bottom": 6, "left": 0, "right": 0 }, "size": [500, 325], - "chumlabel": { "style": "margin-bottom: 21px;background: rgb(256, 256, 256); color: white; border:0px; font-size: 14px;font-family: 'Courier'", + "chumlabel": { "style": "margin-bottom: 21px;background: rgb(255, 255, 255); color: white; border:0px; font-size: 14px;font-family: 'Courier'", "align": { "h": "center", "v": "center" }, "minheight": 47, "maxheight": 47, diff --git a/themes/Scratch/style.js b/themes/Scratch/style.js index 19eb7d2..3754e19 100755 --- a/themes/Scratch/style.js +++ b/themes/Scratch/style.js @@ -24,10 +24,12 @@ "randen": "Random Encounter", "userlist": "Cronies", "addgroup": "New Crew", + "talk": "Pester", "import": "Import", "reconnect": "Reconnect", "idle": "Idle", - "exit": "Exit"}, + "exit": "Exit", + "console": "Console"}, "profile": {"_name": "Track", "switch": "Rap Name", "theme": "Theme", @@ -38,7 +40,9 @@ "help": "Info", "calsprite": "Calsprite", "nickserv": "NickServ", - "about": "The Deal" }, + "about": "The Deal", + "reportbug": "Report Bug", + "chanserv": "ChanServ"}, "rclickchumlist": {"pester": "Patronize", "removechum": "Forget", "report": "Tell a Coppa", @@ -60,7 +64,10 @@ "memonoquirk": "Disable Quirks", "memohidden": "Hidden", "memoinvite": "Invite-Only", - "memomute": "Mute" } + "memomute": "Mute", + "beeponmessage": "Beep on Message", + "flashonmessage": "Flash on Message", + "mutenotifications": "Mute Notifications" } }, "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], diff --git a/themes/Zodiac/style.js b/themes/Zodiac/style.js index 35f2b59..5315c37 100755 --- a/themes/Zodiac/style.js +++ b/themes/Zodiac/style.js @@ -24,10 +24,12 @@ "randen": "Random Encounter", "userlist": "Userlist", "addgroup": "Add Group", + "talk": "Pester", "import": "Import", "reconnect": "Reconnect", "idle": "Idle", - "exit": "Exit"}, + "exit": "Exit", + "console": "Console"}, "profile": {"_name": "Profile", "switch": "Chumhandle", "theme": "Theme", @@ -38,7 +40,9 @@ "help": "Help", "calsprite": "Calsprite", "nickserv": "NickServ", - "about": "About" }, + "about": "About", + "reportbug": "Report Bug", + "chanserv": "ChanServ"}, "rclickchumlist": {"pester": "Pester", "removechum": "Remove", "report": "Report", @@ -60,7 +64,10 @@ "memonoquirk": "Disable Quirks", "memohidden": "Hidden", "memoinvite": "Invite-Only", - "memomute": "Mute" } + "memomute": "Mute", + "beeponmessage": "Beep on Message", + "flashonmessage": "Flash on Message", + "mutenotifications": "Mute Notifications" } }, "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], diff --git a/themes/battlefield/nothing.png b/themes/battlefield/nothing.png new file mode 100644 index 0000000..19fc611 Binary files /dev/null and b/themes/battlefield/nothing.png differ diff --git a/themes/battlefield/style.js b/themes/battlefield/style.js index 892c947..87b5955 100755 --- a/themes/battlefield/style.js +++ b/themes/battlefield/style.js @@ -19,11 +19,15 @@ "options": "Terms", "memos": "Wars", "logviewer": "Legends", + "randen": "Random Encounter", "userlist": "Pawns", + "addgroup": "Add Group", + "talk": "Pester", "import": "Reinforce", "reconnect": "Resurrect", "idle": "Rest", - "exit": "Exit"}, + "exit": "Exit", + "console": "Console"}, "profile": {"_name": "Title", "switch": "Alter", "color": "Hue", @@ -31,7 +35,12 @@ "block": "Enemies", "quirks": "Typing"}, "help": { "_name": "Cavalry", - "about": "Creators" }, + "about": "Creators", + "help": "Help", + "calsprite": "Calsprite", + "nickserv": "NickServ", + "reportbug": "Report Bug", + "chanserv": "ChanServ"}, "rclickchumlist": {"pester": "Parley", "removechum": "Turn On", "blockchum": "Deaconstruct", @@ -41,7 +50,23 @@ "unblockchum": "Renew User", "banuser": "Destroy User", "opuser": "Empower", - "quirksoff": "Untype" + "quirksoff": "Untype", + + "notes": "Edit Notes...", + "removegroup": "Remove Group", + "renamegroup": "Rename Group", + "movechum": "Move To", + "voiceuser": "Give Voice", + "quirkkill": "Kill Quirk", + "invitechum": "Invite Chum", + "memosetting": "Memo Settings", + "memonoquirk": "Disable Quirks", + "memohidden": "Hidden", + "memoinvite": "Invite-Only", + "memomute": "Mute", + "beeponmessage": "Beep on Message", + "flashonmessage": "Flash on Message", + "mutenotifications": "Mute Notifications" } }, "chums": { "style": "font-size: 16px; background-image:url($path/chumbg.png); background-color: #C2C4EB; background-repeat: no-repeat; font-family: 'Arial'; border: 0px; selection-background-color: #222222; color: black;", diff --git a/themes/crosbytop/style.js b/themes/crosbytop/style.js index f196f80..c120b75 100755 --- a/themes/crosbytop/style.js +++ b/themes/crosbytop/style.js @@ -21,11 +21,15 @@ "options": "Preferences", "memos": "Memos", "logviewer": "Pesterlogs", + "randen": "Random Encounter", "userlist": "Userlist", + "addgroup": "Add Group", + "talk": "Pester", "import": "Import", "idle": "Idle", "reconnect": "Reconnect", - "exit": "Cease"}, + "exit": "Cease", + "console": "Console"}, "profile": {"_name": "PC6.0", "switch": "Handle", "color": "Color", @@ -33,7 +37,12 @@ "block": "Blocked", "quirks": "Quirks"}, "help": { "_name": "MSPA", - "about": "About" }, + "about": "About", + "help": "Help", + "calsprite": "CalSprite", + "chanserv": "ChanServ", + "nickserv": "NickServ", + "reportbug": "Report Bug"}, "rclickchumlist": {"pester": "Pester", "removechum": "Remove", "report": "Report", @@ -43,7 +52,22 @@ "unblockchum": "Forgive", "banuser": "Expel User", "opuser": "Promote", - "quirksoff": "Quirks Off" + "quirksoff": "Quirks Off", + "notes": "Edit Notes...", + "removegroup": "Remove Group", + "renamegroup": "Rename Group", + "movechum": "Move To", + "voiceuser": "Give Voice", + "quirkkill": "Kill Quirk", + "invitechum": "Invite Chum", + "memosetting": "Memo Settings", + "memonoquirk": "Disable Quirks", + "memohidden": "Hidden", + "memoinvite": "Invite-Only", + "memomute": "Mute", + "beeponmessage": "Beep on Message", + "flashonmessage": "Flash on Message", + "mutenotifications": "Mute Notifications" } }, "chums": { "style": "border:0px; background-color: 444444; font: bold;font-family: 'Courier';selection-background-color: black; ", diff --git a/themes/danceofthorns/style.js b/themes/danceofthorns/style.js index 370d8ad..ebfc4a0 100755 --- a/themes/danceofthorns/style.js +++ b/themes/danceofthorns/style.js @@ -14,11 +14,15 @@ "options": "Options", "memos": "Cults", "logviewer": "Grimoires", + "randen": "Random Summon", "userlist": "Followers", + "addgroup": "Add Cult", + "talk": "Summon", "import": "Import", "reconnect": "Return", "idle": "Sleep", - "exit": "Exit"}, + "exit": "Exit", + "console": "Beyond The Veil"}, "profile": {"_name": "Profile", "switch": "Change", "color": "Colour", @@ -26,7 +30,12 @@ "block": "Demons", "quirks": "Quirks"}, "help": { "_name": "Help", - "about": "About" }, + "about": "About", + "help": "Help", + "calsprite": "CalSprite", + "chanserv": "ChanServ", + "nickserv": "NickServ", + "reportbug": "Report Bug"}, "rclickchumlist": {"pester": "Manifest", "removechum": "Remove Chum", "blockchum": "Block", @@ -36,7 +45,22 @@ "unblockchum": "Unblock", "banuser": "Ban User", "opuser": "Make OP", - "quirksoff": "Unfog Speech" + "quirksoff": "Unfog Speech", + "notes": "Edit Notes...", + "removegroup": "Remove Group", + "renamegroup": "Rename Group", + "movechum": "Move To", + "voiceuser": "Give Voice", + "quirkkill": "Kill Quirk", + "invitechum": "Invite Chum", + "memosetting": "Memo Settings", + "memonoquirk": "Disable Quirks", + "memohidden": "Hidden", + "memoinvite": "Invite-Only", + "memomute": "Mute", + "beeponmessage": "Beep on Message", + "flashonmessage": "Flash on Message", + "mutenotifications": "Mute Notifications" } }, "close": { "image": "$path/x.png", diff --git a/themes/enamel/style.js b/themes/enamel/style.js index 699c03d..3e55f6f 100755 --- a/themes/enamel/style.js +++ b/themes/enamel/style.js @@ -26,7 +26,8 @@ "import": "Import", "reconnect": "Reconnect", "idle": "Idle", - "exit": "Exit"}, + "exit": "Exit", + "console": "Console"}, "profile": {"_name": "Profile", "switch": "Switch", "color": "Color", @@ -36,8 +37,11 @@ "help": { "_name": "Help", "about": "About", "help": "Help", + "help": "Help", "calsprite": "CalSprite", - "nickserv": "NickServ" }, + "chanserv": "ChanServ", + "nickserv": "NickServ", + "reportbug": "Report Bug"}, "rclickchumlist": {"pester": "Pester", "removechum": "Remove Chum", "blockchum": "Block", @@ -59,7 +63,10 @@ "memonoquirk": "Disable Quirks", "memohidden": "Hidden", "memoinvite": "Invite-Only", - "memomute": "Mute" + "memomute": "Mute", + "beeponmessage": "Beep on Message", + "flashonmessage": "Flash on Message", + "mutenotifications": "Mute Notifications" } }, "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; ", diff --git a/themes/enoirmel/style.js b/themes/enoirmel/style.js index a5ba78e..983726a 100755 --- a/themes/enoirmel/style.js +++ b/themes/enoirmel/style.js @@ -19,11 +19,15 @@ "options": "Options", "memos": "Memos", "logviewer": "Memories", + "randen": "Random Encounter", "userlist": "Users", + "addgroup": "Add Group", + "talk": "Meet up", "import": "Import", "reconnect": "Reconnect", "idle": "Idle", - "exit": "Exit"}, + "exit": "Exit", + "console": "Console"}, "profile": {"_name": "Alias", "switch": "Change", "color": "Colour", @@ -31,17 +35,37 @@ "block": "Rivals", "quirks": "Quirks"}, "help": { "_name": "Assistance", - "about": "About!" }, + "about": "About!", + "help": "Help", + "calsprite": "CalSprite", + "chanserv": "ChanServ", + "nickserv": "NickServ", + "reportbug": "Report Bug"}, "rclickchumlist": {"pester": "Meet Up With", "removechum": "Remove Chum", "blockchum": "Stab", "report": "Report", "addchum": "Add Chum", "viewlog": "View Chitty", + "notes": "Edit Notes...", "unblockchum": "Unblock", + "removegroup": "Remove Group", + "renamegroup": "Rename Group", + "movechum": "Move To", "banuser": "Slay User", "opuser": "Make Sidekick", - "quirksoff": "No Frills" + "voiceuser": "Let Speak", + "quirksoff": "No Frills", + "quirkkill": "Kill Quirk", + "invitechum": "Invite Rival", + "memosetting": "Memo Settings", + "memonoquirk": "Disable Quirks", + "memohidden": "Hidden", + "memoinvite": "Invite-Only", + "memomute": "Mute", + "beeponmessage": "Beep on Message", + "flashonmessage": "Flash on Message", + "mutenotifications": "Mute Notifications" } }, "chums": { "style": "font-size: 16px; background-image:url($path/chumbg.png); background-color: #C2C4EB; background-repeat: no-repeat; font-family: 'Arial'; border: 0px; selection-background-color: #222222; color: black;", diff --git a/themes/gold/style.js b/themes/gold/style.js index 88d8633..43ec49c 100755 --- a/themes/gold/style.js +++ b/themes/gold/style.js @@ -41,7 +41,9 @@ "about": "About", "help": "Help", "calsprite": "CalSprite", - "nickserv": "NickServ" }, + "chanserv": "ChanServ", + "nickserv": "NickServ", + "reportbug": "Report Bug"}, "rclickchumlist": {"pester": "Pester", "removechum": "Remove Chum", "report": "Report", @@ -63,7 +65,10 @@ "memonoquirk": "Disable Quirks", "memohidden": "Hidden", "memoinvite": "Invite-Only", - "memomute": "Mute" + "memomute": "Mute", + "beeponmessage": "Beep on Message", + "flashonmessage": "Flash on Message", + "mutenotifications": "Mute Notifications" } }, "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; ", diff --git a/themes/jadeenamel/style.js b/themes/jadeenamel/style.js index 6e4bc2f..681efd0 100755 --- a/themes/jadeenamel/style.js +++ b/themes/jadeenamel/style.js @@ -19,11 +19,15 @@ "options": "Options", "memos": "Memos!!", "logviewer": "Memories", + "randen": "Random Encounter", "userlist": "Users", + "addgroup": "Add Group", + "talk": "Pester", "import": "Import", "reconnect": "Reconnect", "idle": "Idle", - "exit": "Exit"}, + "exit": "Exit", + "console": "Console"}, "profile": {"_name": "Profile", "switch": "Change", "color": "Colour", @@ -31,17 +35,37 @@ "block": "Meanies", "quirks": "Quirks"}, "help": { "_name": "Help??", - "about": "About!" }, + "about": "About!", + "help": "Help!!", + "calsprite": "CalSprite", + "chanserv": "ChanServ", + "nickserv": "NickServ", + "reportbug": "Report Bug"}, "rclickchumlist": {"pester": "Talk To!!", "removechum": "Remove Buddy", "blockchum": "Block", "report": "Report", "addchum": "Add Buddy", "viewlog": "View Memory!!", + "notes": "Edit Notes!!", "unblockchum": "Unblock", + "removegroup": "Remove Group", + "renamegroup": "Rename Group", + "movechum": "Move To", "banuser": "Ban User", "opuser": "Make OP", - "quirksoff": "Quirkless!!" + "quirksoff": "Quirkless!!", + "voiceuser": "Give Voice", + "quirkkill": "Kill Quirk", + "invitechum": "Invite Chum", + "memosetting": "Memo Settings", + "memonoquirk": "Disable Quirks", + "memohidden": "Hidden", + "memoinvite": "Invite-Only", + "memomute": "Mute", + "beeponmessage": "Beep on Message", + "flashonmessage": "Flash on Message", + "mutenotifications": "Mute Notifications" } }, "chums": { "style": "font-size: 16px; background-image:url($path/chumbg.png); background-color: #C2C4EB; background-repeat: no-repeat; font-family: 'Arial'; border: 0px; selection-background-color: #222222; color: black;", diff --git a/themes/johntierchum/style.js b/themes/johntierchum/style.js index beb7acf..4a53d55 100755 --- a/themes/johntierchum/style.js +++ b/themes/johntierchum/style.js @@ -17,7 +17,7 @@ "sounds": { "alertsound": "$path/alarm.wav", "ceasesound": "$path/cease.wav" }, "defaultwindow": { "style": "background: #9BC4F2; font-family:'Arial';font:bold;selection-background-color:#66A5EC; " }, - "chums": { "style": "border:2px solid rgb(0,0,0,0%); background-color: rgb(0,0,0,0%);color: black;font: bold;font-size:14px;font-family: 'Arial';selection-background-color:white; ", + "chums": { "style": "border:2px solid rgba(0,0,0,0%); background-color: rgba(0,0,0,0%);color: black;font: bold;font-size:14px;font-family: 'Arial';selection-background-color:white; ", "size": [200, 180], "loc": [233,400], "moods": { @@ -107,56 +107,56 @@ }, "defaultmood": 5, "moods": [ - { "style": "text-align:left; background:rgb(0,0,0,0);border:2px solid rgb(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", - "selected": "text-align:left; background:rgb(0,0,0,0); border:2px solid rgb(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", + { "style": "text-align:left; background:rgba(0,0,0,0);border:2px solid rgba(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", + "selected": "text-align:left; background:rgba(0,0,0,0); border:2px solid rgba(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", "loc": [302, 133], "size": [30, 30], "text": "", "icon": "$path/chummy.png", "mood": 0 }, - { "style": "text-align:left; background:rgb(0,0,0,0);border:2px solid rgb(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", - "selected": "text-align:left; background:rgb(0,0,0,0); border:2px solid rgb(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", + { "style": "text-align:left; background:rgba(0,0,0,0);border:2px solid rgba(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", + "selected": "text-align:left; background:rgba(0,0,0,0); border:2px solid rgba(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", "loc": [460, 432], "size": [30, 30], "text": "", "icon": "$path/rancorous.png", "mood": 1 }, - { "style": "text-align:left; background:rgb(0,0,0,0);border:2px solid rgb(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", - "selected": "text-align:left; background:rgb(0,0,0,0); border:2px solid rgb(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", + { "style": "text-align:left; background:rgba(0,0,0,0);border:2px solid rgba(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", + "selected": "text-align:left; background:rgba(0,0,0,0); border:2px solid rgba(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", "loc": [368, 162], "size": [30, 30], "text": "", "icon": "$path/bemused.png", "mood": 22 }, - { "style": "text-align:left; background:rgb(0,0,0,0);border:2px solid rgb(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", - "selected": "text-align:left; background:rgb(0,0,0,0); border:2px solid rgb(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", + { "style": "text-align:left; background:rgba(0,0,0,0);border:2px solid rgba(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", + "selected": "text-align:left; background:rgba(0,0,0,0); border:2px solid rgba(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", "loc": [391, 192], "size": [30, 30], "text": "", "icon": "$path/pleasant.png", "mood": 3 }, - { "style": "text-align:left; background:rgb(0,0,0,0);border:2px solid rgb(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", - "selected": "text-align:left; background:rgb(0,0,0,0); border:2px solid rgb(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", + { "style": "text-align:left; background:rgba(0,0,0,0);border:2px solid rgba(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", + "selected": "text-align:left; background:rgba(0,0,0,0); border:2px solid rgba(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", "loc": [409, 223], "size": [30, 30], "text": "", "icon": "$path/distraught.png", "mood": 4 }, - { "style": "text-align:left; background:rgb(0,0,0,0);border:2px solid rgb(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", - "selected": "text-align:left; background:rgb(0,0,0,0); border:2px solid rgb(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", + { "style": "text-align:left; background:rgba(0,0,0,0);border:2px solid rgba(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", + "selected": "text-align:left; background:rgba(0,0,0,0); border:2px solid rgba(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", "loc": [416, 260], "size": [30, 30], "text": "", "icon": "$path/pranky.png", "mood": 5 }, - { "style": "text-align:left; background:rgb(0,0,0,0);border:2px solid rgb(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", - "selected": "text-align:left; background:rgb(0,0,0,0); border:2px solid rgb(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", + { "style": "text-align:left; background:rgba(0,0,0,0);border:2px solid rgba(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", + "selected": "text-align:left; background:rgba(0,0,0,0); border:2px solid rgba(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", "loc": [412, 289], "size": [30, 30], "text": "", @@ -164,32 +164,32 @@ "mood": 6 }, - { "style": "text-align:left; background:rgb(0,0,0,0);border:2px solid rgb(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", - "selected": "text-align:left; background:rgb(0,0,0,0); border:2px solid rgb(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", + { "style": "text-align:left; background:rgba(0,0,0,0);border:2px solid rgba(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", + "selected": "text-align:left; background:rgba(0,0,0,0); border:2px solid rgba(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", "loc": [335, 145], "size": [30, 30], "text": "", "icon": "$path/amazed.png", "mood": 20 }, - { "style": "text-align:left; background:rgb(0,0,0,0);border:2px solid rgb(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", - "selected": "text-align:left; background:rgb(0,0,0,0); border:2px solid rgb(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", + { "style": "text-align:left; background:rgba(0,0,0,0);border:2px solid rgba(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", + "selected": "text-align:left; background:rgba(0,0,0,0); border:2px solid rgba(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", "loc": [265, 122], "size": [30, 30], "text": "", "icon": "$path/insolent.png", "mood": 21 }, - { "style": "text-align:left; background:rgb(0,0,0,0);border:2px solid rgb(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", - "selected": "text-align:left; background:rgb(0,0,0,0); border:2px solid rgb(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", + { "style": "text-align:left; background:rgba(0,0,0,0);border:2px solid rgba(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", + "selected": "text-align:left; background:rgba(0,0,0,0); border:2px solid rgba(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", "loc": [387, 309], "size": [30, 30], "text": "", "icon": "$path/protective.png", "mood": 18 }, - { "style": "text-align:left; background:rgb(0,0,0,0);border:2px solid rgb(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", - "selected": "text-align:left; background:rgb(0,0,0,0); border:2px solid rgb(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", + { "style": "text-align:left; background:rgba(0,0,0,0);border:2px solid rgba(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", + "selected": "text-align:left; background:rgba(0,0,0,0); border:2px solid rgba(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;", "loc": [436, 404], "size": [30, 30], "text": "", diff --git a/themes/niccage/style.js b/themes/niccage/style.js index 30df512..2c141f8 100755 --- a/themes/niccage/style.js +++ b/themes/niccage/style.js @@ -22,10 +22,12 @@ "randen": "Random Encounter", "userlist": "Userlist", "addgroup": "Add Group", + "talk": "Pester", "import": "Import", "reconnect": "Reconnect", - "idle": "Idle", - "exit": "Exit"}, + "idle": "Idle", + "exit": "Exit", + "console": "Console"}, "profile": {"_name": "Profile", "switch": "Switch", "color": "Color", @@ -36,7 +38,9 @@ "about": "About", "help": "Help", "calsprite": "CalSprite", - "nickserv": "NickServ" }, + "chanserv": "ChanServ", + "nickserv": "NickServ", + "reportbug": "Report Bug"}, "rclickchumlist": {"pester": "Pester", "removechum": "Remove Chum", "blockchum": "Block", @@ -51,7 +55,17 @@ "opuser": "Make OP", "voiceuser": "Give Voice", "quirksoff": "Quirks Off", - "invitechum": "Invite Chum" + "invitechum": "Invite Chum", + "notes": "Edit Notes...", + "quirkkill": "Kill Quirk", + "memosetting": "Memo Settings", + "memonoquirk": "Disable Quirks", + "memohidden": "Hidden", + "memoinvite": "Invite-Only", + "memomute": "Mute", + "beeponmessage": "Beep on Message", + "flashonmessage": "Flash on Message", + "mutenotifications": "Mute Notifications" } }, "chums": { "style": "font-size: 16px; background-image:url($path/chumbg.png); background-color: #C2C4EB; background-repeat: no-repeat; font-family: 'Arial'; border: 0px; selection-background-color: #222222; color: black;", diff --git a/themes/paperchum/abouticon.png b/themes/paperchum/abouticon.png index a557029..882d86d 100644 Binary files a/themes/paperchum/abouticon.png and b/themes/paperchum/abouticon.png differ diff --git a/themes/paperchum/acceptant.png b/themes/paperchum/acceptant.png index bfde18f..ff7723c 100644 Binary files a/themes/paperchum/acceptant.png and b/themes/paperchum/acceptant.png differ diff --git a/themes/paperchum/admin.png b/themes/paperchum/admin.png index d7af362..3c58b16 100644 Binary files a/themes/paperchum/admin.png and b/themes/paperchum/admin.png differ diff --git a/themes/paperchum/amazed.png b/themes/paperchum/amazed.png index b40701e..85dd15c 100644 Binary files a/themes/paperchum/amazed.png and b/themes/paperchum/amazed.png differ diff --git a/themes/paperchum/bemused.png b/themes/paperchum/bemused.png index 8dd67ec..dab5828 100644 Binary files a/themes/paperchum/bemused.png and b/themes/paperchum/bemused.png differ diff --git a/themes/paperchum/blocked.png b/themes/paperchum/blocked.png index 96b90eb..069d5bb 100644 Binary files a/themes/paperchum/blocked.png and b/themes/paperchum/blocked.png differ diff --git a/themes/paperchum/chumbg.PNG b/themes/paperchum/chumbg.PNG index a504bc4..1092ba9 100755 Binary files a/themes/paperchum/chumbg.PNG and b/themes/paperchum/chumbg.PNG differ diff --git a/themes/paperchum/chummy.png b/themes/paperchum/chummy.png index 24885b0..60121d1 100644 Binary files a/themes/paperchum/chummy.png and b/themes/paperchum/chummy.png differ diff --git a/themes/paperchum/detestful.png b/themes/paperchum/detestful.png index aaddfc1..f224772 100644 Binary files a/themes/paperchum/detestful.png and b/themes/paperchum/detestful.png differ diff --git a/themes/paperchum/devious.png b/themes/paperchum/devious.png index 637c587..3f768f1 100644 Binary files a/themes/paperchum/devious.png and b/themes/paperchum/devious.png differ diff --git a/themes/paperchum/discontent.png b/themes/paperchum/discontent.png index fd341b0..0af8f3f 100644 Binary files a/themes/paperchum/discontent.png and b/themes/paperchum/discontent.png differ diff --git a/themes/paperchum/distraught.png b/themes/paperchum/distraught.png index 56dedd9..fdf7c5e 100644 Binary files a/themes/paperchum/distraught.png and b/themes/paperchum/distraught.png differ diff --git a/themes/paperchum/downarrow.png b/themes/paperchum/downarrow.png index 5ba6b3d..07a9c28 100644 Binary files a/themes/paperchum/downarrow.png and b/themes/paperchum/downarrow.png differ diff --git a/themes/paperchum/ecstatic.png b/themes/paperchum/ecstatic.png index 3e71c53..feefe73 100644 Binary files a/themes/paperchum/ecstatic.png and b/themes/paperchum/ecstatic.png differ diff --git a/themes/paperchum/founder.png b/themes/paperchum/founder.png index 0087270..0aefc77 100644 Binary files a/themes/paperchum/founder.png and b/themes/paperchum/founder.png differ diff --git a/themes/paperchum/h.png b/themes/paperchum/h.png index 55e70d5..96ec40a 100644 Binary files a/themes/paperchum/h.png and b/themes/paperchum/h.png differ diff --git a/themes/paperchum/halfop.png b/themes/paperchum/halfop.png index 603b161..64f5416 100644 Binary files a/themes/paperchum/halfop.png and b/themes/paperchum/halfop.png differ diff --git a/themes/paperchum/handle.png b/themes/paperchum/handle.png index 289c964..ad7807c 100644 Binary files a/themes/paperchum/handle.png and b/themes/paperchum/handle.png differ diff --git a/themes/paperchum/insolent.png b/themes/paperchum/insolent.png index 355906e..5328202 100644 Binary files a/themes/paperchum/insolent.png and b/themes/paperchum/insolent.png differ diff --git a/themes/paperchum/leftarrow.png b/themes/paperchum/leftarrow.png index e10d455..eecc12b 100644 Binary files a/themes/paperchum/leftarrow.png and b/themes/paperchum/leftarrow.png differ diff --git a/themes/paperchum/m.png b/themes/paperchum/m.png index d932048..df1d51e 100644 Binary files a/themes/paperchum/m.png and b/themes/paperchum/m.png differ diff --git a/themes/paperchum/manipulative.png b/themes/paperchum/manipulative.png index 0b150cb..ca68a7a 100644 Binary files a/themes/paperchum/manipulative.png and b/themes/paperchum/manipulative.png differ diff --git a/themes/paperchum/memo.png b/themes/paperchum/memo.png index 65d6727..2e85d39 100644 Binary files a/themes/paperchum/memo.png and b/themes/paperchum/memo.png differ diff --git a/themes/paperchum/mirthful.png b/themes/paperchum/mirthful.png index 0aec772..580d30b 100644 Binary files a/themes/paperchum/mirthful.png and b/themes/paperchum/mirthful.png differ diff --git a/themes/paperchum/mystified.png b/themes/paperchum/mystified.png index 1785fd5..c03b3ab 100644 Binary files a/themes/paperchum/mystified.png and b/themes/paperchum/mystified.png differ diff --git a/themes/paperchum/offline.png b/themes/paperchum/offline.png index 5571838..ad321f3 100644 Binary files a/themes/paperchum/offline.png and b/themes/paperchum/offline.png differ diff --git a/themes/paperchum/op.png b/themes/paperchum/op.png index 4fdf9ad..780dbdc 100644 Binary files a/themes/paperchum/op.png and b/themes/paperchum/op.png differ diff --git a/themes/paperchum/othertabbg.PNG b/themes/paperchum/othertabbg.PNG index ada286f..4b1aa7d 100755 Binary files a/themes/paperchum/othertabbg.PNG and b/themes/paperchum/othertabbg.PNG differ diff --git a/themes/paperchum/paperbg.png b/themes/paperchum/paperbg.png index 3945d63..c362c94 100644 Binary files a/themes/paperchum/paperbg.png and b/themes/paperchum/paperbg.png differ diff --git a/themes/paperchum/pccool.png b/themes/paperchum/pccool.png index a7567f4..1bc7285 100644 Binary files a/themes/paperchum/pccool.png and b/themes/paperchum/pccool.png differ diff --git a/themes/paperchum/perky.png b/themes/paperchum/perky.png index a29629e..6a802ed 100644 Binary files a/themes/paperchum/perky.png and b/themes/paperchum/perky.png differ diff --git a/themes/paperchum/pleasant.png b/themes/paperchum/pleasant.png index 47781e9..65813b8 100644 Binary files a/themes/paperchum/pleasant.png and b/themes/paperchum/pleasant.png differ diff --git a/themes/paperchum/pranky.png b/themes/paperchum/pranky.png index cc198f4..4552f68 100644 Binary files a/themes/paperchum/pranky.png and b/themes/paperchum/pranky.png differ diff --git a/themes/paperchum/protective.png b/themes/paperchum/protective.png index 4b94af5..c0edeab 100644 Binary files a/themes/paperchum/protective.png and b/themes/paperchum/protective.png differ diff --git a/themes/paperchum/rancorous.png b/themes/paperchum/rancorous.png index 93e959f..be38359 100644 Binary files a/themes/paperchum/rancorous.png and b/themes/paperchum/rancorous.png differ diff --git a/themes/paperchum/relaxed.png b/themes/paperchum/relaxed.png index c62a88f..a759510 100644 Binary files a/themes/paperchum/relaxed.png and b/themes/paperchum/relaxed.png differ diff --git a/themes/paperchum/rightarrow.png b/themes/paperchum/rightarrow.png index 4a105ee..46a0619 100644 Binary files a/themes/paperchum/rightarrow.png and b/themes/paperchum/rightarrow.png differ diff --git a/themes/paperchum/scrollhandle.PNG b/themes/paperchum/scrollhandle.PNG index 02218b3..98321ab 100755 Binary files a/themes/paperchum/scrollhandle.PNG and b/themes/paperchum/scrollhandle.PNG differ diff --git a/themes/paperchum/selectedbg.PNG b/themes/paperchum/selectedbg.PNG index 87eb449..bf402e5 100755 Binary files a/themes/paperchum/selectedbg.PNG and b/themes/paperchum/selectedbg.PNG differ diff --git a/themes/paperchum/sleek.png b/themes/paperchum/sleek.png index d2ab3f2..0e43f9a 100644 Binary files a/themes/paperchum/sleek.png and b/themes/paperchum/sleek.png differ diff --git a/themes/paperchum/smooth.png b/themes/paperchum/smooth.png index 74ac873..7c422b5 100644 Binary files a/themes/paperchum/smooth.png and b/themes/paperchum/smooth.png differ diff --git a/themes/paperchum/style.js b/themes/paperchum/style.js index c7a1f0f..0b471fe 100755 --- a/themes/paperchum/style.js +++ b/themes/paperchum/style.js @@ -19,10 +19,12 @@ "randen": "Random Encounter", "userlist": "Userlist", "addgroup": "Add Group", + "talk": "Pester", "import": "Import", "reconnect": "Reconnect", "idle": "Idle", - "exit": "Log Off"}, + "exit": "Log Off", + "console": "Console"}, "profile": {"_name": " ", "switch": "Switch", "color": "Color", @@ -32,8 +34,10 @@ "help": { "_name": " ", "about": "About", "help": "Help", - "calsprite": "Calsprite", - "nickserv": "Nickserv" }, + "calsprite": "CalSprite", + "chanserv": "ChanServ", + "nickserv": "NickServ", + "reportbug": "Report Bug"}, "rclickchumlist": {"pester": "Message", "removechum": "Remove", "report": "Report", @@ -56,7 +60,10 @@ "memonoquirk": "Disable Quirks", "memohidden": "Hidden", "memoinvite": "Invite Only", - "memomute": "Mute Memo" + "memomute": "Mute Memo", + "beeponmessage": "Beep on Message", + "flashonmessage": "Flash on Message", + "mutenotifications": "Mute Notifications" } }, "close": { "image": "$path/m.png", diff --git a/themes/paperchum/tabbg.PNG b/themes/paperchum/tabbg.PNG index 8ca02a6..89f1c35 100755 Binary files a/themes/paperchum/tabbg.PNG and b/themes/paperchum/tabbg.PNG differ diff --git a/themes/paperchum/textbg.png b/themes/paperchum/textbg.png index e616876..68260fc 100644 Binary files a/themes/paperchum/textbg.png and b/themes/paperchum/textbg.png differ diff --git a/themes/paperchum/timeslider.PNG b/themes/paperchum/timeslider.PNG index 547ddec..0d7e0d4 100755 Binary files a/themes/paperchum/timeslider.PNG and b/themes/paperchum/timeslider.PNG differ diff --git a/themes/paperchum/trayicon.png b/themes/paperchum/trayicon.png index a557029..882d86d 100644 Binary files a/themes/paperchum/trayicon.png and b/themes/paperchum/trayicon.png differ diff --git a/themes/paperchum/trayicon2.png b/themes/paperchum/trayicon2.png index 4422a88..e2cd3e6 100644 Binary files a/themes/paperchum/trayicon2.png and b/themes/paperchum/trayicon2.png differ diff --git a/themes/paperchum/uparrow.png b/themes/paperchum/uparrow.png index 47ad710..992e39d 100644 Binary files a/themes/paperchum/uparrow.png and b/themes/paperchum/uparrow.png differ diff --git a/themes/paperchum/vigorous.png b/themes/paperchum/vigorous.png index 5d90354..fb5522f 100644 Binary files a/themes/paperchum/vigorous.png and b/themes/paperchum/vigorous.png differ diff --git a/themes/paperchum/voice.png b/themes/paperchum/voice.png index 3cc8461..d797064 100644 Binary files a/themes/paperchum/voice.png and b/themes/paperchum/voice.png differ diff --git a/themes/paperchum/x.png b/themes/paperchum/x.png index d2af120..f7f87b4 100644 Binary files a/themes/paperchum/x.png and b/themes/paperchum/x.png differ diff --git a/themes/pesterchum/style.js b/themes/pesterchum/style.js index 5360ab3..4c15081 100755 --- a/themes/pesterchum/style.js +++ b/themes/pesterchum/style.js @@ -66,7 +66,10 @@ "memonoquirk": "DISABLE QUIRKS", "memohidden": "HIDDEN", "memoinvite": "INVITE-ONLY", - "memomute": "MUTE" + "memomute": "MUTE", + "beeponmessage": "BEEP ON MESSAGE", + "flashonmessage": "FLASH ON MESSAGE", + "mutenotifications": "MUTE NOTIFICATIONS" } }, "chums": { "style": "border:2px solid yellow; background-color: black;color: white;font: bold;font-family: 'Courier';selection-background-color:#646464; ", diff --git a/themes/squiddlechum/style.js b/themes/squiddlechum/style.js index 9dafd0a..7e2bd96 100755 --- a/themes/squiddlechum/style.js +++ b/themes/squiddlechum/style.js @@ -21,11 +21,15 @@ "options": "Options", "memos": "Memos", "logviewer": "Pesterlogs", + "randen": "Random Encounter", "userlist": "Userlist", + "addgroup": "Add Group", + "talk": "Pester", "import": "Import", "reconnect": "Reconnect", "idle": "Idle", - "exit": "Exit"}, + "exit": "Exit", + "console": "Console"}, "profile": {"_name": "Profile", "switch": "Switch", "color": "Color", @@ -33,7 +37,12 @@ "block": "Trollslum", "quirks": "Quirks"}, "help": { "_name": "Help", - "about": "About" }, + "about": "About", + "help": "Help", + "calsprite": "CalSprite", + "chanserv": "ChanServ", + "nickserv": "NickServ", + "reportbug": "Report Bug" }, "rclickchumlist": {"pester": "Pester", "removechum": "Remove Chum", "report": "Report", @@ -43,7 +52,22 @@ "unblockchum": "Unblock", "banuser": "Ban User", "opuser": "Make OP", - "quirksoff": "Quirks Off" + "quirksoff": "Quirks Off", + "notes": "Edit Notes...", + "removegroup": "Remove Group", + "renamegroup": "Rename Group", + "movechum": "Move To", + "voiceuser": "Give Voice", + "quirkkill": "Kill Quirk", + "invitechum": "Invite Chum", + "memosetting": "Memo Settings", + "memonoquirk": "Disable Quirks", + "memohidden": "Hidden", + "memoinvite": "Invite-Only", + "memomute": "Mute", + "beeponmessage": "Beep on Message", + "flashonmessage": "Flash on Message", + "mutenotifications": "Mute Notifications" } }, "chums": { "style": "border:0px; background-color: rgb(184,136,232); background-repeat: no-repeat; color: #FFD0FA; font-family: 'Arial';selection-background-color:#646464; font-size:14px; ", diff --git a/themes/steamchum/style.js b/themes/steamchum/style.js index 6dda0fb..2320771 100755 --- a/themes/steamchum/style.js +++ b/themes/steamchum/style.js @@ -19,10 +19,12 @@ "randen": "Random Encounter", "userlist": "Userlist", "addgroup": "Add Group", + "talk": "Pester", "import": "Import", "reconnect": "Reconnect", "idle": "Idle", - "exit": "Log Off"}, + "exit": "Log Off", + "console": "Console"}, "profile": {"_name": " ", "switch": "Switch", "color": "Color", @@ -32,8 +34,10 @@ "help": { "_name": " ", "about": "About", "help": "Help", - "calsprite": "Calsprite", - "nickserv": "Nickserv" }, + "calsprite": "CalSprite", + "chanserv": "ChanServ", + "nickserv": "NickServ", + "reportbug": "Report Bug" }, "rclickchumlist": {"pester": "Message", "removechum": "Remove", "report": "Report", @@ -56,7 +60,10 @@ "memonoquirk": "Disable Quirks", "memohidden": "Hidden", "memoinvite": "Invite Only", - "memomute": "Mute Memo" + "memomute": "Mute Memo", + "beeponmessage": "Beep on Message", + "flashonmessage": "Flash on Message", + "mutenotifications": "Mute Notifications" } }, "close": { "image": "$path/m.png", diff --git a/themes/trollian/style.js b/themes/trollian/style.js index ae7c9e9..04b3de9 100755 --- a/themes/trollian/style.js +++ b/themes/trollian/style.js @@ -41,7 +41,8 @@ "help": "Help", "calsprite": "CalSprite", "chanserv": "ChanServ", - "nickserv": "NickServ" }, + "nickserv": "NickServ", + "reportbug": "Report Bug"}, "rclickchumlist": {"pester": "Troll", "removechum": "Trash", "report": "Tattle", @@ -63,7 +64,10 @@ "memonoquirk": "Disable Quirks", "memohidden": "Hidden", "memoinvite": "Invite-Only", - "memomute": "Mute" } + "memomute": "Mute", + "beeponmessage": "Beep on Message", + "flashonmessage": "Flash on Message", + "mutenotifications": "Mute Notifications" } }, "chums": { "style": "font-size: 12px; background: white; border:0px; font-family: 'Arial';selection-background-color:rgb(200,200,200); ", "scrollbar": { "style" : "background-color:#c2c2c2;", diff --git a/themes/typewriter/style.js b/themes/typewriter/style.js index 81a0e69..79cbae8 100755 --- a/themes/typewriter/style.js +++ b/themes/typewriter/style.js @@ -25,10 +25,12 @@ "randen": "Random Encounter", "userlist": "Userlist", "addgroup": "Add Group", + "talk": "Converse", "import": "Import", - "idle": "Idle", - "reconnect": "Reconnect", - "exit": "Cease"}, + "idle": "Idle", + "reconnect": "Reconnect", + "exit": "Cease", + "console": "Console"}, "profile": {"_name": "Ink", "switch": "Alias", "color": "Ink Color", @@ -39,7 +41,9 @@ "about": "About", "help": "Assistance", "calsprite": "CalSprite", - "nickserv": "NickServ" }, + "chanserv": "ChanServ", + "nickserv": "NickServ", + "reportbug": "Report Bug" }, "rclickchumlist": {"pester": "Converse", "removechum": "Erase User", "report": "Report User", @@ -61,7 +65,10 @@ "memonoquirk": "Disable Quirks", "memohidden": "Hidden", "memoinvite": "Invite-Only", - "memomute": "Mute" + "memomute": "Mute", + "beeponmessage": "Beep on Message", + "flashonmessage": "Flash on Message", + "mutenotifications": "Mute Notifications" } }, "chums": { "style": "border:0px; background-color: white; font: bold;font-family: 'Courier';selection-background-color: black; ",