Search found 452 matches

by barbara
Tue Sep 08 2020 5:38 pm
Forum: Announcements
Topic: CopperSpice 1.7.0
Replies: 0
Views: 10592

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: 15039

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: 4421

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: 4464

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: 4953

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: 7667

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: 7170

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: 8327

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...
by barbara
Thu Aug 20 2020 9:20 pm
Forum: User Support
Topic: Where are the compiler options hidden?
Replies: 3
Views: 8122

Re: Where are the compiler options hidden?

We do not set compiler options in CopperSpice. Developers should have the freedom to adjust these options for each project they are building. Some may want warnings on and others do not. It is not our position to force users to confirm to our settings. We use this same philosophy for building Diamon...
by barbara
Thu Aug 20 2020 8:59 pm
Forum: Installation
Topic: iconv problems
Replies: 11
Views: 18098

Re: iconv problems

A solution for this issue was pushed to github. This required changing a CMake build file for FreeBSD systems.

sha 44b38f3

Barbara