Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: groue/GRMustache.swift
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5.0.0
Choose a base ref
...
head repository: groue/GRMustache.swift
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5.0.1
Choose a head ref
  • 5 commits
  • 3 files changed
  • 2 contributors

Commits on Aug 23, 2024

  1. Fix problem where some constructors in Template could block the main …

    …thread.
    
    You can use constructors that pass `URL` when initializing a `Template` object. This constructor can generate a `Template` object from a string that exists not only locally, but also server-side.
    
    Since this constructor calls `NSString(contentsOf:encoding)` internally, it could block the calling thread if the given URL is remote.
    
    This change adds a constructor for a `Template` object that can be called in async for iOS 15 and above. This constructor allows remote resources to be used without blocking the calling thread.
    fumito-ito committed Aug 23, 2024
    Configuration menu
    Copy the full SHA
    7e31911 View commit details
    Browse the repository at this point in the history
  2. add annotation for macOS

    fumito-ito committed Aug 23, 2024
    Configuration menu
    Copy the full SHA
    c3b2f6a View commit details
    Browse the repository at this point in the history
  3. add annotation for tvOS

    fumito-ito committed Aug 23, 2024
    Configuration menu
    Copy the full SHA
    cf190cf View commit details
    Browse the repository at this point in the history
  4. remove unused interface

    fumito-ito committed Aug 23, 2024
    Configuration menu
    Copy the full SHA
    949d70b View commit details
    Browse the repository at this point in the history
  5. Merge pull request #101 from groue/fix/thread-lock-with-template-cons…

    …tructor
    
    Fix problem where some constructors in Template could block the main thread
    fumito-ito authored Aug 23, 2024
    Configuration menu
    Copy the full SHA
    c4ee40e View commit details
    Browse the repository at this point in the history
Loading