-
Notifications
You must be signed in to change notification settings - Fork 187
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
base: v1
Are you sure you want to change the base?
Commits on Mar 4, 2015
-
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.
Configuration menu - View commit details
-
Copy full SHA for d594148 - Browse repository at this point
Copy the full SHA d594148View commit details -
Make it work without global variable initialization. This is due to golang/go#10023 (duplicate of golang/go#4069) and solves go-qml#142.
Configuration menu - View commit details
-
Copy full SHA for 35ce016 - Browse repository at this point
Copy the full SHA 35ce016View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0235b6a - Browse repository at this point
Copy the full SHA 0235b6aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 658f1f9 - Browse repository at this point
Copy the full SHA 658f1f9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1bc7e1c - Browse repository at this point
Copy the full SHA 1bc7e1cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4b90968 - Browse repository at this point
Copy the full SHA 4b90968View commit details -
Configuration menu - View commit details
-
Copy full SHA for e299a47 - Browse repository at this point
Copy the full SHA e299a47View commit details -
Configuration menu - View commit details
-
Copy full SHA for 377fcee - Browse repository at this point
Copy the full SHA 377fceeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 271f860 - Browse repository at this point
Copy the full SHA 271f860View commit details
Commits on Feb 4, 2016
-
Detect use of Qt objects after destruction and other safety features
Matt Peterson committedFeb 4, 2016 Configuration menu - View commit details
-
Copy full SHA for 0a8c2e7 - Browse repository at this point
Copy the full SHA 0a8c2e7View commit details
Commits on Feb 10, 2016
-
Add engine.AddImportPath and ClearComponentCache
Matt Peterson committedFeb 10, 2016 Configuration menu - View commit details
-
Copy full SHA for 15fa509 - Browse repository at this point
Copy the full SHA 15fa509View commit details -
Enable static building on Windows
Matt Peterson committedFeb 10, 2016 Configuration menu - View commit details
-
Copy full SHA for 0fc3d34 - Browse repository at this point
Copy the full SHA 0fc3d34View commit details
Commits on Mar 12, 2016
-
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.
Configuration menu - View commit details
-
Copy full SHA for 60887d8 - Browse repository at this point
Copy the full SHA 60887d8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 07befdf - Browse repository at this point
Copy the full SHA 07befdfView commit details -
Configuration menu - View commit details
-
Copy full SHA for a5eeb50 - Browse repository at this point
Copy the full SHA a5eeb50View commit details
Commits on Mar 16, 2016
-
Add more Qt paths list manipulation functions
Matt Peterson committedMar 16, 2016 Configuration menu - View commit details
-
Copy full SHA for b29d141 - Browse repository at this point
Copy the full SHA b29d141View commit details -
Don't panic in function calls with zero/invalid parameters
Matt Peterson committedMar 16, 2016 Configuration menu - View commit details
-
Copy full SHA for 424704a - Browse repository at this point
Copy the full SHA 424704aView commit details
Commits on Apr 5, 2016
-
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.
Configuration menu - View commit details
-
Copy full SHA for 826359a - Browse repository at this point
Copy the full SHA 826359aView commit details -
Configuration menu - View commit details
-
Copy full SHA for a159017 - Browse repository at this point
Copy the full SHA a159017View commit details -
Configuration menu - View commit details
-
Copy full SHA for 724d0ea - Browse repository at this point
Copy the full SHA 724d0eaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 25510fc - Browse repository at this point
Copy the full SHA 25510fcView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9e7fbdc - Browse repository at this point
Copy the full SHA 9e7fbdcView commit details -
Configuration menu - View commit details
-
Copy full SHA for b752760 - Browse repository at this point
Copy the full SHA b752760View commit details -
Merge branch 'v1' of https://github.com/tgerring/qml into tgerring-v1
# Conflicts: # cpp/idletimer.cpp
Configuration menu - View commit details
-
Copy full SHA for 3817cca - Browse repository at this point
Copy the full SHA 3817ccaView commit details
Commits on Apr 6, 2016
-
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.
Configuration menu - View commit details
-
Copy full SHA for 01021bc - Browse repository at this point
Copy the full SHA 01021bcView commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 2628b57 - Browse repository at this point
Copy the full SHA 2628b57View commit details -
Configuration menu - View commit details
-
Copy full SHA for a4363f7 - Browse repository at this point
Copy the full SHA a4363f7View commit details -
Configuration menu - View commit details
-
Copy full SHA for ea70551 - Browse repository at this point
Copy the full SHA ea70551View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0309d2d - Browse repository at this point
Copy the full SHA 0309d2dView commit details -
Configuration menu - View commit details
-
Copy full SHA for d3b5814 - Browse repository at this point
Copy the full SHA d3b5814View commit details
Commits on Jul 1, 2016
-
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.
Configuration menu - View commit details
-
Copy full SHA for d4c4a72 - Browse repository at this point
Copy the full SHA d4c4a72View commit details
Commits on Jul 2, 2016
-
Merge pull request #10 from SjB/go1.6-port
fix forgotten dereferenced datap pointer.
Configuration menu - View commit details
-
Copy full SHA for 1cd7645 - Browse repository at this point
Copy the full SHA 1cd7645View commit details
Commits on Feb 27, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 1a4a251 - Browse repository at this point
Copy the full SHA 1a4a251View commit details -
Configuration menu - View commit details
-
Copy full SHA for 39c86d2 - Browse repository at this point
Copy the full SHA 39c86d2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6f4b129 - Browse repository at this point
Copy the full SHA 6f4b129View commit details -
Configuration menu - View commit details
-
Copy full SHA for c923d26 - Browse repository at this point
Copy the full SHA c923d26View commit details -
Configuration menu - View commit details
-
Copy full SHA for dea943b - Browse repository at this point
Copy the full SHA dea943bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4d1f36b - Browse repository at this point
Copy the full SHA 4d1f36bView commit details