aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUnknown2018-04-07 21:37:13 +0100
committerUnknown2018-04-07 21:37:13 +0100
commitb6fc6599a465d8d2a27eeb43a7e6b8e5ad9fb496 (patch)
tree51b5b1559c08e8951d148d1e2f228dc20b30b80c
parente8557e7fd10d9ffa8ae180d5e6bf90721b408829 (diff)
change motd to msg, add description to readme.md
-rw-r--r--README.md1
-rw-r--r--pkg93.js2
2 files changed, 2 insertions, 1 deletions
diff --git a/README.md b/README.md
index 76bd557..4d4c35f 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,5 @@
# pkg93
+A package manager for Windows 93!
## Installation
Install the userscript in this repository named "inject.user.js".
diff --git a/pkg93.js b/pkg93.js
index 62f759d..fa6e3ba 100644
--- a/pkg93.js
+++ b/pkg93.js
@@ -72,7 +72,7 @@ var pkg93 = {
request.send(null);
var json = JSON.parse(request.responseText);
$log("<b><span style='color:#0f0'>NAME</span></b> " + json.name);
- $log("<b><span style='color:#0f0'>MOTD</span></b> \"" + json.motd + "\"");
+ $log("<b><span style='color:#0f0'>MSG</span></b> \"" + json.motd + "\"");
json.packages.forEach(function(item) {
try {
$log("<b><span style='color:#0f0'>OK</span></b> " + item + "@" + source);