Replies: 1 comment 5 replies
-
Having all three plugins use a common core (or combining them all into a single plugin) sounds like an excellent idea. I endorse. What are your ideas for the new approach to labor assignment? |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
These three plugins are variations on a theme and share a lot of code by copy and paste. They also conflict with one another; running more than one of them at the same time will generally cause problems. It makes sense to consolidate them.
I also have an idea for a different approach to labor assignment that would use some of the same functionality that's in
labormanager
now, but would maintain persistent state and operate differently. Rather than simply replace or forklabormanager
, I'd rather implement it as an alternative within a common framework, keeping the existing version without adding further duplicated code.I have long wanted to combine them into a single plugin that has the ability to do the work of any one of them. The idea is to have a single plugin that then will use whichever submodule the user selects.
My initial strategy is going to be along these lines:
Beta Was this translation helpful? Give feedback.
All reactions