Skip to content

Commit 05f5fac

Browse files
committed
Version bump, header change
Apple frameworks built Android build added Added Linux build Apple example fix Added Windows build Bump Android examples
1 parent dfd8063 commit 05f5fac

File tree

78 files changed

+160
-139
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+160
-139
lines changed

Examples_Android/SuperpoweredCrossExample/app/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ android { // main settings for your application
77

88
defaultConfig {
99
applicationId "com.superpowered.crossexample"
10-
minSdkVersion 24
10+
minSdkVersion 26
1111
targetSdkVersion 34
1212
versionCode 1
1313
versionName "1.0"
@@ -18,7 +18,7 @@ android { // main settings for your application
1818

1919
externalNativeBuild {
2020
cmake {
21-
arguments '-DANDROID_PLATFORM=android-24', '-DANDROID_TOOLCHAIN=clang', '-DANDROID_ARM_NEON=TRUE', '-DANDROID_STL=c++_static', "-DPATH_TO_SUPERPOWERED:STRING=${superpowered_sdk_path}"
21+
arguments '-DANDROID_PLATFORM=android-26', '-DANDROID_TOOLCHAIN=clang', '-DANDROID_ARM_NEON=TRUE', '-DANDROID_STL=c++_static', "-DPATH_TO_SUPERPOWERED:STRING=${superpowered_sdk_path}"
2222
cFlags '-O3', '-fsigned-char' // full optimization, char data type is signed
2323
cppFlags '-fsigned-char', "-I${superpowered_sdk_path}"
2424
}
@@ -37,5 +37,5 @@ android { // main settings for your application
3737

3838
dependencies {
3939
implementation fileTree(dir: 'libs', include: ['*.jar'])
40-
implementation 'androidx.appcompat:appcompat:1.5.0'
40+
implementation 'androidx.appcompat:appcompat:1.6.1'
4141
}

Examples_Android/SuperpoweredCrossExample/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
google()
99
}
1010
dependencies {
11-
classpath 'com.android.tools.build:gradle:8.1.4'
11+
classpath 'com.android.tools.build:gradle:8.3.2'
1212
}
1313
}
1414

Examples_Android/SuperpoweredCrossExample/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip

Examples_Android/SuperpoweredEffect/app/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ android { // main settings for your application
77

88
defaultConfig {
99
applicationId "com.superpowered.effect"
10-
minSdkVersion 24
10+
minSdkVersion 26
1111
targetSdkVersion 34
1212
versionCode 1
1313
versionName "1.0"
@@ -18,7 +18,7 @@ android { // main settings for your application
1818

1919
externalNativeBuild {
2020
cmake {
21-
arguments '-DANDROID_PLATFORM=android-24', '-DANDROID_TOOLCHAIN=clang', '-DANDROID_ARM_NEON=TRUE', '-DANDROID_STL=c++_static', "-DPATH_TO_SUPERPOWERED:STRING=${superpowered_sdk_path}"
21+
arguments '-DANDROID_PLATFORM=android-26', '-DANDROID_TOOLCHAIN=clang', '-DANDROID_ARM_NEON=TRUE', '-DANDROID_STL=c++_static', "-DPATH_TO_SUPERPOWERED:STRING=${superpowered_sdk_path}"
2222
cFlags '-O3', '-fsigned-char' // full optimization, char data type is signed
2323
cppFlags '-fsigned-char', "-I${superpowered_sdk_path}"
2424
}
@@ -37,6 +37,6 @@ android { // main settings for your application
3737

3838
dependencies {
3939
implementation fileTree(dir: 'libs', include: ['*.jar'])
40-
implementation 'androidx.appcompat:appcompat:1.5.0'
40+
implementation 'androidx.appcompat:appcompat:1.6.1'
4141
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
4242
}

Examples_Android/SuperpoweredEffect/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
jcenter()
88
}
99
dependencies {
10-
classpath 'com.android.tools.build:gradle:8.1.4'
10+
classpath 'com.android.tools.build:gradle:8.3.2'
1111

1212

1313
// NOTE: Do not place your application dependencies here; they belong

Examples_Android/SuperpoweredEffect/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip

Examples_Android/SuperpoweredFrequencyDomain/app/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ android { // main settings for your application
77

88
defaultConfig {
99
applicationId "com.superpowered.frequencydomain"
10-
minSdkVersion 24
10+
minSdkVersion 26
1111
targetSdkVersion 34
1212
versionCode 1
1313
versionName "1.0"
@@ -18,7 +18,7 @@ android { // main settings for your application
1818

1919
externalNativeBuild {
2020
cmake {
21-
arguments '-DANDROID_PLATFORM=android-24', '-DANDROID_TOOLCHAIN=clang', '-DANDROID_ARM_NEON=TRUE', '-DANDROID_STL=c++_static', "-DPATH_TO_SUPERPOWERED:STRING=${superpowered_sdk_path}"
21+
arguments '-DANDROID_PLATFORM=android-26', '-DANDROID_TOOLCHAIN=clang', '-DANDROID_ARM_NEON=TRUE', '-DANDROID_STL=c++_static', "-DPATH_TO_SUPERPOWERED:STRING=${superpowered_sdk_path}"
2222
cFlags '-O3', '-fsigned-char' // full optimization, char data type is signed
2323
cppFlags '-fsigned-char', "-I${superpowered_sdk_path}"
2424
}
@@ -36,5 +36,5 @@ android { // main settings for your application
3636

3737
dependencies {
3838
implementation fileTree(dir: 'libs', include: ['*.jar'])
39-
implementation 'androidx.appcompat:appcompat:1.5.0'
39+
implementation 'androidx.appcompat:appcompat:1.6.1'
4040
}

Examples_Android/SuperpoweredFrequencyDomain/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
google()
99
}
1010
dependencies {
11-
classpath 'com.android.tools.build:gradle:7.2.2'
11+
classpath 'com.android.tools.build:gradle:7.4.2'
1212
}
1313
}
1414

Examples_Android/SuperpoweredFrequencyDomain/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip

Examples_Android/SuperpoweredPlayer/app/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ android { // main settings for your application
77

88
defaultConfig {
99
applicationId "com.superpowered.playerexample"
10-
minSdkVersion 24
10+
minSdkVersion 26
1111
targetSdkVersion 34
1212
versionCode 1
1313
versionName "1.0"
@@ -18,7 +18,7 @@ android { // main settings for your application
1818

1919
externalNativeBuild {
2020
cmake {
21-
arguments '-DANDROID_PLATFORM=android-24', '-DANDROID_TOOLCHAIN=clang', '-DANDROID_ARM_NEON=TRUE', '-DANDROID_STL=c++_static', "-DPATH_TO_SUPERPOWERED:STRING=${superpowered_sdk_path}"
21+
arguments '-DANDROID_PLATFORM=android-26', '-DANDROID_TOOLCHAIN=clang', '-DANDROID_ARM_NEON=TRUE', '-DANDROID_STL=c++_static', "-DPATH_TO_SUPERPOWERED:STRING=${superpowered_sdk_path}"
2222
cFlags '-O3', '-fsigned-char' // full optimization, char data type is signed
2323
cppFlags '-fsigned-char', "-I${superpowered_sdk_path}"
2424
}
@@ -37,6 +37,6 @@ android { // main settings for your application
3737

3838
dependencies {
3939
implementation fileTree(include: ['*.jar'], dir: 'libs')
40-
implementation 'androidx.appcompat:appcompat:1.5.0'
40+
implementation 'androidx.appcompat:appcompat:1.6.1'
4141
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
4242
}

Examples_Android/SuperpoweredPlayer/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
jcenter()
88
}
99
dependencies {
10-
classpath 'com.android.tools.build:gradle:8.1.4'
10+
classpath 'com.android.tools.build:gradle:8.3.2'
1111

1212

1313
// NOTE: Do not place your application dependencies here; they belong

Examples_Android/SuperpoweredPlayer/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip

Examples_Android/SuperpoweredRecorder/app/build.gradle

+4-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ android { // main settings for your application
77

88
defaultConfig {
99
applicationId "com.superpowered.recorder"
10-
minSdkVersion 24
10+
minSdkVersion 26
1111
targetSdkVersion 34
1212
versionCode 1
1313
versionName "1.0"
@@ -18,7 +18,7 @@ android { // main settings for your application
1818

1919
externalNativeBuild {
2020
cmake {
21-
arguments '-DANDROID_PLATFORM=android-24', '-DANDROID_TOOLCHAIN=clang', '-DANDROID_ARM_NEON=TRUE', '-DANDROID_STL=c++_static', "-DPATH_TO_SUPERPOWERED:STRING=${superpowered_sdk_path}"
21+
arguments '-DANDROID_PLATFORM=android-26', '-DANDROID_TOOLCHAIN=clang', '-DANDROID_ARM_NEON=TRUE', '-DANDROID_STL=c++_static', "-DPATH_TO_SUPERPOWERED:STRING=${superpowered_sdk_path}"
2222
cFlags '-O3', '-fsigned-char' // full optimization, char data type is signed
2323
cppFlags '-fsigned-char', "-I${superpowered_sdk_path}"
2424
}
@@ -32,10 +32,11 @@ android { // main settings for your application
3232
}
3333

3434
ndkVersion '25.1.8937393'
35+
namespace 'com.superpowered.recorder'
3536
}
3637

3738
dependencies {
3839
implementation fileTree(dir: 'libs', include: ['*.jar'])
39-
implementation 'androidx.appcompat:appcompat:1.5.0'
40+
implementation 'androidx.appcompat:appcompat:1.6.1'
4041
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
4142
}

Examples_Android/SuperpoweredRecorder/app/src/main/AndroidManifest.xml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="com.superpowered.recorder">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
43

54
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
65
<uses-permission android:name="android.permission.RECORD_AUDIO" />

Examples_Android/SuperpoweredRecorder/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
jcenter()
88
}
99
dependencies {
10-
classpath 'com.android.tools.build:gradle:7.4.2'
10+
classpath 'com.android.tools.build:gradle:8.3.2'
1111

1212

1313
// NOTE: Do not place your application dependencies here; they belong

Examples_Android/SuperpoweredRecorder/gradle.properties

+3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@
99

1010
# Specifies the JVM arguments used for the daemon process.
1111
# The setting is particularly useful for tweaking memory settings.
12+
android.defaults.buildfeatures.buildconfig=true
1213
android.enableJetifier=true
14+
android.nonFinalResIds=false
15+
android.nonTransitiveRClass=false
1316
android.useAndroidX=true
1417
org.gradle.jvmargs=-Xmx1536m
1518

Examples_Android/SuperpoweredRecorder/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip

Examples_Android/SuperpoweredUSBExample/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
google()
77
}
88
dependencies {
9-
classpath 'com.android.tools.build:gradle:7.4.2'
9+
classpath 'com.android.tools.build:gradle:8.3.2'
1010
}
1111
}
1212

Examples_Android/SuperpoweredUSBExample/complexusb/build.gradle

+4-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ android { // main settings for your application
77

88
defaultConfig {
99
applicationId "com.superpowered.complexusb"
10-
minSdkVersion 24
10+
minSdkVersion 26
1111
targetSdkVersion 34
1212
versionCode 1
1313
versionName "1.0"
@@ -18,7 +18,7 @@ android { // main settings for your application
1818

1919
externalNativeBuild {
2020
cmake {
21-
arguments '-DANDROID_PLATFORM=android-24', '-DANDROID_TOOLCHAIN=clang', '-DANDROID_ARM_NEON=TRUE', '-DANDROID_STL=c++_static', "-DPATH_TO_SUPERPOWERED:STRING=${superpowered_sdk_path}"
21+
arguments '-DANDROID_PLATFORM=android-26', '-DANDROID_TOOLCHAIN=clang', '-DANDROID_ARM_NEON=TRUE', '-DANDROID_STL=c++_static', "-DPATH_TO_SUPERPOWERED:STRING=${superpowered_sdk_path}"
2222
cFlags '-O3', '-fsigned-char' // full optimization, char data type is signed
2323
cppFlags '-fsigned-char', "-I${superpowered_sdk_path}"
2424
}
@@ -32,9 +32,10 @@ android { // main settings for your application
3232
}
3333

3434
ndkVersion '25.1.8937393'
35+
namespace 'com.superpowered.complexusb'
3536
}
3637

3738
dependencies {
3839
implementation fileTree(dir: 'libs', include: ['*.jar'])
39-
implementation 'androidx.appcompat:appcompat:1.5.0'
40+
implementation 'androidx.appcompat:appcompat:1.6.1'
4041
}

Examples_Android/SuperpoweredUSBExample/complexusb/src/main/AndroidManifest.xml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="com.superpowered.complexusb">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
43

54
<uses-feature android:name="android.hardware.usb.host" />
65

Examples_Android/SuperpoweredUSBExample/gradle.properties

+3
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,8 @@
1616
# This option should only be used with decoupled projects. More details, visit
1717
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
1818
# org.gradle.parallel=true
19+
android.defaults.buildfeatures.buildconfig=true
1920
android.enableJetifier=true
21+
android.nonFinalResIds=false
22+
android.nonTransitiveRClass=false
2023
android.useAndroidX=true

Examples_Android/SuperpoweredUSBExample/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip

Examples_Android/SuperpoweredUSBExample/simpleusb/build.gradle

+6-5
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ apply plugin: 'com.android.application'
33
def superpowered_sdk_path = new File(projectDir, '../../../Superpowered')
44

55
android { // main settings for your application
6-
compileSdkVersion = 33
6+
compileSdkVersion = 34
77

88
defaultConfig {
99
applicationId "com.superpowered.simpleusb"
10-
minSdkVersion 24
11-
targetSdkVersion 33
10+
minSdkVersion 26
11+
targetSdkVersion 34
1212
versionCode 1
1313
versionName "1.0"
1414

@@ -18,7 +18,7 @@ android { // main settings for your application
1818

1919
externalNativeBuild {
2020
cmake {
21-
arguments '-DANDROID_PLATFORM=android-24', '-DANDROID_TOOLCHAIN=clang', '-DANDROID_ARM_NEON=TRUE', '-DANDROID_STL=c++_static', "-DPATH_TO_SUPERPOWERED:STRING=${superpowered_sdk_path}"
21+
arguments '-DANDROID_PLATFORM=android-26', '-DANDROID_TOOLCHAIN=clang', '-DANDROID_ARM_NEON=TRUE', '-DANDROID_STL=c++_static', "-DPATH_TO_SUPERPOWERED:STRING=${superpowered_sdk_path}"
2222
cFlags '-O3', '-fsigned-char' // full optimization, char data type is signed
2323
cppFlags '-fsigned-char', "-I${superpowered_sdk_path}"
2424
}
@@ -32,11 +32,12 @@ android { // main settings for your application
3232
}
3333

3434
ndkVersion '25.1.8937393'
35+
namespace 'com.superpowered.simpleusb'
3536
}
3637

3738
dependencies {
3839
implementation fileTree(dir: 'libs', include: ['*.jar'])
39-
implementation 'androidx.appcompat:appcompat:1.5.0'
40+
implementation 'androidx.appcompat:appcompat:1.6.1'
4041
}
4142

4243

Examples_Android/SuperpoweredUSBExample/simpleusb/src/main/AndroidManifest.xml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="com.superpowered.simpleusb">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
43

54
<uses-feature android:name="android.hardware.usb.host" />
65

Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
gcc -o offline1 ./src/offline1.cpp -lpthread -lstdc++ -I../Superpowered ../Superpowered/libSuperpoweredLinuxX86.a -lm
2-
gcc -o offline2 ./src/offline2.cpp -lpthread -lstdc++ -I../Superpowered ../Superpowered/libSuperpoweredLinuxX86.a -lm
3-
gcc -o offline3 ./src/offline3.cpp -lpthread -lstdc++ -I../Superpowered ../Superpowered/libSuperpoweredLinuxX86.a -lm
4-
gcc -o hls ./src/hls.cpp -lpthread -lstdc++ -lasound -I../Superpowered ../Superpowered/libSuperpoweredLinuxX86.a -lm
1+
gcc -o offline1 ./src/offline1.cpp -lpthread -lstdc++ -I../Superpowered ../Superpowered/libSuperpoweredLinuxX86_64.a -lm
2+
gcc -o offline2 ./src/offline2.cpp -lpthread -lstdc++ -I../Superpowered ../Superpowered/libSuperpoweredLinuxX86_64.a -lm
3+
gcc -o offline3 ./src/offline3.cpp -lpthread -lstdc++ -I../Superpowered ../Superpowered/libSuperpoweredLinuxX86_64.a -lm
4+
gcc -o hls ./src/hls.cpp -lpthread -lstdc++ -lasound -I../Superpowered ../Superpowered/libSuperpoweredLinuxX86_64.a -lm
55

Examples_Linux/src/hls.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ typedef struct ALSAContext {
185185
return false;
186186
}
187187

188-
printf("buffer size: %i, period size: %i, sample rate: %i\n", bufferSize, this->periodSize, this->samplerate);
188+
printf("buffer size: %li, period size: %i, sample rate: %i\n", bufferSize, this->periodSize, this->samplerate);
189189
return true;
190190
}
191191

Examples_iOS/SuperpoweredCrossExample/SuperpoweredCrossExample.xcodeproj/project.pbxproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
archiveVersion = 1;
44
classes = {
55
};
6-
objectVersion = 52;
6+
objectVersion = 54;
77
objects = {
88

99
/* Begin PBXBuildFile section */

Examples_iOS/SuperpoweredHLSExample/SuperpoweredHLSExample/ViewController.mm

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
// some HLS stream url-title pairs
88
static const char *urls[8] = {
9-
"https://devimages.apple.com.edgekey.net/streaming/examples/bipbop_16x9/bipbop_16x9_variant.m3u8", "Apple Advanced Example Stream",
9+
"http://devimages.apple.com/iphone/samples/bipbop/bipbopall.m3u8", "Apple Advanced Example Stream",
1010
"http://qthttp.apple.com.edgesuite.net/1010qwoeiuryfg/sl.m3u8", "Back to the Mac",
1111
"http://playertest.longtailvideo.com/adaptive/bbbfull/bbbfull.m3u8", "JW Player Test",
1212
"http://playertest.longtailvideo.com/adaptive/oceans_aes/oceans_aes.m3u8", "JW AES Encrypted",

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -257,4 +257,4 @@ Superpowered FFT benefits from ideas in Construction of a High-Performance FFT b
257257

258258
The Superpowered MP3 and AAC decoder benefits from optimizations by Ken Cooke.
259259

260-
Superpowered version 2.6.6
260+
Superpowered version 2.6.7

0 commit comments

Comments
 (0)