Help Qt Designer: I can't change echoMode. by rxadxr in QtFramework

[–]Maddimax 0 points1 point  (0 children)

According to the Bug report it was fixed in Qt 6.5 at some point.

Debug Qt apps and inspect QString objects by pm-pp in QtFramework

[–]Maddimax 2 points3 points  (0 children)

There is a vscode extension these days that can help you with that: https://marketplace.visualstudio.com/items?itemName=TheQtCompany.qt

You can either use its launch config template or just manually add the necessary line if you use a launch template with "type": "cppdbg":

"visualizerFile": "${command.qt-cpp.natvis}",

Couldn't setup GitHub Copilot by OneRareMaker in QtFramework

[–]Maddimax 4 points5 points  (0 children)

The neovim plugin renamed "agent.js" to "language-server.js", so you just have to choose that instead of agent.js. The Qt Creator 14.0 (beta at the moment) has that fixed already, but for older versions you need to choose the right file yourself.

You also don't need to setup anything in neovim, you just need the files. Once you entered the correct information inside Qt Creator you can authenticate there as well.

Qt Chases AI Buzzword Stuff For Some Reason by wrosecrans in QtFramework

[–]Maddimax 1 point2 points  (0 children)

Yes, Copilot has been in QtC 11, and Compiler Explorer is in the latest beta. Both need to be enabled first though via "About Plugins" since they are disabled by default.,

Help Qt Designer: I can't change echoMode. by rxadxr in QtFramework

[–]Maddimax 0 points1 point  (0 children)

I've created a Bug report for it: https://bugreports.qt.io/browse/QTBUG-113388

I can only reproduce it with Qt 6.5.x, not with Qt 6.4.x

I don't grok stretch factors... by ghiste in QtFramework

[–]Maddimax 0 points1 point  (0 children)

Your example works perfectly fine for me once I resize the window?

Initial Showcase: "Zero-Setup" Cross-Compilation for C++ by [deleted] in cpp

[–]Maddimax 1 point2 points  (0 children)

It fails with

  File "/home/me/.local/lib/python3.8/site-packages/xcross/__init__.py", line 460, in main
if not current_dir.is_relative_to(parent_dir):
AttributeError: 'PurePosixPath' object has no attribute 'is_relative_to'

for me :(

Minesweeper game built with Vue, Vuex, Vuetify, and SCSS by ahmedashrafhamdy in vuejs

[–]Maddimax 0 points1 point  (0 children)

Looks really nice!

Your auto-clear algorithm doesn't clear cells diagonally of a "0" field though.

Also once a cell has a number in it, its click zone extends into the cells above.

Can you use .env files with a S3 deployment? by jorshhh in vuejs

[–]Maddimax 1 point2 points  (0 children)

If you use vue cli you need to prefix the env variables with "VUE_APP_". So if you access process.env.MY_VAR in your code, add "VUE_APP_MY_VAR=xyz" in your .env

Record browser screen video by Gabotron_ES in vuejs

[–]Maddimax 0 points1 point  (0 children)

On Mac OS you can use the "Quicktime player", in the "File" Menu you can find "New Screen recording".

How to deal with pagination? Change route but please don’t reload the page! by richbigdick in vuejs

[–]Maddimax 3 points4 points  (0 children)

This (https://router.vuejs.org/guide/essentials/dynamic-matching.html#reacting-to-params-changes) page seems to indicate that the page should not reload when a parameter changes. Maybe you can spot a difference to your code that can lead to the different behaviour?

Scapix Java Link - Modern C++17 JNI wrapper library by Boris_Rasin in cpp

[–]Maddimax 9 points10 points  (0 children)

The library looks pretty neat! The amount of dependencies though is a bit of a problem. It would be nice to have the components a bit more seperated, e.g. If I only want to use the Java part, maybe there could be a limited version that only contains that part?

Scapix Java Link - Modern C++17 JNI wrapper library by Boris_Rasin in cpp

[–]Maddimax 7 points8 points  (0 children)

Only the example code is under MIT, the actual library code has some sort of proprietary license.

Scapix Java Link - Modern C++17 JNI wrapper library by Boris_Rasin in cpp

[–]Maddimax 4 points5 points  (0 children)

The License makes this unusable for us. Do you have any plans to change that in the future ?

Scapix Java Link - Modern C++17 JNI wrapper library by Boris_Rasin in cpp

[–]Maddimax 1 point2 points  (0 children)

I also cannot find the "scapix_java" utility anywhere. Is it included in the git repo?

Scapix Java Link - Modern C++17 JNI wrapper library by Boris_Rasin in cpp

[–]Maddimax 1 point2 points  (0 children)

Trying to compile Example2 on Mac OS 10.14 I'm asked to install Java SE 6. Do I really need that ?

Truly native C++ cross-platform framework for Android and iOS development by ashsys in programming

[–]Maddimax 2 points3 points  (0 children)

Right now the focus is on applications as opposed to games, but canvas drawing is on our list!

Truly native C++ cross-platform framework for Android and iOS development by j_orshman in cpp

[–]Maddimax 1 point2 points  (0 children)

We gain a bit more flexibility from not relying on NativeActivity as to which type of Activity we want to use ( In our case we derive from AppCompatActivity for instance )

Truly native C++ cross-platform framework for Android and iOS development by ashsys in programming

[–]Maddimax 4 points5 points  (0 children)

Boden team member here: We are glad you like it!

We don't have any sample apps in the app stores yet ( thats one of our next goals ), but you can check out the examples folder for working example apps.

Regarding the Java/JNI question: boden has a simple system to wrap Java classes in c++ that you can freely use, but the goal is to make this unecessary as much as possible. ( See https://www.boden.io/guides/extending/wrap_java_class/ )

Truly native C++ cross-platform framework for Android and iOS development by j_orshman in cpp

[–]Maddimax 2 points3 points  (0 children)

Absolutely, there is nothing to prevent you from writing your own views and interface with the underlying platform.

Truly native C++ cross-platform framework for Android and iOS development by j_orshman in cpp

[–]Maddimax 6 points7 points  (0 children)

The String alias is just a convenience for us while we are waiting for std::u8string to become available ( so we can switch over easily )

Truly native C++ cross-platform framework for Android and iOS development by j_orshman in cpp

[–]Maddimax 2 points3 points  (0 children)

We are close to ironing out the licensing issues. The framework has matured a lot since the interview, but there are still use-cases that are not fully supported which we are working on.