How are you making your addon work for both 1.1 and 1.2?

tyteen4a03

Well-known member
Just wondering the options out there...

So far from my tinkerings, the biggest issue is that callback signature must match.
 
You might have to branch and release two versions for something like that. Or just go 1.2 exclusive.
 
Clever - putting in 2 classes and only launching one.

Here is what I did: here and here
The nice thing about @xfrocks's method is that there is no duplicate code. You could do something similar by making both of those files extend a single file that includes the methods where the callback signature does not need to change.
 
Top Bottom