Skip to content

Commit

Permalink
Version 1.1.8.
Browse files Browse the repository at this point in the history
  • Loading branch information
philip-lamb committed May 13, 2023
1 parent cbd04ab commit 6aa0a13
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions Release Notes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
# artoolkitX for Unity Release Notes
------------------------------------

## Version 1.1.8
### 2023-05-14

Changes:
* Add UnityEvent bindings to ARTrackedObject's events (found, tracked, lost) (and also legacy ARTrackedCamera). The legacy broadcast event bindings are still available but the UnityEvent interface offers better performance and flexibility.
* Fixed callback stub handling in the plugin interface.
* Restored Android and iOS camera permissions requests in StartAR (that were lost in the update to v1.1.2).
* ARController.StartAR is now a co-routine, and will no longer be called from ARController.UpdateAR.
* On Android, removed AndroidManifest.xml and replaced with build post-processor to insert required permissions and features into the Unity-provided manifest.
* Tweak built sample app packge ID.
* Fixed iOS build by adding ARX's dependent libs, plus overhauled post-processor to add linking to sqlite.
Also tidied up ScreenOrienation warning.

## Version 1.1.7
### 2023-05-08

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ public class ARToolKitMenuEditor : MonoBehaviour {
private const string SOURCE_URL = "https://github.com/artoolkitx/artoolkitx";
private const string PLUGIN_SOURCE_URL = "https://github.com/artoolkitx/arunityx";
//private const string TOOLS_URL = "http://artoolkit.org/download-artoolkit-sdk#unity";
private const string VERSION = MENU_PATH_BASE + "/artoolkitX for Unity Version 1.1.6";
private const string VERSION = MENU_PATH_BASE + "/artoolkitX for Unity Version 1.1.8";
private const string WINDOWS_UNITY_MESSAGE = "Thank you for choosing artoolkitX for Unity! " +
"<b>artoolkitX requires the Microsoft C++ Redistributables to be installed on your system.</b>\n" +
"Please select \"{0}\" from the menu above, and install the required packages.";
private const string GET_TOOLS_MESSAGE = "artoolkitX for Unity Version 1.1.6! <b>To make your own markers, you'll need to download our tools.</b>\n" +
private const string GET_TOOLS_MESSAGE = "artoolkitX for Unity Version 1.1.8! <b>To make your own markers, you'll need to download our tools.</b>\n" +
"Please select {0} from menu above to download them.";

static ARToolKitMenuEditor() {
Expand Down
2 changes: 1 addition & 1 deletion Source/Package/ProjectSettings/ProjectSettings.asset
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ PlayerSettings:
16:10: 1
16:9: 1
Others: 1
bundleVersion: 1.1.7
bundleVersion: 1.1.8
preloadedAssets: []
metroInputSource: 0
wsaTransparentSwapchain: 0
Expand Down

0 comments on commit 6aa0a13

Please sign in to comment.