Jump to content
IGNORED

RespeQt r4 released


Joey Z

Recommended Posts

release 4
* fixed uninitialized pointer to log window instance causing a crash
* replaced AspeCl with FJCs RCL (#54)
* added enable/disable checkbox for URL submit (#52) (TheMontezuma)
* simplified serial port selection (#51) (TheMontezuma)
* code cleanup, UI code reorganization, misc bugs (#48) (blind)
* code cleanup (#47) (josch1710)
* Fix crash from double call to closeEvent (#46) (josch1710)
* CPU load reduction for software handshake (#45) (TheMontezuma)
* added URL submit functionality (#43) (TheMontezuma)
* further PCLINK work (#37, #38, #41, #42, #44) (TheMontezuma and josch1710)
* add PCLINK swap + PCLINK eject + code refactoring (#31) (TheMontezuma)
* printer emulation status now persists (#30) (TheMontezuma)
* added PCLINK support (#29) (TheMontezuma)
* trigger options menu on speedlabel click (#28) (TheMontezuma)
* added timing adjustment to close #2
* diskeditdialog now closes on program exit
* upgraded SpartaDOS boot files to 3.2G

 

https://github.com/jzatarski/RespeQt/releases/tag/r4

  • Like 10
Link to comment
Share on other sites

* further PCLINK work (#37, #38, #41, #42, #44) (TheMontezuma and josch1710)
* add PCLINK swap + PCLINK eject + code refactoring (#31) (TheMontezuma)
* added PCLINK support (#29) (TheMontezuma)

 

I really like the PCLINK support This version seems to working much better than the previous versions..

  • Like 2
Link to comment
Share on other sites

For completeness - the binaries for RPI and OSX:

attachicon.gifRPI-RespeQt-r4.tar.gz

 

 

I just gave your RPi build a run on my RPi Zero W and it seems to be working great. Booted up Zork I at 125,000 bps perfectly.

 

Thanks as well for building OS X binaries. Since my MacBook Pro died I haven't been able to do that for uploading to the GitHub repository anymore. :(

  • Like 1
Link to comment
Share on other sites

 

I just gave your RPi build a run on my RPi Zero W and it seems to be working great. Booted up Zork I at 125,000 bps perfectly.

 

Thanks as well for building OS X binaries. Since my MacBook Pro died I haven't been able to do that for uploading to the GitHub repository anymore. :(

 

Thank you for testing.

Did you definitely give up your MacBook Pro? No replacement from Apple planed so far?

I purchased my Minimac mainly to be able to test new RespeQt features on all platforms.

Creating OSX binaries is very easy thanks to your instructions ;)

 

Regarding the Raspberry Pi binaries I realized that I forgot to modify a path to the RespeQt icon in the RespeQt.desktop file.

It is not a big deal, since it is an optional file. If you copy it to the Desktop (Drag&Drop), you can double click it on the Desktop to start RespeQt.

The proper content of the RespeQt.desktop file (assuming that you unpacked it to /home/pi/RespeQt-r4 ) should be:

[Desktop Entry]
Name=RespeQt-r4
Exec=lxterminal --working-directory=/home/pi/RespeQt-r4/ -e ./respeqt.sh
Icon=/home/pi/RespeQt-r4/RespeQt.ico
Type=Application

 

Link to comment
Share on other sites

 

Thank you for testing.

Did you definitely give up your MacBook Pro? No replacement from Apple planed so far?

I purchased my Minimac mainly to be able to test new RespeQt features on all platforms.

Creating OSX binaries is very easy thanks to your instructions ;)

 

Regarding the Raspberry Pi binaries I realized that I forgot to modify a path to the RespeQt icon in the RespeQt.desktop file.

It is not a big deal, since it is an optional file. If you copy it to the Desktop (Drag&Drop), you can double click it on the Desktop to start RespeQt.

The proper content of the RespeQt.desktop file (assuming that you unpacked it to /home/pi/RespeQt-r4 ) should be:

[Desktop Entry]
Name=RespeQt-r4
Exec=lxterminal --working-directory=/home/pi/RespeQt-r4/ -e ./respeqt.sh
Icon=/home/pi/RespeQt-r4/RespeQt.ico
Type=Application

 

For the record, this has been updated on github now.

Link to comment
Share on other sites

Hi Joey,

I annunced the released RespeQt r4 version on the atari.org.pl forum and already got some feedback.

For example all the debug logs contain escape characters for languages with special characters.

This is not a new issue:

https://bugreports.qt.io/browse/QTBUG-48517

Luckily Greblus pointed out the solution:

replace all:

qDebug() <<

with:

qDebug().noquote() <<

Another reported issue was related to SIO2PC/RI cable, similar to:

http://atariage.com/forums/topic/251089-should-this-work-with-sio2pc-serial-with-232-original-design/page-2?do=findComment&comment=3557722

 

I will try to resolve it and report here the results.

 

But I wondered generally about how are we going to proceed.

Right now there are two branches and the developer branch is ahead with several commits.

Are we going to release something like r4.1 only with bug fixes to reported issues (and integrate these bug fixes also into the development branch)?

Or we freeze r4 and develop towards r5?

Link to comment
Share on other sites

In Win10, right click the RespeQt executable, select Properties. From there, click the Compatibility tab and check the option "Override High DPI Scaling Behavior" - You may have to play around with the options provided with Windows, depending on your graphics card. With an Nvidia GTX 1070, this setting gives me normal-sized icons.

 

post-30400-0-74703000-1493849027_thumb.png

 

  • Like 3
Link to comment
Share on other sites

In Win10, right click the RespeQt executable, select Properties. From there, click the Compatibility tab and check the option "Override High DPI Scaling Behavior" - You may have to play around with the options provided with Windows, depending on your graphics card. With an Nvidia GTX 1070, this setting gives me normal-sized icons.

 

attachicon.gifRespeQt.PNG

 

Now, that you say that, it comes back my mind. It's a nice workaround, but it would be nicer to get RespeQt behave well in HiDPI environment.

Link to comment
Share on other sites

In Win10, right click the RespeQt executable, select Properties. From there, click the Compatibility tab and check the option "Override High DPI Scaling Behavior"

 

 

My options are a little different. The only thing close is "Disable display scaling on high DPI settings." Selecting that makes no difference.

Link to comment
Share on other sites

I have no idea how Win10 handles scaling stuff like that, I'm just glad it works on my system with a 4K screen! I suspect there's gotta be something in Qt that defines or determines at least part of this.

Yes, as I said: There is HiDPI support in Qt5, but I couldn't get to work.

Link to comment
Share on other sites

Link to comment
Share on other sites

Hi Joey,

I annunced the released RespeQt r4 version on the atari.org.pl forum and already got some feedback.

For example all the debug logs contain escape characters for languages with special characters.

This is not a new issue:

https://bugreports.qt.io/browse/QTBUG-48517

Luckily Greblus pointed out the solution:

replace all:

qDebug() <<

with:

qDebug().noquote() <<

Another reported issue was related to SIO2PC/RI cable, similar to:

http://atariage.com/forums/topic/251089-should-this-work-with-sio2pc-serial-with-232-original-design/page-2?do=findComment&comment=3557722

 

I will try to resolve it and report here the results.

 

But I wondered generally about how are we going to proceed.

Right now there are two branches and the developer branch is ahead with several commits.

Are we going to release something like r4.1 only with bug fixes to reported issues (and integrate these bug fixes also into the development branch)?

Or we freeze r4 and develop towards r5?

 

http://nvie.com/posts/a-successful-git-branching-model/

 

I decided this was the model we will follow, for the moment (no one objected) in which 'critical' bugs get fixed in master, in this case, and then merged into develop. Now, RespeQt probably doesn't have to limit this to critical bugs, so for the moment, bugfixes get merged into master, and then into develop subsequently.

 

EDIT: actually I think this should be merged into the r4 branch. However, as I've already deleted the r4 branch, that'd require some work, so for the moment merging into master is fine. For the future, I'll wait to delete the release branch until the next release is considered stable.

 

Also, at some point I'd like to consider migrating to a new versioning scheme. The integer-release-number worked when it was just me working on this, and I did releases when I felt like I had something done. Clearly, that's not going to work as well here, but for the moment I suppose we will add a decimal place for bug fixes, that seems fine. Perhaps we can classify that as good enough, and consider it the new standard.

Edited by Joey Z
  • Like 1
Link to comment
Share on other sites

The solution proposed by Greblus ( qDebug().noquote() ) didn't work :(

 

That's actually a good news ;). It seems that after a rather negative feedback this stupidity was finally limited to non-printable characters only:

https://bugreports.qt.io/browse/QTBUG-47316?focusedCommentId=287858&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-287858

 

Initially the changelog said that "All characters that aren't printable in US-ASCII are escaped (this includes printable Unicode characters outside of US-ASCII)."

  • Like 1
Link to comment
Share on other sites

Thanks for this. On my 3200 x 1800 laptop the icons are really tiny, but the options screen is a real mess. Windows 10.

 

For the icons, I'd say check the main window source code, and you'll see maximum and minimum sizes are fixed at 28 pixels. Removing the limits should fix the tiny icon problem on high res screens.

Link to comment
Share on other sites

  • 2 weeks later...

This relates to the Mac OS X build.

Not sure if this is a redundant or false error report, but I find that printed output comes out with Arial regardless of which font is selected in the lower right drop-down menu in the Printer text output dialogue.

 

Kind regards,

Klas

Link to comment
Share on other sites

  • 1 month later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...