Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
QuasselDroid-ng
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
38
Issues
38
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
External Wiki
External Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Janne Koschinski
QuasselDroid-ng
Commits
b2a63683
Verified
Commit
b2a63683
authored
Nov 27, 2018
by
Janne Koschinski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated Libraries
parent
bb7bd729
Pipeline
#253
passed with stages
in 7 minutes and 28 seconds
Changes
13
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
29 additions
and
32 deletions
+29
-32
build.gradle.kts
app/build.gradle.kts
+8
-8
proguard-rules.pro
app/proguard-rules.pro
+3
-4
libraries.json
app/sampledata/libraries.json
+1
-1
AboutFragment.kt
...hku/quasseldroid/ui/clientsettings/about/AboutFragment.kt
+1
-1
build.gradle.kts
build.gradle.kts
+1
-1
build.gradle.kts
invokergenerator/build.gradle.kts
+1
-1
InvokerProcessor.java
...a/de/kuschku/libquassel/annotations/InvokerProcessor.java
+1
-1
build.gradle.kts
lib/build.gradle.kts
+3
-5
IrcChannel.kt
...ava/de/kuschku/libquassel/quassel/syncables/IrcChannel.kt
+1
-1
build.gradle.kts
lifecycle-ktx/build.gradle.kts
+1
-1
build.gradle.kts
malheur/build.gradle.kts
+2
-2
build.gradle.kts
persistence/build.gradle.kts
+3
-3
build.gradle.kts
viewmodel/build.gradle.kts
+3
-3
No files found.
app/build.gradle.kts
View file @
b2a63683
...
...
@@ -109,7 +109,7 @@ android {
}
dependencies
{
implementation
(
kotlin
(
"stdlib"
,
"1.
2.6
0"
))
implementation
(
kotlin
(
"stdlib"
,
"1.
3.1
0"
))
// App Compat
implementation
(
"com.google.android.material"
,
"material"
,
"1.0.0-rc01"
)
...
...
@@ -137,12 +137,12 @@ dependencies {
// Utility
implementation
(
"io.reactivex.rxjava2"
,
"rxandroid"
,
"2.0.2"
)
implementation
(
"io.reactivex.rxjava2"
,
"rxjava"
,
"2.1.9"
)
implementation
(
"org.threeten"
,
"threetenbp"
,
"1.3.
6
"
,
classifier
=
"no-tzdb"
)
implementation
(
"org.jetbrains"
,
"annotations"
,
"16.0.
1
"
)
implementation
(
"com.google.code.gson"
,
"gson"
,
"2.8.
2
"
)
implementation
(
"org.threeten"
,
"threetenbp"
,
"1.3.
8
"
,
classifier
=
"no-tzdb"
)
implementation
(
"org.jetbrains"
,
"annotations"
,
"16.0.
3
"
)
implementation
(
"com.google.code.gson"
,
"gson"
,
"2.8.
5
"
)
implementation
(
"commons-codec"
,
"commons-codec"
,
"1.11"
)
implementation
(
"com.squareup.retrofit2"
,
"retrofit"
,
"2.
4
.0"
)
implementation
(
"com.squareup.retrofit2"
,
"converter-gson"
,
"2.
4
.0"
)
implementation
(
"com.squareup.retrofit2"
,
"retrofit"
,
"2.
5
.0"
)
implementation
(
"com.squareup.retrofit2"
,
"converter-gson"
,
"2.
5
.0"
)
withVersion
(
"9.0.0-rc1"
)
{
implementation
(
"com.jakewharton"
,
"butterknife"
,
version
)
kapt
(
"com.jakewharton"
,
"butterknife-compiler"
,
version
)
...
...
@@ -156,7 +156,7 @@ dependencies {
}
// UI
implementation
(
"me.zhanghai.android.materialprogressbar"
,
"library"
,
"1.
4.2
"
)
implementation
(
"me.zhanghai.android.materialprogressbar"
,
"library"
,
"1.
6.0
"
)
withVersion
(
"0.9.6.0"
)
{
implementation
(
"com.afollestad.material-dialogs"
,
"core"
,
version
)
implementation
(
"com.afollestad.material-dialogs"
,
"commons"
,
version
)
...
...
@@ -169,7 +169,7 @@ dependencies {
// Quality Assurance
implementation
(
project
(
":malheur"
))
withVersion
(
"1.
5.4
"
)
{
withVersion
(
"1.
6.2
"
)
{
debugImplementation
(
"com.squareup.leakcanary"
,
"leakcanary-android"
,
version
)
releaseImplementation
(
"com.squareup.leakcanary"
,
"leakcanary-android-no-op"
,
version
)
testImplementation
(
"com.squareup.leakcanary"
,
"leakcanary-android-no-op"
,
version
)
...
...
app/proguard-rules.pro
View file @
b2a63683
...
...
@@ -43,10 +43,7 @@
# Dagger
-
dontwarn
com
.
google
.
errorprone
.
annotations
.
*
# Retrofit
# Platform calls Class.forName on types which do not exist on Android to determine platform.
-
dontnote
retrofit2
.
Platform
# Platform used when running on Java 8 VMs. Will not be used at runtime.
-
dontwarn
retrofit2
.
Platform
$
Java8
-
dontwarn
retrofit2
.
**
# Annotation used by Retrofit on Java 8 VMs
-
dontwarn
javax
.
annotation
.
Nullable
-
dontwarn
javax
.
annotation
.
ParametersAreNonnullByDefault
...
...
@@ -58,3 +55,5 @@
# Okio
-
dontwarn
okio
.
**
-
dontwarn
org
.
conscrypt
.
**
# OkHttp3
-
dontwarn
okhttp3
.
**
app/sampledata/libraries.json
View file @
b2a63683
...
...
@@ -161,7 +161,7 @@
},
{
"name"
:
"Kotlin Standard Library"
,
"version"
:
"1.
2.6
0"
,
"version"
:
"1.
3.1
0"
,
"license"
:
{
"short_name"
:
"Apache-2.0"
,
"full_name"
:
"Apache License"
...
...
app/src/main/java/de/kuschku/quasseldroid/ui/clientsettings/about/AboutFragment.kt
View file @
b2a63683
...
...
@@ -196,7 +196,7 @@ class AboutFragment : DaggerFragment() {
),
Library
(
name
=
"Kotlin Standard Library"
,
version
=
"1.
2.6
0"
,
version
=
"1.
3.1
0"
,
license
=
apache2
,
url
=
"https://kotlinlang.org/"
),
...
...
build.gradle.kts
View file @
b2a63683
...
...
@@ -24,7 +24,7 @@ buildscript {
}
dependencies
{
classpath
(
"com.android.tools.build:gradle:3.2.1"
)
classpath
(
"org.jetbrains.kotlin:kotlin-gradle-plugin:1.
2.6
0"
)
classpath
(
"org.jetbrains.kotlin:kotlin-gradle-plugin:1.
3.1
0"
)
}
}
...
...
invokergenerator/build.gradle.kts
View file @
b2a63683
...
...
@@ -28,5 +28,5 @@ plugins {
dependencies
{
implementation
(
project
(
":invokerannotations"
))
implementation
(
"com.google.auto.service:auto-service:1.0-rc4"
)
implementation
(
"com.squareup:javapoet:1.1
0.0
"
)
implementation
(
"com.squareup:javapoet:1.1
1.1
"
)
}
invokergenerator/src/main/java/de/kuschku/libquassel/annotations/InvokerProcessor.java
View file @
b2a63683
...
...
@@ -109,7 +109,7 @@ public class InvokerProcessor extends AbstractProcessor {
ClassName
type
=
ClassName
.
get
(
packageName
,
invokerName
);
ClassName
wrongObjectTypeException
=
ClassName
.
get
(
"de.kuschku.libquassel.quassel.exceptions"
,
"WrongObjectTypeException"
);
ClassName
unknownMethodException
=
ClassName
.
get
(
"de.kuschku.libquassel.quassel.exceptions"
,
"UnknownMethodException"
);
ClassName
nonNullAnnotation
=
ClassName
.
get
(
"android
.support
.annotation"
,
"NonNull"
);
ClassName
nonNullAnnotation
=
ClassName
.
get
(
"android
x
.annotation"
,
"NonNull"
);
MethodSpec
methodSpecConstructor
=
MethodSpec
.
constructorBuilder
()
...
...
lib/build.gradle.kts
View file @
b2a63683
...
...
@@ -29,13 +29,11 @@ plugins {
}
dependencies
{
implementation
(
kotlin
(
"stdlib"
,
"1.
2.6
0"
))
implementation
(
kotlin
(
"stdlib"
,
"1.
3.1
0"
))
withVersion
(
"27.1.1"
)
{
implementation
(
"com.android.support"
,
"support-annotations"
,
version
)
}
implementation
(
"androidx.annotation"
,
"annotation"
,
"1.0.0"
)
implementation
(
"org.threeten"
,
"threetenbp"
,
"1.3.
6
"
)
implementation
(
"org.threeten"
,
"threetenbp"
,
"1.3.
8
"
)
implementation
(
"io.reactivex.rxjava2"
,
"rxjava"
,
"2.1.9"
)
implementation
(
project
(
":invokerannotations"
))
...
...
lib/src/main/java/de/kuschku/libquassel/quassel/syncables/IrcChannel.kt
View file @
b2a63683
...
...
@@ -401,7 +401,7 @@ class IrcChannel(
private
val
live_userModes
=
BehaviorSubject
.
createDefault
(
mutableMapOf
<
IrcUser
,
String
>())
private
var
_userModes
:
MutableMap
<
IrcUser
,
String
>
get
()
=
live_userModes
.
value
get
()
=
live_userModes
.
value
!!
set
(
value
)
{
updateUsers
()
}
...
...
lifecycle-ktx/build.gradle.kts
View file @
b2a63683
...
...
@@ -27,7 +27,7 @@ plugins {
}
dependencies
{
implementation
(
kotlin
(
"stdlib"
,
"1.
2.6
0"
))
implementation
(
kotlin
(
"stdlib"
,
"1.
3.1
0"
))
implementation
(
"androidx.annotation"
,
"annotation"
,
"1.0.0"
)
...
...
malheur/build.gradle.kts
View file @
b2a63683
...
...
@@ -44,7 +44,7 @@ android {
}
dependencies
{
implementation
(
kotlin
(
"stdlib"
,
"1.
2.6
0"
))
implementation
(
kotlin
(
"stdlib"
,
"1.
3.1
0"
))
implementation
(
"com.google.code.gson"
,
"gson"
,
"2.8.
2
"
)
implementation
(
"com.google.code.gson"
,
"gson"
,
"2.8.
5
"
)
}
persistence/build.gradle.kts
View file @
b2a63683
...
...
@@ -51,7 +51,7 @@ android {
}
dependencies
{
implementation
(
kotlin
(
"stdlib"
,
"1.
2.6
0"
))
implementation
(
kotlin
(
"stdlib"
,
"1.
3.1
0"
))
implementation
(
"androidx.appcompat"
,
"appcompat"
,
"1.0.0"
)
...
...
@@ -63,8 +63,8 @@ dependencies {
implementation
(
"androidx.paging"
,
"paging-runtime"
,
"2.0.0-rc01"
)
// Utility
implementation
(
"org.threeten"
,
"threetenbp"
,
"1.3.
6
"
,
classifier
=
"no-tzdb"
)
implementation
(
"org.jetbrains"
,
"annotations"
,
"16.0.
1
"
)
implementation
(
"org.threeten"
,
"threetenbp"
,
"1.3.
8
"
,
classifier
=
"no-tzdb"
)
implementation
(
"org.jetbrains"
,
"annotations"
,
"16.0.
3
"
)
// Quassel
implementation
(
project
(
":lib"
))
{
...
...
viewmodel/build.gradle.kts
View file @
b2a63683
...
...
@@ -44,7 +44,7 @@ android {
}
dependencies
{
implementation
(
kotlin
(
"stdlib"
,
"1.
2.6
0"
))
implementation
(
kotlin
(
"stdlib"
,
"1.
3.1
0"
))
implementation
(
"androidx.appcompat"
,
"appcompat"
,
"1.0.0"
)
...
...
@@ -54,8 +54,8 @@ dependencies {
// Utility
implementation
(
"io.reactivex.rxjava2"
,
"rxandroid"
,
"2.0.2"
)
implementation
(
"io.reactivex.rxjava2"
,
"rxjava"
,
"2.1.9"
)
implementation
(
"org.threeten"
,
"threetenbp"
,
"1.3.
6
"
,
classifier
=
"no-tzdb"
)
implementation
(
"org.jetbrains"
,
"annotations"
,
"16.0.
1
"
)
implementation
(
"org.threeten"
,
"threetenbp"
,
"1.3.
8
"
,
classifier
=
"no-tzdb"
)
implementation
(
"org.jetbrains"
,
"annotations"
,
"16.0.
3
"
)
// Quassel
implementation
(
project
(
":persistence"
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment