Git Product home page Git Product logo

Comments (13)

telis93 avatar telis93 commented on September 2, 2024

What does the message say?

from blueprint.

mlp73 avatar mlp73 commented on September 2, 2024

Got only "Installation failed! An error occurred while starting the extension"

skjermbilde 2014-11-13 kl 16 13 30

from blueprint.

telis93 avatar telis93 commented on September 2, 2024

I can't reproduce that in windows.
Which version of brackets are you using?

from blueprint.

mlp73 avatar mlp73 commented on September 2, 2024

Brackets sprint 0 build 1.0.0-15191 (release 3f2eb90a4)
build timestamp: Fri Oct 31 2014 14:26:26 GMT-0700

from blueprint.

salt42 avatar salt42 commented on September 2, 2024

can you install it manually and check if there are errors?

from blueprint.

mlp73 avatar mlp73 commented on September 2, 2024

I try by drag&drop of the .zip package but got unfortunately the same message. Was it what you meant by installing manually? (thx for help btw)

from blueprint.

salt42 avatar salt42 commented on September 2, 2024

you can download blueprint over github and move the content in the extensions folder (in brackets in the help menu is a link to open the extensions folder)

from blueprint.

mlp73 avatar mlp73 commented on September 2, 2024

Ok. I did this way and in the list of extensions it now appears with "extension error". I can only delete it.

from blueprint.

salt42 avatar salt42 commented on September 2, 2024

in brackets, you can press f12 (this open a debug window just like in the browser).
there you can search for a blueprint specific bug or make screens.
sry for the circumstances but I can't reproduce the bug.

from blueprint.

mlp73 avatar mlp73 commented on September 2, 2024

I'll do. No problem. I'm off for a couple of days now but I'll surely have a look and post back!

from blueprint.

burtnoir avatar burtnoir commented on September 2, 2024

I had the same problem but got it working by making a small change in the preferences.js init function. You need to move the first use of the PREFS object after the check. As follows:

    exports.init = function () {
        $ui = $('<ul class="perf-list"></ul>');
        //@todo remove sometime
//      localStorage.removeItem("blueprintPrefs");
        localStorage.removeItem("blueprintPreferences");

        loadPrefs();

        //check first init before trying to use it
        if (PREFS === null) {
            PREFS = defaultPrefValues;
            savePrefs();
        } else {
            PREFS = $.extend({}, defaultPrefValues, PREFS);
            savePrefs();
        }

        //
        if (PREFS.generelopenOnStart === true) {
            PREFS.generelopenOnStart = 'right';
        }
    };

Hope that helps.

from blueprint.

salt42 avatar salt42 commented on September 2, 2024

👍
and sry for that dirty code ;)

from blueprint.

mlp73 avatar mlp73 commented on September 2, 2024

Indeed, it was about that ;)
Thx for great help, and great plugin!

from blueprint.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.