Skip to content

Commit

Permalink
fix usages of project-revsion
Browse files Browse the repository at this point in the history
  • Loading branch information
Bryan McLemore committed Nov 15, 2022
1 parent b7688b5 commit fa63aac
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion OneCore-1.0/OneConfig-1.0.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ local _G = _G
local tonumber, type, pairs = _G.tonumber, _G.type, _G.pairs
local LibStub = _G.LibStub

local MAJOR, MINOR = "OneConfig-1.0", tonumber("@project-revision@") or 9999
local MAJOR, MINOR = "OneConfig-1.0", tonumber("@project-timestamp@") or 9999
local OneConfig, _ = LibStub:NewLibrary(MAJOR, MINOR)

if not OneConfig then return end -- No Upgrade needed.
Expand Down
2 changes: 1 addition & 1 deletion OneCore-1.0/OneFrame-1.0.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ local _G = _G
local tonumber, pairs, type = _G.tonumber, _G.pairs, _G.type
local LibStub = _G.LibStub

local MAJOR, MINOR = "OneFrame-1.0", tonumber("@project-revision@") or 9999
local MAJOR, MINOR = "OneFrame-1.0", tonumber("@project-timestamp@") or 9999
local OneFrame, _oldMinor = LibStub:NewLibrary(MAJOR, MINOR)

if not OneFrame then return end -- No Upgrade needed.
Expand Down
2 changes: 1 addition & 1 deletion OneCore-1.0/OnePlugin-1.0.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
--- '''OnePlugin-1.0''' provides a plugin framework built ontop of Ace3's Module system
-- @class file
-- @name OnePlugin-1.0.lua
local MAJOR, MINOR = "OnePlugin-1.0", tonumber("@project-revision@") or 9999
local MAJOR, MINOR = "OnePlugin-1.0", tonumber("@project-timestamp@") or 9999
local OnePlugin, _oldMinor = LibStub:NewLibrary(MAJOR, MINOR)

if not OnePlugin then return end -- No Upgrade needed.
Expand Down
2 changes: 1 addition & 1 deletion OneCore-1.0/SimpleSort-1.0.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
--- **OneSuite-SimpleSort-1.0** provides a simple sort plugin for the OneSuite
-- @class file
-- @name SimpleSort-1.0.lua
local MAJOR, MINOR = "OneSuite-SimpleSort-1.0", tonumber("@project-revision@") or 9999
local MAJOR, MINOR = "OneSuite-SimpleSort-1.0", tonumber("@project-timestamp@") or 9999
local SimpleSort, oldMinor = LibStub:NewLibrary(MAJOR, MINOR)

if not SimpleSort then return end -- No Upgrade needed.
Expand Down
1 change: 0 additions & 1 deletion OneCore-1.0/externals/CustomSearch-1.0
Submodule CustomSearch-1.0 deleted from 8887f1
1 change: 0 additions & 1 deletion OneCore-1.0/externals/LibItemSearch-1.2
Submodule LibItemSearch-1.2 deleted from 1447c8
1 change: 0 additions & 1 deletion OneCore-1.0/externals/Unfit-1.0
Submodule Unfit-1.0 deleted from dbfb68

0 comments on commit fa63aac

Please sign in to comment.