Skip to content

Commit 542fb94

Browse files
authored
Release v0.2.0-beta (#69)
* Add Status Enfer Badge * Fix typo * Add vscode * Add GMCP Room Name Detection when a new room is detected by the exit trigger, set the room name via GMCP * Remove deprecated room name_search function There is no longer a need to parse through text lines looking for the room name, so handle_exits is no longer calling this function. * Add name_search debug tracer in the event that name_search is being called elsewhere than handle_exits, this will throw the debug echo to announce the occurance. * Add comment where initial create_room is called * Remove Exit Detection trigger short exits and exit stubs can be set internally * Remove custom_locator script getRoomIDbyHash(gmcp.room.info.identifier) can happen with check_room or fine_me or somewhere like that -- maybe even just right there in handle_exits. * Disable external short exits I already removed the call to this function, so it's no longer needed. I don't believe it was called anywhere else. * Disable room creation on move_map custom_locator is no longer used for grabbing roomID hash * Add GMCP identifier to check_room function this is where Jor'Mox may have been having problems * Remove room name matching from check_room function GMCP identifier is unique for each room whereas room names (even gmcp.room.info.name) are not. * Clarify it is roomID that's being checked * Add stop for extraneous room creation It should only create rooms if there is no roomID in the table for any given GMCP hash sent by the server (== -1) * Add GMCP Room Identifier Hashing for new rooms * Update to v0.1.4 * Add ASCII Help Banner * Add ASCII Help Banner * Remove Generic Map Script title * Revert "Remove Generic Map Script title" This reverts commit 41bd0a9. * Revert "Add ASCII Help Banner" This reverts commit 6c18677. * Revert "Add ASCII Help Banner" This reverts commit 17a3119. * Add ASCII Help Title * Update Help Intro text * feat(help): Change color from cyan to green * chore: Move VSC setting out of root * feat(help): Change link color to green * feat(help): Change overview text to DimGrey * fix(help): Add DimGrey to wrapped lines in overview `map.help` color is <reset> on newline so commit 465cd96 was incomplete. * feat(help): Change Key Variables color to green in overview * fix(help): Remove capitalization of color <green> ANSI color names are case sensitive * feat(help): Change heading color to white * revert(help): Reset subheading text color * fix(help): Center ASCII logo * feat(help): Add Map Help title * feat(help): Colorize `map help` command in overview * docs(help): Word choice Are there commands that are not included? 😉 * docs(readme): Update Project Status to Ventis * docs(help): Update Quick Start Guide - Discworld-specific language - Grammar, clarity, and economy of word - Color theme * feat(ui): Update mapper tag * feat(ui): Update debug tag * feat(ui): Update error tag * feat(help): White Headings * feat(help): Replace yellow with green * fix(help): Typo in map path * Create .travis.yml * Create discMapper.rockspec * Delete discMapper.rockspec * chore(travis): Update and move to root * Use minimal language * Add Travis Badge * Fix Travis badge * Add comment * Ignore .vscode entirely For some unknown reason, the template from [gitignore.io](https://gitignore.io) excludes several files within the .vscode directory... which defeats `.vscode/*`. I've rmeoved those exclusions and also explicitly ignored the folder itself. * Advance version to 0.2.0-beta
1 parent f135c20 commit 542fb94

File tree

5 files changed

+350
-370
lines changed

5 files changed

+350
-370
lines changed

.github/.vscode/settings.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"conventionalCommits.scopes": [
3+
"help"
4+
]
5+
}

.gitignore

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,18 @@ $RECYCLE.BIN/
6565
# Windows shortcuts
6666
*.lnk
6767

68-
# End of https://www.toptal.com/developers/gitignore/api/windows
68+
# End of https://www.toptal.com/developers/gitignore/api/windows
69+
70+
# Created by https://www.toptal.com/developers/gitignore/api/visualstudiocode
71+
# Edit at https://www.toptal.com/developers/gitignore?templates=visualstudiocode
72+
73+
### VisualStudioCode ###
74+
.vscode/
75+
.vscode/*
76+
*.code-workspace
77+
78+
### VisualStudioCode Patch ###
79+
# Ignore all local history of files
80+
.history
81+
82+
# End of https://www.toptal.com/developers/gitignore/api/visualstudiocode

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# totally useless - just learning
2+
language: minimal
3+
os: linux
4+
dist: xenial

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
<!-- PROJECT BADGES -->
1212

13+
![Travis (.com) branch](https://img.shields.io/travis/com/iLPdev/discMapper/develop?style=flat-square)
1314
[![Contributors][contributors-shield]][contributors-url]
1415
[![Forks][forks-shield]][forks-url]
1516
[![Stargazers][stars-shield]][stars-url]
@@ -61,7 +62,7 @@ Unfortunately, it was soon realized that cleanly installing this initial version
6162

6263
Having a wealth of various IT-related and HTML/CSS development experience but virtually no experience in modern software development, frustration has (mostly) been overcome by an eagerness to learn and true enjoyment of the process -- especially the Mudlet community (see [Acknowledgments](#acknowledgements)). discMapper was open-sourced upon conception.
6364

64-
Obviously, this repo started with a [README-first approach](https://tom.preston-werner.com/2010/08/23/readme-driven-development.html) toward trying to conceptualize how best to go about this project. Also, in the course of producing a beta release, work is being conducted to climb the learning curve of Git, GitHub, software development prcesses, and the Lua language.
65+
Obviously, this repo started with a [README-first approach](https://tom.preston-werner.com/2010/08/23/readme-driven-development.html) toward trying to conceptualize how best to go about this project. Also, in the course of producing a beta release, work is being conducted to climb the learning curve of Git, GitHub, software development processes, and the Lua language.
6566

6667
### Vision
6768

@@ -92,6 +93,8 @@ Version numbering will approximate the [Semantic Versioning](http://semver.org)
9293
<!-- Show the build status if you have a CI server:
9394
Describe the current release and any notes about the current state of the project. Examples: currently compiles on your host machine, but is not cross-compiling for ARM, APIs are not set, feature not implemented, etc. -->
9495

96+
[![Status Ventis][status-ventis]][andivionian-status-classifier]
97+
9598
This fledgling project is under initial development. As such, the script is non-functional at this time and in need of continued development.
9699

97100
**[^Top](#table-of-contents)**
@@ -257,5 +260,7 @@ The expectation is that our community group acts according to these guidelines,
257260
[license-url]: https://github.com/iLPdev/discMapper/blob/master/LICENSE.txt
258261
[standard-readme-shield]: https://img.shields.io/badge/readme%20style-standard-brightgreen.svg?style=flat-square
259262
[standard-readme-url]: https://github.com/RichardLitt/standard-readme
263+
[andivionian-status-classifier]: https://github.com/ForNeVeR/andivionian-status-classifier#status-ventis-
264+
[status-ventis]: https://img.shields.io/badge/status-ventis-yellow.svg
260265
[product-screenshot]: images/screenshot.png
261266
[mudlet-url]: https://www.mudlet.org

0 commit comments

Comments
 (0)