Skip to content

Commit 9dc666c

Browse files
committed
add some utils, add version 3.0.0*.
1 parent 1f7ccad commit 9dc666c

Some content is hidden

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

42 files changed

+321
-13
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.DS_Store

README.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,27 +6,28 @@ This repo is no longer used.
66

77
## Description ##
88

9-
~~maven repo for [android-gpuimage-plus](https://github.com/wysaid/android-gpuimage-plus)~~
9+
maven repo for [android-gpuimage-plus](https://github.com/wysaid/android-gpuimage-plus)
1010

11-
bintray: [https://bintray.com/wangyang/maven/gpuimage-plus](https://bintray.com/wangyang/maven/gpuimage-plus)
11+
~~bintray: [https://bintray.com/wangyang/maven/gpuimage-plus](https://bintray.com/wangyang/maven/gpuimage-plus)~~
1212

13-
jcenter: [http://jcenter.bintray.com/org/wysaid/gpuimage-plus/](http://jcenter.bintray.com/org/wysaid/gpuimage-plus/)
13+
~~jcenter: [http://jcenter.bintray.com/org/wysaid/gpuimage-plus/](http://jcenter.bintray.com/org/wysaid/gpuimage-plus/)~~
1414

1515
## Usage ##
1616

17-
```
17+
```gradle
18+
1819
repositories {
1920
maven {
2021
url 'http://maven.wysaid.org/'
2122
}
2223
}
2324
2425
dependencies {
25-
//All arch: armeabi, armeabi-v7a, arm64-v8a, mips, x86
26-
compile 'org.wysaid:gpuimage-plus:2.4.6'
26+
//All arch: armeabi-v7a, arm64-v8a, x86, x86_64 with video module (ffmpeg bundled)
27+
compile 'org.wysaid:gpuimage-plus:3.0.0'
2728
28-
//Only armeabi-v7a
29-
compile 'org.wysaid:gpuimage-plus:2.4.6-armv7a'
29+
//All arch: armeabi-v7a, arm64-v8a, x86, x86_64 without video module (no ffmpeg)
30+
compile 'org.wysaid:gpuimage-plus:3.0.0-min'
3031
}
3132
32-
```
33+
```

genSites.sh

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#!/usr/bin/env bash
2+
3+
set -e
4+
5+
cd "$(dirname "$0")"
6+
cd org/wysaid/gpuimage-plus
7+
8+
function genIndex() {
9+
pushd "$1"
10+
ls | xargs -I{} echo "<p><a href=\"{}\">{}</a></p>" >index.html
11+
popd
12+
}
13+
14+
declare -a FILES_ARR=($(find . -type d -maxdepth 1 -mindepth 1))
15+
16+
for file in "${FILES_ARR[@]}"; do
17+
if [[ -d "$file" ]]; then
18+
genIndex "$file"
19+
fi
20+
done
21+
22+
ls | xargs -I{} echo "<p><a href=\"{}\">{}</a></p>" >index.html
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<p><a href="gpuimage-plus-2.4.6-armv7a-javadoc.jar">gpuimage-plus-2.4.6-armv7a-javadoc.jar</a></p>
2+
<p><a href="gpuimage-plus-2.4.6-armv7a-sources.jar">gpuimage-plus-2.4.6-armv7a-sources.jar</a></p>
3+
<p><a href="gpuimage-plus-2.4.6-armv7a.aar">gpuimage-plus-2.4.6-armv7a.aar</a></p>
4+
<p><a href="gpuimage-plus-2.4.6-armv7a.pom">gpuimage-plus-2.4.6-armv7a.pom</a></p>
5+
<p><a href="index.html">index.html</a></p>
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<p><a href="gpuimage-plus-2.4.6-javadoc.jar">gpuimage-plus-2.4.6-javadoc.jar</a></p>
2+
<p><a href="gpuimage-plus-2.4.6-sources.jar">gpuimage-plus-2.4.6-sources.jar</a></p>
3+
<p><a href="gpuimage-plus-2.4.6.aar">gpuimage-plus-2.4.6.aar</a></p>
4+
<p><a href="gpuimage-plus-2.4.6.pom">gpuimage-plus-2.4.6.pom</a></p>
5+
<p><a href="index.html">index.html</a></p>
1.12 MB
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
761904cbde76a9cbc2e4664614d0bc3f
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
e454e6675dfbc638348f83bc9594380d8ec6dfcb
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
93bcfa4b164b1f13401967f411bc727d0af3acfb937c4f1515f3136000319a01
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
50b931f58068f850c51dee0c321d70bc96d0d639b1657081d67216e768aa1fed94e5fcb9e817a75b285442f861779f438942c326f75f0eae29d05b3137265030

0 commit comments

Comments
 (0)