HISE Logo Forum
    • Categories
    • Register
    • Login

    need some mac testers :)

    Scheduled Pinned Locked Moved General Questions
    28 Posts 7 Posters 1.1k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • ?
      A Former User @DanH
      last edited by

      @danh Links are in first post ;)

      1 Reply Last reply Reply Quote 0
      • Matt_SFM
        Matt_SF @A Former User
        last edited by

        @iamlamprey tryed everything here : Installation runs NEATly, instructions are clear. No validation/detection problem in Logic 👍

        2 tiny tiny bugish things :

        after loading the plugin in Logic > the library is loaded correctly > after reaching 100%, a "Loading 0%" is still displayed :
        ef8085a5-da78-47d6-b72a-fc5627aa6692-image.png

        this just happened once, I reloaded it in Logic and tried in Ableton : the thing was correctly disappearing

        The RANDOMIZE menu is not closed automatically when clicking on other sections (sample/FX/etc...). You have to click it again to close it. (unless this is intended)

        I'll make some music with the plugin later today and report back if anything comes weird :)

        Develop branch
        Win10 & VS17 / Ventura & Xcode 14. 3

        ? 1 Reply Last reply Reply Quote 0
        • ?
          A Former User @Matt_SF
          last edited by

          @matt_sf Thanks so much for that! :)

          Matt_SFM DanHD 2 Replies Last reply Reply Quote 0
          • Matt_SFM
            Matt_SF @A Former User
            last edited by

            @iamlamprey no problem. Really nice job you did here 👍

            Develop branch
            Win10 & VS17 / Ventura & Xcode 14. 3

            1 Reply Last reply Reply Quote 0
            • DanHD
              DanH @A Former User
              last edited by

              @iamlampreyOk so I haven't read any install instructions / docs.

              • Installed the DMG
              • Opened NEAT Player in Logic
              • Clicked 'Add Library'
              • Installed the Cloudburst .hr1 file you supplied
              • Selecting Presets from the Cloudburst folder in the browser...
              • No sound!!
              • Reopened plugin, no sound, restarted Logic, no sound. Any ideas?

              2 things I've noticed:
              1 - Your window tabs should close eachother as @Matt_SF mentioned - this also applies to the top tabs (Preset Browser, Add Library) - perhaps put all the buttons in a radio group? @d-healey also has a neat solution for this on his Patreon I think.
              2 - The CPU usage is running at about 10% on here!

              DHPlugins / DC Breaks | Artist / Producer / DJ / Developer
              https://dhplugins.com/ | https://dcbreaks.com/
              London, UK

              ? 1 Reply Last reply Reply Quote 0
              • ?
                A Former User @DanH
                last edited by

                @danh Thanks for that!

                I'm not sure what's causing the no-sound issue, it's possible that the Cloudburst .hr1 is an older one, I just grabbed the one on my google drive so it might be out of date (I don't have copy protection so I can't share the google cloud URL in case there's some lurkers here with bad intentions)

                if you'd like I can DM you the current stable version of Cloudburst

                Your window tabs should close eachother as @Matt_SF mentioned

                yes I'll have to do a pass for some of the minor bugs in the future, there's some tooltip rounding issues and such as well, this thread was just to make sure the DMG installer worked and Logic validated everything properly :)

                The CPU usage is running at about 10% on here

                That might be the new scriptnode thing doing that... I haven't compiled any nodes but I'll take a look.

                1 Reply Last reply Reply Quote 0
                • ?
                  A Former User
                  last edited by

                  ok I've updated the original google Drive file with the latest Cloudburst, it didn't seem fair to plug a "free library" for people taking the time to test it if it was out of date :P

                  DanHD 1 Reply Last reply Reply Quote 0
                  • DanHD
                    DanH @A Former User
                    last edited by

                    @iamlamprey thanks will try and test again in a few

                    DHPlugins / DC Breaks | Artist / Producer / DJ / Developer
                    https://dhplugins.com/ | https://dcbreaks.com/
                    London, UK

                    ? 1 Reply Last reply Reply Quote 0
                    • ?
                      A Former User @DanH
                      last edited by A Former User

                      @danh You might have to delete the appdata stuff to make sure it uses the latest presets etc

                      DanHD 2 Replies Last reply Reply Quote 0
                      • DanHD
                        DanH @A Former User
                        last edited by

                        @iamlamprey yup

                        DHPlugins / DC Breaks | Artist / Producer / DJ / Developer
                        https://dhplugins.com/ | https://dcbreaks.com/
                        London, UK

                        1 Reply Last reply Reply Quote 0
                        • DanHD
                          DanH @A Former User
                          last edited by

                          @iamlamprey Installed on laptop and all working. I'll try again on desktop when back in front of it (was on that one before).

                          Nice. What method did you use for the expansion installer progress percentage indicator?

                          DHPlugins / DC Breaks | Artist / Producer / DJ / Developer
                          https://dhplugins.com/ | https://dcbreaks.com/
                          London, UK

                          ? 1 Reply Last reply Reply Quote 0
                          • ?
                            A Former User @DanH
                            last edited by

                            @danh Awesome!

                            What method did you use for the expansion installer progress percentage indicator?

                            loadingBar.setPaintRoutine(function(g)
                            {
                                g.fillAll(this.data.colour);
                                g.drawAlignedText(this.data.text, [0, 0, 100, 20], "centred");
                            });
                            
                            loadingBar.setTimerCallback(function()
                            {
                                this.data.progress = Engine.getPreloadProgress();
                                this.data.progress = this.data.progress * 100;
                                this.data.progress = Math.round(this.data.progress);
                                this.data.text = "Loading: " + this.data.progress + "%";
                                this.repaint();    
                            });
                            
                            // This function will be executed whenever the preload state changes
                            loadingBar.setLoadingCallback(function(isPreloading)
                            {
                            	if(isPreloading)
                                {       
                                    this.data.colour = 0xD5E6E6E6;
                                    this.startTimer(50);
                                }
                                else
                                {       
                                    this.stopTimer();
                                    this.data.colour = 0x00000000;
                                    this.data.text = "";
                                }
                                    
                                // Update the UI
                                this.repaint();
                                
                            });
                            

                            I'll probably add a progress bar or something down the line...

                            DanHD 1 Reply Last reply Reply Quote 0
                            • DanHD
                              DanH @A Former User
                              last edited by

                              @iamlamprey nice, thank you :)

                              DHPlugins / DC Breaks | Artist / Producer / DJ / Developer
                              https://dhplugins.com/ | https://dcbreaks.com/
                              London, UK

                              1 Reply Last reply Reply Quote 0
                              • First post
                                Last post

                              28

                              Online

                              1.8k

                              Users

                              12.0k

                              Topics

                              104.1k

                              Posts