HISE Logo Forum
    • Categories
    • Register
    • Login

    Installers

    Scheduled Pinned Locked Moved General Questions
    101 Posts 9 Posters 8.3k 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.
    • Dan KorneffD
      Dan Korneff
      last edited by

      I was able to create a shortcut for the user library and access thru there 馃憤
      My next issue involves confusion over the source and destination. When you add a folder to your list, what is that actually selecting?? I went thru and added my plug, and it automatically selects the Source and Destination. In Inno Setup, I could script the source file, and it's destination. This just makes me scratch my head.

      location.png

      1 Reply Last reply Reply Quote 0
      • Dan KorneffD
        Dan Korneff
        last edited by

        I think I got it sorted. Add folders and sub folders (case sensitive) to your destination, then right click and "add files".

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

          Or in this case, just use "Absolute Reference"...

          1 Reply Last reply Reply Quote 2
          • orangeO
            orange @Dan Korneff
            last edited by

            @dustbro These examples are very useful, you can easily modify them. there are templates for Whitebox Packages and Inno setup ;)

            Link Preview Image
            wdl-ol/IPlugExamples/IPlugEffect/installer at master 路 olilarkin/wdl-ol

            Enhanced version of Cockos' iPlug - A simple-to-use C++ framework for developing cross platform audio plugins and targeting multiple plugin APIs with the same code. VST / VST3 / Audiounit / RTAS / AAX (Native) formats supported. NOTE: THIS IS OBSOLETE, PLEASE SEE IPLUG2: - wdl-ol/IPlugExamples/IPlugEffect/installer at master 路 olilarkin/wdl-ol

            favicon

            GitHub (github.com)

            develop Branch / XCode 13.1
            macOS Monterey / M1 Max

            Dan KorneffD 1 Reply Last reply Reply Quote 1
            • Dan KorneffD
              Dan Korneff @orange
              last edited by

              @orange Thank you!

              1 Reply Last reply Reply Quote 0
              • Dan KorneffD
                Dan Korneff
                last edited by

                @orange @Christoph-Hart When I use the installer I made with Inno, the AAX plugins install as folders instead of plugins and aren't recognized in ProTools. Any experience with this?

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

                  For some reason the AAX plugins end up in a wrong folder structure so I have this beautiful gem in my build script:

                  xcopy "build\AAX\%plugin_name% x86.aaxplugin\Contents\Win32\%plugin_name% x86.aaxplugin" "build\AAX\%plugin_name% x64.aaxplugin\Contents\Win32\"
                  ren "build\AAX\%plugin_name% x64.aaxplugin\Contents\Win32\%plugin_name% x86.aaxplugin" "%plugin_name%.aaxplugin"
                  ren "build\AAX\%plugin_name% x64.aaxplugin\Contents\x64\%plugin_name% x64.aaxplugin" "%plugin_name%.aaxplugin"
                  ren "build\AAX\%plugin_name% x64.aaxplugin" "%plugin_name%.aaxplugin"
                  rmdir /Q /S "build\AAX\%plugin_name% x86.aaxplugin"
                  
                  Dan KorneffD 1 Reply Last reply Reply Quote 0
                  • Dan KorneffD
                    Dan Korneff @Christoph Hart
                    last edited by

                    @Christoph-Hart Inno script? or HISE command line?

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

                      @dustbro That looks like batch scripting to me

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

                      1 Reply Last reply Reply Quote 0
                      • orangeO
                        orange
                        last edited by orange

                        I made this template for Inno Setup. It works for VST2 / VST3 / AAX...

                        Also it is compatible with 32 & 64 bit installations with checkbox. It also checks 32/64 bit versions, if the system is x86, it won't allow to install 64 bit plugins.

                        Just modify the necessary sections with line by line for you.

                        Cheers ;)

                        develop Branch / XCode 13.1
                        macOS Monterey / M1 Max

                        Dan KorneffD 2 Replies Last reply Reply Quote 0
                        • Dan KorneffD
                          Dan Korneff @orange
                          last edited by

                          @orange the script is almost exactly like what I have.
                          It turns out to be a PACE signing issue. Although the plugin shows as being a folder instead of the AAX plugin icon, it's working. Good enough for me! 馃槀

                          orangeO 1 Reply Last reply Reply Quote 1
                          • orangeO
                            orange @Dan Korneff
                            last edited by orange

                            @dustbro Good to see it is working.

                            Actually I couldn't managed to add the AAX icon to the aax plugin folders, but aax plugins work without any issues ;)

                            By the way if anyone know how to add aax icons to the installation files or how to create folders with aax icons, it would be good to share from here.

                            develop Branch / XCode 13.1
                            macOS Monterey / M1 Max

                            Dan KorneffD 1 Reply Last reply Reply Quote 0
                            • Dan KorneffD
                              Dan Korneff @orange
                              last edited by

                              @orange I just noticed this at the end of compiling AAX:

                              aax folder icon.png

                              Maybe we can set the folder Icon with the installer as well?

                              orangeO 1 Reply Last reply Reply Quote 0
                              • orangeO
                                orange @Dan Korneff
                                last edited by

                                @dustbro Hise creates plugin AAX folders with the icons. but I couldn't managed to add this icons to installers. It would be cool that if somebody can share how do it :)

                                develop Branch / XCode 13.1
                                macOS Monterey / M1 Max

                                Dan KorneffD 1 Reply Last reply Reply Quote 0
                                • Dan KorneffD
                                  Dan Korneff @orange
                                  last edited by

                                  @orange mac or pc? With inno, I was able to add my own custom icon to the exe

                                  orangeO 1 Reply Last reply Reply Quote 0
                                  • orangeO
                                    orange @Dan Korneff
                                    last edited by

                                    @dustbro In Inno only. Can you send the magic code for the icon?

                                    develop Branch / XCode 13.1
                                    macOS Monterey / M1 Max

                                    Dan KorneffD 1 Reply Last reply Reply Quote 0
                                    • Dan KorneffD
                                      Dan Korneff @orange
                                      last edited by

                                      @orange I used the script wizard to get started. It's one of the setup options.
                                      Untitled.png

                                      orangeO 1 Reply Last reply Reply Quote 1
                                      • orangeO
                                        orange @Dan Korneff
                                        last edited by

                                        @dustbro Thanks mate, I will check it out ;)

                                        develop Branch / XCode 13.1
                                        macOS Monterey / M1 Max

                                        1 Reply Last reply Reply Quote 0
                                        • Dan KorneffD
                                          Dan Korneff @orange
                                          last edited by

                                          This post is deleted!
                                          1 Reply Last reply Reply Quote 0
                                          • NatanN
                                            Natan
                                            last edited by Natan

                                            For Windows, The Best Installer is Install Forge, It Is Free And EASY To Use
                                            ( No Script Required )

                                            Home Page >>> https://installforge.net/
                                            Download Page >>> https://installforge.net/download/
                                            Direct Download >>> https://installforge.net/downloads/?i=IFSetup

                                            Cheers :)

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

                                            54

                                            Online

                                            1.7k

                                            Users

                                            11.7k

                                            Topics

                                            102.2k

                                            Posts