Sounds fantastic

.
Quote:
Originally Posted by KevinH
...
1. When scripts are registered the user must select a type from the following list:
1. Input Script
2. Output Script
3. Editor Script
4. Metadata Script
....
|
Not quite understanding this new architecture yet but: I can add new attribute "type" to script manifest with appropriate values:
Code:
<attribute name="type" use="required">
<simpleType>
<restriction base="string">
<enumeration value="input" />
<enumeration value="output" />
<enumeration value="edit" />
<enumeration value="meta" />
<enumeration value="other" />
</restriction>
</simpleType>
</attribute>
and remember it in Settings and elsewhere, so that ScriptInterface class (or other classes?) could react to this. This will make my sigilResource tag redundant. Do you propose to remove it? The whole architecture depends on it at the moment.
Just in case I added "other".
Quote:
Originally Posted by KevinH
...
2. Add the modal Dialog with infinite progress bar and cancel button. Upon completion it will show success or failure and if failure a error widget with text gathered from the QProcess standard error pipe.
...
|
Ok, I'll look into it... just be easy on me, I'm newbie...
Regards