Search found 266 matches

by seasoned_geek
Tue Sep 03 2024 5:24 pm
Forum: Developers
Topic: FindGObject2.cmake patch
Replies: 1
Views: 823

FindGObject2.cmake patch

Just because it annoys me. According to the diff documentation -u should have created a unified patch. [roland@roland-hpz820workstation ~]$ cat FindGObject2.patch --- Downloads/FindGObject2.cmake 2024-09-03 12:18:12.197932548 -0500 +++ github_projects/ls-cs/cmake/modules/FindGObject2.cmake 2024-09-0...
by seasoned_geek
Sun Sep 01 2024 1:22 pm
Forum: User Support
Topic: Does it work on Wayland?
Replies: 5
Views: 10279

Re: Does it work on Wayland?

Just a bump because this came up again.

Where is the Roadmap published now?

Is Wayland on it? Lots of distros are Wayland only now and the X-11 "emulation" provided by Westin is buggy, to be charitable about it.
by seasoned_geek
Fri May 31 2024 7:43 pm
Forum: Enhancements
Topic: Progressive Typing
Replies: 3
Views: 5130

Re: Progressive Typing

Yes, I would really be interested in seeing that because what currently happens is, assuming a user wants to find "Fred" in the combobox

1) User types f and all of the F entries show up
2) User types r and all of the R entries show up not all the Fr entries.
by seasoned_geek
Thu May 23 2024 7:48 pm
Forum: Issues
Topic: Fedora CsMultiMedia bug
Replies: 2
Views: 5999

Re: Fedora CsMultiMedia bug

# Script to build a rpm package for CopperSpice # set -e # Step 1 : Protect user from themselves # if [ ! -d "/etc/rpmdevtools" ]; then if [ ! "$(grep -i 'REDHAT' /etc/*release)" ]; then echo "This script can only be run on REDHAT based distribution with rpmdevtools install...
by seasoned_geek
Tue May 14 2024 11:39 am
Forum: Enhancements
Topic: Progressive Typing
Replies: 3
Views: 5130

Progressive Typing

Before we had a mouse we had progressive typing drop-list fields. When you entered the field and hit a key a list of potential matches appeared below it. When you hit the next keystroke the list adjusted containing only entries having the first two. Each character was added to the selection criteria...
by seasoned_geek
Thu May 02 2024 10:35 pm
Forum: Issues
Topic: Fedora CsMultiMedia bug
Replies: 2
Views: 5999

Fedora CsMultiMedia bug

All, Perhaps it is all RPM based distros with this bug? Until I had to add multimedia to play a wav file for RedDiamond I didn't notice. CopperSpiceLibraryTargets.cmake On Debian platforms you get this: set_target_properties(CopperSpice::CsMultimedia PROPERTIES INTERFACE_INCLUDE_DIRECTORIES "${...
by seasoned_geek
Thu Apr 25 2024 3:01 pm
Forum: Issues
Topic: QLocalServer bug
Replies: 2
Views: 3262

Re: QLocalServer bug

The fix can be found here:

https://www.logikalsolutions.com/wordpress/wp-content/uploads/2024/04/copperspice-bug-0001.png

line 269 in qlocalserver_unix.cpp needs to be == instead of !=
by seasoned_geek
Tue Apr 23 2024 10:50 pm
Forum: Issues
Topic: QLocalServer documentation error
Replies: 1
Views: 2666

QLocalServer documentation error

Small nit found here https://www.copperspice.com/docs/cs_api/class_qlocalserver.html#ac27b49a4b72839ad0aa48c2055e04629 QLocalServer:NoOptions 0x00 No access restrictions have been set QLocalServer:UserAccessOption 0x01 Access is restricted to the same user as the process that created the socket QLoc...
by seasoned_geek
Tue Apr 23 2024 9:58 pm
Forum: Issues
Topic: QLocalServer bug
Replies: 2
Views: 3262

QLocalServer bug

All, When my application is built with the 1.8.1 packages that can be found here https://sourceforge.net/projects/csscintilla/files/ and were created April of last year right after a fresh merge of the current CopperSpice, all is perfect. When a second instance is started it checks the lock file and...
by seasoned_geek
Wed Mar 27 2024 6:24 pm
Forum: Issues
Topic: QString documentation issue
Replies: 3
Views: 4642

Re: QString documentation issue

>There is no difference between a type alias declaration and typedef declaration. typedef is global. That's the difference. Within an application framework a typedef has a singular definition. No matter the class or container, a typedef defined entity is always the exact same. My issue is the docume...