sketchucation logo sketchucation
    • Login
    ℹ️ Licensed Extensions | FredoBatch, ElevationProfile, FredoSketch, LayOps, MatSim and Pic2Shape will require license from Sept 1st More Info

    [Plugin] Components manager plugin

    Scheduled Pinned Locked Moved Plugins
    156 Posts 15 Posters 42.7k Views 15 Watching
    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.
    • OxerO Offline
      Oxer
      last edited by

      With v1.12.4 on Mac the scrollbars continue missing and the translation works partially.

      It works in:

      • Plugins Menu
      • Titles of the windows.
      • Tooltips of the items in the List.
      • Tooltip of the toolbar icon.
      • All the strings in the Filters window.
      • String: "List update at "
      • All pop-up windows.

      The rest no.

      "The result is the end what is important is the process" by Oxer
      [http://www.oxervision.blogspot.com/(http://www.oxervision.blogspot.com/)]

      1 Reply Last reply Reply Quote 0
      • inteloideI Offline
        inteloide
        last edited by

        @oxer said:

        The rest no.

        Ok this means that "options" are not translated. Are all options not translated ? (remember that in current Localization.rb file I let everything in English, to try it you have to change translation).

        Also, for your window size issue, I added a option to save window size, which solve temporary your size issue.

        V 1.13.0 :
        Added : New option to save window size
        Added : Show refreshing time in the window status bar
        Corrected : Remove one unused global variable

        Humanity will do a huge step when the IT professionals will understand that computers are tools...

        1 Reply Last reply Reply Quote 0
        • OxerO Offline
          Oxer
          last edited by

          Yes, all Options not translated. I changed the translation.
          The "Save Window Size" option works fine but there is a great problem, when you call the plugin the first time all work fine, then you close the Component Manager window, the second time that you call the plugin, it appears the Component Manager window with the message: "Please refresh the list" but the buttons doesn't work, no Refresh List, no Link to file, nothing.

          Component Manager window.jpg

          "The result is the end what is important is the process" by Oxer
          [http://www.oxervision.blogspot.com/(http://www.oxervision.blogspot.com/)]

          1 Reply Last reply Reply Quote 0
          • JQLJ Offline
            JQL
            last edited by

            Inteloide,

            I tried it again today and the problems with push-pull and undo have disappeared, but now I'm seing it messing with Fredoscale and I also believe JointPushPull. I think it's because they perform changes to components and groups visually and interactively.

            I think your plugin is making Fredo scale multiply a given value several times, until the mouse is clicked.

            I also believe it's making JointPushPull crash.

            May you have some conflicts with your observers and Fredo's?

            www.casca.pt
            Visit us on facebook!

            1 Reply Last reply Reply Quote 0
            • inteloideI Offline
              inteloide
              last edited by

              @jql said:

              May you have some conflicts with your observers and Fredo's?

              Hello JQL,

              I check a bit Fredo's plugin code, apparently nothing should make conflict...but I will ask Fredo if we can check this toegether.

              Inteloide

              Humanity will do a huge step when the IT professionals will understand that computers are tools...

              1 Reply Last reply Reply Quote 0
              • JQLJ Offline
                JQL
                last edited by

                But did you see what happens? Do you want me to make a video or something?

                www.casca.pt
                Visit us on facebook!

                1 Reply Last reply Reply Quote 0
                • inteloideI Offline
                  inteloide
                  last edited by

                  Hello JQL,

                  Yes a little video would be helpful.

                  Inteloide

                  Humanity will do a huge step when the IT professionals will understand that computers are tools...

                  1 Reply Last reply Reply Quote 0
                  • JQLJ Offline
                    JQL
                    last edited by

                    Inteloide,

                    There you have the video. If component manager plugin is disabled FredoScale works normally.
                    It also works as usual on groups and sometimes on components with multiple instances.

                    The object being stretched by FredoScale Box Stretch to Target is a component.

                    Thanks again for all your effort,

                    JQL


                    FredoScale_Box_Stretch_to_Target_with_Component_Manager_v1.13.0_On.swf

                    www.casca.pt
                    Visit us on facebook!

                    1 Reply Last reply Reply Quote 0
                    • thomthomT Offline
                      thomthom
                      last edited by

                      Hi there

                      It has been brought to my attention that this plugin can conflict with other plugins. I just got a report from a customer that experienced SketchUp crashing when using Vertex Tools. After debugging it turned out that the crashing stopped once this plugin was disabled.

                      I looked at the source code and I identified several problems.

                      The main problem is that this plugin uses observers that modifies the model in the observer events. This causes a number of issues, for instances interrupting other tools and plugins. It breaks the currently running operation if you perform model changes in observer events. It's also prone to cause crashes in SketchUp - which is happening here.

                      How, there is a pattern one can use to make observers safer, it's demonstrated in a code example published on GitHub: https://github.com/SketchUp/sketchup-safe-observer-events

                      It also defines a bunch of methods outside of any module, which in effect defines them in Kernel - which means they become available to every object that exist - big potential for clashing with other plugins.
                      It's recommended to contain all methods in a top level module to avoid clashing with other plugins, as well as not using global variables. I've written an article that describes this in more detail:
                      http://www.thomthom.net/thoughts/2012/01/golden-rules-of-sketchup-plugin-development/

                      Also a checklist of key items to verify when publishing a plugin:
                      http://www.thomthom.net/thoughts/2013/02/sketchup-plugin-checklist/

                      On a side note, not rleated to clashing, but for the sake of performance; typename is very slow. using is_a? or kind_of? is many times faster.
                      http://www.thomthom.net/thoughts/2011/12/never-ever-use-typename/

                      It'd be good if you could address the issues that makes your plugin conflict with other plugins. Causing crashes is very unfortunate for the users as they may lose their work.

                      Thomas Thomassen — SketchUp Monkey & Coding addict
                      List of my plugins and link to the CookieWare fund

                      1 Reply Last reply Reply Quote 0
                      • inteloideI Offline
                        inteloide
                        last edited by

                        Hello Thomthom,

                        Thank you for your always useful remarks.
                        Actually I was working with JQL to solve conflict issues he had with other plugins.
                        The new version I just posted should solve the problem.

                        I corrected also some coding according your advice :
                        I wrapped my file BGSketchup.rb in a module but I kept the global variable because it's used for other plugins (maybe I can change this later). But the global variable has a special name.
                        For the other variables they are replaced with module variables as per your advice.

                        For observers, I proceed in a new way and I update entity attribute only when user is asking a specific action from the plugins (reload liste, save components, etc...) or when saving the model. Therefore it should be interferring other plugins.
                        (sorry, I didn't use your code....yet ;o)

                        Once you have made some testing with your plugins and it's running ok, I will update it in the pluginstore to inform all current users.

                        Thanks again for your help improving this plugin.

                        Inteloide

                        Humanity will do a huge step when the IT professionals will understand that computers are tools...

                        1 Reply Last reply Reply Quote 0
                        • inteloideI Offline
                          inteloide
                          last edited by

                          A bug appeared in my version 1.14.3 rbz file....
                          Anyone who download this version must download version 1.14.4 AND remove "BGSketchup_Robot.rb" file from their plugin directory...
                          Sorry for this error.

                          Inteloide

                          Humanity will do a huge step when the IT professionals will understand that computers are tools...

                          1 Reply Last reply Reply Quote 0
                          • inteloideI Offline
                            inteloide
                            last edited by

                            Hello !

                            What about last version of the plugins ? Does it works on your computer ?
                            If yes I will upload it in the pluginstore.
                            Thank you for your feedbacks !

                            Inteloide

                            Humanity will do a huge step when the IT professionals will understand that computers are tools...

                            1 Reply Last reply Reply Quote 0
                            • O Offline
                              ole
                              last edited by

                              Works wonderfully!! Very sophisticated Plugin. I love its power and friendliness.

                              It needed Lines 44 and 66 of file BGSketchup.rb changed to delete .chr in my U.S. version of SU8 on win7.

                              1 Reply Last reply Reply Quote 0
                              • inteloideI Offline
                                inteloide
                                last edited by

                                @ole said:

                                Works wonderfully!! Very sophisticated Plugin. I love its power and friendliness.

                                It needed Lines 44 and 66 of file BGSketchup.rb changed to delete .chr in my U.S. version of SU8 on win7.

                                Hello Ole,

                                I don't have SU8 installed anymore on my PC (I have SU2013 and SU2014), therefore I cannot see the error you have. Normally SU 2013 and SU 8 have the same level of ruby but...looks like no 😉

                                Could you please send me the exact error you have (in ruby console) in order to solve it ? Because if I remove the .chr, for SU2013 it won't work. I maybe have to have 2 codes depending on SU version...

                                Thank for your feedback.
                                Inteloide

                                Humanity will do a huge step when the IT professionals will understand that computers are tools...

                                1 Reply Last reply Reply Quote 0
                                • O Offline
                                  ole
                                  last edited by

                                  With version 1.14.4 downloaded from this thread, plugin doesn't crash but nothing happens. I'm still learning how it works.


                                  Happens when saving or reloading by right-click.

                                  1 Reply Last reply Reply Quote 0
                                  • inteloideI Offline
                                    inteloide
                                    last edited by

                                    @ole said:

                                    With version 1.14.4 downloaded from this thread, plugin doesn't crash but nothing happens. I'm still learning how it works.

                                    Hello Ole,

                                    Just post version 1.14.5, which include your modification, in first post of this thread.

                                    If you require any help to understand the plugin, you can ask me. Also you have the help file in first post and inside plugins : just click on "about" button and you have a link to the help file.

                                    Regards
                                    Inteloide

                                    Humanity will do a huge step when the IT professionals will understand that computers are tools...

                                    1 Reply Last reply Reply Quote 0
                                    • OxerO Offline
                                      Oxer
                                      last edited by

                                      Hi Inteloide,
                                      I have a quick test on Mac of the last version 1.14.5, for the moment all works fine except the previous problem with the translation, the Tooltips of the icons, Options of components and Options window aren't translated, see the image below
                                      Don't Translated.jpg

                                      The rest of the translation (pop-up windows) works fine.

                                      Here the complete new Spanish translation

                                      Localization.rb.zip

                                      "The result is the end what is important is the process" by Oxer
                                      [http://www.oxervision.blogspot.com/(http://www.oxervision.blogspot.com/)]

                                      1 Reply Last reply Reply Quote 0
                                      • inteloideI Offline
                                        inteloide
                                        last edited by

                                        Hello !

                                        Please download last version that mainly introduces a javascript error (for SU 2014, javascript errors are not displayed anymore), corrects some bugs.

                                        Oxer, this may raise some error message on Safari, which will help me to find your translation issue...

                                        Inteloide

                                        Humanity will do a huge step when the IT professionals will understand that computers are tools...

                                        1 Reply Last reply Reply Quote 0
                                        • inteloideI Offline
                                          inteloide
                                          last edited by

                                          Oxer,

                                          Version 1.14.8 may solve your translation issue. Thank you Aerilius, I have made a modification that should make Safari working properly.

                                          Let me know.

                                          Inteloide

                                          Humanity will do a huge step when the IT professionals will understand that computers are tools...

                                          1 Reply Last reply Reply Quote 0
                                          • OxerO Offline
                                            Oxer
                                            last edited by

                                            Fantastic, the translation works now on Mac !! 👍
                                            Thanks for the effort with the translation problem.

                                            "The result is the end what is important is the process" by Oxer
                                            [http://www.oxervision.blogspot.com/(http://www.oxervision.blogspot.com/)]

                                            1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 3
                                            • 4
                                            • 5
                                            • 6
                                            • 7
                                            • 8
                                            • 1 / 8
                                            • First post
                                              Last post
                                            Buy SketchPlus
                                            Buy SUbD
                                            Buy WrapR
                                            Buy eBook
                                            Buy Modelur
                                            Buy Vertex Tools
                                            Buy SketchCuisine
                                            Buy FormFonts

                                            Advertisement