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 708-dev1 released
Upp 708-dev1 released [message #10889] Thu, 02 August 2007 20:59 Go to next message
unodgs is currently offline  unodgs
Messages: 1366
Registered: November 2005
Location: Poland
Ultimate Contributor

Changelog since 707-dev1:
  • PostgreSQL: Dialect now renamed to PGSQL, PgSequence now represents PGSQL SEQUENCE object.
  • PostgreSQL: DUAL_PRIMARY_KEY was not working, added support for binary columns
  • SqlExp Select statement now has "Get" variant to be used instead of "From" to get "table-less" select, like "select nextval('seq')". In Oracle, Select(NextVal(SEQ)).Get gets translated to "select seq.nextval from DUAL", in PGSQL to "select nextval('SEQ')".
  • -M theide commandline option generates Makefile
  • Help Window is no longer a Window, but is now integrated into theide main frame.
  • "Close all tabs" and "Close non-project tabs" feature of tabs is now implemented
  • DropList dropfocus mode is now default, added NotNull, fixed refreshing right button after closing popuped list
  • Fixed memory allocator connected with limit on a total number of virtual memory blocks
  • Fixed QuickTabs crash related to group change, reduced space between icon and tab name
  • GridCtrl now supports inserting after/before and duplicating rows
  • Change in Image interface http://www.ultimatepp.org/forum/index.php?t=msg&th=2579& amp;start=0&
  • Added simple static widget DisplayCtrl
  • Added FileSel preview
  • Added SqlArray::ReQuery()
  • Added CPU_Cores() - returns the number of CPU cores in system.
  • New widget DropGrid http://www.ultimatepp.org/forum/index.php?t=msg&th=2610& amp;start=0&
  • Improved build performance


Re: Upp 708-dev1 released [message #10893 is a reply to message #10889] Thu, 02 August 2007 22:30 Go to previous messageGo to next message
masu is currently offline  masu
Messages: 378
Registered: February 2006
Senior Member
A few changes concerning number of CPUs.
Core.h line 57 ...

#ifdef PLATFORM_POSIX
#ifdef PLATFORM_FREEBSD
#include <unistd.h>
#else
#include <sys/sysinfo.h>
#endif
#endif
...

Core.h line 71 ...
#elif defined(PLATFORM_POSIX)
#ifdef PLATFORM_FREEBSD
		n = minmax((int)sysconf(_SC_NPROCESSORS_ONLN), 1, 256);
#else
		n = minmax(get_nprocs(), 1, 256);
#endif
#else
...


Matthias
Re: Upp 708-dev1 released [message #10898 is a reply to message #10889] Fri, 03 August 2007 08:25 Go to previous messageGo to next message
mirek is currently offline  mirek
Messages: 13975
Registered: November 2005
Ultimate Member
BTW, anybody with Vista (or Vista64):

Is everything (including debugging, mingw, mingw debugging) OK in Vista?
Re: Upp 708-dev1 released [message #10947 is a reply to message #10889] Mon, 06 August 2007 21:47 Go to previous messageGo to next message
michael is currently offline  michael
Messages: 153
Registered: May 2007
Location: Germany
Experienced Member
No, i get these error when starting a Rebuild:

c++.exe: installation problem, cannot exec `cc1plus': No such file or directory
Re: Upp 708-dev1 released [message #10971 is a reply to message #10889] Wed, 08 August 2007 13:47 Go to previous messageGo to next message
benoitc is currently offline  benoitc
Messages: 17
Registered: July 2007
Location: Nice (France)
Promising Member
Hi,

There is a bug in scrollbar.h, it looks like the "return *this" is missing.
c:\upp\uppsrc\ctrllib\scrollbar.h(113) : error C4716: 'Upp::ScrollBar::MinThumb' : must return a value
ScrollBar& MinThumb(int sz)             { minthumb = sz; }

It work better with that:
ScrollBar& MinThumb(int sz)             { minthumb = sz; return *this; }

Regards,
Benoit
Re: Upp 708-dev1 released [message #10974 is a reply to message #10971] Wed, 08 August 2007 16:33 Go to previous messageGo to next message
mirek is currently offline  mirek
Messages: 13975
Registered: November 2005
Ultimate Member
Thanks, fixed.
Re: Upp 708-dev1 released [message #10976 is a reply to message #10974] Wed, 08 August 2007 20:22 Go to previous messageGo to next message
michael is currently offline  michael
Messages: 153
Registered: May 2007
Location: Germany
Experienced Member
luzr wrote on Wed, 08 August 2007 16:33

Thanks, fixed.


And is there anything what i can do to get my projects compiled with Vista? Or is this bug already fixed?

c++.exe: installation problem, cannot exec `cc1plus': No such file or directory
Re: Upp 708-dev1 released [message #11011 is a reply to message #10976] Tue, 14 August 2007 03:22 Go to previous messageGo to next message
lundman is currently offline  lundman
Messages: 175
Registered: March 2006
Location: Tokyo
Experienced Member

Whats the deal? Why does download only have a .exe file? Makes it difficult to download and compile under Unix?

Or am I missing something obvious?

icon11.gif  Re: Upp 708-dev1 released [message #11013 is a reply to message #11011] Tue, 14 August 2007 09:30 Go to previous messageGo to next message
bonami is currently offline  bonami
Messages: 186
Registered: June 2007
Location: Beijing
Experienced Member
lundman wrote on Tue, 14 August 2007 09:22


Whats the deal? Why does download only have a .exe file? Makes it difficult to download and compile under Unix?

Or am I missing something obvious?



dev versions are in .exe only i suppose Twisted Evil
Re: Upp 708-dev1 released [message #11025 is a reply to message #11013] Wed, 15 August 2007 08:21 Go to previous messageGo to next message
fallingdutch is currently offline  fallingdutch
Messages: 258
Registered: July 2006
Experienced Member
bonami wrote on Tue, 14 August 2007 09:30


dev versions are in .exe only i suppose Twisted Evil


I hope it will soon change again ... at least working on it.

Bas
Re: Upp 708-dev1 released [message #11035 is a reply to message #10889] Wed, 15 August 2007 23:55 Go to previous messageGo to next message
zsolt is currently offline  zsolt
Messages: 693
Registered: December 2005
Location: Budapest, Hungary
Contributor
Where is the topic editor in this version?
Re: Upp 708-dev1 released [message #11049 is a reply to message #10889] Thu, 16 August 2007 12:40 Go to previous messageGo to next message
zsolt is currently offline  zsolt
Messages: 693
Registered: December 2005
Location: Budapest, Hungary
Contributor
IDE in this version opens random files from project sometimes, when I start running my app.
Re: Upp 708-dev1 released [message #11052 is a reply to message #11049] Fri, 17 August 2007 09:40 Go to previous messageGo to next message
benoitc is currently offline  benoitc
Messages: 17
Registered: July 2007
Location: Nice (France)
Promising Member
Yes, I confirm, I have the same behaviour each time I start a debugging session.

Benoit
Re: Upp 708-dev1 released [message #11057 is a reply to message #11049] Fri, 17 August 2007 14:32 Go to previous messageGo to next message
unodgs is currently offline  unodgs
Messages: 1366
Registered: November 2005
Location: Poland
Ultimate Contributor

Topic is now opened as a tab inside theide. Topic files should be visible on your project list (or you must add them yourself).
Re: Upp 708-dev1 released [message #11081 is a reply to message #10889] Sat, 18 August 2007 15:59 Go to previous messageGo to next message
lectus is currently offline  lectus
Messages: 329
Registered: September 2006
Location: Brazil
Senior Member
How to use the new DropGrid control?
I tried writting "DropGrid" at the control name, after inserting a UserClass control. It's not working.

Also, what does it mean?
"Added FileSel preview"

Thanks
Re: Upp 708-dev1 released [message #11082 is a reply to message #11081] Sat, 18 August 2007 16:49 Go to previous messageGo to next message
unodgs is currently offline  unodgs
Messages: 1366
Registered: November 2005
Location: Poland
Ultimate Contributor

Hi Lectus.
Just select dropgrid as a main package. There is a main.cpp file which contains an example of how to use it.

BTW: I made many improovements since 708-dev1 to dropgrid. Some things are much easier now. This all + tutorial will be included in dev2.
Re: Upp 708-dev1 released [message #11296 is a reply to message #10976] Sat, 01 September 2007 16:39 Go to previous messageGo to next message
unodgs is currently offline  unodgs
Messages: 1366
Registered: November 2005
Location: Poland
Ultimate Contributor

I found on internet that is vista releate bug of gcc. It can't register env variable which is need to run cc1.exe. I'll add a path in bm file directly pointing at cc1.exe.
Re: Upp 708-dev1 released [message #11301 is a reply to message #11296] Sun, 02 September 2007 08:02 Go to previous message
mirek is currently offline  mirek
Messages: 13975
Registered: November 2005
Ultimate Member
What about the new mingw? Has anybody tried?

Mirek
Previous Topic: Upp 708-dev2 released
Next Topic: Upp 709-dev1 released
Goto Forum:
  


Current Time: Thu Mar 28 12:45:51 CET 2024

Total time taken to generate the page: 0.01669 seconds