Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extend MapToolScriptTokenMaker #241

Merged
merged 5 commits into from Feb 14, 2019
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 8 additions & 10 deletions .gitignore
@@ -1,8 +1,3 @@
.gradle
build/
/bin/


# OS generated files
################################################################################
.DS_Store
Expand All @@ -17,13 +12,17 @@ Thumbs.db

# Others
################################################################################
*.log
*~
target/
.gradle
build/
/bin/
target/
out/
/releases/
*.log
*~
\${sys:appHome}/


# Automatically Generated
################################################################################
package/windows/MapTool.iss
Expand All @@ -43,5 +42,4 @@ src/main/resources/sentry.properties
workbench.xmi

# Keystore
build-resources/rptools-keystore
/releases/
build-resources/rptools-keystore
4 changes: 4 additions & 0 deletions CHANGE_LOG.md
Expand Up @@ -59,6 +59,8 @@ A new shift+ctrl+spacebar command along with a new pointer image is now availabl
* New function getEnvironmentVariable(String name), Returns the value stored in the Environment Variable.
* New menu option added to the "Connections" window. Right clicking a player will offer a "Whisper" command that prepopulates the chat window with a whisper macro.
* [#237][i237] - Added support to use shift-enter to insert newlines into the command entry box (also known as the chat entry box)
* [#239][i239] - MapToolScriptTokenMaker now handles function names with . notation and dynamically pulls in all functions names. TokenMakerMaker no longer needs to be ran upon changes to MTScript.
* [#240][i240] - Macro Editor now has Auto-Completion for macro functions! A brief description and summary can be displayed (these will be added as time permits)

[i113]: https://github.com/JamzTheMan/MapTool/issues/113
[i108]: https://github.com/JamzTheMan/MapTool/issues/108
Expand Down Expand Up @@ -101,3 +103,5 @@ A new shift+ctrl+spacebar command along with a new pointer image is now availabl
[i59]: https://github.com/JamzTheMan/MapTool/issues/59
[i125]: https://github.com/JamzTheMan/MapTool/issues/125
[i237]: https://github.com/RPTools/maptool/issues/237
[i239]: https://github.com/RPTools/maptool/issues/239
[i240]: https://github.com/RPTools/maptool/issues/240