Skip to content

Commit 0591367

Browse files
committed
updates to various files and structures; preparing for new release
1 parent 8e133cb commit 0591367

10 files changed

+92
-8
lines changed

CHANGELOG.md

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,27 @@
1-
# Changelog for The New MOO Programming Guide
1+
# Changelog for LambdaMOO Programming Repository
22

3-
## [0.4] - 2017.01.26 5:28PM
3+
## [0.5] - 2018.01.31 4:30PM
4+
5+
### Updated
6+
* Naming of various files
7+
* Updated License year
8+
9+
### Added
10+
* Markdown versions of all files
11+
* HTML for yibs was run through an HTML tidier
12+
* <object> removed from yibs tutorial as it was breaking markdown conversion
13+
* Updates to README (index, better information on repo)
14+
* Repository renamed to lambda-moo-programming
15+
* Added directory structure with tutorials and tutorials/src
16+
* Organized files
17+
18+
## [0.4] - 2018.01.26 5:28PM
419

5-
### Fixed
620
### Added
721
* Finished adding all functions to moo.html
822

923
## [0.3] - 2018.01.25 1:56PM
1024

11-
### Fixed
1225
### Added
1326
* Added dark-sleep tutorial
1427
* Added hacking lambda moo server tutorial
@@ -21,8 +34,6 @@
2134

2235
## [0.2] - 2018.01.22 5:00PM
2336

24-
### Fixed
25-
2637
### Added
2738
* lisdude web resource
2839
* changelog.md
@@ -35,6 +46,7 @@
3546

3647
## [0.1] - 2016.09.13 5:35PM
3748

49+
### Added
3850
* Initial Release
3951
* HTML5 Conversion
4052
* Table of Contents

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2016 Brendan
3+
Copyright (c) 2018 Brendan Butts
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 73 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,79 @@ The LambdaMOO Programmer's Manual is an updated and expanded version of the Lamb
1515
To use this guide you simply need to open [MOO Programmer's Manual](/tutorials/moo-programmers-manual-updated.md). This version of the MOO Programmer's Manual lacks much of the formatting that the HTML5 version below has. It is great for quick perusal, but the HTML version is superior.
1616

1717
#### Locally
18-
To use this guide locally you simply need clone it and open [/tutorials/src/moo-programmers-manual-updated](/tutorials/src/moo-programmers-manual-updated.html) in your web browser.
18+
To access this file locally you simply need clone the repository and open [/tutorials/src/moo-programmers-manual-updated.html](/tutorials/src/moo-programmers-manual-updated.html) in your web browser.
19+
20+
### Yib's Pet Rock
21+
A great first introduction to Lambda MOO programming.
22+
23+
#### On GitHub
24+
To use this guide you simply need to open [Yib's Pet Rock](/tutorials/yibs-pet-rock.md).
25+
26+
#### Locally
27+
To access this file locally you simply need clone the repository and open [/tutorials/src/yibs-pet-rock-non-html5.html](/tutorials/src/yibs-pet-rock-non-html5.html) in your web browser.
28+
29+
### Hacking LambdaMOO Server
30+
This document walks you through what happens when a connection is made to the Lambda MOO server.
31+
32+
#### On GitHub
33+
To use this guide you simply need to open [Hacking LambdaMOO Server](/tutorials/hacking-lambda-moo-server.md).
34+
35+
#### Locally
36+
To access this file locally you simply need clone the repository and open [/tutorials/src/hacking-lambda-moo-server-non-html5.html](/tutorials/src/hacking-lambda-moo-server-non-html5.html) in your web browser.
37+
38+
### Lambda MOO Background Information
39+
This document contains background information on what LambdaMOO is in relation to other servers and languages.
40+
41+
#### On GitHub
42+
To use this guide you simply need to open [Lambda MOO Background](/tutorials/lambda-moo-background.md).
43+
44+
#### Locally
45+
To access this file locally you simply need clone the repository and open [/tutorials/src/lambda-moo-background-non-html5.html](/tutorials/src/lambda-moo-background-non-html5.html) in your web browser.
46+
47+
### Nodak.edu Lambda MOO Programming
48+
This document contains information on Lambda MOO programming. It is a short and somewaht technical document without much background information.
49+
50+
#### On GitHub
51+
To use this guide you simply need to open [Lambda MOO Nodak Edu](/tutorials/lambda-moo-nodak-edu.md).
52+
53+
#### Locally
54+
To access this file locally you simply need clone the repository and open [/tutorials/src/lambda-moo-programming-tutorial-nodak-edu-non-html5.html](/tutorials/src/lambda-moo-programming-tutorial-nodak-edu-non-html5.html) in your web browser.
55+
56+
### LambdaMOO Programming Tutorial (Steven Owens)
57+
This is an excellent guide, the most complete one I've seen aside from the original Lambda MOO Programmer's Manual. It was written, as the title states, by Steven J. Owens.
58+
59+
#### On GitHub
60+
To use this guide you simply need to open [LambdaMOO Programming Tutorial by Steven Owens](/tutorials/lambda-moo-steven-owens-guide.md).
61+
62+
#### Locally
63+
To access this file locally you simply need clone the repository and open [/tutorials/src/dark-sleep-lambdamoo-programming-tutorial-non-html5.html](/tutorials/src/dark-sleep-lambdamoo-programming-tutorial-non-html5.html) in your web browser.
64+
65+
### Colin's Way Easy Intro Guide to MOO Programming
66+
A good introduction to MOO programming. This guide gets you through all the basics.
67+
68+
#### On GitHub
69+
To use this guide you simply need to open [Colin's Way Easy Intro Guide to MOO Programming](/tutorials/lambda-moo-way-easy.md).
70+
71+
#### Locally
72+
To access this file locally you simply need clone the repository and open [/tutorials/src/way-easy-moo-programming-guide-non-html5.html](/tutorials/src/way-easy-moo-programming-guide-non-html5.html) in your web browser.
73+
74+
### Winding Duck
75+
Winding Duck MOO Programmer's Tutorial walks you through, step by step, how to create some simple code, then make it progressively more complicated.
76+
77+
#### On GitHub
78+
To use this guide you simply need to open [Winding Duck](/tutorials/winding-duck.md).
79+
80+
#### Locally
81+
To access this file locally you simply need clone the repository and open [/tutorials/src/winding-duck-non-html5.html](/tutorials/src/winding-duck-non-html5.html) in your web browser.
82+
83+
### MOO Programming Tips
84+
This looks like it was a guide created for a specific MOO but it has some tips that those new to MOO might find useful.
85+
86+
#### On GitHub
87+
To use this guide you simply need to open [MOO Programming Tips](/tutorials/zompost-moo-help.md).
88+
89+
#### Locally
90+
To access this file locally you simply need clone the repository and open [/tutorials/src/zompost-moo-help-non-html5.html](/tutorials/src/zompost-moo-help-non-html5.html) in your web browser.
1991

2092
## Cloning this Repository
2193
```bash
File renamed without changes.

0 commit comments

Comments
 (0)