Skip to content

Commit 9b1ef9b

Browse files
Merge branch 'develop'
2 parents 783565e + 3036fb6 commit 9b1ef9b

File tree

170 files changed

+3895
-1875
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

170 files changed

+3895
-1875
lines changed

.travis.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,20 @@ before_install:
1616
# Install required components
1717
- echo yes | android update sdk --filter platform-tools --no-ui --force > /dev/null
1818
- echo yes | android update sdk --all --filter build-tools-20.0.0 --no-ui --force > /dev/null
19-
- echo yes | android update sdk --filter android-20 --no-ui --force > /dev/null
20-
- echo yes | android update sdk --filter android-19 --no-ui --force > /dev/null
19+
- echo yes | android update sdk --filter android-21 --no-ui --force > /dev/null
2120
- echo yes | android update sdk --all --filter sys-img-armeabi-v7a-android-19 --no-ui --force > /dev/null
2221
- echo yes | android update sdk --filter extra-android-support --no-ui --force > /dev/null
2322
- echo yes | android update sdk --filter extra-android-m2repository --no-ui --force > /dev/null
2423

2524
install:
2625
- ./gradlew assembleRelease --info
2726

28-
before_script:
29-
- echo no | android create avd --force -n test -t $ANDROID_TARGET --abi $ANDROID_ABI
30-
- emulator -avd test -no-skin -no-audio -no-window &
31-
- adb wait-for-device
32-
- adb shell input keyevent 82 &
27+
# before_script:
28+
# - echo no | android create avd --force -n test -t $ANDROID_TARGET --abi $ANDROID_ABI
29+
# - emulator -avd test -no-skin -no-audio -no-window &
30+
# - adb wait-for-device
31+
# - adb shell input keyevent 82 &
3332

34-
script:
35-
- ./gradlew connectedAndroidTest --info
33+
# TODO: make tests work on Travis CI
34+
# script:
35+
# - ./gradlew connectedAndroidTest --info

README.md

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,25 @@
88

99
*Main* ***develop*** branch build status [on Travis CI](https://travis-ci.org/artem-zinnatullin/android-wail-app): [![Build Status](https://travis-ci.org/artem-zinnatullin/android-wail-app.svg?branch=develop)](https://travis-ci.org/artem-zinnatullin/android-wail-app)
1010

11-
***Also, here is tasks dashboard on Waffie.io*** -> [Tasks Dashboard](https://waffle.io/artem-zinnatullin/android-wail-app): [![Tasks ready to work on](https://badge.waffle.io/artem-zinnatullin/android-wail-app.png?label=ready&title=Ready)](https://waffle.io/artem-zinnatullin/android-wail-app)
12-
1311
**How it looks:**
1412

15-
<img src="screenshots/screenshot_1.png" alt="Main screen" height="500px"/>
16-
&nbsp;<img src="screenshots/screenshot_2.png" alt="Captured tracks list" height="500px"/>
13+
<img src="screenshots/dark_main.png" alt="Main screen" height="400px"/>
14+
&nbsp;<img src="screenshots/dark_tracks.png" alt="Captured tracks list" height="400px"/>
15+
&nbsp;<img src="screenshots/dark_settings.png" alt="Settings screen" height="400px"/>
1716

18-
<img src="screenshots/screenshot_3.png" alt="Settings screen" height="500px"/>
19-
&nbsp;<img src="screenshots/screenshot_4.png" alt="Sound notifications" height="500px"/>
17+
<img src="screenshots/light_main.png" alt="Main screen" height="400px"/>
18+
&nbsp;<img src="screenshots/light_tracks.png" alt="Captured tracks list" height="400px"/>
19+
&nbsp;<img src="screenshots/light_settings.png" alt="Settings screen" height="400px"/>
2020

2121
##Main features:
2222
* Scrobbling tracks to the last.fm (even if you are offline, WAIL will send them later)
2323
* Updating #nowplaying
2424
* Sound notifications
25+
* Status bar notifications
26+
* "Love" track
27+
* Option to ignore any player
28+
* Light and dark theme
29+
* English, German and Russian languages
2530

2631
-------------------
2732
###BEFORE CONTRIBUTING TO THE WAIL APP!
@@ -31,6 +36,6 @@ Please read small wiki about commits style guides, git work flow and sources sty
3136
-------------------
3237
Questions and answers:
3338

34-
* Why repo has small amount of commits? — Because original repo has my personal data, which I decided to remove before making WAIL Open Source. I decided to not use git filter-branch or bfg to delete these files, so I just created new repo with source code. Sorry guys, about ~250 commits losted...
39+
* Why repo has small amount of commits? — Because original repo has my personal data, which I decided to remove before making WAIL Open Source. I decided to not use git filter-branch or bfg to delete these files, so I just created new repo with source code. Sorry guys, about ~250 commits were lost...
3540
* Why you have last.fm secret api keys in Open Source project? — Just because it's very easy to decompile the apk and get them from it, so, please do not use them for evil purposes :)
3641
* Will WAIL be released to Google Play with your fixes? — YES, of course! This is the main purpose of making WAIL Open Source project, I have no time to work on it, so I hope you will help WAIL!

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ buildscript {
66
}
77

88
dependencies {
9-
classpath 'com.android.tools.build:gradle:0.12.0'
9+
classpath 'com.android.tools.build:gradle:1.0.0'
1010
}
1111
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Fri Jul 11 02:03:02 MSK 2014
1+
#Fri Dec 19 21:34:30 MSK 2014
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-1.12-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip

screenshots/dark_main.png

92.1 KB
Loading

screenshots/dark_settings.png

185 KB
Loading

screenshots/dark_tracks.png

138 KB
Loading

screenshots/light_main.png

81.9 KB
Loading

screenshots/light_settings.png

163 KB
Loading

screenshots/light_tracks.png

135 KB
Loading

0 commit comments

Comments
 (0)