HISE Logo Forum
    • Categories
    • Register
    • Login

    Installing Samples Dialog....

    Scheduled Pinned Locked Moved Feature Requests
    130 Posts 13 Posters 11.4k 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.
    • LindonL
      Lindon @Lindon
      last edited by

      ...hang on just to make sure I'm not making a silly silly mistake:

      I'm putting these directives:

      HISE_SAMPLE_DIALOG_SHOW_INSTALL_BUTTON=1
      HISE_SAMPLE_DIALOG_SHOW_LOCATE_BUTTON=0

      here:

      76168c15-1b7f-4275-a233-b4985eec3b87-image.png

      thats right yes?

      HISE Development for hire.
      www.channelrobot.com

      1 Reply Last reply Reply Quote 0
      • d.healeyD
        d.healey @Lindon
        last edited by d.healey

        @Lindon said in Installing Samples Dialog....:

        @d-healey deoes this work for you;

        I just see a keyboard, is that what I'm supposed to see?

        @Lindon said in Installing Samples Dialog....:

        thats right yes?

        Yes that's correct.

        When you open the .jucer file after exporting you should see this (except for Windows/MacOS in your case).

        8f3cf229-7851-442f-b6f7-0a3164ede3ae-image.png

        Libre Wave - Freedom respecting instruments and effects
        My Patreon - HISE tutorials
        YouTube Channel - Public HISE tutorials

        LindonL 1 Reply Last reply Reply Quote 0
        • LindonL
          Lindon @d.healey
          last edited by

          @d-healey said in Installing Samples Dialog....:

          @Lindon said in Installing Samples Dialog....:

          @d-healey  deoes this work for you;
          

          I just see a keyboard, is that what I'm supposed to see?

          Well you are supposed to load up some sample data into the sampler..anything will do...and then you are supposed to see the install Samples button..

          @Lindon said in Installing Samples Dialog....:

          thats right yes?

          Yes that's correct.

          When you open the .jucer file after exporting you should see this (except for Windows/MacOS in your case).

          8f3cf229-7851-442f-b6f7-0a3164ede3ae-image.png

          I will check this - re-downlaoding and rebuilding your HIS version now.

          HISE Development for hire.
          www.channelrobot.com

          LindonL 1 Reply Last reply Reply Quote 0
          • LindonL
            Lindon @Lindon
            last edited by Lindon

            oh dear...no good news...

            re-downloaded your build.

            I rebuilt HISE
            I deleted the contents of the Build folder in my project
            I deleted the folder for the project under ../Use/AppData/...

            I ran the "export standalone app" again...

            This is what my autogenerated projucer file looks like:

            750bcf35-b9ed-4e83-aa51-cb73ba8191f2-image.png

            I ran my compiled stand alone app...

            • it asked for my serial number - I gave it....

            and it went straight into the UI - completely failing to show me any Sample Dialog....

            I have no idea what else I can do now...sadly this is a MASSIVE issue for my client base....
            @Christoph-Hart !!!!!!

            HISE Development for hire.
            www.channelrobot.com

            d.healeyD 1 Reply Last reply Reply Quote 0
            • d.healeyD
              d.healey @Lindon
              last edited by

              @Lindon Does it work if you remove the serial code stuff?

              Libre Wave - Freedom respecting instruments and effects
              My Patreon - HISE tutorials
              YouTube Channel - Public HISE tutorials

              LindonL 1 Reply Last reply Reply Quote 0
              • LindonL
                Lindon @d.healey
                last edited by

                @d-healey well it also didnt work for my very very simple example, with no serial work, I posted the snippet for so I cant see thats the problem - but I will try - tomorrow.

                HISE Development for hire.
                www.channelrobot.com

                1 Reply Last reply Reply Quote 0
                • d.healeyD
                  d.healey
                  last edited by

                  It will be good if someone else can test.

                  Libre Wave - Freedom respecting instruments and effects
                  My Patreon - HISE tutorials
                  YouTube Channel - Public HISE tutorials

                  LindonL 1 Reply Last reply Reply Quote 0
                  • LindonL
                    Lindon @d.healey
                    last edited by Lindon

                    @d-healey OK I took out all the authorisation code...

                    ..no difference it still fails to do ANY sample set up, now it just pops thru to the UI and cant find any ch files ...

                    I think perhaps I have been misleading you - the sample set up is supposed to pop BEFORE the authorisation....first thing.

                    HISE Development for hire.
                    www.channelrobot.com

                    LindonL 1 Reply Last reply Reply Quote 0
                    • LindonL
                      Lindon @Lindon
                      last edited by Lindon

                      OK a morning (so far) of tedious compiling to test every scenario, in every case I deleted all the config data from AppData and deleted the entire contents of the binaries folder in the project here's the results:

                      HISE_SAMPLE_DIALOG_SHOW_INSTALL_BUTTON=1
                      HISE_SAMPLE_DIALOG_SHOW_LOCATE_BUTTON=1

                      -- shows both buttons

                      HISE_SAMPLE_DIALOG_SHOW_INSTALL_BUTTON=0
                      HISE_SAMPLE_DIALOG_SHOW_LOCATE_BUTTON=1

                      --show just the locate button

                      HISE_SAMPLE_DIALOG_SHOW_INSTALL_BUTTON=1
                      HISE_SAMPLE_DIALOG_SHOW_LOCATE_BUTTON=0

                      -- shows nothing

                      HISE_SAMPLE_DIALOG_SHOW_LOCATE_BUTTON=0

                      -- shows nothing !!!

                      HISE_SAMPLE_DIALOG_SHOW_LOCATE_BUTTON=1

                      -- shows both buttons

                      HISE_SAMPLE_DIALOG_SHOW_INSTALL_BUTTON=1

                      -- shows both buttons

                      HISE_SAMPLE_DIALOG_SHOW_INSTALL_BUTTON=0

                      -- shows the locate button

                      So if you explicit set the locate button to OFF it shows you nothing

                      So I'm begining to think its something in this logic:

                      #if HISE_SAMPLE_DIALOG_SHOW_INSTALL_BUTTON
                      		installSampleButton->setVisible(true);
                      		installSampleButton->setBounds(b.removeFromTop(32));
                      #else
                      		installSampleButton->setVisible(false);
                      #endif
                      
                      #if HISE_SAMPLE_DIALOG_SHOW_LOCATE_BUTTON
                      		resolveSamplesButton->setVisible(true);
                      		resolveSamplesButton->setBounds(b.removeFromBottom(32));
                      #else
                      		resolveSamplesButton->setVisible(false);
                      #endif
                      

                      which sorta says to me that if you dont set either then nothing would show....and thats not the case (cause I just checked..)

                      HISE Development for hire.
                      www.channelrobot.com

                      1 Reply Last reply Reply Quote 0
                      • d.healeyD
                        d.healey
                        last edited by

                        The behaviour you've described is exactly the same as it was before my fix, no? If so that would lead me to believe that you are compiling your plugin against a different version of the source code, how many copies of the source do you have on your system?

                        For your testing are you using debug builds? They are much faster to build so take out a bit of the tedium of testing.

                        Libre Wave - Freedom respecting instruments and effects
                        My Patreon - HISE tutorials
                        YouTube Channel - Public HISE tutorials

                        LindonL 1 Reply Last reply Reply Quote 0
                        • LindonL
                          Lindon @d.healey
                          last edited by Lindon

                          @d-healey said in Installing Samples Dialog....:

                          The behaviour you've described is exactly the same as it was before my fix, no? If so that would lead me to believe that you are compiling your plugin against a different version of the source code, how many copies of the source do you have on your system?

                          For your testing are you using debug builds? They are much faster to build so take out a bit of the tedium of testing.

                          Perhaps I am - how would I check other than to look at the path in the preferences?

                          I may have built the wrong version of HISE - but I did the "normal" things - opened projucer - pointed it at the standalone project INSIDE the folder structure for Hise-develop - compiled from there....

                          In any case we checked that your effect.isBypassed(0 worked properly - to assure ourselves I was using the correct HISE ... and I was/am...

                          HISE Development for hire.
                          www.channelrobot.com

                          LindonL d.healeyD 2 Replies Last reply Reply Quote 0
                          • LindonL
                            Lindon @Lindon
                            last edited by

                            @d-healey -- right I went and removed all your logic from FrontendBar.cpp and replaced it with:

                            	if (currentState[SamplesNotInstalled])
                            	{
                            		resolveLicenseButton->setVisible(false);
                            		registerProductButton->setVisible(false);
                            
                            		auto b = getLocalBounds().withSizeKeepingCentre(200, 50);
                            
                            		installSampleButton->setVisible(true);
                            		installSampleButton->setBounds(b.removeFromTop(32));
                            		resolveSamplesButton->setVisible(false);
                            

                            and a similar thing for the text:

                            	case DeactiveOverlay::SamplesNotInstalled:
                                    return "Please click below to install the samples from the downloaded archive.";
                            		break;
                            

                            and compiled that... then opened it and compiled the project: I get this:

                            4c20789f-50ed-4389-9aa5-f06a3247f913-image.png

                            • So I think we can say I'm using the correct HISE

                            HISE Development for hire.
                            www.channelrobot.com

                            1 Reply Last reply Reply Quote 0
                            • d.healeyD
                              d.healey @Lindon
                              last edited by d.healey

                              @Lindon said in Installing Samples Dialog....:

                              In any case we checked that your effect.isBypassed(0 worked properly - to assure ourselves I was using the correct HISE ... and I was/am...

                              That confirmed that you used my version of the source code to build HISE, but not that you used it to build your project.

                              So I think we can say I'm using the correct HISE

                              Yup, so something weird is happening. Need more testers :)

                              @d-healey -- right I went and removed all your logic from FrontendBar.cpp and replaced it with:

                              Are you sure it was my logic and not Christoph's? The changes I made were fairly minor and could be mistaken for the original code. (although what you posted before was definitely mine).

                              Libre Wave - Freedom respecting instruments and effects
                              My Patreon - HISE tutorials
                              YouTube Channel - Public HISE tutorials

                              LindonL 1 Reply Last reply Reply Quote 0
                              • LindonL
                                Lindon @d.healey
                                last edited by Lindon

                                @d-healey agreed more testing would be good - but I think this area need s a re-evaluation - its a bunch of confusing double negative flags (probably my fault as much as any one):

                                I suggest we dump these two flags:

                                HISE_SAMPLE_DIALOG_SHOW_INSTALL_BUTTON=1
                                HISE_SAMPLE_DIALOG_SHOW_LOCATE_BUTTON=0

                                to be replaced by:

                                HISE_SAMPLE_DIALOG_INSTALL_ONLY

                                (you get ONLY the install button and text)

                                and

                                HISE_SAMPLE_DIALOG_LOCATE_ONLY

                                (you get ONLY the locate button and text)

                                • if as a developer you put both in then - firstly : silly you and secondly you get what you get

                                if you put in neither you get both buttons.

                                This leads to this logic in FrontendBar.cpp

                                	case DeactiveOverlay::SamplesNotInstalled:
                                
                                #if HISE_SAMPLE_DIALOG_INSTALL_ONLY
                                        return "Please click below to install the samples from the downloaded archive.";
                                		break;
                                #elif HISE_SAMPLE_DIALOG_LOCATE_ONLY
                                		return "Please click below to point to the location where you've already installed the samples.";
                                		break;
                                #else
                                		return "Please click below to install the samples from the downloaded archive or point to the location where you've already installed the samples.";
                                		break;
                                
                                #endif
                                     
                                

                                ..and similar for the button displays

                                HISE Development for hire.
                                www.channelrobot.com

                                d.healeyD 1 Reply Last reply Reply Quote 0
                                • d.healeyD
                                  d.healey @Lindon
                                  last edited by d.healey

                                  @Lindon

                                  but I think this area need s a re-evaluation - its a bunch of confusing double negative flags (probably my fault as much as any one):

                                  True, but it's still working for me and not for you, I don't think changing the flags would fix that.

                                  Do you have multiple copies of the source code on your machine?

                                  Libre Wave - Freedom respecting instruments and effects
                                  My Patreon - HISE tutorials
                                  YouTube Channel - Public HISE tutorials

                                  LindonL 1 Reply Last reply Reply Quote 0
                                  • LindonL
                                    Lindon @d.healey
                                    last edited by

                                    @d-healey I have old copies on a separate external drive...

                                    HISE Development for hire.
                                    www.channelrobot.com

                                    d.healeyD 1 Reply Last reply Reply Quote 0
                                    • d.healeyD
                                      d.healey @Lindon
                                      last edited by d.healey

                                      @Lindon I don't think that's the problem then... I'm out of idea until we get some more testers

                                      @ustk @hisefilo ?

                                      Libre Wave - Freedom respecting instruments and effects
                                      My Patreon - HISE tutorials
                                      YouTube Channel - Public HISE tutorials

                                      hisefiloH 1 Reply Last reply Reply Quote 0
                                      • hisefiloH
                                        hisefilo @d.healey
                                        last edited by

                                        @d-healey I can test it on Macos, what should I do?

                                        d.healeyD 1 Reply Last reply Reply Quote 0
                                        • d.healeyD
                                          d.healey @hisefilo
                                          last edited by

                                          @hisefilo Thanks.

                                          • Build my develop branch - https://github.com/davidhealey/HISE/tree/develop
                                          • Run HISE (the one you just made from my branch)
                                          • Make a new project folder
                                          • Add a script and sampler
                                          • Open up project preferences and add these lines in the Extra Definitions OSX box
                                          HISE_SAMPLE_DIALOG_SHOW_INSTALL_BUTTON=1
                                          HISE_SAMPLE_DIALOG_SHOW_LOCATE_BUTTON=0
                                          
                                          • Make sure the project is pointing to my develop branch's source code
                                          • Export as a standalone app
                                          • Run the app and let us know if it prompts you to install or locate the samples (or both).

                                          Libre Wave - Freedom respecting instruments and effects
                                          My Patreon - HISE tutorials
                                          YouTube Channel - Public HISE tutorials

                                          hisefiloH 3 Replies Last reply Reply Quote 1
                                          • hisefiloH
                                            hisefilo @d.healey
                                            last edited by

                                            @d-healey all of my clang boys working on it

                                            Screen Shot 2020-04-30 at 12.27.00.png

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

                                            20

                                            Online

                                            1.7k

                                            Users

                                            11.8k

                                            Topics

                                            102.4k

                                            Posts