-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
*Search Fixed (esteem search now implemented to replace AskSteem)
*General Changes and improvements
- Loading branch information
1 parent
27979bc
commit 99f0753
Showing
18 changed files
with
334 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
<AppUpdater> | ||
<update> | ||
<latestVersion>2.4</latestVersion> | ||
<latestVersionCode>16</latestVersionCode> | ||
<latestVersion>2.6</latestVersion> | ||
<latestVersionCode>18</latestVersionCode> | ||
<url>https://github.com/powerpoint45/dtube-mobile-unofficial/releases</url> | ||
<releaseNotes> | ||
*Ability to upload videos (Early Development) | ||
*Added Help Button to Login | ||
*Search Fixed (esteem search now implemented to replace AskSteem) | ||
*General Changes and improvements | ||
</releaseNotes> | ||
</update> | ||
</AppUpdater> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":17,"versionName":"2.5","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release"},"path":"app-release.apk","properties":{}}] | ||
[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":18,"versionName":"2.6","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release"},"path":"app-release.apk","properties":{}}] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
app/src/main/java/com/powerpoint45/dtube/ProgressBarAnimation.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
package com.powerpoint45.dtube; | ||
|
||
import android.view.View; | ||
import android.view.animation.Animation; | ||
import android.view.animation.Transformation; | ||
import android.widget.ProgressBar; | ||
|
||
public class ProgressBarAnimation extends Animation { | ||
private ProgressBar progressBar; | ||
private float from; | ||
private float to; | ||
|
||
public ProgressBarAnimation(ProgressBar progressBar, float from, float to) { | ||
super(); | ||
this.progressBar = progressBar; | ||
this.from = from; | ||
this.to = to; | ||
} | ||
|
||
@Override | ||
protected void applyTransformation(float interpolatedTime, Transformation t) { | ||
super.applyTransformation(interpolatedTime, t); | ||
float value = from + (to - from) * interpolatedTime; | ||
progressBar.setProgress((int) value); | ||
if ((int)value==100) | ||
progressBar.setVisibility(View.GONE); | ||
} | ||
|
||
} |
Oops, something went wrong.