Bug Reports against Recent Builds -- Report bugs here - page 6 - CHDK Releases - CHDK Forum

Bug Reports against Recent Builds -- Report bugs here

  • 281 Replies
  • 126056 Views
Re: Bug Reports against Recent Builds -- Report bugs here
« Reply #50 on: 04 / September / 2008, 04:15:26 »
Advertisements
p.s. if I remember exactly, Allbest in russian forum tested a630 with the same CHDK modification, and it did not work...

Hi ewavr,

any luck to have this bug fixed?

*

Offline ewavr

  • ****
  • 1057
  • A710IS
Re: Bug Reports against Recent Builds -- Report bugs here
« Reply #51 on: 04 / September / 2008, 04:29:21 »
p.s. if I remember exactly, Allbest in russian forum tested a630 with the same CHDK modification, and it did not work...

Hi ewavr,

any luck to have this bug fixed?

No progress...
But I can make another test build (for which camera?).

Re: Bug Reports against Recent Builds -- Report bugs here
« Reply #52 on: 04 / September / 2008, 04:49:31 »
No progress...
But I can make another test build (for which camera?).

powershot a630
Thanks for the reply.

Re: Bug Reports against Recent Builds -- Report bugs here
« Reply #53 on: 04 / September / 2008, 04:53:45 »


*

Offline ewavr

  • ****
  • 1057
  • A710IS

Re: Bug Reports against Recent Builds -- Report bugs here
« Reply #55 on: 04 / September / 2008, 04:59:48 »
thanks ewavr for the fast response.
I will try this evening. I'm at work now ;-)

Re: Bug Reports against Recent Builds -- Report bugs here
« Reply #56 on: 04 / September / 2008, 13:13:42 »
Test version.

;-)
The bug is fixed.
I have done 3 times the test (pressing the shutter button quickly) and now
the raw files is saved.

spasiba bolshoi

*

Offline ewavr

  • ****
  • 1057
  • A710IS
Re: Bug Reports against Recent Builds -- Report bugs here
« Reply #57 on: 04 / September / 2008, 19:13:25 »
The bug is fixed.
I have done 3 times the test (pressing the shutter button quickly) and now
the raw files is saved.

Well, patch for A630 in trunk now.
IXUS950 also has this bug (as whoever says)... Maybe this bug present at all cameras newer than A710   >:(


Some errors with IF-commands (Allbest & JuciPhox)
« Reply #58 on: 05 / September / 2008, 06:36:19 »
Hello *.*,

there are some serious problems with script IF-commands (Allbest & JuciPhox).

Please have a look at the following small examples:

First IF-command is FALSE
Second IF-command is following the first
Second IF-command without "endif"
Code: [Select]
@title IF01
x=0
t=1
if x>0 then
if t>0 then A=2
print "FALSE"
goto "xyz"
endif
print "TRUE"
:xyz
end
Script is working correct

First IF-command is FALSE
Second IF-command is following the first
Second IF-command with "endif"
Code: [Select]
@title IF02
x=0
t=1
if x>0 then
if t>0 then A=2 endif
print "FALSE"
goto "xyz"
endif
print "TRUE"
:xyz
end
Script is working incorrect - "FALSE" is printed

First IF-command is FALSE
Print-command between first and second IF-command
Second IF-command without "endif"
Code: [Select]
@title IF03
x=0
t=1
if x>0 then
print "dummy"
if t>0 then A=2
print "FALSE"
goto "xyz"
endif
print "TRUE"
:xyz
end
parse err (pointing at the last line of the script)

First IF-command is FALSE
Print-command between first and second IF-command
Second IF-command with "endif"
Code: [Select]
@title IF04
x=0
t=1
if x>0 then
print "dummy"
if t>0 then A=2 endif
print "FALSE"
goto "xyz"
endif
print "TRUE"
:xyz
end
Script is working correct

First IF-command is TRUE
Second IF-command is following the first
Second IF-command without "endif"
Code: [Select]
@title IF05
x=0
t=1
if x=0 then
if t>0 then A=2
print "TRUE"
goto "xyz"
endif
print "FALSE"
:xyz
end
Script is working correct

First IF-command is TRUE
Second IF-command is following the first
Second IF-command with "endif"
Code: [Select]
@title IF06
x=0
t=1
if x=0 then
if t>0 then A=2 endif
print "TRUE"
goto "xyz"
endif
print "FALSE"
:xyz
end
Script is working correct

First IF-command is TRUE
Print-command between first and second IF-command
Second IF-command without "endif"
Code: [Select]
@title IF07
x=0
t=1
if x=0 then
print "dummy"
if t>0 then A=2
print "TRUE"
goto "xyz"
endif
print "FALSE"
:xyz
end
Script is working correct

First IF-command is TRUE
Print-command between first and second IF-command
Second IF-command with "endif"
Code: [Select]
@title IF08
x=0
t=1
if x=0 then
print "dummy"
if t>0 then A=2 endif
print "TRUE"
goto "xyz"
endif
print "FALSE"
:xyz
end
Script is working correct


Who can help anyway?

regards
chiptune


Re: Bug Reports against Recent Builds -- Report bugs here
« Reply #59 on: 05 / September / 2008, 09:43:40 »
I suppose you have to try adding an 'else'(without statement):
else
endif

 

Related Topics