Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Windows support (until external linking will be supported by go build) #149

Open
wants to merge 38 commits into
base: v1
Choose a base branch
from

Commits on Mar 4, 2015

  1. Update capi.cpp

    Removes all dynamic_cast, in order to make it work without RTTI. This is due to golang/go#10023 (duplicate of golang/go#4069) and solves go-qml#19.
    neclepsio committed Mar 4, 2015
    Configuration menu
    Copy the full SHA
    d594148 View commit details
    Browse the repository at this point in the history
  2. Update idletimer.cpp

    Make it work without global variable initialization. This is due to golang/go#10023 (duplicate of golang/go#4069) and solves go-qml#142.
    neclepsio committed Mar 4, 2015
    Configuration menu
    Copy the full SHA
    35ce016 View commit details
    Browse the repository at this point in the history
  3. Update README.md

    neclepsio committed Mar 4, 2015
    Configuration menu
    Copy the full SHA
    0235b6a View commit details
    Browse the repository at this point in the history
  4. Update README.md

    neclepsio committed Mar 4, 2015
    Configuration menu
    Copy the full SHA
    658f1f9 View commit details
    Browse the repository at this point in the history
  5. Update README.md

    neclepsio committed Mar 4, 2015
    Configuration menu
    Copy the full SHA
    1bc7e1c View commit details
    Browse the repository at this point in the history
  6. Update README.md

    neclepsio committed Mar 4, 2015
    Configuration menu
    Copy the full SHA
    4b90968 View commit details
    Browse the repository at this point in the history
  7. Update capi.cpp

    Cleanup
    neclepsio committed Mar 4, 2015
    Configuration menu
    Copy the full SHA
    e299a47 View commit details
    Browse the repository at this point in the history
  8. Update capi.cpp

    Cleanup (tabs to spaces)
    neclepsio committed Mar 4, 2015
    Configuration menu
    Copy the full SHA
    377fcee View commit details
    Browse the repository at this point in the history
  9. Update idletimer.cpp

    neclepsio committed Mar 4, 2015
    Configuration menu
    Copy the full SHA
    271f860 View commit details
    Browse the repository at this point in the history

Commits on Feb 4, 2016

  1. Configuration menu
    Copy the full SHA
    0a8c2e7 View commit details
    Browse the repository at this point in the history

Commits on Feb 10, 2016

  1. Add engine.AddImportPath and ClearComponentCache

    Matt Peterson committed Feb 10, 2016
    Configuration menu
    Copy the full SHA
    15fa509 View commit details
    Browse the repository at this point in the history
  2. Enable static building on Windows

    Matt Peterson committed Feb 10, 2016
    Configuration menu
    Copy the full SHA
    0fc3d34 View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2016

  1. Fixed unsupported variant type: 1024 (QJSValue)

    Added proper casting from QMetaType::User (1024) with userType 1034 (i.e.,
    QJSValue) to QVariant so it can be handled properly by the packDataValue
    method.
    obscuren authored and ricochet1k committed Mar 12, 2016
    Configuration menu
    Copy the full SHA
    60887d8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    07befdf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a5eeb50 View commit details
    Browse the repository at this point in the history

Commits on Mar 16, 2016

  1. Add more Qt paths list manipulation functions

    Matt Peterson committed Mar 16, 2016
    Configuration menu
    Copy the full SHA
    b29d141 View commit details
    Browse the repository at this point in the history
  2. Don't panic in function calls with zero/invalid parameters

    Matt Peterson committed Mar 16, 2016
    Configuration menu
    Copy the full SHA
    424704a View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2016

  1. Porting go-qml to Go 1.6

    Go 1.6 cannot have Go pointer stored into the cgo space. So instead we
    need to store all Go values in a map and pass a key to the cgo
    space. When needed the key can be used to retrieve the go value from the
    map.
    SjB committed Apr 5, 2016
    Configuration menu
    Copy the full SHA
    826359a View commit details
    Browse the repository at this point in the history
  2. Merge pull request #2 from ricochet1k/safer

    Safer
    neclepsio committed Apr 5, 2016
    Configuration menu
    Copy the full SHA
    a159017 View commit details
    Browse the repository at this point in the history
  3. Go 1.6 support (partial)

    neclepsio committed Apr 5, 2016
    Configuration menu
    Copy the full SHA
    724d0ea View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    25510fc View commit details
    Browse the repository at this point in the history
  5. Go 1.6 (final)

    neclepsio committed Apr 5, 2016
    Configuration menu
    Copy the full SHA
    9e7fbdc View commit details
    Browse the repository at this point in the history
  6. Merge pull request #5 from neclepsio/SjB-go1.6-port

    Go 1.6 (final)
    neclepsio committed Apr 5, 2016
    Configuration menu
    Copy the full SHA
    b752760 View commit details
    Browse the repository at this point in the history
  7. Merge branch 'v1' of https://github.com/tgerring/qml into tgerring-v1

    # Conflicts:
    #	cpp/idletimer.cpp
    neclepsio committed Apr 5, 2016
    Configuration menu
    Copy the full SHA
    3817cca View commit details
    Browse the repository at this point in the history

Commits on Apr 6, 2016

  1. change datatype the foldr from uintptr to C.GoRef

    Using the C.GoRef datatype instead of uintptr in
    the go code make it more clear what the variable
    contains.
    SjB committed Apr 6, 2016
    Configuration menu
    Copy the full SHA
    01021bc View commit details
    Browse the repository at this point in the history
  2. refactor valueFold.

    added methods to the type so that we can get the GoRef and register the
    fold in the lookup table, then a function to destroy the reference when
    we are done with the valueFold.
    SjB committed Apr 6, 2016
    Configuration menu
    Copy the full SHA
    2628b57 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a4363f7 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ea70551 View commit details
    Browse the repository at this point in the history
  5. fix missing goRef function

    SjB committed Apr 6, 2016
    Configuration menu
    Copy the full SHA
    0309d2d View commit details
    Browse the repository at this point in the history
  6. Merge pull request #8 from SjB/go1.6-port

    Go1.6 port
    neclepsio committed Apr 6, 2016
    Configuration menu
    Copy the full SHA
    d3b5814 View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2016

  1. fix forgotten dereferenced datap pointer.

    When unpacking a DataValue of a DTGoAddr type, we forgot to dereference the datap pointer
    that contained the GoRef.
    
    Thanks to immesys on github, for pointing out the bug.
    SjB committed Jul 1, 2016
    Configuration menu
    Copy the full SHA
    d4c4a72 View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2016

  1. Merge pull request #10 from SjB/go1.6-port

    fix forgotten dereferenced datap pointer.
    neclepsio authored Jul 2, 2016
    Configuration menu
    Copy the full SHA
    1cd7645 View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2019

  1. Added support for Go 1.12

    neclepsio authored Feb 27, 2019
    Configuration menu
    Copy the full SHA
    1a4a251 View commit details
    Browse the repository at this point in the history
  2. Add support for Qt 5.11+

    neclepsio authored Feb 27, 2019
    Configuration menu
    Copy the full SHA
    39c86d2 View commit details
    Browse the repository at this point in the history
  3. Changed import path (1/2)

    neclepsio authored Feb 27, 2019
    Configuration menu
    Copy the full SHA
    6f4b129 View commit details
    Browse the repository at this point in the history
  4. Changed import path (2/2)

    neclepsio authored Feb 27, 2019
    Configuration menu
    Copy the full SHA
    c923d26 View commit details
    Browse the repository at this point in the history
  5. Update README.md

    neclepsio authored Feb 27, 2019
    Configuration menu
    Copy the full SHA
    dea943b View commit details
    Browse the repository at this point in the history
  6. Update README.md

    neclepsio authored Feb 27, 2019
    Configuration menu
    Copy the full SHA
    4d1f36b View commit details
    Browse the repository at this point in the history