Skip to content

Releases: VirtueSky/sunflower

v3.4.4

18 Aug 09:53
7b0f2d9
Compare
Choose a tag to compare

Changed:

  • Add dependencies in Readme bb94000
  • Add define symbol VERTUESKY_UNITY_SERVICES (use for UnityServiceInitialization.cs) a69ca0d
  • Update register package
    • Firebase 13.1.0
    • Adjust 5.4.2

Full Changelog: 3.4.3...3.4.4

v3.4.3

26 Jul 17:39
589eceb
Compare
Choose a tag to compare

Changed:

  • Fix ads
    • refactor struct show ads
    • fix error show AppOpenAd after close fullscreen ad (add config Time between closing the previous full-screen ad and starting to show the app open ad - in seconds)
Screenshot 2025-07-27 at 00 31 46
  • Update register package
    • in app purchase 4.13.0
    • mobile notification 2.4.1
    • firebase 13.0.0
  • Remove ATT_IOS (move PostBuildStep to Thebeginning)

Full Changelog: 3.4.2...3.4.3

v3.4.2

20 Jul 07:13
0357855
Compare
Choose a tag to compare

Changed:

  • Add unity event onPointReached for MoveComponent
  • Fix LevelEditor tool
    • Layout tab Drop Area and Pickup Area
    • Preview object doesn't match mouse position on macbook
  • Update register package
    • Ui effect 5.9.6

Full Changelog: 3.4.1...3.4.2

v3.4.1

15 Jul 13:31
c605e15
Compare
Choose a tag to compare

Changed:

  • PostBuildStep.cs (auto set ITSAppUsesNonExemptEncryption false when build ios)

Full Changelog: 3.4.0...3.4.1

v3.4.0

11 Jul 02:54
d9cec0e
Compare
Choose a tag to compare

Changed:

  • Add method TryLogin for AppleAuthentication (login when apple credential still valid)
  • Remove SignInWithApplePostProcessor
  • Fix path package version apple sign in
  • Update PostBuildStep (add capbability SignInWithApple if use define symbol VIRTUESKY_APPLE_AUTH)
  • Add option useOffsetTrans for FollowTargetComponent
  • Update register package
    • LevelPlay sdk 8.10.0
    • Firebase sdk 12.10.1
    • Adjust sdk 5.4.1
    • AppsFlyer sdk v6.17.1
    • Ui Effect 5.9.5

Full Changelog: 3.3.9...3.4.0

v3.3.9

13 Jun 04:35
3684580
Compare
Choose a tag to compare

Changed:

  • Fix PostBuildStep for ios (auto add capability Push Notification when build ios)

Full Changelog: 3.3.8...3.3.9

v3.3.8

12 Jun 17:16
5cac198
Compare
Choose a tag to compare

Changed

  • fix PostBuildStep for ios (change .split to .plist)

Full Changelog: 3.3.7...3.3.8

v3.3.7

12 Jun 16:31
ab93de6
Compare
Choose a tag to compare

Changed:

  • Update PrimeTween 1.3.2
  • Update PostBuildStep for build ios (copy .split file from Assets to create xcode folder when firebase sdk is not present)
  • Update register package
    • max sdk 8.3.0
    • google mobile ads 10.2.0
    • ui effect 5.9.2
    • apple signin unity 1.5.0

Full Changelog: 3.3.6...3.3.7

v3.3.6

26 May 16:37
eb6e199
Compare
Choose a tag to compare

Changed

  • update register package
    • firebase 12.9.0 (fix upm)
    • external dependency manager 1.2.186
    • ui effect 5.8.6
    • adjust sdk 5.4.0
    • fix upm google play common and google play core

Full Changelog: 3.3.5...3.3.6

v3.3.5

04 May 15:39
a89ec41
Compare
Choose a tag to compare

Changed:

  • Fix upm path AppsFlyer

  • Update register package

    • Max sdk 8.8.2
    • Google mobile ads 10.1.0
    • Ui effect 5.8.4
  • Add option custom validate purchase for iap

Screenshot 2025-05-04 at 22 35 25

public class CustomValidatePurchase : MonoBehaviour
{
    private void OnEnable()
    {
        IapManager.CustomValidatePurchaseEvent += CustomValidatePurchaseIap;
    }
    
    bool CustomValidatePurchaseIap()
    {
        bool isValidate = true;
        // Handle validate here ...
        // If validation is successful then isValidate = true, otherwise isValidate = false.
        return isValidate;
    }
}

Full Changelog: 3.3.4...3.3.5