-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from AttorneyOnline/2.3
2.3
- Loading branch information
Showing
39 changed files
with
3,978 additions
and
478 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
module.exports = { | ||
"env": { | ||
"browser": true, | ||
"es6": true, | ||
"jquery": true | ||
}, | ||
"extends": "eslint:recommended", | ||
"parserOptions": { | ||
"ecmaVersion": 2016, | ||
"sourceType": "module" | ||
}, | ||
"rules": { | ||
"indent": [ | ||
"error", | ||
"tab" | ||
], | ||
"linebreak-style": [ | ||
"off" | ||
], | ||
"quotes": [ | ||
"warn", | ||
"double" | ||
], | ||
"semi": [ | ||
"error", | ||
"always" | ||
], | ||
"no-console": [ | ||
"off" | ||
], | ||
"no-unused-vars": [ | ||
"warn" | ||
], | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,20 @@ | ||
# Attorney Online Web Client | ||
|
||
Guide: https://docs.google.com/document/d/1X4OjG0tfoTZayqY9MM6fqzL_aGMKFAECg7NSQRYafAU/edit | ||
webAO client only features: | ||
- BBcode | ||
- Client side encoding-decoding (Unicode escape/UTF-16 array) | ||
- Location (spilt from music list) | ||
- Change background UI via menu | ||
|
||
Planned features: | ||
- Record testimony on client side (Judge role) | ||
- Play testimony during cross-examination | ||
- Defense, prosecution and judge can skip testimony message.(forward/backward) | ||
- Show Guilty/Not Guilty message (Judge role) | ||
|
||
Link to the client in this repo: http://attorneyonline.000webhostapp.com | ||
|
||
Guide to installing it locally: https://docs.google.com/document/d/1X4OjG0tfoTZayqY9MM6fqzL_aGMKFAECg7NSQRYafAU/edit | ||
|
||
This is a client for the Attorney Online roleplaying chatroom written in HTML and Javascript. | ||
It works with the serverD software when the server has WebSockets enabled. | ||
It works with the tsuserver3/serverD software when the server has WebSockets enabled. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.