Overview
Examples
Screenshots
Comparisons
Applications
Download
Documentation
Tutorials
Bazaar
Status & Roadmap
FAQ
Authors & License
Forums
Funding Ultimate++
Search on this site
Search in forums












SourceForge.net Logo
Home » Community » U++ community news and announcements » Upp 709-dev1 released
Upp 709-dev1 released [message #11509] Sun, 16 September 2007 10:11 Go to next message
unodgs is currently offline  unodgs
Messages: 1366
Registered: November 2005
Location: Poland
Ultimate Contributor

Changes since 708-dev2b:

  • MingGW updated from 3.4.2 to 4.2.1
  • SDL updated from 1.2.7 to 1.2.12
  • Sqlite updated from 3.3.0 to 3.4.2
  • PCRE updated from 7.0 to 7.3
  • added close group to quick tabs popuped menu
  • "Insert any file" in TheIDE hotkey changed to Ctrl+Shift+O(because of conflict with Italic in T++ editor)
  • those pesky icon.ico files wrong exports are no more generated from .iml
  • fixed a problem with unnamed image in .iml causing iml loss
  • added -gstabs flag for mingw - this is supposed to solve the problem with mingw 4.2 debugging
  • fixed potential crash in ArrayCtrl::AddColumn
  • FileSel types change if there is an empty "DefaultExt", extension is now taken from the "file type" droplist, from the first mask.
  • fixed clipping in Ctrl::GetTopRect
  • fixed painting LabelBox image at incorrect y-coord (mrjt)
  • fixed ArrayCtrl::NoBackground (mrjt)
  • fixed segmentation fault on Ubuntu Feisty (mdelfede)


PS: There can be a problem with mingw + new sqlite3 in GUI apps. At least on win32 (and on my machine) such apps don't run - investigation in progress...
Re: Upp 709-dev1 released [message #11512 is a reply to message #11509] Sun, 16 September 2007 12:15 Go to previous messageGo to next message
mezise is currently offline  mezise
Messages: 54
Registered: April 2006
Member
Quote:

MingGW updated from 3.4.2 to 4.2.1

Please change the version number in Assist/About section.
Re: Upp 709-dev1 released [message #11515 is a reply to message #11509] Sun, 16 September 2007 12:30 Go to previous messageGo to next message
michael is currently offline  michael
Messages: 153
Registered: May 2007
Location: Germany
Experienced Member
When building my project i got this error:

Linking...
c++.exe: C:/upp/out/MySql/MINGW.Gui\MySql.a: No such file or directory


How can i get or create MySql.a?
Re: Upp 709-dev1 released [message #11517 is a reply to message #11515] Sun, 16 September 2007 12:43 Go to previous messageGo to next message
mezise is currently offline  mezise
Messages: 54
Registered: April 2006
Member
http://www.ultimatepp.org/forum/index.php?t=msg&goto=112 63&&#msg_11263
michael wrote on Wed, 29 August 2007 11:42

Ok, the HYDRA Threads were set to 2, set them now to 1 and the error dosn't occurs anymore on mingw with xp in release-mode.

Didn't this solve your problem?

Michal
Re: Upp 709-dev1 released [message #11518 is a reply to message #11509] Sun, 16 September 2007 13:11 Go to previous messageGo to next message
michael is currently offline  michael
Messages: 153
Registered: May 2007
Location: Germany
Experienced Member
Damned... yes it does... works now without linking error.
Re: Upp 709-dev1 released [message #11519 is a reply to message #11518] Sun, 16 September 2007 13:13 Go to previous messageGo to next message
mirek is currently offline  mirek
Messages: 13975
Registered: November 2005
Ultimate Member
michael wrote on Sun, 16 September 2007 07:11

Damned... yes it does... works now without linking error.


Unlikely. We have done nothing about it:)

In fact, if you encounter that problem and repeat compilation, it usually goes well. I think that you have just files cached from previous runs.

The problem is most likely caused by closing some .obj too late before another compilation step (e.g. librarian) is invoked.

Mirek
Re: Upp 709-dev1 released [message #11520 is a reply to message #11509] Sun, 16 September 2007 13:21 Go to previous messageGo to next message
sergei is currently offline  sergei
Messages: 94
Registered: September 2007
Member
Trying to build a console project that build successfully on 708dev2b. During debugging console window doesn't appear. Adding CONSOLE to package config didn't help.

Actually, even this doesn't work:

#include <Core/Core.h>
using namespace Upp;
#include <iostream>
CONSOLE_APP_MAIN
{
const Vector<String>& cmdline = CommandLine();
for(int i = 0; i < cmdline.GetCount(); i++) {
}
Cout() << "HI!";
int i;
std::cin >> i;
}

(created Core Console Project). Execution pauses in debug (on cin, probably), yet there is no console window to enter anything.


P.S. why zlib is still 1.1.4 (zlib.h) / 1.2.2 (readme)? 1.2.3 was released in 2005.


Edit: wanted to retest in 708dev2b, turns out 709 didn't even save the package - I have TestConsole.exe in out folder (which displays console when runs outside TheIDE), yet in MyApps I don't have such folder. Recreated in 708dev2b, console appears, and project is saved in MyApps upon build.

[Updated on: Sun, 16 September 2007 13:32]

Report message to a moderator

Re: Upp 709-dev1 released [message #11521 is a reply to message #11509] Sun, 16 September 2007 13:33 Go to previous messageGo to next message
michael is currently offline  michael
Messages: 153
Registered: May 2007
Location: Germany
Experienced Member
My project grows now from 2050 KB to 2650 KB. Is this because of new mingw-version?
Re: Upp 709-dev1 released [message #11551 is a reply to message #11520] Mon, 17 September 2007 13:37 Go to previous messageGo to next message
sergei is currently offline  sergei
Messages: 94
Registered: September 2007
Member
Could anyone check if console applications work (e.g. console is visible in debug)? I'd like know if it's only on my computer, or a bug in this release.

And if creating a new package, writing something, building and exiting (without saving) creates anything in MyApps folder (as it should).
Re: Upp 709-dev1 released [message #11555 is a reply to message #11551] Mon, 17 September 2007 16:49 Go to previous messageGo to next message
mezise is currently offline  mezise
Messages: 54
Registered: April 2006
Member
I have checked successfully reference/Value console app:
- Output mode: MSC71 Debug
- Both: Execute, Run in debugger
- Windows XP SP2
Re: Upp 709-dev1 released [message #11556 is a reply to message #11555] Mon, 17 September 2007 16:59 Go to previous messageGo to next message
mezise is currently offline  mezise
Messages: 54
Registered: April 2006
Member
Quote:

And if creating a new package, writing something, building and exiting (without saving) creates anything in MyApps folder (as it should).

Yes. While creating new package I have chosen "Core console project". At this point package and 2 files have been created.
Writing somthing, Build F7, exiting without saving and change has been successfully applied.

Michal
Re: Upp 709-dev1 released [message #11558 is a reply to message #11520] Mon, 17 September 2007 17:40 Go to previous messageGo to next message
mirek is currently offline  mirek
Messages: 13975
Registered: November 2005
Ultimate Member
sergei wrote on Sun, 16 September 2007 07:21

Trying to build a console project that build successfully on 708dev2b. During debugging console window doesn't appear. Adding CONSOLE to package config didn't help.



Adding CONSOLE would not help. But make sure there is not GUI Smile

Mirek
Re: Upp 709-dev1 released [message #11559 is a reply to message #11509] Mon, 17 September 2007 17:52 Go to previous messageGo to next message
sergei is currently offline  sergei
Messages: 94
Registered: September 2007
Member
Thanks. So I've got a problem with my computer...
Nevermind, I can live with 708dev2b Razz
Re: Upp 709-dev1 released [message #11928 is a reply to message #11509] Mon, 01 October 2007 21:56 Go to previous messageGo to next message
dmcgeoch is currently offline  dmcgeoch
Messages: 52
Registered: November 2006
Location: New Jersey
Member
Fix for the sqlite plugin.

Replace the sqlite3.upp file in the plugin/sqlite3 directory with the attached version of the file and the problem with the gui are corrected.

As far as I can tell, the shell.c file should not be included in the build. This appears to be what causes the gui not to be displayed.

Dave
  • Attachment: sqlite3.upp
    (Size: 1.26KB, Downloaded 325 times)
Re: Upp 709-dev1 released [message #11929 is a reply to message #11928] Mon, 01 October 2007 22:01 Go to previous messageGo to next message
mirek is currently offline  mirek
Messages: 13975
Registered: November 2005
Ultimate Member
Thanks, shell.c removed...
Re: Upp 709-dev1 released [message #11930 is a reply to message #11928] Mon, 01 October 2007 22:48 Go to previous message
unodgs is currently offline  unodgs
Messages: 1366
Registered: November 2005
Location: Poland
Ultimate Contributor

Thank you! I'll note it down to not forget next time sqlite will be updated.
Previous Topic: Upp 708-dev1 released
Next Topic: Upp 710-dev1 released
Goto Forum:
  


Current Time: Sat Apr 27 04:00:53 CEST 2024

Total time taken to generate the page: 0.06041 seconds