Releases: mvmn/gp2srv
Releases · mvmn/gp2srv
2.11 Beta
2.10 Beta
2.9 Beta
2.8 Beta
2.7 Java5 compatible
Made a Java5 compatibility branch.
Removed WebSockets and everything that needed latter Java versions to keep Java 5 compatibility.
Consequently removed script tracing.
2.7 Beta
- Added possibility to download captured files to PC's filesystem (including mass download)
- Added script step "download to PC"
- Added script step "delete"
Can be used in combination with "download to PC" in order to capture to camera's internal RAM, download image to PC and then delete from internal RAM in order to continue capturing without getting internal RAM overloaded. - Added button capture+download+delete that would download captured file into PC's filesystem and delete it from camera filesystem (be it SD card or internal RAM)
- Some minor corrections (disable capture button properly during capture etc)
2.6 Beta
- Fixed very bad bug in average picture brightness calculation
- Scripting improvements: added possibility to execute JEXL "script" - e.g. have for loops and multiple statements
- Scripting improvements: added script helper for creating arrays and lists of objects
- Scripting improvements: proper conversion of arrays to strings for script variable display
2.5 Beta
- UI changed to be narrower (better fit for iPhone and the like)
- New script command for stopping script execution (e.g. conditionally when loop count > X, unconditionally at last step, etc)
- Error info now has loop number, also loop number of latest error is exported as script variable
- Corrected breadcrumbs of folder browsing
2.4 Beta
- Improved script execution engine: now every step's condition and expression (if present - capture photo has no expression) are not just evaluated before step execution, but also exported as variables (note: expression is not evaluated if condition evaluated to false), so that they can be looked up in info/trace.
- Added possibility to set fixed delay after every script step for currently running script - so that one could analyze variable states after each step.
- Added possibility to set "stop on error" for currently running script, so that script would stop in case error happens in any step.
- Added possibility to mass-load thumbnails for camera filesystem files in browse view.
- Automatically export loop start time as script variable, so that throttling would be doable in one step, e.g. wait step with expression = "throttleTime - (__currentTimeMillis - __loopStartTime)".