Changelog
All notable changes to PurgeTSS. For the canonical, full-detail log see the project CHANGELOG on GitHub.
v7.13.2
purgetss brand --helpadvertised padding defaults the command does not use. It printeddefault: 19for--android-adaptive-paddinganddefault: 20for--android-splash-paddingand--ios-splash-padding, while the pipeline applies18,26and26. The numbers live as data insrc/core/branding/pieces.js, andbin/purgetsscarried a second hand-typed copy inside each option description with nothing linking the two. The adaptive string dated to April 2026 and was never revisited when 7.13.0 moved the value; the two splash strings were introduced by 7.13.0 already carrying the wrong figure. All seven padding descriptions are now interpolated from the piece table, so the drift is no longer expressible, and a new unit test parses the real--helpoutput and compares every advertised default against the table. The values documented on this site were already the correct ones. See Padding guidance.- The 7.13.0 entry in the project CHANGELOG said the splash paddings default to
20%, "leaving the logo at 60%". Corrected to26%and 48%, matching the code and the rest of that entry.
v7.13.1
- Four vulnerable transitive dependencies patched. They shipped inside v7.13.0:
postcss≤8.5.22 → 8.5.26 (high: XSS via an unescaped</style>in the stringify output, plus three path-traversal advisories aroundsourceMappingURL),nanoid3.3.11 → 3.3.18 (high: non-secure generators can loop indefinitely on a negative size),brace-expansion2.1.0 → 2.1.4 and 5.0.5 → 5.0.9 (high: a large numeric range defeats the documentedmaxDoS protection), anduuid→ 11.1.1 (moderate: missing buffer bounds check in v3/v5/v6 whenbufis provided). All patch bumps within the same major, sopackage.jsonis untouched and only the lockfile moves.npm auditreports zero vulnerabilities afterwards.
v7.13.0
purgetss brandnow covers every image the Titanium template ships. A run on a fresh Alloy project used to leave 28 files still wearing the grey Alloy logo: the 16assets/iphone/Default*.pnglaunch images, the 11assets/android/images/res-*/default.pngsplashes, andassets/android/appicon.png. Three new generators close that gap, and the per-qualifier Android splashes moved from the opt-in--legacy-splashflag, now removed, into the default set. The rule is explicit: if the template ships the file,brandupdates it. See App icons and branding.- The
brand:config section is organized by piece, not by kind of setting. Each of the 14 pieces gets one block accepting the same four keys where they apply (logo,padding,background,enabled), instead of a single piece being split acrossbrand.logos,brand.paddingandbrand.android.backgroundcascades from the top-levelbrand.background;paddingdeliberately does not, because18%answers to Android's launcher mask while4%is an iOS aesthetic choice, and one inherited number would break the mask silently. See thebrand:config section. - Breaking: one name per thing across config, flags,
--onlyand thepurgetss/brand/files.--splash→--splash-icon,--notification→--notification-icon,--splash-logo→--splash-icon-logo,--feature-logo→--feature-graphic-logo.--icon-logonow feeds theiconpiece; the Android launcher source is--adaptive-logo. Logo basenames followlogo-<piece>with no exceptions, sologo-splashandlogo-featurebecomelogo-splash-iconandlogo-feature-graphic.--legacy-splashis gone. No aliases were kept. Every piece also gained its--<piece>-logoflag:--ios-splash-logo,--marketplace-logo,--legacy-icon-logo,--appicon-logo,--android-splash-logoand--notification-icon-logowere missing before. - New
--only <pieces>filter.purgetss brand --only iconregenerates just theDefaultIconpair;--only ios,notification-iconmixes a group and a piece. Groups:ios(icon, dark, tinted, ios-splash),store(marketplace, feature-graphic),android(adaptive, legacy-icon, appicon, android-splash). Naming a piece generates it even when its opt-in flag is absent, an unknown name aborts before writing anything, and--dry-runhonors the same filter. See Regenerating a single piece. LaunchLogo.png(1024×1024) as the iOS launch screen source. Titanium already resizesLaunchLogo.imageseton every build, preferringLaunchLogo.pngoverDefaultIcon.png. Droppingpurgetss/brand/logo-launch.{svg,png}into the project makes the launch screen show the logotype instead of the app icon with its safe-zone padding. Activated by the file's presence or with--only launch-logo;--launch-logo <path>and--launch-logo-padding <n>set the source and the framing. See The iOS launch screen and LaunchLogo.png.config.cjsis brought up to date on disk, not translated on every read. Abrand:block written for an earlier version is rewritten to the per-piece structure on the next run, carrying over every value that had been customized (paddings, colors, logo paths, enabled flags) and listing each one it moved. It happens onpurgetss brandand on any command that goes through the config. The in-memorynormalizeLegacyBrand()of v7.10.2 is gone, so every command now reads exactly one shape and dropping the migration later touches nothing else. See Older configs update themselves.- New
brand.optimize/--optimize: quantize the generated PNGs to a palette. Off by default because it is lossy. On the reference project the full set of 56 files goes from 1.6 MB to 476 KB, 71% smaller. Measured on visible pixels the difference against truecolor averages 0.08–0.19 out of 255 with no channel over 16/255, and transparency survives intact, so flat marks are safe and wide gradients are the case to check. It runs as a post-pass over what the pipeline wrote, so every piece is covered from one place, and a file is left alone when the palette version is not actually smaller.--no-optimizeskips it for one run. See Shrinking the generated files. shadesandsemanticno longer strip every comment fromconfig.cjs. Both serialized the whole config object and wrote it back, which reformatted the file and dropped all of its comments, including the onesinitgenerates forpurge:,brand:andimages:, sections the color commands never look at. They now rewrite only thetheme:section, leaving every other byte untouched. Comments insidetheme:still go, since that is the section being rewritten. Pre-existing bug, unrelated to the brand work.- Unknown keys inside
brand:are rejected instead of ignored, at both levels:brand.fooandbrand.adaptive.paddigboth abort before a single file is written, listing the valid keys. A typo is deliberately not treated as an old structure: rewriting the block would drop it silently, and ignoring a misspelled padding key would render the whole icon set at the wrong size and still look plausible. - The intermediate masters are sized to the run instead of a fixed 1024 px. Every piece scales down from those masters, so their resolution was a hard ceiling on sharpness: a splash at
--splash-padding 14or lower asked for more than 1024 px and got an upscaled raster.brandnow measures the largest request across the selected pieces and rasterizes to exactly that (a default run reportsMasters at 942 px), so every destination is a reduction. Runs also got faster, 6.8 s → 2.2 s on the reference project, because the master is no longer larger than needed. - The 28 splash images share one sizing rule, and it is configurable.
default.pngused a hardcoded box of 72% × 26% of its own canvas while the 11res-*used a separate hardcoded 60%: two rules for the same piece, neither adjustable. All of them, plus the 16 iPhone launch images, now fit the logo into a square sized as a share of the canvas's shorter side, so one number holds in portrait and landscape alike. Exposed asbrand.androidSplash.padding/brand.iosSplash.paddingwith--android-splash-padding,--ios-splash-paddingand the--splash-paddingshortcut. The26%default is calibrated against the template itself: the Alloy logo in the stockdefault.pngmeasures 665×488 px on a 1440×2560 canvas, and26%lands within 4% of it. - Adaptive icon padding default is now
18%(was19%). Android's adaptive canvas is 108 dp with a 66 dp guaranteed safe circle inside a ~72 dp visible area;18%puts the logo at 69.1 dp, past the circle's corners but inside what the mask shows, which suits marks that carry their own margin. --nine-patchis declared and documented, but the generator is not implemented yet. Selecting it prints a warning and writes nothing.
v7.12.1
purgetss brand --notesnow targets Titanium's launcher Activity instead of only the app theme. Titanium appliesTheme.Titaniumdirectly to the generated launcher Activity, so adding splash items only to the<application>theme could still leave Android 12+ using the SDK's default background. The notes now print a completesplashscreen.xmlat the correct Alloy or Classic resource path, define a launcher-onlyTheme.SplashScreenderived fromTheme.Titanium, and show how to merge that theme into the existing launcher Activity declaration without changing the app's current theme.windowSplashScreenBackground,windowBackgroundandcolorBackgroundall reference onesplashscreen_backgroundresource, so the launch color is changed in one place. With--splashenabled, the same copy-ready style also includeswindowSplashScreenAnimatedIcon.- Font Awesome Free updated to 7.3.1: 23 new icon classes (
.fa-lotus,.fa-codeberg,.fa-copilot,.fa-substack,.fa-tesla,.fa-storybook,.fa-matrix,.fa-nextcloud,.fa-visual-studio, …), none removed. sharpupdated to 0.35.3 andglobto 13.0.6.
v7.12.0
- Android launch background snippets in
purgetss brand --notes. The full notes covered the iOS launch image and the Android launcher icon, but never the color Android draws before Titanium creates the first Window, so a run that set a brand background still flashed the default theme color at launch.--notesnow prints a step with both items to merge into the existing app theme:android:windowSplashScreenBackground(Android 12+ system splash) andandroid:windowBackground(native window), plus the reminder thattiapp.xml<application>must reference that theme withandroid:theme="@style/YourExistingTheme". --noteswording no longer names onlytiapp.xml. The command edits neithertiapp.xmlnor the Android theme resources, so the help text and the compact summary now read "platform launch/theme snippets".completions-v3.jsonreports SDK 13.4.0.GA. Metadata label only; the properties map is unchanged.
v7.11.2
images.filessync silently gave up on any config with comments, including the onepurgetss initgenerates.matchBracket()tracked quotes but not comments, so the apostrophe in the template's own comment opened a string that never closed, and every run printedCould not insert <file> into images.files (section missing or unreadable)whilefilesstayed[]. The SVG pipeline still generated the PNGs, so only the write-back toconfig.cjswas lost.parseTssMap()dropped every property following an escaped quote. A single\'in a value flipped the scanner into "inside a string" permanently, so'.card': { title: 'it\'s here', width: 200 }yielded nowidthat all and the SVG pipeline resolved dimensions from an incomplete map.- Classes carrying a nested object never entered the TSS map. The class body was delimited by
[^}]*, which cannot see past an inner}, so'.text-xs': { font: { fontSize: 12 } }, and any custom class combiningfont: { ... }withwidth/height, was skipped entirely by the SVG pipeline. The body is now delimited by brace balancing. - Android
themevalues keep their quotes in custom rules.'.welcome-window': { android: { theme: 'Theme.AppDerived.NoTitleBar' } }used to emit an unquoted value that Alloy cannot compile, because any value containingThemeorTitaniumwas treated as a JavaScript expression. Detection is now anchored to the start of the value (Alloy.,Ti.,Titanium.,L(, plus constant array literals), so theme names stay strings while real expressions are still emitted raw. Generateddist/utilities.tssis byte-identical to the previous release. - E2E suites run against a disposable copy of
test-project/. They used to execute the real CLI inside the versioned project, leaving the working tree dirty and, via arm -f purgetss/config.cjscleanup, dropping theimages.filesentries the SVG pipeline had synced.
v7.11.1
- Fixes for the SVG image pipeline from v7.11.0: width/height now cascade symmetrically (the unpinned side derives from the
viewBoxon every run instead of getting cemented inconfig.cjs),syncConfigImagesmirrors the current run so shrinking a class actually shrinks the entry, and SVGs listed inimages.filesalways emit PNG to match Titanium's runtime fallback. purgetss imagesrespects--yesfor overwrite confirmations, andsyncConfigImagesno longer bumpsconfig.cjsmtime on untouched runs (which was triggering needlessutilities.tssrebuilds).- Restored
src/dev/builders/tailwind-builder.js. It was the entry point fornpm run build:tailwind, deleted as "orphan" by mistake in 7.11.0.
v7.11.0
- SVG-aware compile-time image pipeline as a post-step of
purgetss. When views or controllers referenceimage="/images/<sub>/<name>.svg"alongside utility classes that resolve to numeric width/height (w-32,w-(300),h-auto, …), purge now compiles those SVGs into the 8 Titanium density variants (5 Android + 3 iPhone PNGs) using dimensions resolved fromapp.tss. Titanium loads the generated.pngautomatically at runtime; the SVG attribute in your source is never rewritten. See SVG-aware image pipeline. - New
images.filesarray inconfig.cjsto pin width/height per file, plusimages.autoSync(defaulttrue) for devs who want to manageimages.filesby hand. config.cjssyntax validator: type mismatches in known fields (theme.fontFamily.*,theme.extend.fontFamily.*) print a formattedConfig Syntax Errorblock with file, JSON path, and a fix snippet, instead of cryptic downstream crashes likerule.startsWith is not a function.
v7.10.2
- Configs written before v7.7.0 (the
brand:regroup) now auto-migrate in memory on every run. The legacy flat layout (brand.padding: <number>,brand.iosPadding,brand.bgColor,brand.darkBgColor, top-levelbrand.notification/brand.splash) used to crash auto-purge withTypeError: Cannot create property 'ios' on number '15';getConfigFile()now normalizes them to the grouped layout (brand.padding.{ios, androidLegacy, androidAdaptive},brand.android.*,brand.ios.darkBackground,brand.colors.background) before applying defaults. When both legacy and new keys coexist, the new key wins. A one-time deprecation notice per session lists the migrated keys. (In v7.13.0 this moved out of the read path: theconfig.cjsfile itself is rewritten to the current structure instead.) - Internal fix:
logger.warningandlogger.successare now defined. Acrossbrand,images,cleanup-legacy, andsvg-utils, ~30 callsites oflogger.warningand ~10 oflogger.successreferenced methods that did not exist on the logger object, so any opt-in command path that hit one of those calls used to throwTypeError: logger.warning is not a function. The auto-purge entry point most users hit did not reach those callsites, so the bug stayed latent until commands likepurgetss brandorpurgetss imageswere run.
v7.10.1
- User-visible references to "Tailwind" in copy that did not document a functional integration were dropped. The Class Syntax Error block now reports
'Square brackets "[ ]" are not supported'instead of'Tailwind-style brackets "[ ]" are not supported'; the promotional<Label>injected into new projects bypurgetss createchanged from"Tailwind-inspired utility classes for Titanium/Alloy"to"Utility-first styling for Titanium/Alloy". All functional integrations stay: thetailwindcss@3dependency installed byinstall-dependencies(drives both thedefaultColors/defaultThemepalette base AND the VSCode IntelliSense extension), the--tailwindflag onpurgetss shades, and the recommendedTailwind CSS IntelliSense/Tailwind Raw Reorder (v4)VSCode extensions.
v7.10.0
purgetss imagesgot three CLI-only flags.--opacity <n>(integer0-100) multiplies the alpha channel of every generated density byn/100, useful for placeholder or default ImageView images that render at reduced opacity.--padding <n>(integer0-40) shrinks the rendered image inside each density canvas by symmetric percentage borders, preserving canvas size with transparent fill, for breathing room around an unpadded logo.--output <relpath>overrides the basename and subpath relative to each platform'simages/root, so a logo frompurgetss/brand/can be written asimages/logos/loading.pngacross all densities in a single command. Combines naturally for "transparent placeholder with padding under a custom path". See Multi-density images: opacity, padding, output.purgetss brandnow generatesMarketplaceArtworkFeature.png(1024×500 Google Play Feature Graphic) alongside the existing iTunesConnect and MarketplaceArtwork submission assets. Auto-discoverspurgetss/brand/logo-feature.{svg,png}or reuses the master logo if not provided. Default vertical padding is12%; override with--feature-graphic-padding <n>(range0-40), configbrand.padding.featureGraphic, or CLI--feature-logo <path>for a dedicated source. Submission artwork only: written to project root for upload to the Play Console, not bundled into the APK.- Arbitrary nesting depth in
config.cjsthemeobjects. Property emission now walks nested values recursively instead of stopping at level 2, sotheme.extend.colors.brand.primary.500flattens tobrand-primary-500instead of being silently dropped. Same forbackgroundGradientandbackgroundSelectedGradient. Default modifier keys (default,global,DEFAULT) collapse without contributing to the suffix. - Fix:
apply:now resolves built-in icon font classes (fas,fab,fa-*,mi-*,ms-*,f7-*) fromdist/for projects that don't runbuild-fonts. Previously those classes were silently dropped from generated rules:apply: 'fas fa-times-circle wh-12 ...'produced everything except the FontAwesome family and the icon glyph. - Fix:
borderRadius: [...]arrays no longer get truncated when combined with other utilities in anapply:string. The post-merge dedup step (from v7.9.0) tracked depth on{}only, soborderRadius: [0, 0, 0, 16](emitted by directionalrounded-{t,b,l,r,tl,tr,bl,br}-*utilities) was split on its internal commas. The depth tracker now respects[]alongside{}. - Fix:
brand --padding <n>shortcut now applies to BOTH Android paddings as the help text always promised. Previously the shortcut only fedandroidAdaptivePaddingwhileandroidLegacyPaddingfell through to its own config value, sopurgetss brand --padding 17actually producedandroidAdaptive=17, androidLegacy=10.
v7.9.0
- Opacity modifiers now work on classes that resolve to a semantic color. Writing
bg-surface/65(or any other opacity modifier on a class mapped to a name insemantic.colors.json) produces a working rule with Light/Dark switching preserved. PurgeTSS derives a new<originalKey>_<alphaPercent>entry with the originallight/darkhex values and the requested alpha for both modes, writes it back tosemantic.colors.json, and emits the rule against the derived key. Re-runs are idempotent; manual edits with conflicting values halt the build with aConflicterror. New alpha entries require one full Titanium build to be picked up. Liveview hot-reload alone does not refreshsemantic.colors.json. See Semantic Colors. - Several fixes around semantic colors, gradients, and Ti Element defaults: the
semantictonal palette was inverting Light and Dark; the gradientfrom/tocolor order was position-dependent and could swap aftersort(); thebg-gradient-to-Xdirection was silently dropped when combined withfrom-X to-Ycolors in the sameapplystring;theme.Window/theme.View/theme.ImageViewno longer leak the framework presets (white background,Ti.UI.SIZE, iOShires: true) when defined at the top level (replace mode), so a Window declared attheme.Windowwith abackgroundGradientno longer ghosts on top of a defaultbackgroundColor: '#FFFFFF'.theme.extend.Windowkeeps merging with the defaults as before. See Apply directive: extend mode vs replace mode. - Breaking: the user-facing glossary output path was renamed from
purgetss/experimental/tailwind-classes/topurgetss/glossary/tailwind-classes/. Any tooling or CI that reads from the old path needs to be updated on upgrade. No transition shim was added on purpose. The--glossaryflag and command surface are unchanged.
v7.8.0
imagesnow has a--width <n>flag. It pins Androidmdpi(= iPhone@1x) to a specific pixel width, for examplepurgetss images logo.svg --width 256. Larger scales derive at ×1.5, ×2, ×3, and ×4, with height staying proportional to the source's aspect ratio. Use this for SVG sources from vector editors with disproportionate viewBoxes, such as Affinity or Illustrator. Without the flag, every scale derives from the source's viewBox as a 4× master, which can produce unpredictable sizes when the viewBox does not match the intended display size. When you pass an SVG without--width, the command prints a one-time hint and then falls back to the legacy 4× behavior. This is CLI-only; there is no matchingimages:config property because the right width is per-asset.- Class syntax pre-validation now stops
purgetsswith a structuredClass Syntax Errorblock (file + line + suggested fix) when it detects known class-name mistakes: inverted negative sign (top-(-10)→-top-(10)), Tailwind-style brackets (top-[10px]→top-(10px)), empty parentheses (wh-()), whitespace inside parentheses (wh-( 200 )), and redundantpxunit (top-(10px)→top-(10)). All offenders are reported in one run. Generic unknown classes, such as typos, vendor utilities not enabled, or custom classes not declared yet, are not flagged. They still flow into the// Unused or unsupported classesblock inapp.tss. - The arbitrary-value parser no longer crashes on negative values inside parentheses. Classes like
top-(-10),mt-(-5), andorigin-(-10,-20)used to trigger aCannot read properties of null (reading 'pop')exception. The parser now extracts the(...)portion first, so a-inside the value does not break the split.
v7.7.0
- The
brandconfig was cleaned up before stabilizing. Branding settings now live under grouped sections:brand.logos,brand.padding,brand.android,brand.ios, andbrand.colors. brandcan now use separate Android inputs: one logo for the general brand set, another for Android launcher icons, and another for Android 12+ splash artwork. Usebrand.logos.androidLauncher/--icon-logoandbrand.logos.androidSplash/--splash-logo, or droplogo-icon.*andlogo-splash.*intopurgetss/brand/.purgetss brandnow regenerates the legacy Android splash fallback:app/assets/android/default.pngin Alloy projects andResources/android/default.pngin Classic projects.cleanup-legacyno longer removesdefault.png, because that file can still matter on older Titanium Android splash paths.- The branding docs now explain what uses
ic_launcher, what usessplash_icon.png, and what still falls back todefault.png.
v7.6.2
- The
semanticcommand now works in Classic Titanium projects. It writes toResources/semantic.colors.json; Alloy keeps writing toapp/assets/semantic.colors.json. Existing unrelated entries, such as the defaultbackgroundColor/textColorvalues that ship with Classic templates, are preserved in both project types. See Semantic Colors - Fixed a UX bug where the "not an Alloy project" error was immediately followed by the palette preview JSON, making it look like the command half-succeeded.
v7.6.1
brandandimagesnow ask before destructive writes (y/N/afor "always"). The prompt is skipped whenstdinis not a TTY (alloy.jmk hook, CI, pipes), when-y/--yesis passed, or whenPURGETSS_YES=1is set. SetconfirmOverwrites: falseon the matching config section to silence it permanently.- SVG logos and images now get a disproportionate-viewBox warning. The command detects viewBoxes above 4096 pt on any side, common in Affinity and Illustrator exports, and rasterizes with adaptive density to stay within Sharp's pixel budget.
initnow createspurgetss/{fonts,brand,images}/subfolders.- Multi-line command output is now grouped under a single
::PurgeTSS::header with indented continuation lines. This applies acrosspurge,fonts,icon-library,brand,images, and most warnings.
v7.6.0
- The new
brandcommand generates the Titanium branding set from logos auto-discovered in./purgetss/brand/: launcher icons, adaptive icons, iOS 18+ Dark/Tinted variants, marketplace artwork, and optional notification/splash assets. Works on Alloy and Classic projects. See App icons and branding - The new
imagescommand generates multi-density UI images from sources in./purgetss/images/: Androidres-*densities and iPhone@1x/@2x/@3xscales. Subdirectories are preserved, and short paths can target individual files for re-processing. See Multi-density images brand:andimages:config sections were added topurgetss/config.cjs. Percentages can be written as'15%'strings for clarity; plain numbers are also accepted. Older configs get these sections on first run.- The new
semanticcommand generates Titanium semantic colors (Light/Dark mode) intoapp/assets/semantic.colors.json.--singleswitches between a tonal palette (one base hex → 11 shades with mirror inversion + auto config mapping) and a purpose-based color (explicit per-mode hex + optional alpha). The JSON entry and class mapping inconfig.cjsare written in one shot. Class names are derived by stripping theColorsuffix, for examplesurfaceColor→surface. Smart in-place updates run when a single name matches an existing palette shade. See Semantic Colors: generating semantic colors with thesemanticcommand
v7.5.3
- New
Appearanceexport for Light/Dark/System mode switching with persistence. Methods:init(),set(mode),get(),toggle(). See Appearance Setup - Default font family classes are generated automatically with platform-appropriate values:
font-sans,font-serif, andfont-mono. - XML validation now detects illegal
--inside XML comments during pre-validation.
v7.5.0
extendsupport for Window, View, and ImageView. Component defaults can now be customized fromtheme.extendinconfig.cjs.- Shorthand
apply:{ apply: '...' }is automatically normalized, so thedefault:wrapper is optional. - Property deduplication: applied values win over static defaults instead of duplicating.
- Automatic platform resolution: classes inside
ios:/android:blocks find their platform-specific version automatically. - Font Awesome 7.2.0
- Fixed:
extend.Windowsilently ignored, duplicatefontproperties, array-type properties missing[ ]notation
v7.4.0
Animation module expansion: 9 new methods bring the module to 15 total.
transition,pulse,sequence,swap,shake,snapTo,reorder,undraggable,detectCollisions- New utility classes:
snap-back,snap-center,snap-magnet,keep-z-index - Delta-based drag for transformed views, position normalization, property inheritance from the Animation object
See the UI Module documentation for full details.
v7.3.0
- BREAKING:
tailwind.tsswas renamed toutilities.tss. - XML syntax validation adds pre-validation for Alloy XML files with line numbers and fix suggestions.
- Classic Titanium compatibility:
deviceInfo()works without Alloy dependencies.
v7.2.7
- Security fixes for command injection in
globand prototype pollution injs-yaml. - Dependency cleanup reduced installation size by about 45MB and removed unused packages.
- Titanium SDK 13.1.0.GA: new utility classes for
navBarColor,forceBottomPosition, andmultipleWindows.
v7.2.6
- Updated Font Awesome to version 7.1.0
- Simplified flag property names in utilities.tss