2 Commits

Author SHA1 Message Date
KnackAtNite 3bc13734d5 Allow icon size up to 64 (was 32), bump to 0.0.3.9
Debug Build and Test / Build against Latest Dalamud (push) Has been cancelled
Debug Build and Test / Build against Staging Dalamud (push) Has been cancelled
Release Build and Publish / Release Build against Staging Dalamud and deploy to MyDalamudPlugins (release) Has been cancelled
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-08 14:25:01 -05:00
KnackAtNite 743bb74bd5 Extend font size range to 14-64 (was 14-32), bump to 0.0.3.8
Debug Build and Test / Build against Latest Dalamud (push) Has been cancelled
Debug Build and Test / Build against Staging Dalamud (push) Has been cancelled
Release Build and Publish / Release Build against Staging Dalamud and deploy to MyDalamudPlugins (release) Has been cancelled
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-08 14:16:43 -05:00
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
<PropertyGroup>
<Authors>cultbaus</Authors>
<Company>-</Company>
<Version>0.0.3.7</Version>
<Version>0.0.3.9</Version>
<Description>This plugin manipulates flytext.</Description>
<Copyright>-</Copyright>
<PackageProjectUrl>https://github.com/cultbaus/CBT</PackageProjectUrl>
+1 -1
View File
@@ -50,7 +50,7 @@ public class FontManager : IDisposable
.ToList()
.ForEach(file =>
{
Enumerable.Range(14, 32 - 14 + 1)
Enumerable.Range(14, 64 - 14 + 1)
.Where(i => i % 2 == 0)
.ToList()
.ForEach(size =>
+1 -1
View File
@@ -354,7 +354,7 @@ public abstract class Tab
if (this.CurrentIconEnabled)
{
GuiArtist.DrawLabelPrefix("Select Icon Size", sameLine: false);
GuiArtist.DrawInputInt($"Icon Size_{this.Name}", sameLine: true, (int)this.CurrentIconSize, 14, 32, size => { this.CurrentIconSize = size; });
GuiArtist.DrawInputInt($"Icon Size_{this.Name}", sameLine: true, (int)this.CurrentIconSize, 14, 64, size => { this.CurrentIconSize = size; });
GuiArtist.DrawSubTitle("Icon Outline Configurations");
{