Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feed order and subscriptions groups #2309

Merged
merged 24 commits into from
Mar 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
0e2f062
Disable database destructive migration fallback
mauriciocolli Apr 28, 2019
e8ab5aa
Setup initial database for feed implementation
mauriciocolli Apr 28, 2019
20a4bb0
Implement new feed and subscriptions groups
mauriciocolli Apr 28, 2019
f69b6c8
Fix alignment issues in group creator dialog
mauriciocolli Oct 7, 2019
a93e2cd
Quick fix for NPE when exiting the feed fragment
mauriciocolli Oct 9, 2019
8b87893
Update Groupie list library to v2.7.0
mauriciocolli Oct 10, 2019
f05b8c9
Expand import/export options by default when subscriptions list is empty
mauriciocolli Oct 10, 2019
2948e41
Change feed groups header title and icon from feed representing "All"
mauriciocolli Oct 11, 2019
b2f317a
Load only the selected group and customizable updated status timeout
mauriciocolli Dec 16, 2019
5ea323c
New option to use dedicated feed sources for services that support it
mauriciocolli Dec 16, 2019
3f32573
Replace hardcoded value that represents the group "All" with a constant
mauriciocolli Jan 28, 2020
2c783ff
Stick info header when selecting subscriptions in the feed group dialog
mauriciocolli Jan 30, 2020
18a4016
Add Groupie library to the credit list in the about page
mauriciocolli Feb 16, 2020
50714c3
Add ability to cancel a feed update through a notification action
mauriciocolli Feb 16, 2020
d1d5f68
Implement feed groups manual sorting
mauriciocolli Feb 26, 2020
34082c4
Fix behavior of the feed group dialog under some screen sizes/scales
mauriciocolli Feb 29, 2020
597859e
Disable buttons when processing actions in the feed dialogs
mauriciocolli Mar 5, 2020
98c65d8
Don't expose MutableLiveData in view models
mauriciocolli Mar 5, 2020
d8b9d35
Add a confirmation dialog when deleting a feed group
mauriciocolli Mar 5, 2020
f01e40e
Simplify screen handling in feed group dialog
mauriciocolli Mar 5, 2020
b62142d
Detect if the subscription list should be shown as a grid
mauriciocolli Mar 6, 2020
ac44ed0
Localize duration strings used in feed settings using plurals
mauriciocolli Mar 6, 2020
6a9a0f1
Add tests for migrations in the Room database
mauriciocolli Mar 7, 2020
97f5490
Add help dialog to feed screen
mauriciocolli Mar 14, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ android {

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true

javaCompileOptions {
annotationProcessorOptions {
arguments = ["room.schemaLocation": "$projectDir/schemas".toString()]
mauriciocolli marked this conversation as resolved.
Show resolved Hide resolved
}
}
}

buildTypes {
Expand Down Expand Up @@ -73,6 +79,15 @@ android {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}

// Required and used only by groupie
androidExtensions {
experimental = true
}
mauriciocolli marked this conversation as resolved.
Show resolved Hide resolved

sourceSets {
androidTest.assets.srcDirs += files("$projectDir/schemas".toString())
}
}

ext {
Expand All @@ -89,6 +104,8 @@ ext {
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"

androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation "android.arch.persistence.room:testing:1.1.1"
androidTestImplementation('androidx.test.espresso:espresso-core:3.1.0', {
exclude module: 'support-annotations'
})
Expand All @@ -105,6 +122,13 @@ dependencies {
implementation "androidx.cardview:cardview:${androidxLibVersion}"
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'

implementation 'com.xwray:groupie:2.7.0'
mauriciocolli marked this conversation as resolved.
Show resolved Hide resolved
implementation 'com.xwray:groupie-kotlin-android-extensions:2.7.0'

implementation 'androidx.lifecycle:lifecycle-livedata:2.0.0'
implementation 'androidx.lifecycle:lifecycle-viewmodel:2.0.0'
implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0'

// Originally in NewPipeExtractor
implementation 'com.grack:nanojson:1.1'
implementation 'org.jsoup:jsoup:1.9.2'
Expand Down
Loading