Skip to content

Commit

Permalink
Case sensitive fix
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellumertz committed Apr 17, 2024
1 parent 846534d commit 7fd3630
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Live/ReaGoTo/daniellumertz_ReaGoTo Add Project Marker.lua
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dofile(ScriptPath .. 'Functions/Theme.lua') -- Functions for using the markov in
dofile(ScriptPath .. 'Functions/Json Main.lua') -- Functions for using the markov in reaper
dofile(ScriptPath .. 'Functions/Settings.lua') -- Functions for using the markov in reaper
dofile(ScriptPath .. 'Functions/Serialize Functions.lua') -- Functions for using the markov in reaper
dofile(ScriptPath .. 'Functions/Goto Functions.lua') -- Functions for using the markov in reaper
dofile(ScriptPath .. 'Functions/GoTo Functions.lua') -- Functions for using the markov in reaper

FocusedProj = reaper.EnumProjects( -1 )
-- Project configs (Loaded in the main loop at CheckProjects()) Need to start with an blank table
Expand Down
9 changes: 4 additions & 5 deletions Live/ReaGoTo/daniellumertz_ReaGoTo.lua
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
-- @version 1.0.1
-- @version 1.0.2
-- @description ReaGoto
-- @author Daniel Lumertz
-- @provides
-- [main] daniellumertz_ReaGoTo Add Project Marker.lua
-- [nomain] Functions/*.lua
-- @changelog
-- + Fix atexit trying to reach project when reaper is closing
-- + Fix gathering region idxes for GUI
-- + Fix for OS with case-sensitivity dofile Goto -> GoTo
-- @license MIT


Expand All @@ -30,15 +29,15 @@ dofile(ScriptPath .. 'Functions/Theme.lua') -- Functions for using the markov in
dofile(ScriptPath .. 'Functions/Json Main.lua') -- Functions for using the markov in reaper
dofile(ScriptPath .. 'Functions/Settings.lua') -- Functions for using the markov in reaper
dofile(ScriptPath .. 'Functions/Serialize Functions.lua') -- Functions for using the markov in reaper
dofile(ScriptPath .. 'Functions/Goto Functions.lua') -- Functions for using the markov in reaper
dofile(ScriptPath .. 'Functions/GoTo Functions.lua') -- Functions for using the markov in reaper

if not CheckReaImGUI('0.8') or not CheckJS() or not CheckSWS() or not CheckREAPERVersion('6.71') then return end -- Check Extensions
dofile(reaper.GetResourcePath() .. '/Scripts/ReaTeam Extensions/API/imgui.lua')('0.8') -- Made with Imgui 0.8 add schims for future versions.


----- Script Names
ScriptName = 'ReaGoTo'
Version = '1.0.1'
Version = '1.0.2'

-- Load Settings
SettingsFileName = 'ReaGoTo Settings'
Expand Down
5 changes: 3 additions & 2 deletions ReaShare/ReaShare.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- @version 0.1.2
-- @version 0.1.3
-- @author Daniel Lumertz
-- @provides
-- [nomain] Modules/*.lua
Expand All @@ -17,6 +17,7 @@
-- [main] ReaShare Paste From Clipboard.lua
-- @changelog
-- + Check for valid path when setting a path
-- + Change Reashere Functions to ReaShare (Case sensitive)

--dofile("C:/Users/DSL/AppData/Roaming/REAPER/Scripts/Meus/Debug VS/DL Debug.lua")

Expand All @@ -43,7 +44,7 @@ GUI.req("Classes/Class - TextEditor.lua")()
if missing_lib then return 0 end

local script_name = 'ReaShare'
local script_v = '0.1.2'
local script_v = '0.1.3'
--- GUI WINDOW BASIC
GUI.name = script_name..' '..script_v
GUI.x, GUI.y, GUI.w, GUI.h = 0, 0, 200, 400
Expand Down
2 changes: 1 addition & 1 deletion ReaShare/Reashare Functions.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ function ReaShareErrorChunk()
reaper.ShowMessageBox('This Is Not A Valid Chunk!', 'ReaShare', 0)
end

---Create a new file with the content written in it
---Create a new file with the content written in it.
---@param path string complete file path should contain file name and extension
---@param content string what is inside this file
function CreateNewProjectFile(path,content)
Expand Down

0 comments on commit 7fd3630

Please sign in to comment.