HISE Logo Forum
    • Categories
    • Register
    • Login

    Develop branch build status

    Scheduled Pinned Locked Moved General Questions
    compilebuilddeveloplatest
    300 Posts 21 Posters 42.7k 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.
    • MikeBM
      MikeB
      last edited by

      If other individual features could be switched on and off via the context menu (View Option), that would be helpful.

      Here on the Mac, the editor is often laggy.
      With the option mentioned, one could also determine
      the reason for this and then switch off the function temp.

      "One hour of trial and error can save 10 minutes of reading the manual."
      "It's easier to hit the developer with feature requests than to spend 10 minutes reading the manual. :-)))"
      HISE Develop - Mac Pro 5.1, OS X 10.14.6, Projucer 6.02, Xcode 10.3

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

        Problem with rebuilding the interface, only noticed it in the most recent commit but may have been there before. This is sometimes causing crashes when adding new components.

        In this example I've added a panel and given it a paint routine that just fills it with blue.

        Peek 2021-08-27 16-30.gif

        Update: Actually I can trigger the crash consistently, it's triggered when clicking back in the code editor from the interface designer after adding a new control. Haven't been able to isolate it in a new project yet though, only in the project I'm working on, will keep trying to isolate it. The debugger takes me to line 414 of CodeEditorApiBase.h but I'm not sure what I'm looking for.

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

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

          Ok the crash is reproducable and it's weird.

          • New project.
          • Add a panel to the UI.
          • Add a reference to the panel to your script.
          • Set the panel's mouse callback to an empty function (you don't need to enable mouse callbacks in the property editor)
          • Hit F5 and notice in the component list (...) appears next to the panel's name
          • In the interface designer click the button to rebuild the UI and notice (...) goes away from the panel's name
          • Click in the script editor and kabooom!

          @Christoph-Hart Let me know if you want to do a debug session on this one if you can't recreate it

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

          ustkU Christoph HartC 2 Replies Last reply Reply Quote 0
          • ustkU
            ustk @d.healey
            last edited by

            @d-healey oh this is what I got today too! In my case, it was when removing from the interface a panel that has been declared and painted through a timer...

            I also had the blue colour thing, in my case I just had a wrong colour code value and discovered that Hise replaces it with this marvellous blue 😍

            Can't help pressing F5 in the forum...

            1 Reply Last reply Reply Quote 0
            • Christoph HartC
              Christoph Hart @d.healey
              last edited by

              @d-healey Thanks for the step list, should be fixed now.

              ulrikU 1 Reply Last reply Reply Quote 1
              • ulrikU
                ulrik @Christoph Hart
                last edited by

                @Christoph-Hart latest commit, all written code is gone, no NoteOn or NoteOff callbacks etc...
                Skärmavbild 2021-08-27 kl. 23.21.37.png Skärmavbild 2021-08-27 kl. 23.19.02.png

                Hise Develop branch
                MacOs 15.3.1, Xcode 16.2
                http://musikboden.se

                1 Reply Last reply Reply Quote 0
                • Christoph HartC
                  Christoph Hart
                  last edited by

                  yes I noticed that too, should be fixed now.

                  Meanwhile I've introduced a new glitch when you add a new line at the end of the code, but I'm too annoyed to fix this. Classic case of one fix, 5 new bugs...

                  d.healeyD 1 Reply Last reply Reply Quote 1
                  • d.healeyD
                    d.healey @Christoph Hart
                    last edited by

                    @Christoph-Hart said in Develop branch build status:

                    but I'm too annoyed to fix this. Classic case of one fix, 5 new bugs...

                    You've been busy. Take a break!

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

                    1 Reply Last reply Reply Quote 0
                    • MikeBM
                      MikeB
                      last edited by

                      @Christoph-Hart @d-healey
                      This morning 6 o'clock (Berlin-Standard-Time)
                      downloaded the latest version and compiled it.
                      MacOS - Without errors.

                      Worked with it for 4 hours - occasional crashes.
                      e.g. when I put the cursor into the editor.

                      The error is still there
                      if you type an open brace and return you get this:

                      if{
                           if
                       if
                      

                      "One hour of trial and error can save 10 minutes of reading the manual."
                      "It's easier to hit the developer with feature requests than to spend 10 minutes reading the manual. :-)))"
                      HISE Develop - Mac Pro 5.1, OS X 10.14.6, Projucer 6.02, Xcode 10.3

                      MikeBM 1 Reply Last reply Reply Quote 0
                      • MikeBM
                        MikeB @MikeB
                        last edited by

                        Another small problem is the constant opening of the autofill window. It prevents you from making corrections and if you are not careful and click too fast you suddenly have some code inserted.

                        Can't you do this like before by pressing the ESC key or at least switch the autofill on and off via SchortCut?

                        "One hour of trial and error can save 10 minutes of reading the manual."
                        "It's easier to hit the developer with feature requests than to spend 10 minutes reading the manual. :-)))"
                        HISE Develop - Mac Pro 5.1, OS X 10.14.6, Projucer 6.02, Xcode 10.3

                        1 Reply Last reply Reply Quote 2
                        • Christoph HartC
                          Christoph Hart
                          last edited by

                          Can't you do this like before by pressing the ESC key or at least switch the autofill on and off via SchortCut?

                          Yes good idea, it's added to the context menu.

                          if you type an open brace and return you get this:

                          It's fixed now.

                          Worked with it for 4 hours - occasional crashes.
                          e.g. when I put the cursor into the editor.

                          Can you pinpoint it to something reproducible? I suspect it's the generation of the debugging objects in the background that's causing the crashes (like the one David reported with the blue panel).

                          MikeBM 1 Reply Last reply Reply Quote 1
                          • MikeBM
                            MikeB @Christoph Hart
                            last edited by

                            @Christoph-Hart said in Develop branch build status:

                            Can't you do this like before by pressing the ESC key or at least switch the autofill on and off via SchortCut?

                            Yes good idea, it's added to the context menu.

                            if you type an open brace and return you get this:

                            It's fixed now.

                            Sunday - Quick support - Super Thank you very much

                            Worked with it for 4 hours - occasional crashes.
                            e.g. when I put the cursor into the editor.

                            Can you pinpoint it to something reproducible? I suspect it's the generation of the debugging objects in the background that's causing the crashes (like the one David reported with the blue panel).

                            Happens again and again when working on the LAFs.
                            But I can't really narrow it down yet.
                            I ran the stopwatch today because I suspected that it always happens when the file is saved automatically - but a correction is made at exactly the same time.
                            My assumption came from the fact that sometimes the last autosave file cannot be opened. So HISE obviously didn't finish saving.

                            Will report further

                            "One hour of trial and error can save 10 minutes of reading the manual."
                            "It's easier to hit the developer with feature requests than to spend 10 minutes reading the manual. :-)))"
                            HISE Develop - Mac Pro 5.1, OS X 10.14.6, Projucer 6.02, Xcode 10.3

                            ustkU 1 Reply Last reply Reply Quote 0
                            • ustkU
                              ustk @MikeB
                              last edited by

                              @MikeB said

                              Can't you do this like before by pressing the ESC key or at least switch the autofill on and off via SchortCut?

                              @Christoph-Hart said

                              Yes good idea, it's added to the context menu.

                              Just a minor thing, with automatic behaviour disabled, when you type and press ESC the menu shows up, but if you continue typing it disappears... Shouldn't it stay open?

                              Can't help pressing F5 in the forum...

                              1 Reply Last reply Reply Quote 0
                              • Christoph HartC
                                Christoph Hart
                                last edited by

                                @ustk said in Develop branch build status:

                                Just a minor thing, with automatic behaviour disabled, when you type and press ESC the menu shows up, but if you continue typing it disappears... Shouldn't it stay open?

                                Yes good find. Fixed now.

                                ustkU 1 Reply Last reply Reply Quote 2
                                • ustkU
                                  ustk @Christoph Hart
                                  last edited by ustk

                                  @Christoph-Hart Tab at the end of a line (i.e. to add a comment) makes a bizarre offset

                                  Can't help pressing F5 in the forum...

                                  1 Reply Last reply Reply Quote 0
                                  • Christoph HartC
                                    Christoph Hart
                                    last edited by

                                    Can you make a screenshot with whitespace display enabled (and paste in the exact code you typed)? Looks good here.

                                    ustkU 1 Reply Last reply Reply Quote 1
                                    • ustkU
                                      ustk @Christoph Hart
                                      last edited by

                                      @Christoph-Hart Making a video because it is even more annoying. When you tab for instance after var declarations to make the equal signs aligned, it's messed up... Video upcoming in a few min ;)

                                      Can't help pressing F5 in the forum...

                                      1 Reply Last reply Reply Quote 0
                                      • Christoph HartC
                                        Christoph Hart
                                        last edited by

                                        Btw you can use LiceCap to create little gifs. It‘s much faster than videos.

                                        ustkU 4 Replies Last reply Reply Quote 1
                                        • ustkU
                                          ustk @Christoph Hart
                                          last edited by

                                          @Christoph-Hart Oh thanks, looking at it...

                                          Can't help pressing F5 in the forum...

                                          1 Reply Last reply Reply Quote 0
                                          • ustkU
                                            ustk @Christoph Hart
                                            last edited by ustk

                                            @Christoph-Hart

                                            Untitled.gif

                                            Can't help pressing F5 in the forum...

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

                                            31

                                            Online

                                            1.7k

                                            Users

                                            11.8k

                                            Topics

                                            102.5k

                                            Posts