SwiftGen-Assets v6.3.0 Release Notes

Release Date: 2020-08-04 // over 3 years ago
  • ๐Ÿ—„ Deprecations

    • ๐Ÿš€ Fonts: the generated Font typealias (to UIFont/NSFont) is deprecated and will be removed in the next major release.
      David Jennes
      #728

    ๐Ÿ†• New Features

    • ๐Ÿ‘ Strings: support for plurals declared in .stringsdict files.
      Florian Fittschen
      #184
      #634
    • ๐Ÿ‘ Fonts: the templates now support a new fontTypeName template parameter that you can use to change the name of the struct representing a font to something else.
      David Jennes
      #728
    • ๐Ÿš€ Fonts: the templates now support a new fontAliasName that you can use to change the typealias's name from Font to something else. For example: this is useful when working with SwiftUI which already defines a Font type. Note that as this typealias is deprecated (see deprecations above), this template parameter will also be removed in the next major release.
      David Jennes
      #647
      #728
    • ๐Ÿ—„ CoreData: Deprecates fetchRequest() and adds makeFetchRequest() to avoid ambiguous function usage.
      David Rothera
      #726
    • ๐ŸŽ XCAssets: image assets now load faster on macOS if they're in the main bundle. MacOS only provides a caching mechanism for images in the main bundle, for other cases you may need to provide your own caching mechanism as needed.
      David Jennes
      #648
      #733
    • ๐Ÿ“š Fonts/IB/JSON/Plist/Strings/XCAssets: all templates that load data at runtime from a bundle now support a bundle template parameter, which you can use to override the bundle from which resources are loaded. Check out the template specific documentation for more information. For an in-depth explanation, also check the customize loading of resources article.
      David Jennes
      #737
    • ๐Ÿ“š Fonts/IB/JSON/Plist: Similar to the strings templates, these templates now support a lookupFunction template parameter, which allows you to provide your own resource lookup mechanism at runtime. Check the template specific documentation for more information. For an in-depth explanation, also check the customize loading of resources article.
      David Jennes
      #738

    ๐Ÿ› Bug Fixes

    • Strings: fix incorrect interpretation of format placeholders when there were missing positional parameters (e.g. "%2$@" without a %1$โ€ฆ defined).
      @AliSoftware
      #634