Author Topic: Release 13.12, RC1-RC2 has arrived  (Read 72807 times)

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7576
    • My Best Post
Re: Release 13.12, RC1 has arrived
« Reply #15 on: December 04, 2013, 01:21:30 am »
Minor issues noticed on Release 13.12, RC1.

OS: Windows 7
WX: 3.0 SVN Branch
Under Manage Plugins "Install New" says plugin failed to install when it really did install.

Tested using cbDiff.cbplugin and two other plugins.

Does it ever say the Plugin was successfully installed?

Edit: Found a message in CB Log "C:\GreenApps\CodeBlocks-13_12\share\codeblocks\plugins\cbDiff.dll: not loaded (missing symbols?)"

Might be plugin issue instead of CB issue.

Tim S.



« Last Edit: December 04, 2013, 01:23:06 am by stahta01 »
C Programmer working to learn more about C++ and Git.
On Windows 7 64 bit and Windows 10 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org

Offline dmoore

  • Developer
  • Lives here!
  • *****
  • Posts: 1576
Re: Release 13.12, RC1 has arrived
« Reply #16 on: December 04, 2013, 01:29:28 am »
Minor issues noticed on Release 13.12, RC1.

OS: Windows 7
WX: 3.0 SVN Branch
Under Manage Plugins "Install New" says plugin failed to install when it really did install.

Tested using cbDiff.cbplugin and two other plugins.

Does it ever say the Plugin was successfully installed?

Edit: Found a message in CB Log "C:\GreenApps\CodeBlocks-13_12\share\codeblocks\plugins\cbDiff.dll: not loaded (missing symbols?)"

Might be plugin issue instead of CB issue.

Tim S.


I have seen this with a number of plugins.  Not consistently though... I thought it might be happening if resources already exist. I can take a closer look in the next few days if noone else does.

Offline gd_on

  • Lives here!
  • ****
  • Posts: 795
Re: Release 13.12, RC1 has arrived
« Reply #17 on: December 04, 2013, 10:42:06 am »
Quote
gd_on:
I don't think your patch is acceptable. The " is the correct way to escape " characters in XML files.
You can always prove me wrong by quoting some kind of a standard or output of a xml verifier.
Until then you'll have to find a better way to fix your problem.

I have found a workaround to this problem.
When I extract strings from the xml file, I obtain those " strings. But, in C::B when using the _(...) macro, it's not the original string which is viewed by the macro, but a sting containing \". It was the reason of my proposed patch.
So, a workaround, is to detect the occurrences of " in the output file of xgettext, replace them by \" by a sed command for example, and that's OK now.
If I don't find some other problem, I'll publish a corrected version of my extracting tool in the forum (help wanted / Code::Blocks' translation thread).

gd_on
Windows 11 64 bits (23H2), svn C::B (last version or almost!), wxWidgets 3.2.4 (tests with 3.3), Msys2 Compilers 13.2.0, 64 bits (seh, posix : gcc, g++ and gfortran in C:\msys64\mingw64) or 32 bits (dwarf2, posix  in C:\msys64\mingw32).

Offline dmoore

  • Developer
  • Lives here!
  • *****
  • Posts: 1576
Re: Release 13.12, RC1 has arrived
« Reply #18 on: December 06, 2013, 04:12:03 am »
Spellchecker is doing something evil to the editor on Ubuntu 13.10 AMD 64 (scrolling and general C::B performance becomes extremely sluggish). I am using rev9469, so not quite RC1.

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7576
    • My Best Post
Re: Release 13.12, RC1 has arrived
« Reply #19 on: December 06, 2013, 04:51:13 am »
FYI: I had CB 13.12, RC1 crash and it failed to create a crash report.

Using Dependency Walker I found that exchndl.dll requires LIBINTL-8.dll could this be why the crash report was NOT created?

Edit: Likely not, because 12.11 exchndl.dl had the same requirement.

Had a second crash this time with a report. Note: I had added the missing LIBINTL-8.dll  and two other DLLs (I think they were NOT needed; but, I am NOT sure.)

Code
-------------------

Error occured on Thursday, December 5, 2013 at 23:37:04.

C:\GreenApps\CodeBlocks-13_12\codeblocks.exe caused an Access Violation at location 77522d37 in module C:\Windows\SYSTEM32\ntdll.dll Reading from location 5717c915.

Registers:
eax=00000001 ebx=086bbbb0 ecx=003d0000 edx=086bbbb0 esi=5717c911 edi=086bbba8
eip=77522d37 esp=0022f49c ebp=0022f4d0 iopl=0         nv up ei pl nz na po nc
cs=001b  ss=0023  ds=0023  es=0023  fs=003b  gs=0000             efl=00010206

Call stack:
77522D37  C:\Windows\SYSTEM32\ntdll.dll:77522D37  RtlFreeHeap
77522CE8  C:\Windows\SYSTEM32\ntdll.dll:77522CE8  RtlFreeHeap
76F698CD  C:\Windows\system32\msvcrt.dll:76F698CD  free
03EA67EF  C:\GreenApps\CodeBlocks-13_12\share\codeblocks\plugins\compiler.dll:03EA67EF
03EB42C5  C:\GreenApps\CodeBlocks-13_12\share\codeblocks\plugins\compiler.dll:03EB42C5
03EB565F  C:\GreenApps\CodeBlocks-13_12\share\codeblocks\plugins\compiler.dll:03EB565F
76F698CD  C:\Windows\system32\msvcrt.dll:76F698CD  free
6CCC0614  C:\GreenApps\CodeBlocks-13_12\wxmsw28u_gcc_cb.dll:6CCC0614  _ZN16wxEventHashTable11HandleEventER7wxEventP12wxEvtHandler
6CC79EA6  C:\GreenApps\CodeBlocks-13_12\wxmsw28u_gcc_cb.dll:6CC79EA6  _ZN10wxListBase12DoDeleteNodeEP10wxNodeBase

Tim S.
« Last Edit: December 06, 2013, 05:58:37 am by stahta01 »
C Programmer working to learn more about C++ and Git.
On Windows 7 64 bit and Windows 10 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: Release 13.12, RC1 has arrived
« Reply #20 on: December 06, 2013, 05:59:05 am »
Can you remember what have you deleted from a list ctrl?
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7576
    • My Best Post
Re: Release 13.12, RC1 has arrived
« Reply #21 on: December 06, 2013, 06:33:17 am »
Can you remember what have you deleted from a list ctrl?

I am not sure I deleted anything from a list ctrl; but, I was compiling a modified version of the Contrib Workspace.
And, at the same time I was editing some of the projects (inside that workspace) in an external editor.
So, I would NOT think crashing is really something to be highly concerned about.
But, I would suggest testing the crash reporting to confirm the 3 DLLs I added was NOT required under windows.
(I do NOT place any MinGW Installation in the system path because I have problems caused by that.)

Tim S.
C Programmer working to learn more about C++ and Git.
On Windows 7 64 bit and Windows 10 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9694
Re: Release 13.12, RC1 has arrived
« Reply #22 on: December 07, 2013, 07:53:31 am »
Spellchecker is doing something evil to the editor on Ubuntu 13.10 AMD 64
Hmmm... works fine on Ubuntu 13/04 - maybe an Ubuntu issue?
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: https://www.codeblocks.org/docs/main_codeblocks_en.html
C::B FAQ: https://wiki.codeblocks.org/index.php?title=FAQ

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: Release 13.12, RC1 has arrived
« Reply #23 on: December 07, 2013, 10:30:13 am »
Or just broken graphics driver issue?
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

Offline dmoore

  • Developer
  • Lives here!
  • *****
  • Posts: 1576
Re: Release 13.12, RC1 has arrived
« Reply #24 on: December 08, 2013, 02:47:07 pm »
Or just broken graphics driver issue?

Bingo! (Had switch to fglrx, I guess the squiggly lines or something were problematic with the default open source driver?)

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5489
Re: Release 13.12, RC1 has arrived
« Reply #25 on: December 08, 2013, 08:24:41 pm »
when do we aim for RC2 ? Wednesday ?

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9694
Re: Release 13.12, RC1 has arrived
« Reply #26 on: December 12, 2013, 05:00:02 pm »
when do we aim for RC2 ? Wednesday ?
Done now.
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: https://www.codeblocks.org/docs/main_codeblocks_en.html
C::B FAQ: https://wiki.codeblocks.org/index.php?title=FAQ

Offline scarphin

  • Lives here!
  • ****
  • Posts: 644
Re: Release 13.12, RC1-RC2 has arrived
« Reply #27 on: December 13, 2013, 02:31:55 am »
I've reported this before but I'm beginning to think either I couldn't make myself clear or it's the intended behavior, not a bug. I won't report this again so for the last time with a screenshot I'll try to make myself clear if I couldn't in the first place.

In 'settings->editor->syntax highlighting', the color picked for 'Selection' or 'Active line' isn't reflected in the sample code window below, please see screenshot. I may be misinterpreting those lines as highlighted, so can anyone please clear that out for me?

Btw sorry for attachment, my picture host doesn't let me upload pics anymore so I had to upload it here.

Win7 x64 SP1
CB 13.12 RC2


[attachment deleted by admin]

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: Release 13.12, RC1-RC2 has arrived
« Reply #28 on: December 13, 2013, 02:38:35 am »
The active line is common for all editors. I'm not sure why it is in syntax highlight settings in the first place...
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

Offline scarphin

  • Lives here!
  • ****
  • Posts: 644
Re: Release 13.12, RC1-RC2 has arrived
« Reply #29 on: December 13, 2013, 06:24:37 am »
What about 'Selection'? Its color too isn't reflected. I can provide a screenshot for it too if need be?