Skip to content

Releases: pkluz/PKHUD

SPM support

17 Sep 11:15
8fd26f2
Compare
Choose a tag to compare

5.3.0: Merge pull request #254 from pkluz/swift-5

28 May 14:55
2d59dc7
Compare
Choose a tag to compare

Fix Xcode settings

14 Jan 13:46
525d517
Compare
Choose a tag to compare
Merge pull request #244 from joshavant/master

Actually change build settings to Swift 4.2

Xcode 10

28 Sep 11:41
Compare
Choose a tag to compare
5.2.0

Update to version 5.2.0

Swift4.2 Support

24 Jun 09:53
Compare
Choose a tag to compare
5.1.0

Swift4.2 Support

Swift4 Support

04 Oct 08:38
Compare
Choose a tag to compare
5.0.0

Update to version 5.0.0

4.2.3

12 Jun 09:52
Compare
Choose a tag to compare
  • Deprecated graceTime. Fixed in #168
  • Fix add subview to UIVisualEffectView #169

4.2.2

10 May 21:39
Compare
Choose a tag to compare

Change default HUD Visible State to false. Fixed by @Veronique in #165

Swift 3.1

31 Mar 16:30
Compare
Choose a tag to compare
4.2.1

Bump version to 4.2.1

The Grace version

21 Jan 16:39
Compare
Choose a tag to compare

Thanks to @isaced now it's possible to set a grace period.

Grace period is the time (in seconds) that the invoked method may be run without showing the HUD. If the task finishes before the grace time runs out, the HUD will not be shown at all. This may be used to prevent HUD display for very short tasks. Defaults to 0 (no grace time). like MBProgressHUD.

PKHUD.sharedHUD.graceTime = 0.5
HUD.show(.progress)
... // Your task code