Added a Changelog to allow for attribution and to show new features.
Added some descriptions of new features to readme.
This commit is contained in:
parent
403b3ca697
commit
852e4f1034
2 changed files with 70 additions and 19 deletions
16
CHANGELOG.mkdn
Normal file
16
CHANGELOG.mkdn
Normal file
|
@ -0,0 +1,16 @@
|
|||
Pesterchum 3.14
|
||||
===============
|
||||
|
||||
Visit http://nova.xzibition.com/~illuminatedwax/help.html for tutorial.
|
||||
|
||||
Visit https://github.com/illuminatedwax/pesterchum for git access and source code.
|
||||
|
||||
CHANGELOG
|
||||
---------
|
||||
### 3.14b (idk on version number scheme)
|
||||
* Quirks lower() function - Kiooeht [evacipatedBox]
|
||||
* Quirks scrabble() function - Kiooeht [evacipatedBox]
|
||||
* Timestamps - Kiooeht [evacipatedBox]
|
||||
* Logviewer - Kiooeht [evacipatedBox]
|
||||
* Chum list groups - Kiooeht [evacipatedBox]
|
||||
* Chum list bug fixes - Kiooeht [evacipatedBox]
|
35
readme.txt
35
readme.txt
|
@ -36,11 +36,15 @@ style.js file will be documented soon, but feel free to poke at it.
|
|||
allow you to appear at multiple times in one chat.
|
||||
- Quirks: Prefix, suffix, simple replace, regexp replace (like in
|
||||
2.5), random replacement, and an auto-mispeller :P
|
||||
- Chum groups. Organize your chums into collapsible groups for easy
|
||||
management.
|
||||
- Block/user list
|
||||
- Add/block chums directly from a conversation, the userlist, or memo
|
||||
userlist.
|
||||
- Timestamps saved in logs and shown in conversations if wanted.
|
||||
- Logging. Logs are output in bbcode (for easy forum posting), html,
|
||||
and plain text.
|
||||
- Logviewer for easy log reading inside Pesterchum
|
||||
- Idling. You can set yourself idle manually, and the computer will
|
||||
set it for you after 10 minutes.
|
||||
- Improved /me. Any letters immediately following /me will be
|
||||
|
@ -226,6 +230,15 @@ Sounds On: Uncheck to shut it the fuck up.
|
|||
Hide Offline Chums: Turning this option on will hide all offline chums
|
||||
off your chumroll.
|
||||
|
||||
Show Empty Groups: Turning this option of will show empty groups.
|
||||
|
||||
Time Stamps: Turning this on will show timestamps in your chats.
|
||||
|
||||
12/24 hour: Formatting for timestamps. Whether you want them in 12 or
|
||||
24 hour time.
|
||||
|
||||
Show Seconds: Turning this on will show the seconds in your timestamps.
|
||||
|
||||
MEMOS: Opens the Memo list as above.
|
||||
|
||||
USERLIST: Shows a list of all the users that are currently logged onto
|
||||
|
@ -385,6 +398,28 @@ either "a" or "A" will be matched and replaced with "4," and likewise,
|
|||
"i" and "I" will be replaced with "1", and "e" and "E" will be
|
||||
replaced with "3."
|
||||
|
||||
Just like there is an "upper()" function, there is also a "lower()"
|
||||
function. It acts just like "upper()" but instead makes everything
|
||||
inside the parentheses lowercase. This allows you to do things like:
|
||||
|
||||
Regexp: "(.)" Replace with: "lower(\1)"
|
||||
You type: "I AM YELLING"
|
||||
Result:
|
||||
GD: i am yelling
|
||||
|
||||
Along with the upper and lower functions is a "scramble()" function.
|
||||
The purpose of this function is to randomly scramble anything inside
|
||||
the parentheses.
|
||||
|
||||
Regexp: "(\w)(\w*)(\w)" Replace with: "\1scramble(\2)\3"
|
||||
You type: "hello there"
|
||||
Result:
|
||||
GD: hlelo trhee
|
||||
|
||||
This particular regular expression scrambles all of the letters in
|
||||
the middle of a word. Notice that the "h" and "o" at the beginning
|
||||
and end of hello remain in place while the other letters are scrambled.
|
||||
|
||||
You should also know that "^" is a special character in brackets. If
|
||||
placed immediately after the opening bracket (like "[^"), then the
|
||||
brackets instead match every character *except* the ones in the
|
||||
|
|
Loading…
Reference in a new issue