In this thread I will try to keep a log of all the things I'm working on, so people will know what to expect from the next release. For more details you can of course always consult the code that is in CVS.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Today I'm implementing the gimp_get_data and gimp_set_data functions. The nice thing is that this is going to be completely transparent for the derived plug-in. You just have to mark the fields you want to save and the base plug-in does all the rest, using reflection. As an example:
public class MyPlugin : Plugin
{
[SaveAttribute]
int foo; // This variable is going to be saved
string bar; // And this variable is not
}
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
gimp_get_data and gimp_set_data API coverage is now in CVS. Next step is completing the GUI for the Picture Package plug-in. If this is finished, I will release Gimp# 0.2
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Gimp# 0.3 was released a few days ago. I'm now concentrating on implementing functionality for the Picture Package plug-in, which is supposed to be released as Gimp# 0.4. Most likely this will happen begin December.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Adding functionality now for Gimp# 0.5, which will feature a more polished version of the Picture Package plug-in. I will probably release the next version beginning of next year.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
In this thread I will try to keep a log of all the things I'm working on, so people will know what to expect from the next release. For more details you can of course always consult the code that is in CVS.
Today I'm implementing the gimp_get_data and gimp_set_data functions. The nice thing is that this is going to be completely transparent for the derived plug-in. You just have to mark the fields you want to save and the base plug-in does all the rest, using reflection. As an example:
public class MyPlugin : Plugin
{
[SaveAttribute]
int foo; // This variable is going to be saved
string bar; // And this variable is not
}
gimp_get_data and gimp_set_data API coverage is now in CVS. Next step is completing the GUI for the Picture Package plug-in. If this is finished, I will release Gimp# 0.2
Gimp# 0.2 was released on November 5th. First thing to do next is to add autoconf/automake stuff and reorganize the directory structures.
Gimp# 0.3 was released a few days ago. I'm now concentrating on implementing functionality for the Picture Package plug-in, which is supposed to be released as Gimp# 0.4. Most likely this will happen begin December.
Adding functionality now for Gimp# 0.5, which will feature a more polished version of the Picture Package plug-in. I will probably release the next version beginning of next year.
Followup on my activities will be posted on my blog: http://maurits.wordpress.com/