User forums > Nightly builds

The 30 October 2011 build (7550) is out.

<< < (6/18) > >>

teto:
I suffer from different bugs (some from previous builds), one problem being I haven't found the way to reproduce them even if they often happen:
-I had this file where I wanted to do a switch(){ case: } and each time I would relaunch cb after the crash, it would crash on "cas..." (the lookup to autocomplete systematically made it crash so I typed it backwards ^^)
-Sometimes CTRL+MAJ+C or X doesn't do a thing, sometimes it works.
-Try replacing (CTRL+R) "this->axisComp[n]" in the following code, cb answers with "no matches found". Yet with CTRL+F it finds matches:


--- Code: ---    SJoystickComponent& comp = this->axisComp[n];
    const maxValue = (f32)this->axisComp[n].maxRead;
    const minValue = (f32)this->axisComp[n].minRead;
    //const f32 readScale = (f32)this->axisComp[n].maxRead - (f32)this->axisComp[n].minRead;

    //! Update min and max values if detect out of scope value
    if (hidEvent.value < minValue){
        this->axisComp[n].minRead = hidEvent.value;
    }
    else if (hidEvent.value > maxValue){
        this->axisComp[n].maxRead = hidEvent.value;
    }

--- End code ---
-Sometimes I can't edit a tab anymore. I need to change tab and then come back to my previous tab to be able to edit text once again.



All of them have been experienced with windows 7 64 bits. I'm not 100% sure but I may have experienced the latest bug on ubuntu too.

ollydbg:

--- Quote from: teto on November 10, 2011, 11:04:41 pm ----I had this file where I wanted to do a switch(){ case: } and each time I would relaunch cb after the crash, it would crash on "cas..." (the lookup to autocomplete systematically made it crash so I typed it backwards ^^)

--- End quote ---
What does this means? I can't follow you. Which step cause CB crash?


--- Quote ----Sometimes CTRL+MAJ+C or X doesn't do a thing, sometimes it works.

--- End quote ---
Press "X" does not work??? What is "MAJ"???



--- Quote ----Try replacing (CTRL+R) "this->axisComp[n]" in the following code, cb answers with "no matches found". Yet with CTRL+F it finds matches:


--- Code: ---    SJoystickComponent& comp = this->axisComp[n];
    const maxValue = (f32)this->axisComp[n].maxRead;
    const minValue = (f32)this->axisComp[n].minRead;
    //const f32 readScale = (f32)this->axisComp[n].maxRead - (f32)this->axisComp[n].minRead;

    //! Update min and max values if detect out of scope value
    if (hidEvent.value < minValue){
        this->axisComp[n].minRead = hidEvent.value;
    }
    else if (hidEvent.value > maxValue){
        this->axisComp[n].maxRead = hidEvent.value;
    }

--- End code ---

--- End quote ---
It looks like a bug in Find/replacement.



--- Quote ----Sometimes I can't edit a tab anymore. I need to change tab and then come back to my previous tab to be able to edit text once again.

--- End quote ---
How to reproduce this problem?

Jenna:

--- Quote from: teto on November 10, 2011, 11:04:41 pm ----Try replacing (CTRL+R) "this->axisComp[n]" in the following code, cb answers with "no matches found". Yet with CTRL+F it finds matches:


--- Code: ---    SJoystickComponent& comp = this->axisComp[n];
    const maxValue = (f32)this->axisComp[n].maxRead;
    const minValue = (f32)this->axisComp[n].minRead;
    //const f32 readScale = (f32)this->axisComp[n].maxRead - (f32)this->axisComp[n].minRead;

    //! Update min and max values if detect out of scope value
    if (hidEvent.value < minValue){
        this->axisComp[n].minRead = hidEvent.value;
    }
    else if (hidEvent.value > maxValue){
        this->axisComp[n].maxRead = hidEvent.value;
    }

--- End code ---

--- End quote ---
Works fine here, if "Regular expression" is unchecked, otherwise I get the same message as you, what is absolutely correct in this case.


--- Quote from: teto on November 10, 2011, 11:04:41 pm ----Sometimes I can't edit a tab anymore. I need to change tab and then come back to my previous tab to be able to edit text once again.

--- End quote ---
As ollydbg wrote, how to reproduce ?
Does clicking into theeditor help, without the need to change the tab ?

Alatar:
Hello all!
There is regression in editor in this and previous builds: broken text editing in rectangular selection mode. When I mark multiple lines by Alt+Shift+[arrows] (or by Alt+MoveMouseVerticalWithLeftButtonPresed) and try to remove some charters with Backspace, I get unexpected behavior. CB deletes charters before cursors but cursors moves by some symbols forward and select block. In some cases cursors jumps in other directions. When I mark multiple lines by Ctrl+MouseLeftButtonClick deleting with Backspace works OK.

Folco:
ollydbg -> "MAJ" means "Shift", the key that provides upper case characters.

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version