FocusWriter 1.8.9 released

Posted on October 11, 2024, under FocusWriter

I accidentally let this bugfix version of FocusWriter slip through the cracks. I did all of the work on it back in June, and then I got distracted with Tetzle and I never ended up making a release. šŸ˜² I think at the time there were a few other bugs I thought I was going to look into, but I never made a note of which ones. šŸ¤¦ Oh, well, better late than never.

Minor hiccup with Tetzle release

Posted on August 11, 2024, under Packaging, Tetzle

A user recently informed me of an issue with the Windows release of Tetzle: there were missing DLLs that prevented Tetzle from running! Interestingly, the builds ran on my computers without a hitch so when I had tested them before making the release I didnā€™t notice the issue. I have uploaded new builds of Tetzle 3.0 for Windows, so the issue has been solved.

What happened, as far as I can tell, is that the windeployqt.exe executable from the binary release of Qt 6.7.2 apparently thinks everything is compiled with MSVC instead of MinGW. šŸ¤¦ Which means that when it went looking for the compiler runtime librariesā€”libstdc++-6.dll, etcā€”it couldnā€™t find the correct ones.

I solved this by grabbing the windeployqt.exe executable from an earlier Qt binary release and used the qtpaths.exe executable from Qt 6.7.2 so that it would find the correct libraries and plugins, and everything was fine. I suppose I could have just copied the few missing DLLs by hand this time, but now I have everything set up so that I can avoid this issue in the future.

This shows how important it is to inform me of issues: if I donā€™t know about them, I canā€™t fix them! Donā€™t assume somebody has already reported it. šŸ™‚

Tetzle 3.0.0 released

Posted on August 4, 2024, under Tetzle

I am pleased to announce the release of Tetzle 3.0! šŸŽ‰

The biggest change is also one that should be completely invisible to most players: I replaced OpenGL with QPainter, which should solve some bugs that players have reported. And make packaging Tetzle easier. (And make Tetzle work with newer version of Qt 6.) It is also why I decided this release should be 3.0 instead of 2.3, to signify the large change in behavior.

I added edge scrolling to the board to make it easier to move the play area without having to drag it with the middle mouse button. There are now nice little arrows on each side to show when you can hover your mouse on a side to move the board, or you can click on the side to speed up the scrolling.

I redesigned the statusbar to make it less confusing. The progress through the game is now labeled clearly, and the zoom slider now has buttons next to it for zooming in and out and to the best fit.

I also redesigned the new game tab of the choose game dialog. It now shows labels next to the buttons to add an image, remove an image, and to set the image properties. I moved the buttons above the image selection area to make them more visible. And I made the tags into a combobox next to them, instead of a sidebar.

And finally, I made it center on the mouse cursor when zooming. That is the way the game was always supposed to work, and was the way it did before the 2.0 release a long time ago. Since it hasnā€™t worked that way in over a decade, I felt it was best to list that as a new feature. šŸ˜‰

Along with the new features, I also spent time cleaning up the code to make it easier to maintain. None of those changes should be visible to players. If they are, I did something wrong!

Go and enjoy! And, of course, please report any bugs you find.

Is it a bug?

Posted on July 11, 2024, under Tetzle

I just recently made Tetzle zoom in and out on the mouse cursor. I felt that was much more natural than always zooming in and out on the center of the play area.

While I was doing so, I noticed that the code implied that was how it was already supposed to work. But it didnā€™t. And yetā€¦ when I looked far enough backā€¦ it did! Back with Tetzle 2.0 I rewrote the graphics handling and broke the zooming in on the cursor. Unintentionally. Ever since then, it has zoomed in on the center of the play area.

Soā€¦ does that make this a bugfix for a bug that was 13 years old? Or a reintroduction of a past feature? šŸ˜›

Starting a new game in Tetzle

Posted on July 7, 2024, under Tetzle

I havenā€™t played Tetzle much in several years, despite the fact that I really enjoy jigsaw puzzles. It is probably one of my favorite pastimes besides reading. And programming. šŸ˜‰ Because of how long it has been, I havenā€™t had to deal with starting a new game in Tetzle in a very long time.

And it is kind of confusing.

Mostly, adding an image for a new game was not obvious. To solve that, I spent way too long going down the rabbit hole of completely redesigning the new game interface before deciding that the current design just needed some improving.

The first thing that needed help was the image actions. Why are there no text labels? Just using icons alone was confusing and not very discoverable! And having them below the images made it extra hard to figure out how to add an image.

The second thing to go was the tag sidebar. Donā€™t worry, there are still tags! But they donā€™t need to be in such a prominent and confusing place. I instead made them into a drop down, where the last item is ā€œManage Tagsā€¦ā€ and it brings up a dialog to modify the list of tags.

I also found not being able to add a new tag to an image while modifying its properties to be kind of awkward. I did try replacing the list of tags with just an entry where you typed the tags for an image, but that had its own issues. I decided to simply add an entry for new tags while modifying the image properties.

And finally, you could add multiple images but only remove them one at a time. Not very friendly! Now you can remove as many images as you want at once by selecting them and then clicking ā€œRemove Imageā€.

Here is what it looks like with those changes:

Update new game interface for Tetzle

Much better, I think! Now I just need to play a bunch of new images to see how it feels in practiceā€¦ After all, the best way to know if I have fixed the issues is to play games, right? šŸ˜‰

Categories