Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0c25a00f authored by kshitizmohini's avatar kshitizmohini
Browse files

initial commit

parent 886a55d5
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
*.iml
.gradle/
.DS_Store
build/
captures/
out/
.idea/
*.apk
release.properties
gradle.properties
local.properties
/.nb-gradle/
 No newline at end of file
+26 −0
Original line number Diff line number Diff line
language: android
jdk: oraclejdk8
os: linux
sudo: required

android:
  components:
    - tools
    - tools
    - platfom-tools
    - build-tools-25.0.2
    - android-25
    - extra-android-m2repository
  licenses:
    - 'android-sdk-preview-license-.+'
    - 'android-sdk-license-.+'

# Accept ConstraintLayout license
before_install:
  - mkdir "$ANDROID_HOME/licenses" || true
  - echo -e "\n8933bad161af4178b1185d1a37fbf41ea5269c55" > "$ANDROID_HOME/licenses/android-sdk-license"
  - echo -e "\n84831b9409646a918e30573bab4c9c91346d8abd" > "$ANDROID_HOME/licenses/android-sdk-preview-license"
  - chmod +x gradlew
  - ./gradlew dependencies || true

script: ./gradlew build --stacktrace
 No newline at end of file
+60 −0
Original line number Diff line number Diff line
v4.4

- Added option to change app theme
- Added dark theme

v4.3

- Added option to change language
- Added transparent widget theme
- Added option to change widget theme
- Added translations: Czech, French
- Updated translations

v4.2.1

- Fix bug when updated forecast

v4.2

- Fixed small bugs

v4.1

- Support runtime permissions for Android 6.0
- Added translations: Basque, Belarusian, Japanese, Spanish
- Minor bugfixes

v4.0

- Improved main screen
- Added forecast
- Added graphs
- Fixed small bugs

v3.0

- Added widgets
- Produced by the redesign of the main screen
- Fix bug: in some cases the app crashed when it updates the weather
- Fix bug: the app is not closed by pressing the back button

v2.1

- Support for Android 3.0 (Honeycomb) has ended

v2.0

- Add notifications
- Update Settings screen
- Update translations

v1.3

- Change the settings screen
- Added search location screen
- Update translations

v1.2

- Add Polish and German translations
 No newline at end of file
+674 −0

File added.

Preview size limit exceeded, changes collapsed.

+63 −0
Original line number Diff line number Diff line
[![Build Status](https://travis-ci.org/qqq3/good-weather.svg?branch=master)](https://travis-ci.org/qqq3/good-weather)
[![Release](https://img.shields.io/github/release/qqq3/good-weather.svg)](https://github.com/qqq3/good-weather/releases)
[![License](https://img.shields.io/badge/license-GNU_GPLv3-orange.svg)](https://raw.githubusercontent.com/qqq3/good-weather/HEAD/LICENSE)

# Good Weather
Open source weather app for Android.

[<img src="https://f-droid.org/badge/get-it-on.png" alt="Get it on F-Droid" height="80">](https://f-droid.org/repository/browse/?fdid=org.asdtm.goodweather)
[<img src='https://play.google.com/intl/en_us/badges/images/generic/en_badge_web_generic.png' alt='Get it on Google Play' width='210' heigh='80'>](https://play.google.com/store/apps/details?id=org.asdtm.goodweather)

## Features
* Different languages: Basque, Belarusian, Czech, English, French, German, Japanese, Spanish, Polish, Russian
* Current weather
* 7 day forecast
* Many locations
* Notifications
* Support different measuring units
* Ad-free

## Screenshots
[<img src="http://i.imgur.com/FntbN8S.png" alt="Good Weather preview" width="200">](http://i.imgur.com/FntbN8S.png)
[<img src="http://i.imgur.com/WVFXEoo.png" alt="Good Weather preview" width="200">](http://i.imgur.com/WVFXEoo.png)
[<img src="http://i.imgur.com/pDjCCqo.png" alt="Good Weather preview" width="200">](http://i.imgur.com/pDjCCqo.png)
[<img src="http://i.imgur.com/lQKKBYY.png" alt="Good Weather preview" width="200">](http://i.imgur.com/lQKKBYY.png)

## To-Do
- [ ] Add weather map
- [ ] Improve accessibility for people with disabilities

# Translations
[https://hosted.weblate.org/projects/good-weather/strings/](https://hosted.weblate.org/projects/good-weather/strings/)

The strings are translated using [Weblate](https://weblate.org/en/). Follow
[these instructions](https://hosted.weblate.org/engage/good-weather/) if you would like to contribute 
[here](https://hosted.weblate.org/projects/good-weather/strings/).

## Donations
If you would like to help, you can donate Bitcoin on ```1FV8m1MKqZ9ZKB8YNwpsjsuubHTznJSiT8``` address.
Thanks!

## List of contributors
[berian](https://github.com/beriain), [mahula](https://github.com/mahula), [naofum](https://github.com/naofum), 
[thuryn](https://github.com/thuryn), [monolifed](https://github.com/monolifed), [marcoM32](https://github.com/marcoM32),
[Zagur](https://github.com/Zagur)

## License
```
Good Weather. App displays weather information.
Copyright (C) 2015-2017 Eugene Kislyakov <aiqcms@gmail.com>

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.
```
Loading