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

Update french wording #8

Open
wants to merge 22 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
97cc926
Fixed problem with duplicated accounts getting created.
Mar 4, 2018
b90a9b5
Reworked the way separators are handled.
Mar 4, 2018
bdee6f3
Updated romanian translation.
Mar 4, 2018
d5e9041
Added ability to add multiple notifications beforehand for the same p…
Mar 9, 2018
19588e1
Added ability to notify about anniversaries, custom anniversaries as …
Mar 14, 2018
dd20e04
Reworked alarms so that the app no longer creates a separate alarm fo…
Apr 17, 2018
d3c17be
Fixed famous persons after switching to LocalDate from joda-time.
Apr 18, 2018
9d70f14
Switched package from com.djonique.birtydas to com.eblis.whenwasit.
Jul 28, 2018
706f893
When ads are disabled show a final rewards ad.
Jul 29, 2018
f22f55d
If rewards ad fails to load don't keep trying to load it.
Jul 29, 2018
c2b7e07
Fixed NPEs when switching from knowing year and not knowing year when…
Aug 1, 2018
50bca08
Fixed problem where you couldn't add multiple contacts, they would al…
Aug 11, 2018
b60e2d0
Attempt to fix crash on Settings loading for the first time.
Aug 31, 2018
0086be9
Added contact pictures in details page and birthday notification.
Sep 1, 2018
aba5343
Fixed crash on Android Pie
Sep 1, 2018
7747c61
Added banner file
Sep 1, 2018
6c5272e
Added profile pictures in month view and default list view.
Sep 14, 2018
ea3ad8b
Added ability to import contacts automatically every day (enabled by …
Sep 15, 2018
b2111b3
Guard against null pointer cursor when retrieving contacts.
Oct 13, 2018
29ca6c9
Attempt to guard against native errors when retrieving phone numbers.
Oct 13, 2018
cdba1a8
Update french wording
claireduf Nov 27, 2018
1a91f6c
Replace last occurences of name Birdays by WhenWasIt
claireduf Nov 29, 2018
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
4 changes: 2 additions & 2 deletions PRIVACY POLICY.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<html>
<body>
<h2>Privacy Policy</h2>
<p>Evgeny Timofeev built the Birdays app as an open source app. This SERVICE is provided by Evgeny Timofeev at no cost and is intended
for use as is.</p>
<p>Evgeny Timofeev originally built the Birdays app as an open source app. This SERVICE is provided by Evgeny Timofeev at no cost and is intended
for use as is. Cristian Libotean made changes to the application and also renamed it WhenWasIt.</p>
<p>This page is used to inform website visitors regarding my policies with the collection, use, and
disclosure of Personal Information if anyone decided to use my Service.</p>
<p>If you choose to use my Service, then you agree to the collection and use of information in
Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## Birdays
## WhenWasIt
*Simple birthday app with widget and famous people's birthdays.*

**[Install on Google Play](https://play.google.com/store/apps/details?id=com.djonique.birdays)**
**[Install on Google Play](https://play.google.com/store/apps/details?id=com.eblis.whenwasit)**
## Translators
Serhii Ponomarenko (Ukrainian) [mellangr](https://github.com/mellangr)

Expand Down Expand Up @@ -30,10 +30,13 @@ Omer Surer (Turkish)
Xiupeng (Chinese traditional)

Andra Fetele (Romanian) [sarmizegetusaa](https://github.com/sarmizegetusaa)

Claire Dufetrelle (French) [claireduf](https://github.com/claireduf)
## License

```
Copyright 2017 Evgeny Timofeev
Copyright 2018 Cristian Libotean

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
46 changes: 29 additions & 17 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,33 +23,48 @@ def keystoreProperties = new Properties()
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))

android {
signingConfigs {
signing {
keyAlias keystoreProperties['KeyAlias']
keyPassword keystoreProperties['KeyPassword']
storeFile file(keystoreProperties['KeyLocation'])
storePassword keystoreProperties['KeyPassword']
}
}
compileSdkVersion 27
buildToolsVersion '27.0.2'

buildToolsVersion '27.0.3'
defaultConfig {
applicationId "com.djonique.birdays"
applicationId "com.eblis.whenwasit"
minSdkVersion 16
targetSdkVersion 27
versionCode 18
versionName "1.5.1"
versionCode 30
versionName "1.0.${versionCode}"
resConfigs "auto"
vectorDrawables.useSupportLibrary = true
resValue "string", "version_name", versionName
manifestPlaceholders = [fabric_api_key: keystoreProperties['FabricApiKey']]
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
lintOptions {
abortOnError false
}

buildTypes {
debug {
minifyEnabled false
resValue "string", "banner_ad_id", keystoreProperties['BannerAdIdDebug']
buildConfigField "String", "ADMOB_ID", keystoreProperties['AdMobId']
buildConfigField "String", "REWARDS_AD_ID", keystoreProperties['RewardsAdIdDebug']
buildConfigField "String", "INTERSTITIAL_AD_ID", keystoreProperties['InterstitialAdIdDebug']
}
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
resValue "string", "banner_ad_id", keystoreProperties['BannerAdIdRelease']
buildConfigField "String", "ADMOB_ID", keystoreProperties['AdMobId']
buildConfigField "String", "REWARDS_AD_ID", keystoreProperties['RewardsAdIdRelease']
buildConfigField "String", "INTERSTITIAL_AD_ID", keystoreProperties['InterstitialAdIdRelease']
signingConfig signingConfigs.signing
}
}
}
Expand All @@ -58,41 +73,38 @@ repositories {
maven { url 'https://maven.fabric.io/public' }
}

def androidSupportVersion = '27.0.2'
def firebaseVersion = '11.6.2'
def androidSupportVersion = '27.1.1'
def firebaseVersion = '12.0.1'
def butterKnifeVersion = '8.8.1'

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')

// Android support library
compile "com.android.support:appcompat-v7:${androidSupportVersion}"
compile "com.android.support:design:${androidSupportVersion}"
compile "com.android.support:recyclerview-v7:${androidSupportVersion}"
compile "com.android.support:cardview-v7:${androidSupportVersion}"
compile "com.android.support:support-v4:${androidSupportVersion}"
compile "com.android.support:support-v13:${androidSupportVersion}"
compile "com.android.support:support-vector-drawable:${androidSupportVersion}"

// Firebase
compile "com.google.firebase:firebase-core:${firebaseVersion}"
compile "com.google.firebase:firebase-ads:${firebaseVersion}"
compile "com.google.firebase:firebase-perf:${firebaseVersion}"

//ads
compile "com.google.android.gms:play-services-ads:${firebaseVersion}"
// ButterKnife
compile "com.jakewharton:butterknife:${butterKnifeVersion}"
annotationProcessor "com.jakewharton:butterknife-compiler:${butterKnifeVersion}"

// Material date and time picker
compile 'com.wdullaer:materialdatetimepicker:3.4.1'

// Rate this app
compile 'io.github.kobakei:ratethisapp:1.2.0'

//implementation 'net.danlew:android.joda:2.9.9.3'
compile 'joda-time:joda-time:2.9.9'
// Crashlytics
compile('com.crashlytics.sdk.android:crashlytics:2.6.8@aar') {
compile('com.crashlytics.sdk.android:crashlytics:2.9.1@aar') {
transitive = true
}

// JUnit
testCompile 'junit:junit:4.12'
}
Expand Down
4 changes: 4 additions & 0 deletions app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,7 @@
-keepattributes SourceFile,LineNumberTable
-keep class com.crashlytics.** { *; }
-dontwarn com.crashlytics.**
-dontwarn com.google.android.gms.**
-dontwarn com.google.ads.**
-dontwarn org.joda.time.**
-keep public class * extends android.support.*.preference.Preference
3 changes: 1 addition & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.djonique.birdays"
package="com.eblis.whenwasit"
android:installLocation="internalOnly">

<uses-permission android:name="android.permission.INTERNET" />
Expand Down Expand Up @@ -46,7 +46,6 @@
android:name="com.google.firebase.messaging.default_notification_icon"
android:resource="@drawable/ic_notification" />

<!-- Fabric Crashlytics -->
<meta-data
android:name="io.fabric.ApiKey"
android:value="${fabric_api_key}" />
Expand Down
Loading