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 » 2019.2
2019.2 [message #52602] Fri, 25 October 2019 23:50 Go to next message
mirek is currently offline  mirek
Messages: 13975
Registered: November 2005
Ultimate Member
Ok, so this is the second attempt at release, after fixing some last minute issues in rc5. Let us hope this will not turn into rc6...

Mirek
Re: 2019.2 [message #52625 is a reply to message #52602] Thu, 31 October 2019 17:54 Go to previous messageGo to next message
mirek is currently offline  mirek
Messages: 13975
Registered: November 2005
Ultimate Member
OK, no complaints, officially released...
Re: 2019.2 [message #52627 is a reply to message #52625] Fri, 01 November 2019 11:34 Go to previous messageGo to next message
Klugier is currently offline  Klugier
Messages: 1075
Registered: September 2012
Location: Poland, Kraków
Senior Contributor
Hello,

It is nice to hear that Upp has new release. Short live 2019.2, we are waiting for upcoming 2020.1 release Wink Congratulations!

Sincerely,
Klugier


U++ - one framework to rule them all.
Re: 2019.2 [message #52693 is a reply to message #52625] Tue, 12 November 2019 07:56 Go to previous messageGo to next message
Tom1
Messages: 1212
Registered: March 2007
Senior Contributor
Hi Mirek,

Everything seems to be working fine here. Thanks for the great work on U++!

While I was updating U++ from sourceforge.net, I noticed that an older version (2018.1) is still getting a lot of downloads on sourceforge. Then I discovered that "Download U++ / Current release: 13664" on the www.ultimatepp.org main page actually points to https://sourceforge.net/projects/upp/files/upp/2018.1/. I guess this link is worth fixing.

Thanks and best regards,

Tom
Re: 2019.2 [message #52711 is a reply to message #52693] Wed, 13 November 2019 10:24 Go to previous messageGo to next message
mirek is currently offline  mirek
Messages: 13975
Registered: November 2005
Ultimate Member
Tom1 wrote on Tue, 12 November 2019 07:56
Hi Mirek,

Everything seems to be working fine here. Thanks for the great work on U++!

While I was updating U++ from sourceforge.net, I noticed that an older version (2018.1) is still getting a lot of downloads on sourceforge. Then I discovered that "Download U++ / Current release: 13664" on the www.ultimatepp.org main page actually points to https://sourceforge.net/projects/upp/files/upp/2018.1/. I guess this link is worth fixing.

Thanks and best regards,

Tom


Thanks, hopefully fixed. (If you could do a quick check just to make sure I have fixed the correct link...)
Re: 2019.2 [message #52713 is a reply to message #52711] Wed, 13 November 2019 12:47 Go to previous messageGo to next message
Tom1
Messages: 1212
Registered: March 2007
Senior Contributor
Hi Mirek,

Yes, now it automatically starts a download from sourceforge. It seems it downloads the 2019.2 source package when accessed from Linux Mint + Firefox and from Windows + Firefox it starts a download for mingw variant of the 2019.2 installer. I think this is a justified policy for the main page quick download link. (No idea what it does when accessed from a Macintosh though. Someone else with a Macintosh can check that.)

Thanks and best regards,

Tom
Re: 2019.2 [message #52721 is a reply to message #52602] Thu, 14 November 2019 09:38 Go to previous messageGo to next message
Giorgio is currently offline  Giorgio
Messages: 218
Registered: August 2015
Experienced Member
Hi there,
I was compiling a big project of mine with 2019.2, MSVS 2019 64 bit, and I got the following error:

error C2280: 'Upp::Vector<Upp::Pointf>::Vector(const Upp::Vector<Upp::Pointf> &)': attempting to reference a deleted function operator.


The above error happens in Core/Vcont.h at line 132; if I look into the error, I see that it's generated by the following code:


OeeChart.cpp
See reference to the instance 'T &Upp::Vector<T>::Add(const T &)'
        with
        [
            T=Upp::Vector<Upp::Pointf>
        ]

for(unsigned int i = 0; i < colonne.size(); i++)
{
    Vector<Pointf> v_temp;
    v_temp.clear();
    for(unsigned int j = 0; j<colonne[i].coordinates.size(); j++)
      v_temp.push_back(colonne[i].coordinates[j]);
    b_on_screen.Add(v_temp);  <-- This is generating the error
}


and by:

OeeChart.h

Vector< Vector<Pointf> > b_on_screen;

See reference to the instance  'Upp::Vector<Upp::Vector<Upp::Pointf>>'


Regards,
gio
Re: 2019.2 [message #52722 is a reply to message #52721] Thu, 14 November 2019 09:57 Go to previous messageGo to next message
Oblivion is currently offline  Oblivion
Messages: 1091
Registered: August 2007
Senior Contributor
Hello Giorgio,

 b_on_screen.Add(v_temp);  <-- This is generating the error


You need to explicitly clone or move the source vector.

Try

 b_on_screen.Add(pick(v_temp));


Best regards,
Oblivion


[Updated on: Thu, 14 November 2019 09:57]

Report message to a moderator

Re: 2019.2 [message #52723 is a reply to message #52722] Thu, 14 November 2019 10:01 Go to previous message
Giorgio is currently offline  Giorgio
Messages: 218
Registered: August 2015
Experienced Member
Thanks Oblivion, you saved me Smile
Previous Topic: 2019.2 rc5
Next Topic: Server failure - some services might be temporarily unavailable
Goto Forum:
  


Current Time: Thu Mar 28 22:57:49 CET 2024

Total time taken to generate the page: 0.01383 seconds