Skip to content

Commit

Permalink
Final update
Browse files Browse the repository at this point in the history
  • Loading branch information
talapadi committed Dec 7, 2018
1 parent 57981fe commit 37ad97b
Show file tree
Hide file tree
Showing 2,501 changed files with 84,945 additions and 7,882 deletions.
17 changes: 17 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
.DS_Store
.atom/
.idea
.vscode/
.packages
.pub/
build/
ios/.generated/
packages
.flutter-plugins
.history/
local.properties

pubspec.lock
pubspec.lock
scripts/asb/
.dart_tool/
201 changes: 0 additions & 201 deletions LICENSE

This file was deleted.

1 change: 1 addition & 0 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ android {
targetSdkVersion 27
versionCode 1
versionName "1.0"
multiDexEnabled true
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}

Expand Down
20 changes: 14 additions & 6 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE" />


<uses-feature android:name="android.hardware.camera2" />

Expand All @@ -32,16 +34,11 @@
android:name="io.flutter.app.FlutterApplication"
android:label="maui"
android:icon="@mipmap/ic_launcher">
<service android:name="org.chimple.flores.scheduler.P2PIntentService" />
<service
android:name="org.chimple.flores.scheduler.P2PHandShakingJobService"
android:exported="false"
android:permission="android.permission.BIND_JOB_SERVICE" />
<activity
android:name=".MainActivity"
android:launchMode="singleTop"
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|smallestScreenSize"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
<!-- This keeps the window background of the activity showing
Expand All @@ -63,5 +60,16 @@
<action android:name="android.intent.action.BOOT_COMPLETED"></action>
</intent-filter>
</receiver>

<receiver
android:name=".AutoLaunchReceiver"
android:enabled="true"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.ACTION_POWER_CONNECTED" />
<action android:name="android.intent.action.ACTION_POWER_DISCONNECTED" />
</intent-filter>
</receiver>
</application>
</manifest>
39 changes: 39 additions & 0 deletions android/app/src/main/kotlin/sutara/org/maui/AutoLaunchReceiver.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
package sutara.org.maui


import android.content.BroadcastReceiver
import android.content.Context
import android.content.Intent
import sutara.org.maui.MainActivity
import android.app.Activity
import android.os.Build
import android.os.Bundle

class AutoLaunchReceiver : BroadcastReceiver() {

override fun onReceive(context: Context, intent: Intent) {
val message = "Broadcast intent detected " + intent.action
println("AutoLaunchReceiver onReceive called: " + message);

if(MainActivity.isAppLaunched()) {
println("App is already launched ...");
} else {
if (Intent.ACTION_BOOT_COMPLETED.equals(intent.action) && !MainActivity.isAppLaunched()) {
println("Boot event received ... Launching Flores");
MainActivity.appLaunched();
val intent = Intent(context, MainActivity::class.java)
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP)
context.startActivity(intent)
} else if(!MainActivity.isAppLaunched() && Intent.ACTION_POWER_CONNECTED.equals(intent.action))
{
println("Power event received ... Launching Flores");
MainActivity.appLaunched();
val intent = Intent(context, MainActivity::class.java)
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP)
context.startActivity(intent)
}
}
}
}
32 changes: 30 additions & 2 deletions android/app/src/main/kotlin/sutara/org/maui/MainActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,21 @@ import io.flutter.plugins.GeneratedPluginRegistrant
import io.flutter.plugin.common.MethodChannel
import com.rivescript.Config
import com.rivescript.RiveScript
import org.chimple.flores.db.AppDatabase
import org.chimple.flores.multicast.MulticastManager
import org.chimple.flores.manager.BluetoothManager
import org.chimple.flores.application.P2PContext



class MainActivity(): FlutterActivity(),TextToSpeech.OnInitListener {
private val CHANNEL = "org.sutara.maui/rivescript"
private var tts: TextToSpeech? = null
private var tts: TextToSpeech? = null


override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
println("onCreate")
GeneratedPluginRegistrant.registerWith(this)
tts = TextToSpeech(this, this)
println("RiveScript")
Expand Down Expand Up @@ -59,13 +66,14 @@ class MainActivity(): FlutterActivity(),TextToSpeech.OnInitListener {
result.notImplemented()
}
}
P2PContext.getInstance().initialize(this);



}

override fun onInit(status: Int) {

println("onInit")
if (status == TextToSpeech.SUCCESS) {
// set US English as language for tts
val result = tts!!.setLanguage(Locale.US)
Expand All @@ -82,6 +90,7 @@ class MainActivity(): FlutterActivity(),TextToSpeech.OnInitListener {

override fun onResume() {
super.onResume()
println("onResume")
val intent = Intent()
intent.setClassName("org.chimple.bali", "org.chimple.bali.service.TollBroadcastReceiver")
intent.putExtra("onResume", "sutara.org.maui")
Expand All @@ -90,13 +99,19 @@ class MainActivity(): FlutterActivity(),TextToSpeech.OnInitListener {

override fun onPause() {
super.onPause()
println("onPause")
val intent = Intent()
intent.setClassName("org.chimple.bali", "org.chimple.bali.service.TollBroadcastReceiver")
intent.putExtra("onPause", "sutara.org.maui")
sendBroadcast(intent)
}

public override fun onDestroy() {
println("onDestroy")
P2PContext.getInstance().onCleanUp();
MulticastManager.getInstance(this).onCleanUp()
BluetoothManager.getInstance(this).onCleanUp()

// Shutdown TTS
if (tts != null) {
tts!!.stop()
Expand All @@ -105,4 +120,17 @@ class MainActivity(): FlutterActivity(),TextToSpeech.OnInitListener {
super.onDestroy()
}


companion object {

private var appLaunched: Boolean = false;

fun appLaunched() {
appLaunched = true;
}

fun isAppLaunched(): Boolean {
return appLaunched;
}
}
}
Binary file added assets/Wallet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/action/Cross.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/action/Help.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/action/Quack_button.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/action/drawing.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/action/post.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/chat_Bot_Icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/comment_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/database.db
Binary file not shown.
Binary file modified assets/database_swa.db
Binary file not shown.
Binary file removed assets/demo_video/abacus.mp4
Binary file not shown.
Binary file removed assets/demo_video/bingo.mp4
Binary file not shown.
Binary file removed assets/demo_video/calculate_numbers.mp4
Binary file not shown.
Binary file removed assets/demo_video/casino.mp4
Binary file not shown.
Binary file removed assets/demo_video/connect_the_dots.mp4
Binary file not shown.
Binary file removed assets/demo_video/dice.mp4
Binary file not shown.
Binary file removed assets/demo_video/drawing.mp4
Binary file not shown.
Binary file removed assets/demo_video/fill_in_the_blanks.mp4
Binary file not shown.
Binary file removed assets/demo_video/fill_number.mp4
Binary file not shown.
Binary file removed assets/demo_video/guess.mp4
Binary file not shown.
Binary file removed assets/demo_video/identify.mp4
Binary file not shown.
Binary file removed assets/demo_video/match_the_following.mp4
Binary file not shown.
Binary file removed assets/demo_video/memory.mp4
Binary file not shown.
Binary file removed assets/demo_video/order_it.mp4
Binary file not shown.
Binary file removed assets/demo_video/quiz.mp4
Binary file not shown.
Binary file removed assets/demo_video/reflex.mp4
Binary file not shown.
Binary file removed assets/demo_video/spin_wheel.mp4
Binary file not shown.
Binary file removed assets/demo_video/tables.mp4
Binary file not shown.
Binary file removed assets/demo_video/tap_home.mp4
Binary file not shown.
Binary file removed assets/demo_video/tap_wrong.mp4
Binary file not shown.
Binary file removed assets/demo_video/true_or_false.mp4
Binary file not shown.
Binary file removed assets/demo_video/tutorial.mp4
Binary file not shown.
Binary file removed assets/demo_video/video.mp4
Binary file not shown.
Binary file removed assets/demo_video/wordgrid.mp4
Binary file not shown.
Binary file removed assets/dict/2x/nose.png
Binary file not shown.
Binary file removed assets/dict/3x/nose.png
Binary file not shown.
Binary file removed assets/dict/4x/nose.png
Binary file not shown.
Binary file removed assets/dict/A.png
Binary file not shown.
Binary file removed assets/dict/B.png
Binary file not shown.
Binary file removed assets/dict/C.png
Binary file not shown.
Binary file removed assets/dict/D.png
Binary file not shown.
Binary file removed assets/dict/E.png
Binary file not shown.
Binary file removed assets/dict/F.png
Binary file not shown.
Binary file removed assets/dict/G.png
Binary file not shown.
Binary file removed assets/dict/H.png
Binary file not shown.
Binary file removed assets/dict/I.png
Binary file not shown.
Binary file removed assets/dict/J.png
Binary file not shown.
Binary file removed assets/dict/K.png
Binary file not shown.
Binary file removed assets/dict/L.png
Binary file not shown.
Binary file removed assets/dict/M.png
Binary file not shown.
Binary file removed assets/dict/N.png
Binary file not shown.
Binary file removed assets/dict/O.png
Diff not rendered.
Binary file removed assets/dict/P.png
Diff not rendered.
Binary file removed assets/dict/Q.png
Diff not rendered.
Binary file removed assets/dict/R.png
Diff not rendered.
Binary file removed assets/dict/S.png
Diff not rendered.
Binary file removed assets/dict/T.png
Diff not rendered.
Binary file removed assets/dict/U.png
Diff not rendered.
Binary file removed assets/dict/V.png
Diff not rendered.
Binary file removed assets/dict/W.png
Diff not rendered.
Binary file removed assets/dict/X.png
Diff not rendered.
Binary file removed assets/dict/Y.png
Diff not rendered.
Binary file removed assets/dict/Z.png
Diff not rendered.
Binary file removed assets/dict/a.ogg
Binary file not shown.
Binary file removed assets/dict/abiria.ogg
Binary file not shown.
Binary file removed assets/dict/abiria.png
Diff not rendered.
Binary file removed assets/dict/abudu.ogg
Binary file not shown.
Binary file removed assets/dict/abudu.png
Diff not rendered.
Binary file removed assets/dict/accident.png
Diff not rendered.
Binary file removed assets/dict/account.png
Diff not rendered.
Binary file removed assets/dict/achari.ogg
Binary file not shown.
Binary file removed assets/dict/achari.png
Diff not rendered.
Binary file removed assets/dict/add.png
Diff not rendered.
Binary file removed assets/dict/adhabu.ogg
Binary file not shown.
Binary file removed assets/dict/adhabu.png
Diff not rendered.
Binary file removed assets/dict/adhibu.ogg
Binary file not shown.
Binary file removed assets/dict/adhibu.png
Diff not rendered.
Binary file removed assets/dict/adui.ogg
Binary file not shown.
Binary file removed assets/dict/adui.png
Diff not rendered.
Binary file removed assets/dict/aeroplane.png
Diff not rendered.
Binary file removed assets/dict/afiki.ogg
Binary file not shown.
Binary file removed assets/dict/afiki.png
Diff not rendered.
Binary file removed assets/dict/afraid.png
Diff not rendered.
Binary file removed assets/dict/afternoon.png
Diff not rendered.
Binary file removed assets/dict/afya.ogg
Binary file not shown.
Binary file removed assets/dict/afya.png
Diff not rendered.
Binary file removed assets/dict/ahali.ogg
Binary file not shown.
Binary file removed assets/dict/ahali.png
Diff not rendered.
Binary file removed assets/dict/aim.png
Diff not rendered.
Binary file removed assets/dict/airplane.png
Diff not rendered.
Binary file removed assets/dict/ajabu.ogg
Binary file not shown.
Binary file removed assets/dict/ajabu.png
Diff not rendered.
Binary file removed assets/dict/ajali.ogg
Binary file not shown.
Binary file removed assets/dict/ajali.png
Diff not rendered.
Binary file removed assets/dict/ajira.ogg
Binary file not shown.
Binary file removed assets/dict/ajira.png
Diff not rendered.
Binary file removed assets/dict/akaunti.ogg
Binary file not shown.
Binary file removed assets/dict/akaunti.png
Diff not rendered.
Binary file removed assets/dict/akili.ogg
Binary file not shown.
Binary file removed assets/dict/akili.png
Diff not rendered.
Binary file removed assets/dict/alama.ogg
Binary file not shown.
Binary file removed assets/dict/alama.png
Diff not rendered.
Binary file removed assets/dict/albamu.ogg
Binary file not shown.
Binary file removed assets/dict/albamu.png
Diff not rendered.
Binary file removed assets/dict/album.png
Diff not rendered.
Binary file removed assets/dict/algae.png
Diff not rendered.
Binary file removed assets/dict/allow.png
Diff not rendered.
Binary file removed assets/dict/almasi.ogg
Binary file not shown.
Binary file removed assets/dict/almond.png
Diff not rendered.
Binary file removed assets/dict/ambassador.png
Diff not rendered.
Binary file removed assets/dict/amoeba.png
Diff not rendered.
Binary file removed assets/dict/anchor.png
Diff not rendered.
Binary file removed assets/dict/angel.png
Diff not rendered.
Binary file removed assets/dict/angle.png
Diff not rendered.
Binary file removed assets/dict/angry.png
Diff not rendered.
Binary file removed assets/dict/animals.png
Diff not rendered.
Binary file removed assets/dict/ant.png
Diff not rendered.
Binary file removed assets/dict/apparatus.png
Diff not rendered.
Binary file removed assets/dict/appease.png
Diff not rendered.
Binary file removed assets/dict/apple.png
Diff not rendered.
Binary file removed assets/dict/arc.png
Diff not rendered.
Binary file removed assets/dict/arrow.png
Diff not rendered.
Binary file removed assets/dict/askari.ogg
Binary file not shown.
Binary file removed assets/dict/astronomy.png
Diff not rendered.
Binary file removed assets/dict/asubuhi.ogg
Binary file not shown.
Binary file removed assets/dict/athletics.png
Diff not rendered.
Binary file removed assets/dict/aunt.png
Diff not rendered.
Binary file removed assets/dict/autumn.png
Diff not rendered.
Binary file removed assets/dict/axe.png
Diff not rendered.
Binary file removed assets/dict/b.ogg
Binary file not shown.
Binary file removed assets/dict/baba.ogg
Binary file not shown.
Binary file removed assets/dict/babu.ogg
Binary file not shown.
Binary file removed assets/dict/baby.png
Diff not rendered.
Binary file removed assets/dict/back.png
Diff not rendered.
Binary file removed assets/dict/bag.png
Diff not rendered.
Binary file removed assets/dict/bahari.ogg
Binary file not shown.
Binary file removed assets/dict/baharia.ogg
Binary file not shown.
Binary file removed assets/dict/baharia.png
Diff not rendered.
Binary file removed assets/dict/bahasha.ogg
Binary file not shown.
Binary file removed assets/dict/baiskeli.ogg
Binary file not shown.
Binary file removed assets/dict/bajeti.ogg
Binary file not shown.
Binary file removed assets/dict/bajeti.png
Diff not rendered.
Binary file removed assets/dict/bake.png
Diff not rendered.
Binary file removed assets/dict/bakuli.ogg
Binary file not shown.
Binary file removed assets/dict/balagha.ogg
Binary file not shown.
Binary file removed assets/dict/balagha.png
Diff not rendered.
Binary file removed assets/dict/balloon.png
Diff not rendered.
Binary file removed assets/dict/balozi.ogg
Binary file not shown.
Binary file removed assets/dict/balozi.png
Diff not rendered.
Binary file removed assets/dict/bambika.ogg
Binary file not shown.
Binary file removed assets/dict/bambika.png
Diff not rendered.
Binary file removed assets/dict/bamboo.png
Diff not rendered.
Binary file removed assets/dict/bana.ogg
Binary file not shown.
Binary file removed assets/dict/bana.png
Diff not rendered.
Binary file removed assets/dict/banana.png
Diff not rendered.
Binary file removed assets/dict/bandage.png
Diff not rendered.
Binary file removed assets/dict/bandari.ogg
Binary file not shown.
Binary file removed assets/dict/bandari.png
Diff not rendered.
Binary file removed assets/dict/bangili.ogg
Binary file not shown.
Binary file removed assets/dict/bank.png
Diff not rendered.
Binary file removed assets/dict/bao.ogg
Binary file not shown.
Binary file removed assets/dict/baraka.ogg
Binary file not shown.
Binary file removed assets/dict/baraka.png
Diff not rendered.
Binary file removed assets/dict/baridi.ogg
Binary file not shown.
Binary file removed assets/dict/bark.png
Diff not rendered.
Binary file removed assets/dict/barley.png
Diff not rendered.
Binary file removed assets/dict/barrel.png
Diff not rendered.
Binary file removed assets/dict/baseball.png
Diff not rendered.
Binary file removed assets/dict/basi.ogg
Binary file not shown.
Binary file removed assets/dict/bass.png
Diff not rendered.
Binary file removed assets/dict/bat.png
Diff not rendered.
Binary file removed assets/dict/bata.ogg
Binary file not shown.
Binary file removed assets/dict/bathtub.png
Diff not rendered.
Binary file removed assets/dict/beach.png
Diff not rendered.
Binary file removed assets/dict/bead.png
Diff not rendered.
Binary file removed assets/dict/bean.png
Diff not rendered.
Binary file removed assets/dict/beans.png
Diff not rendered.
Binary file removed assets/dict/beard.png
Diff not rendered.
Binary file removed assets/dict/bee.png
Diff not rendered.
Binary file removed assets/dict/bega.ogg
Binary file not shown.
Binary file removed assets/dict/behewa.ogg
Binary file not shown.
Binary file removed assets/dict/bell.png
Diff not rendered.
Binary file removed assets/dict/belt.png
Diff not rendered.
Binary file removed assets/dict/bendera.ogg
Binary file not shown.
Binary file removed assets/dict/benki.ogg
Binary file not shown.
Binary file removed assets/dict/bibi.ogg
Binary file not shown.
Binary file removed assets/dict/bicycle.png
Diff not rendered.
Binary file removed assets/dict/black.png
Diff not rendered.
Binary file removed assets/dict/blanket.png
Diff not rendered.
Binary file removed assets/dict/blanketi.ogg
Binary file not shown.
Binary file removed assets/dict/blessing.png
Diff not rendered.
Binary file removed assets/dict/blind.png
Diff not rendered.
Binary file removed assets/dict/blood.png
Diff not rendered.
Binary file removed assets/dict/blow.png
Diff not rendered.
Binary file removed assets/dict/blue.png
Diff not rendered.
Binary file removed assets/dict/bluu.ogg
Binary file not shown.
Binary file removed assets/dict/boat.png
Diff not rendered.
Binary file removed assets/dict/boil.png
Diff not rendered.
Binary file removed assets/dict/bolt.png
Diff not rendered.
Binary file removed assets/dict/bomba.ogg
Binary file not shown.
Binary file removed assets/dict/books.png
Diff not rendered.
Binary file removed assets/dict/bored.png
Diff not rendered.
Binary file removed assets/dict/bounce.png
Diff not rendered.
Binary file removed assets/dict/bow.png
Diff not rendered.
Binary file removed assets/dict/bowl.png
Diff not rendered.
Binary file removed assets/dict/box.png
Diff not rendered.
Binary file removed assets/dict/boxers.png
Diff not rendered.
Binary file removed assets/dict/boxing.png
Diff not rendered.
Binary file removed assets/dict/bracelet.png
Diff not rendered.
Binary file removed assets/dict/brain.png
Diff not rendered.
Binary file removed assets/dict/branch.png
Diff not rendered.
Binary file removed assets/dict/brashi.ogg
Binary file not shown.
Binary file removed assets/dict/bravery.png
Diff not rendered.
Binary file removed assets/dict/bread.png
Diff not rendered.
Binary file removed assets/dict/brick.png
Diff not rendered.
Binary file removed assets/dict/broom.png
Diff not rendered.
Binary file removed assets/dict/brother.png
Diff not rendered.
Binary file removed assets/dict/brown.png
Diff not rendered.
Binary file removed assets/dict/brush.png
Diff not rendered.
Binary file removed assets/dict/bucket.png
Diff not rendered.
Binary file removed assets/dict/budget.png
Diff not rendered.
Binary file removed assets/dict/buffalo.png
Diff not rendered.
Binary file removed assets/dict/buibui.ogg
Binary file not shown.
Binary file removed assets/dict/building.png
Diff not rendered.
Binary file removed assets/dict/bulb.png
Diff not rendered.
Binary file removed assets/dict/bulldozer.png
Diff not rendered.
Binary file removed assets/dict/bun.png
Diff not rendered.
Binary file removed assets/dict/bunch.png
Diff not rendered.
Binary file removed assets/dict/bus.png
Diff not rendered.
Binary file removed assets/dict/butter.png
Diff not rendered.
Binary file removed assets/dict/butterfly.png
Diff not rendered.
Binary file removed assets/dict/button.png
Diff not rendered.
Binary file removed assets/dict/butu.ogg
Binary file not shown.
Binary file removed assets/dict/bwawa.ogg
Binary file not shown.
Binary file removed assets/dict/c.ogg
Binary file not shown.
Binary file removed assets/dict/cabbage.png
Diff not rendered.
Binary file removed assets/dict/cabinet.png
Diff not rendered.
Binary file removed assets/dict/cable.png
Diff not rendered.
Binary file removed assets/dict/cactus.png
Diff not rendered.
Binary file removed assets/dict/cage.png
Diff not rendered.
Binary file removed assets/dict/calculator.png
Diff not rendered.
Binary file removed assets/dict/calender.png
Diff not rendered.
Binary file removed assets/dict/camel.png
Diff not rendered.
Binary file removed assets/dict/camera.png
Diff not rendered.
Binary file removed assets/dict/camp.png
Diff not rendered.
Binary file removed assets/dict/can.png
Diff not rendered.
Binary file removed assets/dict/cancel.png
Diff not rendered.
Binary file removed assets/dict/candle.png
Diff not rendered.
Binary file removed assets/dict/candy.png
Diff not rendered.
Binary file removed assets/dict/carbon.png
Diff not rendered.
Binary file removed assets/dict/card.png
Diff not rendered.
Binary file removed assets/dict/carefully.png
Diff not rendered.
Binary file removed assets/dict/carpenter.png
Diff not rendered.
Binary file removed assets/dict/carpet.png
Diff not rendered.
Binary file removed assets/dict/carriage.png
Diff not rendered.
Binary file removed assets/dict/carrot.png
Diff not rendered.
Binary file removed assets/dict/cars.png
Diff not rendered.
Binary file removed assets/dict/cat.png
Diff not rendered.
Binary file removed assets/dict/cauliflower.png
Diff not rendered.
Binary file removed assets/dict/cave.png
Diff not rendered.
Binary file removed assets/dict/ceiling.png
Diff not rendered.
Binary file removed assets/dict/centipede.png
Diff not rendered.
Binary file removed assets/dict/certificate.png
Diff not rendered.
Binary file removed assets/dict/chache.ogg
Binary file not shown.
Binary file removed assets/dict/chache.png
Diff not rendered.
Binary file removed assets/dict/chaguo.ogg
Binary file not shown.
Binary file removed assets/dict/chaguo.png
Diff not rendered.
Binary file removed assets/dict/chai.ogg
Binary file not shown.
Binary file removed assets/dict/chain.png
Diff not rendered.
Binary file removed assets/dict/chair.png
Diff not rendered.
Binary file removed assets/dict/chairs.png
Diff not rendered.
Binary file removed assets/dict/chaki.ogg
Binary file not shown.
Binary file removed assets/dict/chakula.ogg
Binary file not shown.
Binary file removed assets/dict/chakula.png
Diff not rendered.
Binary file removed assets/dict/chalk.png
Diff not rendered.
Binary file removed assets/dict/chama.ogg
Binary file not shown.
Binary file removed assets/dict/chama.png
Diff not rendered.
Binary file removed assets/dict/chameleon.png
Diff not rendered.
Binary file removed assets/dict/chanjo.ogg
Binary file not shown.
Binary file removed assets/dict/chanjo.png
Diff not rendered.
Binary file removed assets/dict/chanzo.ogg
Binary file not shown.
Binary file removed assets/dict/chanzo.png
Diff not rendered.
Binary file removed assets/dict/chapa.ogg
Binary file not shown.
Binary file removed assets/dict/chapa.png
Diff not rendered.
Binary file removed assets/dict/chariot.png
Diff not rendered.
Binary file removed assets/dict/chart.png
Diff not rendered.
Binary file removed assets/dict/chati.ogg
Binary file not shown.
Binary file removed assets/dict/chati.png
Diff not rendered.
Binary file removed assets/dict/chawa.ogg
Binary file not shown.
Binary file removed assets/dict/chawa.png
Diff not rendered.
Binary file removed assets/dict/cheche.ogg
Binary file not shown.
Binary file removed assets/dict/cheche.png
Diff not rendered.
Binary file removed assets/dict/cheek.png
Diff not rendered.
Binary file removed assets/dict/cheerful.png
Diff not rendered.
Loading

0 comments on commit 37ad97b

Please sign in to comment.