Earlier quoted context omitted.
Often worth it for superior UX. The promise of fantastic cross-platform apps still hasn't borne out. We've been promised this since Java, yet converged on shipping Chrome with a webapp.
You can write app that will work on Windows, Mac, Linux, iOS, Android using Delphi.
9 years of Apple text editor solo dev
341–350 of 405 posts
Re: 9 years of Apple text editor solo dev
#342Earlier quoted context omitted.
Interestingly it seems to be 10.6+ in the documentation. They backdeploy like that sometimes I guess.
Read the real documentation, the archive. ;-) https://developer.apple.com/library/archive/releasenotes/Fou...
Re: 9 years of Apple text editor solo dev
#343Re: 9 years of Apple text editor solo dev
#344Earlier quoted context omitted.
You can use Rust with QML[1]. QML is actually pretty amazing. I've been building my block editor[2] view entirely in QML while the model is in C++. This separation of logic and presentation works great. And yes, there are some crashes sometimes (that I find quite easy to debug thanks to the built-in debugger), but take for example a similar app that's built with Rust and Dart[3], in my testing there were still memory…
You have no idea how valuable and helpful this comment was to me. Thank you very much!
Re: 9 years of Apple text editor solo dev
#345Earlier quoted context omitted.
I've built my note-taking app[1] in Qt, and while I worked hard to make it look good, I'm very satisfied with the result. Also, it turns out to be much faster than comparable native apps (performance benchmarks available on the website). [1] https://www.get-plume.com/
You have one of the few Qt-based apps that looks and feels like it belongs on macOS. Really well done.
Re: 9 years of Apple text editor solo dev
#346Earlier quoted context omitted.
And you are now locked down to one environment.
If you’re an indie dev, that can be a good thing. I find it much simpler to ship for iOS and Mac as a solo dev.
Re: 9 years of Apple text editor solo dev
#347Earlier quoted context omitted.
I've built my note-taking app[1] in Qt, and while I worked hard to make it look good, I'm very satisfied with the result. Also, it turns out to be much faster than comparable native apps (performance benchmarks available on the website). [1] https://www.get-plume.com/
No BBedit in the comparison list?
Re: 9 years of Apple text editor solo dev
#348Earlier quoted context omitted.
I've built my note-taking app[1] in Qt, and while I worked hard to make it look good, I'm very satisfied with the result. Also, it turns out to be much faster than comparable native apps (performance benchmarks available on the website). [1] https://www.get-plume.com/
Looks great! Did you use QT Quick or the Widgets?
Re: 9 years of Apple text editor solo dev
#349Earlier quoted context omitted.
Looks great! Did you use QT Quick or the Widgets?
Must be Widgets since using QML at work makes me regularly wanna rip my hair out. Its one of the worst frameworks Ive used once you go beyond simple hello world programs.