User forums > Nightly builds

The 12 June 2007 build is out.

<< < (3/4) > >>

dilomo:
Here is one bug in C::B on Ubuntu (the button to the textbox is hidden and resize is not possible):

[attachment deleted by admin]

clyfish:

--- Quote from: mandrav on June 13, 2007, 04:05:22 pm ---You should avoid putting your projects in paths with non-latin characters.
Move your project to a different folder (without chinese characters) and it will work fine.

--- End quote ---
Thank you!
You are right.
Don't you think this is a bug?
Why can't I put my projects in paths with Chinese characters?

mandrav:

--- Quote from: clyfish on June 14, 2007, 11:38:49 am ---
--- Quote from: mandrav on June 13, 2007, 04:05:22 pm ---You should avoid putting your projects in paths with non-latin characters.
Move your project to a different folder (without chinese characters) and it will work fine.

--- End quote ---
Thank you!
You are right.
Don't you think this is a bug?
Why can't I put my projects in paths with Chinese characters?

--- End quote ---

Because that's how the regular expressions we 're using work.
I don't consider this to be a bug but you (or someone else) may very well think so.
The point is that, bug or not, it's of no great importance since the "workaround" is rather easy and simple.
File a bug report if you feel it's a bug but don't expect a "fix" for it any time soon :).

clyfish:
@mandrav

I think I have "fixed" it using a dirty way.
And I don't know how to make a patch file.

I modified just one line.
/src/sdk/compiler.cpp Line40
from

--- Code: ---const wxString Compiler::FilePathWithSpaces = _T("[][{}() \t#%$~A-Za-z0-9_:+/\\.-]+");

--- End code ---
to

--- Code: ---const wxString Compiler::FilePathWithSpaces = _T(".+");

--- End code ---

I will appreciate it very much if you fix it using the way above or a better one.

rickg22:
Ouch! Are you sure that'll work? Because we don't know if that would interfere with the other regexes... besides there's a space in there. [ ]


I think that what you want is...

--- Code: ---const wxString Compiler::FilePathWithSpaces = _T("[ ][.]+");

--- End code ---

However, it would be cleaner if you include a way to tell the regexes to use all the range of chinese characters. But I don't know how to do that :(

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version