Skip to content

Commit 3e6e980

Browse files
committed
Merge branch 'dev' into refactor
2 parents 1890fbb + 8b5aa5c commit 3e6e980

File tree

31 files changed

+41
-4
lines changed

31 files changed

+41
-4
lines changed

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ android {
2727
if (System.properties.containsKey('versionCodeOverride')) {
2828
versionCode System.getProperty('versionCodeOverride') as Integer
2929
} else {
30-
versionCode 1001
30+
versionCode 1002
3131
}
32-
versionName "0.27.4"
32+
versionName "0.27.5"
3333
if (System.properties.containsKey('versionNameSuffix')) {
3434
versionNameSuffix System.getProperty('versionNameSuffix')
3535
}

app/src/main/java/us/shandian/giga/ui/adapter/MissionAdapter.java

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -664,6 +664,13 @@ private boolean handlePopupItem(@NonNull ViewHolderItem h, @NonNull MenuItem opt
664664
return true;
665665
case R.id.md5:
666666
case R.id.sha1:
667+
final StoredFileHelper storage = h.item.mission.storage;
668+
if (!storage.existsAsFile()) {
669+
Toast.makeText(mContext, R.string.missing_file, Toast.LENGTH_SHORT).show();
670+
mDeleter.append(h.item.mission);
671+
applyChanges();
672+
return true;
673+
}
667674
final NotificationManager notificationManager
668675
= ContextCompat.getSystemService(mContext, NotificationManager.class);
669676
final NotificationCompat.Builder progressNotificationBuilder
@@ -678,7 +685,6 @@ private boolean handlePopupItem(@NonNull ViewHolderItem h, @NonNull MenuItem opt
678685

679686
notificationManager.notify(HASH_NOTIFICATION_ID, progressNotificationBuilder
680687
.build());
681-
final StoredFileHelper storage = h.item.mission.storage;
682688
compositeDisposable.add(
683689
Observable.fromCallable(() -> Utility.checksum(storage, id))
684690
.subscribeOn(Schedulers.computation())
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
تم إصلاح YouTube الذي لا يقوم بتشغيل أي دفق
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
YouTube-un heç bir yayım oynatmaması düzəldildi
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Opraveno nepřehrávání jakéhokoli streamu ve službě YouTube
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Behoben, dass YouTube keinen Stream abspielte
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Fixed YouTube not playing any stream.
2+
3+
This release only addresses the most pressing error that prevents YouTube video details from loading.
4+
We are aware there are other problems, and we will soon make a separate release to solve them.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Arreglo en YouTube no reproduciendo flujos
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
مشکل عدم نمایش پخش‌زنده برطرف شد
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Correction de YouTube qui ne lisait aucun média

0 commit comments

Comments
 (0)