Version 1.15.1-release

master
MoNTE48 2021-02-09 11:27:41 +01:00
parent 39228e3bff
commit 1a0ef21d71
10 changed files with 22 additions and 22 deletions

View File

@ -15,7 +15,7 @@ set(CMAKE_CXX_STANDARD 11)
# Also remember to set PROTOCOL_VERSION in network/networkprotocol.h when releasing
set(VERSION_MAJOR 1)
set(VERSION_MINOR 15)
set(VERSION_PATCH 0)
set(VERSION_PATCH 2)
set(VERSION_EXTRA "" CACHE STRING "Stuff to append to version string")
# Change to false for releases

View File

@ -8,8 +8,8 @@ android {
minSdkVersion 16
//noinspection OldTargetApi
targetSdkVersion 29
versionCode 124
versionName "1.15.0"
versionCode 135
versionName "1.15.1"
multiDexEnabled true
}

View File

@ -6,7 +6,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.1'
classpath 'com.android.tools.build:gradle:4.1.2'
//noinspection GradleDynamicVersion
/*classpath 'com.bugsnag:bugsnag-android-gradle-plugin:5.+'*/
classpath 'de.undercouch:gradle-download-task:4.1.1'

View File

@ -1,6 +1,6 @@
#Wed Dec 02 22:19:11 CET 2020
#Sat Feb 06 00:00:38 CET 2021
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.2-bin.zip
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME

View File

@ -1858,7 +1858,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_IDENTITY = "iPhone Developer";
CURRENT_PROJECT_VERSION = 115;
CURRENT_PROJECT_VERSION = 117;
DEVELOPMENT_TEAM = R3RLJ9TW52;
GCC_PREPROCESSOR_DEFINITIONS = (
"$(inherited)",
@ -1890,7 +1890,7 @@
"@executable_path/Frameworks",
);
LIBRARY_SEARCH_PATHS = "$(inherited)";
MARKETING_VERSION = 1.15.0;
MARKETING_VERSION = 1.15.2;
OTHER_CFLAGS = (
"$(inherited)",
"-isystem",
@ -1924,7 +1924,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_IDENTITY = "iPhone Developer";
CURRENT_PROJECT_VERSION = 115;
CURRENT_PROJECT_VERSION = 117;
DEVELOPMENT_TEAM = R3RLJ9TW52;
GCC_PREPROCESSOR_DEFINITIONS = (
"$(inherited)",
@ -1957,7 +1957,7 @@
"@executable_path/Frameworks",
);
LIBRARY_SEARCH_PATHS = "$(inherited)";
MARKETING_VERSION = 1.15.0;
MARKETING_VERSION = 1.15.2;
OTHER_CFLAGS = (
"$(inherited)",
"-isystem",
@ -2013,7 +2013,7 @@
repositoryURL = "https://github.com/bugsnag/bugsnag-cocoa";
requirement = {
kind = upToNextMinorVersion;
minimumVersion = 6.4.0;
minimumVersion = 6.6.0;
};
};
84C32A3524AF7A4500445E92 /* XCRemoteSwiftPackageReference "Nantes" */ = {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 399 KiB

After

Width:  |  Height:  |  Size: 266 KiB

View File

@ -6,14 +6,14 @@ install! 'cocoapods', :warn_for_multiple_pod_sources => false, :warn_for_unused_
def appodeal
# source 'https://github.com/appodeal/CocoaPods.git'
ver = '2.8.1.1' # '2.7.5.1'
ver = '2.9.0-Beta'
pod 'APDAdColonyAdapter', ver
pod 'APDAppLovinAdapter', ver
# We don't use all of these networks, but they are part of BidMachine and we can't exclude only FB otherwise
pod 'APDBidMachineAdapter', ver, :subspecs => ['Tapjoy', 'AdColony', 'Amazon', 'Criteo', 'MyTarget', 'Smaato', 'Vungle', 'AppRoll']
# pod 'APDAppodealAdExchangeAdapter', ver
pod 'APDBidMachineAdapter', ver, :subspecs => ['Tapjoy', 'AdColony', 'Criteo', 'MyTarget', 'Smaato', 'Vungle', 'AppRoll']
pod 'APDIronSourceAdapter', ver
pod 'APDMintegralAdapter', ver
pod 'APDTapjoyAdapter', ver
pod 'APDUnityAdapter', ver
end

View File

@ -1,7 +1,7 @@
#!/bin/bash -e
. sdk.sh
CURL_VERSION=7.74.0
CURL_VERSION=7.75.0
if [ ! -d libcurl-src ]; then
wget https://curl.haxx.se/download/curl-$CURL_VERSION.tar.gz

View File

@ -1,13 +1,13 @@
#!/bin/bash -e
. sdk.sh
OPENAL_VERSION=1.21.0
OPENAL_VERSION=1.21.1
if [ ! -d openal-src ]; then
wget https://github.com/kcat/openal-soft/archive/openal-soft-$OPENAL_VERSION.tar.gz
tar -xzvf openal-soft-$OPENAL_VERSION.tar.gz
mv openal-soft-openal-soft-$OPENAL_VERSION openal-src
rm openal-soft-$OPENAL_VERSION.tar.gz
wget https://github.com/kcat/openal-soft/archive/$OPENAL_VERSION.tar.gz
tar -xzvf $OPENAL_VERSION.tar.gz
mv openal-soft-$OPENAL_VERSION openal-src
rm $OPENAL_VERSION.tar.gz
fi
cd openal-src

View File

@ -18,7 +18,7 @@
#define STATIC_SHAREDIR ""
#define VERSION_MAJOR 1
#define VERSION_MINOR 15
#define VERSION_PATCH 0
#define VERSION_PATCH 2
#define VERSION_STRING STR(VERSION_MAJOR) "." STR(VERSION_MINOR) "." STR(VERSION_PATCH)
#endif