Giter VIP home page Giter VIP logo

booster's Introduction

Booster

Booster is a framework for creating complex, application-like RoboFont extensions. RoboFont has an incredibly rich set of built in tools and APIs for creating complex tools. It's really fantastic and the parts for 99.something% of scripts and extensions are already built in. Booster fills in the 0.something% that I have needed in my recent extensions. The features include:

  • A base class for extension controllers.
  • A font manager for fonts with and without interfaces.
  • Application inactivity monitoring.
  • A request center.

And other stuff. It has been useful to me.

Documentation

The documentation will be in the code. It's not perfect, but it's the only way that I'm able to keep documentation up to date. Besides, if you aren't comfortable reading code, you probably don't need this.

The best place to start is controller.py.

NOTE

If at attribute, property, method, function, class or variable name starts with an underscore, DO NOT USE IT. Anything starting with an underscore is for internal use only and is subject to change whenever I want to change it.

booster's People

Contributors

benkiel avatar letterror avatar typemytype avatar typesupply avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

booster's Issues

appext.font.AppExtBase needs to subscribe to naked.

When someone registers for a notification from an AppExt object, their callbacks will be expecting the AppExt objects. However, AppExtBase passes all notification data straight to naked. This is the correct way to handle things internally, but we need to make sure that the object received by the observer is the AppExt object. We can do that with something like this:

def addObserver(self, observer, methodName, notification):
    self.naked().addObserver(observer, "_notificationRedirectCallback", notification)
    if notification not in self._notificationObservers:
        self._notificationObservers[notification] = {}
    self._notificationObservers[notification][weakref.ref(observer)] = methodName

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.