-
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.
- Loading branch information
0 parents
commit 25ec197
Showing
23 changed files
with
2,532 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
README.md merge=ours | ||
|
||
.gitattributes export-ignore | ||
.gitignore export-ignore | ||
LICENSE.md export-ignore | ||
README.md export-ignore | ||
/.github export-ignore | ||
/docs export-ignore |
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,65 @@ | ||
# GENERAL # | ||
########### | ||
|
||
# Ignore everything in root | ||
/* | ||
|
||
# Allow specified directories and their subdirectories | ||
!/.github/ | ||
!/Menu/ | ||
!/Tool/ | ||
!/ScriptResources/ | ||
!/Utility/ | ||
!/Modules/ | ||
|
||
# Ignore everything within allowed directories | ||
/.github/* | ||
/Menu/* | ||
/Menu/- Lost Scripts/* | ||
/Tool/* | ||
/ScriptResources/* | ||
/Utility/* | ||
/Modules/* | ||
|
||
# Unignore specific files after unignoring their directories | ||
!.gitattributes | ||
!.gitignore | ||
!LICENSE.md | ||
!README.md | ||
#!/.github/docs/ | ||
#!/.github/README.md | ||
!/docs | ||
!/Menu/ls_separator.lua | ||
!/Menu/- Lost Scripts/ | ||
!/Menu/- Lost Scripts/ls_webpage.lua | ||
!/ScriptResources/ls/ | ||
!/Tool/_tool_list_ls.txt | ||
!/Utility/ls_utilities.lua | ||
!/Modules/ls_modules.lua | ||
|
||
|
||
# Ignore folders starting with... | ||
#/ls_*/ | ||
# Ignore files starting with... | ||
#ls_* | ||
# Ignore all starting with... | ||
#ls_ | ||
|
||
# PATHS # | ||
######### | ||
|
||
|
||
|
||
# FOLDERS # | ||
########### | ||
|
||
#Modules/ | ||
|
||
# FILE TYPES # | ||
############## | ||
|
||
|
||
|
||
# FILES # | ||
######### | ||
|
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,24 @@ | ||
Copyright © 2022-2024, Rai López <rai.lopez@outlook.com>. All Rights Reserved. | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this Lost Scripts™ project and its associated documentation files (the | ||
"Software") to use it for personal and commercial purposes, including the | ||
rights to copy and modify the Software, provided that: | ||
|
||
* The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
* The distribution, publication, sublicensing, and/or sale of the Software, | ||
are strictly prohibited without express permission from the copyright holder. | ||
|
||
* Derivative works may be distributed or sold under licensee's own terms, | ||
provided that such works do not contain the original Software in its entirety | ||
and they will not overwrite any part of the Software upon coexisting public | ||
installations (e.g., for using "LS" instead of licensee's own identifier). | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION, USE OR OTHER DEALINGS IN THE SOFTWARE. |
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,54 @@ | ||
-- ************************************************** | ||
-- Provide Moho with the name of this script object | ||
-- ************************************************** | ||
|
||
ScriptName = "LS_Webpage" | ||
|
||
-- ************************************************** | ||
-- General information about this script | ||
-- ************************************************** | ||
|
||
LS_Webpage = {} | ||
|
||
--LS_Webpage.BASE_STR = 2480 | ||
|
||
function LS_Webpage:Name(n) --name, ID | ||
return ({"Lost Scripts Webpage", "LS_Webpage"})[n or 1] | ||
end | ||
|
||
function LS_Webpage:Version() | ||
return "0.0.1" | ||
end | ||
|
||
function LS_Webpage:Description() | ||
return "Lost Scripts Webpage Direct Link" | ||
end | ||
|
||
function LS_Webpage:Creator() | ||
return "Rai López" | ||
end | ||
|
||
function LS_Webpage:UILabel() | ||
return "Lost Scripts Webpage..." --"- Tag Scripts Webpage..." -- - Tags Webpage... --🌐 | ||
end | ||
|
||
-- ************************************************** | ||
-- The guts of this Script | ||
-- ************************************************** | ||
|
||
function LS_Webpage:IsEnabled(moho) | ||
return true | ||
end | ||
|
||
function LS_Webpage:Run(moho) | ||
local url = "https://lost-scripts.github.io/" -- "https://github.com/lost-scripts/" --"https://lostastools.blogspot.com/" | ||
--[[ | ||
if LS_Utilities:OS() == "unix" then | ||
os.execute('open "" "' .. url .. '"') | ||
else | ||
os.execute('start "" "' .. url .. '"') | ||
end | ||
--]] | ||
os.execute('start "" "' .. url .. '"') | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
-- ************************************************** | ||
-- Provide Moho with the name of this script object | ||
-- ************************************************** | ||
|
||
ScriptName = "LS_Separator" | ||
|
||
-- ************************************************** | ||
-- General information about this script | ||
-- ************************************************** | ||
|
||
LS_Separator = {} | ||
|
||
--LS_Separator.BASE_STR = 2480 | ||
|
||
function LS_Separator:Name(n) --name, ID | ||
return ({"Menu Separator", "LS_Separator"})[n or 1] | ||
end | ||
|
||
function LS_Separator:Version() | ||
return "0.0.1" | ||
end | ||
|
||
function LS_Separator:Description() | ||
return "Menu Separator" | ||
end | ||
|
||
function LS_Separator:Creator() | ||
return "Rai López" | ||
end | ||
|
||
function LS_Separator:UILabel() | ||
return "-------------------------------" --"------------- MENU ------------" --"[ 📄 ]" | ||
end | ||
|
||
-- ************************************************** | ||
-- The guts of this Script | ||
-- ************************************************** | ||
|
||
function LS_Separator:IsEnabled(moho) | ||
return false | ||
end | ||
|
||
function LS_Separator:Run(moho) | ||
end | ||
|
Oops, something went wrong.