Skip to content

Commit e38d107

Browse files
committed
- Version 2!
- Converted to TS build - Removed jQuery, added BootStrap - UI change to match my other apps (ArchMatCounter, SerenTracker) - Save data format update. - Edit mode removed for now. Will re-add if there is enough demand for it. - Added some additional ChatReader settings to (hopefully) better parse materials. - NOTE: There is still an issue where ChatBoxReader stops reading when there is a double-space. - Added chat history to better prevent duplicate entries - Will now grab materials from the wiki, adding new ones automatically when added to the wiki. - Added test images and function, acccessed by TestApp.runTests();
1 parent d85fdc6 commit e38d107

22 files changed

+774
-871
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
dist
2+
package-lock.json
3+
node_modules

css/nis.css

-142
This file was deleted.

css/style.css

-80
This file was deleted.

index.html

-69
This file was deleted.

package.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"scripts": {
3+
"build": "webpack",
4+
"watch": "webpack --watch"
5+
},
6+
"dependencies": {
7+
"alt1": "^0.0.9"
8+
},
9+
"devDependencies": {
10+
"@types/node": "^12.12.54",
11+
"css-loader": "^7.1.2",
12+
"gh-pages": "^6.2.0",
13+
"sharp": "^0.31.3",
14+
"style-loader": "^4.0.0",
15+
"ts-loader": "^9.3.1",
16+
"typescript": "^5.1.3",
17+
"webpack": "^5.65.0",
18+
"webpack-cli": "^4.8.0"
19+
}
20+
}

0 commit comments

Comments
 (0)