Skip to content

Commit 362a303

Browse files
author
gameDNAstudio
committed
Update to UE 4.15
1 parent ee35166 commit 362a303

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed
304 Bytes
Binary file not shown.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016 gameDNA & zompi.pl
3+
Copyright (c) 2017 gameDNA & zompi.pl
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

MultiDex.uplugin

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"FileVersion": 3,
33
"Version": 1,
4-
"VersionName": "1.0.0",
4+
"VersionName": "1.1.0",
55
"FriendlyName": "MultiDex",
66
"Description": "Plugin for UE4 which eliminates infamous problem with \"64k methods\"",
77
"Category": "Misc",
88
"CreatedBy": "gameDNA & zompi.pl",
99
"CreatedByURL": "http://gamednastudio.com",
1010
"DocsURL": "https://github.com/gameDNAstudio/MultiDex",
11-
"MarketplaceURL": "",
12-
"EngineVersion": "4.14.0",
11+
"MarketplaceURL": "com.epicgames.launcher://ue/marketplace/content/cce07f5135e84dd98738a330b99760a7",
12+
"EngineVersion": "4.15.0",
1313
"SupportURL": "mailto:[email protected]",
1414
"Modules": [
1515
{

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
The **MultiDex** plugin for [Unreal Engine 4](http://www.unrealengine.com) which eliminates infamous problem with "64k methods".
66

7-
* **Current version:** 1.0.0
8-
* **Binaries compiled for:** Unreal Engine 4.14
9-
* **Required Unreal Engine 4.14 or above.**
7+
* **Current version:** 1.1.0
8+
* **Binaries compiled for:** Unreal Engine 4.15
9+
* **Required Unreal Engine 4.15 or above.**
1010

1111
## Features
1212
* Eliminates infamous problem with "64k methods"

Source/MultiDex/MultiDex.Build.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// MultiDex
22
// Created by Patryk Stepniewski & zompi.pl
3-
// Copyright (c) 2014-2016 gameDNA. All Rights Reserved.
3+
// Copyright (c) 2014-2017 gameDNA. All Rights Reserved.
44

55
using System.IO;
66

Source/MultiDex/MultiDex_UPL_Android.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!--
33
MultiDex
44
Created by Patryk Stepniewski & zompi.pl
5-
Copyright (c) 2014-2016 gameDNA. All Rights Reserved.
5+
Copyright (c) 2014-2017 gameDNA. All Rights Reserved.
66
-->
77
<root xmlns:android="http://schemas.android.com/apk/res/android">
88
<init>

Source/MultiDex/Private/MultiDex.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// MultiDex
22
// Created by Patryk Stepniewski & zompi.pl
3-
// Copyright (c) 2014-2016 gameDNA. All Rights Reserved.
3+
// Copyright (c) 2014-2017 gameDNA. All Rights Reserved.
44

55
#include "MultiDexPrivatePCH.h"
66

Source/MultiDex/Private/MultiDexPrivatePCH.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// MultiDex
22
// Created by Patryk Stepniewski & zompi.pl
3-
// Copyright (c) 2014-2016 gameDNA. All Rights Reserved.
3+
// Copyright (c) 2014-2017 gameDNA. All Rights Reserved.
44

55
#pragma once
66

Source/MultiDex/Public/IMultiDex.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// MultiDex
22
// Created by Patryk Stepniewski & zompi.pl
3-
// Copyright (c) 2014-2016 gameDNA. All Rights Reserved.
3+
// Copyright (c) 2014-2017 gameDNA. All Rights Reserved.
44

55
#pragma once
66

0 commit comments

Comments
 (0)