1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00
Commit graph

171 commits

Author SHA1 Message Date
ed
4583baf277 Bump version number to 5.4.5 2019-10-16 10:01:09 +01:00
Tom Poole
528798d96e Bump version number to 5.4.4 2019-08-09 11:24:54 +01:00
ed
8c6072b46c Android: Fixed a couple other LocalRef issues in the IAP code 2019-07-17 16:29:48 +01:00
ed
58382a6576 Android: Fixed a potential crash in IAP GetProductsInformationJob 2019-07-17 16:23:44 +01:00
Tom Poole
0239c0cb7e iOS: Fixed a crash in InAppPurchases 2019-06-27 15:37:23 +01:00
Tom Poole
a4bd6cbc66 Fixed some more Linux compiler warnings 2019-06-06 10:25:19 +01:00
jules
2e2cfb5f6c Made a lot of the functions that used to return a raw XmlElement* instead return a std::unique_ptr<XmlElement> to make it safer and more concise to capture them. Also added new methods to XmlElement for generating text, and deprecated the old ones 2019-05-09 10:51:19 +01:00
ed
6722194260 Bump version number to 5.4.3 2019-02-21 15:25:51 +00:00
Tom Poole
e3ebe5aed1 Bump version number to 5.4.2 2019-02-07 10:02:17 +00:00
ed
a234721110 Added various clang-tidy modernize-* fixes 2019-01-31 15:15:31 +00:00
jules
536d7ed6d2 Replaced some clumsy buffer handling code in the TracktionMarketplaceStatus class 2018-12-22 14:32:51 +00:00
ed
b0e2495eac Android: Updated the code in PushNotifications and InAppPurchases to the recent low-level API changes 2018-12-19 10:46:15 +00:00
ed
6d39f01793 Bump version number to 5.4.1 2018-11-12 11:26:11 +00:00
Tom Poole
f0a4b67915 Android: Fixed some compiler warnings 2018-11-09 14:04:46 +00:00
ed
0b8fcc7a15 Bump version number to 5.4.0 2018-11-06 12:50:21 +00:00
Lukasz Kozakiewicz
21c2612dea Android: add putFloat to bundle and rename JavaBundle to AndroidBundle. 2018-11-05 11:30:09 +01:00
ed
acd3c0b8ee Fixed some Objective-C id -> auto* conversion warnings 2018-10-24 16:20:45 +01:00
jules
768139a298 Added some free functions to help make XML parsing less verbose: parseXML() 2018-10-15 16:08:25 +01:00
Tom Poole
493591a7ef Cleaned up some doc comments 2018-08-29 10:56:56 +01:00
Tom Poole
0e1722e387 Multiple spelling fixes 2018-08-20 18:16:24 +01:00
Tom Poole
4b3632ac9c Fixed a bug unlocking products with multiple machine numbers 2018-08-09 14:34:47 +01:00
jules
0535d1b222 Added a buffer length check in TracktionMarketplaceStatus 2018-07-17 12:52:56 +01:00
jules
7ab4d1708b Some misc cleanups, mainly around WeakReference usage and rectangles 2018-07-09 16:00:45 +01:00
jules
ccbaf89f0e Added some methods IPAddress::getAllAddresses(), IPAddress::getLocalAddress(), MACAddress::getAllAddresses() 2018-07-04 17:17:18 +01:00
jules
2733b4c9a6 Made the error message text in OnlineUnlockStatus customisable 2018-05-17 15:24:38 +01:00
ed
2d79cc78c0 Bump version number to 5.3.2 2018-05-09 12:34:36 +01:00
Tom Poole
ab863a6dc2 Replaced all usage of ScopedPointer with std::unique_ptr 2018-04-19 20:27:47 +01:00
Noah Dayan
1a31c86f39 Bump version number to 5.3.1 2018-04-10 17:01:54 +01:00
ed
262dff8854 Bump version number to 5.3.0 2018-03-15 12:23:30 +00:00
ed
cdbc28c18b Add documentation tags 2018-03-15 12:10:32 +00:00
Lukasz Kozakiewicz
3e66bc69fb InAppPurchases: fix a bug on Android when failed purchases would not be propagated to IAP listeners. Make InAppPurchases a Singleton. 2018-02-21 18:44:23 +01:00
ed
fa0f7a4281 Bump version number to 5.2.1 2018-02-08 10:55:52 +00:00
ed
1bcc427484 Fixed a bug in TracktionMarketplaceStatus::readReplyFromWebserver() that would cause it to fail if all the data was not read at once 2018-02-02 12:31:16 +00:00
jules
1a60fa9765 More ScopedPointer/unique_ptr compatibility work 2018-01-10 17:35:08 +00:00
jules
4fcedf7be5 Standardised some lambda syntax 2018-01-08 10:28:41 +00:00
jules
6a49d6efdc Minor tidying up 2017-11-29 17:33:00 +00:00
jules
a586966c65 Added lambda callback methods to ListenerList. Its old method-invocation callbacks were refactored to use variadic templates instead of the old awful macros they used in the past, but please move your code to use the new lambda functions, as the one stuff will eventually be deprecated! 2017-11-28 16:18:40 +00:00
jules
2be865b831 Added a GZIPCompressorOutputStream constructor that takes a reference. 2017-11-27 16:56:11 +00:00
ed
bd5f43c58f Added a virtual userCancelled() method to OnlineUnlockStatus and modified TracktionMarketplaceStatus::readReplyFromWebserver() to make it cancellable and use a POST command 2017-11-09 12:36:04 +00:00
Lukasz Kozakiewicz
5d30fcd9b5 Android: move a bunch of generic Android and Java classes to JNI helpers, add Android/Java prefixes to disambiguate. 2017-11-08 18:29:12 +01:00
ed
c7be3ed55a Added a parameter to the OnlineUnlockForm constructor to specify whether its OverlayComp should have a cancel button 2017-11-06 10:16:48 +00:00
ed
dbb2f620b4 Bump version number to 5.2.0 2017-10-25 12:07:32 +01:00
Lukasz Kozakiewicz
99c4f716da InAppPurchases: return failure status of restoring products bought list if IAP is unavailable. 2017-10-24 10:34:22 +02:00
Lukasz Kozakiewicz
7854ca74f0 InAppPurchases: remove return after else! 2017-10-24 09:28:58 +02:00
Lukasz Kozakiewicz
0e9db3c403 InAppPurchases: call purchasesListRestored() callback with failure when a user cancels login to AppStore. 2017-10-24 08:58:37 +02:00
Lukasz Kozakiewicz
e0088c12b2 InAppPurchases: handle the case with AppStore where purchase time in a receipt is a string. 2017-10-24 08:56:28 +02:00
Lukasz Kozakiewicz
1dd687eeb9 InAppPurchases: enable IAP on OSX. 2017-10-17 17:42:03 +02:00
Lukasz Kozakiewicz
2ff20dac63 InAppPurchases: check price locale’s language code in backwards compatible way. 2017-10-17 08:57:28 +02:00
Lukasz Kozakiewicz
0caf83439a Android: move android.content.Intent class definition into JNIHelpers. 2017-10-12 11:53:08 +01:00
tpoole
7d2f59909e Minor documentation fixes 2017-10-06 12:33:55 +01:00