-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from 11BelowStudio/develop
Version 1.2.0!
- Loading branch information
Showing
11 changed files
with
151 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,7 @@ jobs: | |
uses: 1arp/[email protected] | ||
# see https://github.com/marketplace/actions/create-a-file | ||
with: | ||
path: 'src/resources' | ||
path: './' | ||
isAbsolutePath: false | ||
file: 'version.txt' | ||
content: ${{ env.mfile_version }} | ||
|
@@ -60,7 +60,7 @@ jobs: | |
- uses: ncipollo/release-action@v1 | ||
# see https://github.com/marketplace/actions/create-release | ||
with: | ||
artifacts: "build/MUDKIP_Mud2.mpackage,src/resources/version.txt" | ||
artifacts: "build/MUDKIP_Mud2.mpackage,version.txt" | ||
allowUpdates: true | ||
bodyFile: "./README.md" | ||
tag: ${{ env.mfile_version }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{ | ||
"package": "MUDKIP_Mud2", | ||
"version": "1.1.2", | ||
"version": "1.2.0", | ||
"author": "11BelowStudio", | ||
"title": "Multi User Dungeon Kool Informational Panels (for playing MUD2 with Mudlet)", | ||
"title": "Multi User Dungeon Kool Informational Package (for playing MUD2 with Mudlet)", | ||
"outputFile": true, | ||
"icon": "mudkip.png" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{ | ||
"package": "MUDKIP_Mud2", | ||
"version": "1.1.2", | ||
"version": "1.2.0", | ||
"author": "11BelowStudio", | ||
"title": "Multi User Dungeon Kool Informational Panels (for playing MUD2 with Mudlet)", | ||
"title": "Multi User Dungeon Kool Informational Package (for playing MUD2 with Mudlet)", | ||
"outputFile": true, | ||
"icon": "mudkip.png" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
-- this alias is used to send emotes like 'laugh' when you accidentally send 'laughs' instead | ||
if MUDKIP_Mud2:isInGame() then | ||
--send(matches.emote) -- matches.namedGroup doesn't work for aliases for some reason. | ||
send(matches[2]) -- this does seem to work. weird. | ||
else | ||
-- sends command as-is if you're not in-game | ||
send(command) | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
if MUDKIP_Mud2:isInGame() then | ||
local dword = MUDKIP_Mud2:getDreamword() | ||
if dword ~= "" then | ||
send('say ' .. string.upper(dword)) | ||
MUDKIP_Mud2:clearDreamword() | ||
else | ||
MUDKIP_Mud2:mcecho("Cannot say an unknown dreamword!","warn") | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters