Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. TwitchQt
Forum Updated to NodeBB v4.3 + New Features

TwitchQt

Scheduled Pinned Locked Moved Unsolved General and Desktop
9 Posts 3 Posters 634 Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • K Offline
    K Offline
    Kris Revi
    wrote on last edited by
    #1

    trying to run this -> https://github.com/jkbz64/TwitchQt on Qt 6.2.0 (it was updated for 6.2.0) 2 days ago but i get these error that i dont understand

    alt text
    alt text

    1 Reply Last reply
    0
    • SGaistS Offline
      SGaistS Offline
      SGaist
      Lifetime Qt Champion
      wrote on last edited by
      #2

      Hi,

      When did you clone that library for the last time ?
      From the looks of it, there have been fixes in the last couple of day.

      Interested in AI ? www.idiap.ch
      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

      K 1 Reply Last reply
      0
      • SGaistS SGaist

        Hi,

        When did you clone that library for the last time ?
        From the looks of it, there have been fixes in the last couple of day.

        K Offline
        K Offline
        Kris Revi
        wrote on last edited by
        #3

        @SGaist as stated (it was updated for 6.2.0) 2 days ago so i grabed the newest! :/

        1 Reply Last reply
        0
        • SGaistS Offline
          SGaistS Offline
          SGaist
          Lifetime Qt Champion
          wrote on last edited by
          #4

          I was talking about TwitchQt.

          Interested in AI ? www.idiap.ch
          Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

          K 1 Reply Last reply
          0
          • SGaistS SGaist

            I was talking about TwitchQt.

            K Offline
            K Offline
            Kris Revi
            wrote on last edited by
            #5

            @SGaist so was i (^^,)

            1 Reply Last reply
            0
            • K Offline
              K Offline
              Kris Revi
              wrote on last edited by
              #6

              if i understand correctly it is this

              namespace nlohmann {
              template <>
              struct adl_serializer<QString> {
                  static QString from_json(const json& j)
                  {
                      if (j.is_null())
                          return QString("");
                      else if (j.is_number()) {
                          return QString::number(j.get<qint64>());
                      } else if (j.is_string()) {
                          return QString::fromStdString(j.get<std::string>());
                      }
                      return QString("");
                  }
              
                  static void to_json(json& j, const QString& t)
                  {
                      j = t.toStdString();
                  }
              };
              

              or am i wrong?

              1 Reply Last reply
              0
              • K Offline
                K Offline
                Kris Revi
                wrote on last edited by
                #7

                anyone? :/

                1 Reply Last reply
                0
                • SGaistS Offline
                  SGaistS Offline
                  SGaist
                  Lifetime Qt Champion
                  wrote on last edited by
                  #8

                  Please allow at least 24 hours to pass before bumping your own thread. This is a voluntary driven forum and people answering may not even live in the same timezone as you.

                  I am a bit skeptical on the to_json implementation.

                  Interested in AI ? www.idiap.ch
                  Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                  1 Reply Last reply
                  0
                  • JKSHJ Offline
                    JKSHJ Offline
                    JKSH
                    Moderators
                    wrote on last edited by
                    #9

                    It sounds like the maintainer of TwitchQt did not fully test Qt 6 compatibility, and "some things might still be broken": https://github.com/jkbz64/TwitchQt/issues/3

                    So create an Issue on their GitHub repo and post your error message there (copy and paste the text, not a screenshot). This should help them fix the issue.

                    Qt Doc Search for browsers: forum.qt.io/topic/35616/web-browser-extension-for-improved-doc-searches

                    1 Reply Last reply
                    1

                    • Login

                    • Login or register to search.
                    • First post
                      Last post
                    0
                    • Categories
                    • Recent
                    • Tags
                    • Popular
                    • Users
                    • Groups
                    • Search
                    • Get Qt Extensions
                    • Unsolved