mirror of
https://github.com/Bluewhale1337/ElvUIModernized.git
synced 2026-07-27 08:24:44 +00:00
update LibBase64-1.0 (Export/Import now fully working)
Please test test test!
This commit is contained in:
@@ -75,7 +75,9 @@ function LibBase64:Encode(text, maxLineLength, lineEnding)
|
||||
local currentLength = 0
|
||||
|
||||
for i = 1, len(text), 3 do
|
||||
local a, b, c = byte(text, i, i+2)
|
||||
local a = byte(text, i)
|
||||
local b = byte(text, i + 1)
|
||||
local c = byte(text, i + 2)
|
||||
local nilNum = 0
|
||||
if not b then
|
||||
nilNum = 2
|
||||
|
||||
@@ -259,7 +259,7 @@ local function ExportImport_Open(mode)
|
||||
local exportButton = AceGUI:Create("Button")
|
||||
exportButton:SetText(L["Export Now"])
|
||||
exportButton:SetAutoWidth(true)
|
||||
local function OnClick(self)
|
||||
local function OnClick()
|
||||
label1:SetText(" ")
|
||||
label2:SetText(" ")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user