0
I Use This!
Inactive

Commits : Listings

Analyzed 1 day ago. based on code collected 1 day ago.
May 25, 2023 — May 25, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
* a590: fixing raw size More... over 15 years ago
+ added new feature (By PlasmaHH) - compare Propcases Usage: go to debug menu, go to "ALT +/- debug action", set to "CmpProps" (Compare propcases) then in alt-mode, press the +/- button to initialize it (all current propcases are then saved) then after you made changes in the camera (canon menu) you enter alt-mode, press +/- button - you will see all the props that have changed, until you exit alt-mode if there are more than 12 changed propcases, after 15 seconds it will show the next entries. this is not convenient, but i couldnt come up with a better way for now. on the other hand: it's not clever changing so many things at once (in-camera) to find out propcases. one at a time is the better solution. More... over 15 years ago
* fixes in chdk menu: now left & right toggle checkboxes (not only the set button) - patch sent in by MartinBudden - http://chdk.kernreaktor.org/mantis/view.php?id=115 More... over 15 years ago
* language updates More... over 15 years ago
modified some defines for a590 & g9. needs more work though. disabled the stuff that definitly isnt working yet. camera.h should some day be cleaned up somehow More... over 15 years ago
* fix for tx1 - now with #define CAM_HAS_VIDEO_BUTTON 1 -> unlocks a bunch of stuff More... over 15 years ago
fix isxdigit for dryos More... over 15 years ago
+ add lua functions for flash parameters (onboard flash memory, not light) num=get_flash_params_count() -- num is the number of parameters str,num=get_parameter_data(id) -- str is the parameter value as a lua string, which may contain embedded NULLs or other non-printable characters. If the size of the flash parameter is 4 bytes or less, a second value is returned, containing the parameter value as a number if the parameter id is invalid, or the parameter size is 0, then nil is returned. scripts/examples/paramdmp.lua contains an example * added CAMERA_HAS_JOGDAIL for g7/g9/sx100is, and used it instead of checking individual camera defines More... over 15 years ago
+ Lua string lib. see http://www.lua.org/manual/5.1/manual.html#5.4 * Updated get_buildinfo to return two additional fields: os: string, either "dryos" or "vxworks" platformid: number * llibtst.lua is updated to test string lib, and no longer reports a listdir failure under dryos. * removed some redundant entries from sig_ref_vxworks_2.txt More... over 15 years ago
* cosmetic changes regarding propsets More... over 15 years ago
* fixed platform_id again :D (wasnt really a bug) More... over 15 years ago
+ new function (one of my favourites to date, and i just wrote it :D), only for s-series & TX-1 you now can use the flash during videos... see http://www.zshare.net/video/52034396605a6fd7/ for example it is in the override menu at the bottom. you can enable/disable the flash and set the power of the flash (0 - low,1 - middle, 2 - power! this should work in all modes! sorry, no automatic flash power!) DryOS (s5is) is experimental, as the propcase values arent verified by "authority" big thanks to ewavr, Savior of the CHDK-Universe! More... over 15 years ago
* fixed get_platform_id in ubasic and also in the "safety feature" now returns the right decimal platform id. perhaps someone can figure out why atoi(PLATFORMID) can't be assigned to conf.platformid on cfg creation ( error: initializer element is not constant)? More... over 15 years ago
+ added two new "raw exception" options: you can now disable the writing of raw/dng automatically when you enable edgeoverlay or set the modedial of the camera to auto (options are OFF at default) * small fix in connect4 More... over 15 years ago
+ added a nice little game - Connect Four (see http://en.wikipedia.org/wiki/Connect_Four ) game was written by CHDKLover & Kettmeister in the german forum, see http://chdk.kernreaktor.org/mantis/view.php?id=106 for more links More... over 15 years ago
several fixes in edgeoverlay.c: - changed file prefix from edge_ to EDG_ which fixes both filelength & saving issues on dryos - the timestamp of the edge files now is always correct (thx ewavr on hints for both of these) - the edge overalay now can be moved in alt-mode only. reason: some cameras have functions for up/down/left/right in original firmware, also the overlay was moved when in a menu (before) - some smaller fixes (i/o & layout) thx to plasmahh More... over 15 years ago
* update of a few lang files * moved "show raw saving time" from raw submenu to debug submenu (it isnt really a feature) trying to split my modifications into smaller svn commits now More... over 15 years ago
* fixed colors in DNG thumbnail for some cameras More... over 15 years ago
* sx100is - improver power-on procedure + sx100is - added jogdial support in menu, file browser and text reader More... over 15 years ago
dng for ixus75 from msl http://chdk.kernreaktor.org/mantis/view.php?id=104 More... over 15 years ago
+ raw operations for lua scripts, see http://chdk.setepontos.com/index.php/topic,2646.0.html set_raw_develop("filename") -- develop raw on next shot. If filename is nil (or omitted), any pending raw develop is canceled. raw_merge_start(operation) -- operation is a number: 0=sum 1=average. Other=error. raw_merge_add("filename") -- merge a file. raw_merge_end() -- complete merge operation. * cleanup some formatting, consts, etc. More... over 15 years ago
* updated french.lng + added "saving time switch" in raw menu (better in debug menu?) - it is disabled at default (when enabled, shows time it takes to save raw/dng) + added a feature that allows using cfgs from a different camera by resetting "critical" settings on startup of the platform id doesnt match (more settings? less settings? need input) + added "get_platform_id" to ubasic, which returns platformid (integer), with the help of this you can code platform depending scripts (in lua we dont need this, as we can get strings there) + finally added Bill's user menu mod - see http://chdk.setepontos.com/index.php/topic,2179.msg20301.html#msg20301 (something's still need to be done about the models without zoom lever) More... over 15 years ago
* fixed a590 zoom table (see http://chdk.setepontos.com/index.php/topic,2659.msg24733.html#msg24733) * language updates * fixed very small bug in gui_lang.c which caused a bug in the dng menu * RAW osd elements now change to DNG when dng saving is enabled + added turkish language + added define CAM_BRACKETING for cameras that have bracketing in original firmware (g7,g9,s2is,s3is,s5is - need propcase for the dryos ones!) for gui.c More... over 15 years ago
* small language fix: "raw develop" the same in main and popup menu More... over 15 years ago
+ added initial DNG support + added rear curtain flash sync for a570 & sx100is More... over 15 years ago
check in correct stubs_entry.S More... over 15 years ago
Set CFLAGS differently for gcc3 and gcc4. See http://chdk.setepontos.com/index.php/topic,2500.30.html More... over 15 years ago
some ignore props More... over 15 years ago
+ added g9 chdk for 1.00d (see http://chdk.setepontos.com/index.php/topic,2342.msg24602.html#msg24602) * updated spanish.lng More... over 15 years ago
* small edit in notes.txt of a590 More... over 15 years ago