Skip to content

Commit 5caf25a

Browse files
authored
Merge pull request #3 from AttorneyOnline/2.3
2.3
2 parents 1ebb079 + 559ff78 commit 5caf25a

39 files changed

+3978
-478
lines changed

.eslintrc.js

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
module.exports = {
2+
"env": {
3+
"browser": true,
4+
"es6": true,
5+
"jquery": true
6+
},
7+
"extends": "eslint:recommended",
8+
"parserOptions": {
9+
"ecmaVersion": 2016,
10+
"sourceType": "module"
11+
},
12+
"rules": {
13+
"indent": [
14+
"error",
15+
"tab"
16+
],
17+
"linebreak-style": [
18+
"off"
19+
],
20+
"quotes": [
21+
"warn",
22+
"double"
23+
],
24+
"semi": [
25+
"error",
26+
"always"
27+
],
28+
"no-console": [
29+
"off"
30+
],
31+
"no-unused-vars": [
32+
"warn"
33+
],
34+
}
35+
};

README.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
# Attorney Online Web Client
22

3-
Guide: https://docs.google.com/document/d/1X4OjG0tfoTZayqY9MM6fqzL_aGMKFAECg7NSQRYafAU/edit
3+
webAO client only features:
4+
- BBcode
5+
- Client side encoding-decoding (Unicode escape/UTF-16 array)
6+
- Location (spilt from music list)
7+
- Change background UI via menu
8+
9+
Planned features:
10+
- Record testimony on client side (Judge role)
11+
- Play testimony during cross-examination
12+
- Defense, prosecution and judge can skip testimony message.(forward/backward)
13+
- Show Guilty/Not Guilty message (Judge role)
14+
15+
Link to the client in this repo: http://attorneyonline.000webhostapp.com
16+
17+
Guide to installing it locally: https://docs.google.com/document/d/1X4OjG0tfoTZayqY9MM6fqzL_aGMKFAECg7NSQRYafAU/edit
418

519
This is a client for the Attorney Online roleplaying chatroom written in HTML and Javascript.
6-
It works with the serverD software when the server has WebSockets enabled.
20+
It works with the tsuserver3/serverD software when the server has WebSockets enabled.

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
{
22
"name": "webao",
3-
"version": "2.1.1",
3+
"version": "2.3.0",
44
"description": "Web-based Attorney Online client",
55
"main": "client.js",
66
"scripts": {
7-
"babel": "babel ui.js -o ui.b.js",
87
"webpack": "webpack",
98
"deploy": "cross-env NODE_ENV=production webpack -p",
109
"test": "echo \"Error: no test specified\" && exit 1"

0 commit comments

Comments
 (0)