This repository has been archived by the owner on Oct 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
390 additions
and
342 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,3 +1,9 @@ | ||
v1.1.5 | ||
修复下载对话框不关闭 | ||
修复下载通知栏在UI线程下造成视频卡顿 | ||
修复部分机型开启清爽模式后长按弹窗不响应 | ||
修复部分其它已知问题 | ||
|
||
v1.1.4 | ||
增加禁用双击点赞 | ||
调整清爽模式逻辑 | ||
|
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 @@ | ||
1.1.4-34 | ||
1.1.5-35 |
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
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
25 changes: 25 additions & 0 deletions
25
aweme/src/main/java/com/ss/android/ugc/aweme/familiar/feed/pinch/ui/PinchPlayPauseView.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,25 @@ | ||
package com.ss.android.ugc.aweme.familiar.feed.pinch.ui; | ||
|
||
import android.content.Context; | ||
import android.util.AttributeSet; | ||
|
||
import androidx.annotation.NonNull; | ||
import androidx.annotation.Nullable; | ||
import androidx.appcompat.widget.AppCompatImageView; | ||
|
||
public class PinchPlayPauseView extends AppCompatImageView { | ||
public PinchPlayPauseView(@NonNull Context context) { | ||
super(context); | ||
throw new RuntimeException("sub!"); | ||
} | ||
|
||
public PinchPlayPauseView(@NonNull Context context, @Nullable AttributeSet attrs) { | ||
super(context, attrs); | ||
throw new RuntimeException("sub!"); | ||
} | ||
|
||
public PinchPlayPauseView(@NonNull Context context, @Nullable AttributeSet attrs, int defStyleAttr) { | ||
super(context, attrs, defStyleAttr); | ||
throw new RuntimeException("sub!"); | ||
} | ||
} |
26 changes: 26 additions & 0 deletions
26
aweme/src/main/java/com/ss/android/ugc/aweme/familiar/feed/pinch/ui/PinchSpeedView.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,26 @@ | ||
package com.ss.android.ugc.aweme.familiar.feed.pinch.ui; | ||
|
||
import android.content.Context; | ||
import android.util.AttributeSet; | ||
|
||
import androidx.annotation.NonNull; | ||
import androidx.annotation.Nullable; | ||
import androidx.appcompat.widget.AppCompatImageView; | ||
|
||
public class PinchSpeedView extends AppCompatImageView { | ||
public PinchSpeedView(@NonNull Context context) { | ||
super(context); | ||
throw new RuntimeException("sub!"); | ||
} | ||
|
||
public PinchSpeedView(@NonNull Context context, @Nullable AttributeSet attrs) { | ||
super(context, attrs); | ||
throw new RuntimeException("sub!"); | ||
} | ||
|
||
public PinchSpeedView(@NonNull Context context, @Nullable AttributeSet attrs, int defStyleAttr) { | ||
super(context, attrs, defStyleAttr); | ||
throw new RuntimeException("sub!"); | ||
} | ||
} | ||
|
7 changes: 0 additions & 7 deletions
7
.../main/java/com/ss/android/ugc/aweme/familiar/feed/slides/detail/SlidesDetailActivity.java
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
...src/main/java/com/ss/android/ugc/aweme/familiar/feed/slides/ui/SlidesPhotosViewPager.java
This file was deleted.
Oops, something went wrong.
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
2 changes: 1 addition & 1 deletion
2
...component/fragment/ComponentFragment.java → ...component/fragment/ComponentFragment.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
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
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
Oops, something went wrong.