Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
lost-scripts committed Jul 17, 2024
0 parents commit 25ec197
Show file tree
Hide file tree
Showing 23 changed files with 2,532 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitattributes
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
65 changes: 65 additions & 0 deletions .gitignore
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 #
#########

24 changes: 24 additions & 0 deletions LICENSE.md
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.
54 changes: 54 additions & 0 deletions Menu/- Lost Scripts/ls_webpage.lua
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

45 changes: 45 additions & 0 deletions Menu/ls_separator.lua
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

Loading

0 comments on commit 25ec197

Please sign in to comment.