Search found 454 matches

by barbara
Tue Sep 08 2020 5:52 pm
Forum: Announcements
Topic: DoxyPress Release 1.4.0
Replies: 0
Views: 11538

DoxyPress Release 1.4.0

DoxyPress 1.4.0 and DoxyPressApp 1.4.0 released on September 7 2020 This release includes a major update to the "clang parsing" option as we upgraded to clang 10 internally. DoxyPress can document the new C++20 constructs for concepts, requires clauses, and major improvements in template p...
by barbara
Tue Sep 08 2020 5:42 pm
Forum: KitchenSink
Topic: KitchenSink 1.7.0
Replies: 0
Views: 10929

KitchenSink 1.7.0

KitchenSink 1.7.0 was released on September 7 2020

Pre-built binary files can be found on our download site.
https://download.copperspice.com/kitchensink/binary
by barbara
Tue Sep 08 2020 5:38 pm
Forum: Announcements
Topic: CopperSpice 1.7.0
Replies: 0
Views: 11730

CopperSpice 1.7.0

CopperSpice 1.7.0 was released on September 7 2020 This release includes a full redesign of the QVariant class as well as XCB platform improvements, updates to SQLite and PostgreSQL, expanded API documentation, and lots of user reported modifications and improvements. For information about the chang...
by barbara
Mon Sep 07 2020 5:16 am
Forum: Installation
Topic: Mac OS X 10.12 cs-1.6.1 build error
Replies: 7
Views: 15804

Re: Mac OS X 10.12 cs-1.6.1 build error

The application failed to start because the platform plugin was not found or did not load. Requested Plugin Key: "cocoa" After you built KitchenSink did you run "ninja install"? During the install the required .dylib ( or .so or .dll ) file will be copied to your deploy/platform...
by barbara
Wed Sep 02 2020 4:52 pm
Forum: Developers
Topic: Containers and parentage
Replies: 2
Views: 4456

Re: Containers and parentage

If most things are now wrappers for STL implementations Just to clarify, every container in CopperSpice was redesigned to wrap (using composition) an existing container in the STL. We also split up the QMap and QHash containers into four containers QMap, QMultimap, QHash, and QMultiHash. Using hand...
by barbara
Wed Sep 02 2020 6:55 am
Forum: Developers
Topic: QTemporaryFile bug
Replies: 2
Views: 4504

Re: QTemporaryFile bug

If there is an official bug database please let me know and I will put this there along with the malloc crash thing I reported earlier. We have noted your issues with QTemporaryFile and the malloc problem and someone on the CS development team will be reviewing them. Both items have been verified a...
by barbara
Sun Aug 30 2020 3:02 am
Forum: Issues
Topic: readLineInto
Replies: 3
Views: 5362

Re: readLineInto

Can you let us know what platform you are running on.

Thanks,

Barbara
by barbara
Sun Aug 30 2020 2:52 am
Forum: Developers
Topic: Signal to signal
Replies: 4
Views: 8088

Re: Signal to signal

Yes, you can call connect() and have the signal and slot both refer to a signal. This syntax is not valid: connect( sender, SIGNAL(someSignal()), this, SIGNAL(mySignal()) ); You can use this syntax: connect( sender, SIGNAL(someSignal()), this, SLOT(mySignal()) ); However we strongly suggest using me...
by barbara
Sat Aug 29 2020 8:25 pm
Forum: Enhancements
Topic: QFileLock
Replies: 2
Views: 7694

Re: QFileLock

The class is actually called QLockFile. We will look at adding this to CopperSpice since it does appear to be of value.

Barbara
by barbara
Sat Aug 29 2020 7:56 pm
Forum: User Support
Topic: Maybe I'm just tired or can't read?
Replies: 3
Views: 8878

Re: Maybe I'm just tired or can't read?

Signals must always be registered, so yes the CS macro registration syntax must be used. If you are passing the Slot as a string or using the SLOT() macro then you also need to register it. You do not need to register a Slot when a method pointer is used in the call to connect(). This is the preferr...