Skip to content

Commit 4f48f57

Browse files
committed
bump version for release
1 parent ab8b0f3 commit 4f48f57

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

WoLua/Lua/Api/Script/Ui/ScriptWidgetApi.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@ public class ScriptWidgetApi(ScriptContainer source): ApiBase(source) { // TODO:
1212

1313
public TextWidget Text(string? text = null) => new(text);
1414

15-
public TextWidget Header(string? text = null) => this.Text(text).Center();
16-
public TextWidget SubHeader(string? text = null) => this.Text(text).SetDim().Indent();
15+
public TextWidget Centered(string? text = null) => this.Text(text).Center();
16+
17+
public TextWidget Subheader(string? text = null) => this.Text(text).SetDim().Indent();
1718

1819
public SeparatorWidget Separator() => new();
1920
public SeparatorWidget Spacer() => this.Separator().SetBar(false);

WoLua/WoLua.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project Sdk="Dalamud.NET.Sdk/13.1.0">
33
<PropertyGroup>
44
<Product>WoLua</Product>
5-
<Version>3.9.0</Version>
5+
<Version>4.0.0</Version>
66
<Description>Warrior of... Lua? Write your own chat commands in lua for FFXIV/Dalamud!</Description>
77
<Copyright>Copyleft VariableVixen 2022</Copyright>
88
</PropertyGroup>

0 commit comments

Comments
 (0)