Skip to content

Commit

Permalink
- added importing/exporting of config
Browse files Browse the repository at this point in the history
  • Loading branch information
frozn committed May 27, 2024
1 parent e5530bf commit 4e5a755
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

-- create new library
local LIB_NAME = "LibFroznFunctions-1.0";
local LIB_MINOR = 24; -- bump on changes
local LIB_MINOR = 25; -- bump on changes

if (not LibStub) then
error(LIB_NAME .. " requires LibStub.");
Expand Down Expand Up @@ -2011,7 +2011,7 @@ end
--
-- @param params parameters
-- .prompt prompt to show
-- .text text to show
-- .lockedText locked text to show
-- .iconFile optional. path to an icon (usually in Interface\\) or a FileDataID
-- .iconTexCoord optional. coordinates for cropping the icon. object with four values:
-- leftTexel coordinate that identifies the left edge as a fraction of the image's width
Expand Down Expand Up @@ -2146,7 +2146,7 @@ function LibFroznFunctions:ShowPopupWithText(params)

-- show popup with text
StaticPopup_Show(popupName, nil, nil, {
lockedEditBoxText = params.text,
lockedEditBoxText = params.lockedText,
iconFile = params.iconFile,
iconTexCoord = params.iconTexCoord,
onShowHandler = params.onShowHandler,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

-- create new library
local LIB_NAME = "LibFroznFunctions-1.0";
local LIB_MINOR = 24; -- bump on changes
local LIB_MINOR = 25; -- bump on changes

if (not LibStub) then
error(LIB_NAME .. " requires LibStub.");
Expand Down Expand Up @@ -2011,7 +2011,7 @@ end
--
-- @param params parameters
-- .prompt prompt to show
-- .text text to show
-- .lockedText locked text to show
-- .iconFile optional. path to an icon (usually in Interface\\) or a FileDataID
-- .iconTexCoord optional. coordinates for cropping the icon. object with four values:
-- leftTexel coordinate that identifies the left edge as a fraction of the image's width
Expand Down Expand Up @@ -2146,7 +2146,7 @@ function LibFroznFunctions:ShowPopupWithText(params)

-- show popup with text
StaticPopup_Show(popupName, nil, nil, {
lockedEditBoxText = params.text,
lockedEditBoxText = params.lockedText,
iconFile = params.iconFile,
iconTexCoord = params.iconTexCoord,
onShowHandler = params.onShowHandler,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

-- create new library
local LIB_NAME = "LibFroznFunctions-1.0";
local LIB_MINOR = 24; -- bump on changes
local LIB_MINOR = 25; -- bump on changes

if (not LibStub) then
error(LIB_NAME .. " requires LibStub.");
Expand Down Expand Up @@ -2011,7 +2011,7 @@ end
--
-- @param params parameters
-- .prompt prompt to show
-- .text text to show
-- .lockedText locked text to show
-- .iconFile optional. path to an icon (usually in Interface\\) or a FileDataID
-- .iconTexCoord optional. coordinates for cropping the icon. object with four values:
-- leftTexel coordinate that identifies the left edge as a fraction of the image's width
Expand Down Expand Up @@ -2146,7 +2146,7 @@ function LibFroznFunctions:ShowPopupWithText(params)

-- show popup with text
StaticPopup_Show(popupName, nil, nil, {
lockedEditBoxText = params.text,
lockedEditBoxText = params.lockedText,
iconFile = params.iconFile,
iconTexCoord = params.iconTexCoord,
onShowHandler = params.onShowHandler,
Expand Down

0 comments on commit 4e5a755

Please sign in to comment.