Skip to content
This repository has been archived by the owner on Nov 10, 2017. It is now read-only.

Commit

Permalink
Merge branch 'release-0.1.8'
Browse files Browse the repository at this point in the history
  • Loading branch information
eigenein committed Apr 9, 2014
2 parents 2468490 + 1e0198a commit e4a97a5
Show file tree
Hide file tree
Showing 33 changed files with 26 additions and 1,633 deletions.
26 changes: 6 additions & 20 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="info.eigenein.openwifi"
android:versionCode="16"
android:versionName="0.1.7.3">
android:versionCode="17"
android:versionName="0.1.8">
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="16"/>
<!-- Common permissions. -->
<uses-permission android:name="android.permission.INTERNET" />
Expand All @@ -13,10 +13,6 @@
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/>
<uses-permission android:name="android.permission.WRITE_SETTINGS"/>
<uses-permission android:name="android.permission.VIBRATE"/>
<!-- For authenticating with Account Manager. -->
<uses-permission android:name="android.permission.GET_ACCOUNTS"/>
<uses-permission android:name="android.permission.MANAGE_ACCOUNTS"/>
<uses-permission android:name="android.permission.USE_CREDENTIALS"/>
<!-- For ACRA. -->
<uses-permission android:name="android.permission.READ_LOGS"/>
<!-- Google Maps Android API v2. -->
Expand Down Expand Up @@ -55,9 +51,6 @@
<activity
android:name=".activities.AboutActivity"
android:label="@string/activity_title_about"/>
<activity
android:name=".activities.HelpActivity"
android:label="@string/activity_title_help"/>
<activity android:name="org.acra.CrashReportDialog"
android:theme="@style/OpenWiFi.Theme.Dialog"
android:launchMode="singleInstance"
Expand All @@ -79,21 +72,11 @@
<action android:name="android.net.wifi.SCAN_RESULTS"/>
</intent-filter>
</receiver>
<receiver
android:name=".receivers.ConnectivityChangeBroadcastReceiver"
android:enabled="true">
<intent-filter>
<action android:name="android.net.conn.CONNECTIVITY_CHANGE"/>
</intent-filter>
</receiver>
<!-- /Receivers. -->
<!-- Services. -->
<service
android:name=".services.ScanIntentService"
android:exported="false"/>
<service
android:name=".services.SyncIntentService"
android:exported="false"/>
<service
android:name=".services.CleanupIntentService"
android:exported="false"/>
Expand All @@ -102,6 +85,9 @@
<!-- Google Maps Android API v2. -->
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyBpRiLItujKqVsghVEVWERHVzK5MTPH2Yc"/>
android:value="AIzaSyDh0xIoGG5JNpVdGB8GTjO5HrdNS2LTYvA"/>
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
</application>
</manifest>
Binary file modified debug.keystore
Binary file not shown.
3 changes: 1 addition & 2 deletions project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@

# Project target.
target=Google Inc.:Google APIs:19
android.library.reference.1=../../SDK/adt-bundle-windows-x86_64-20130917/sdk/extras/google/google_play_services/libproject/google-play-services_lib

android.library.reference.1=../../YandexDisk/Software/SDK/adt-bundle-windows-x86_64/sdk/extras/google/google_play_services/libproject/google-play-services_lib



6 changes: 4 additions & 2 deletions readme-ru.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

Построение карты по мере вашего перемещения, даже если приложение свернуто.
Отображение на карте области действия каждой сети.
Сведения о Wi-Fi сетях хранятся в облаке и кэшируются на вашем устройстве вы будете видеть сети, найденные другими пользователями приложения.
Фоновое получение новых данных при подключении устройства к Wi-Fi.
Настраиваемый вид карты: схема или гибридный.
Настраиваемый интервал поиска.

Expand All @@ -12,6 +10,10 @@
Вступайте в нашу группу в Facebook: https://www.facebook.com/groups/openwifi.project/
Вступайте в наше сообщество в Google+: https://plus.google.com/communities/106829221677020050162

0.1.8

Проект закрыт. Из приложения удалена синхронизация.

0.1.7.3

В меню добавлена команда принудительного завершения приложения.
Expand Down
6 changes: 4 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ Open Wi-Fi networks map.

Makes the map of Wi-Fi networks as you walk around even if the application is minimized.
Displays the coverage of each Wi-Fi network.
The information is stored in a cloud you will see networks that are found by other users.
Automatically downloads updates when connected to Wi-Fi.
Customizable map view: normal or hybrid.
Customizable Wi-Fi search interval.

Expand All @@ -12,6 +10,10 @@ Follow us on Twitter: https://twitter.com/owifi
Join us on VK: http://vk.com/owifi
Join our community on Google+: https://plus.google.com/communities/106829221677020050162

0.1.8

Project is closed. Sync feature is removed.

0.1.7.3

Added a menu command to forcibly close the application.
Expand Down
16 changes: 0 additions & 16 deletions res/layout/about.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,6 @@
android:gravity="center_horizontal"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="@android:color/black"/>
<TextView
android:id="@+id/about_project_link_text_view"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="3dip"
android:gravity="center_horizontal"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColorLink="@color/holo_blue_light"/>
<TextView
android:id="@+id/feedback_link_text_view"
android:layout_width="fill_parent"
Expand All @@ -50,14 +42,6 @@
android:gravity="center_horizontal"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColorLink="@color/holo_blue_light"/>
<TextView
android:id="@+id/client_id_text_view"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="3dip"
android:gravity="center_horizontal"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="@android:color/darker_gray"/>
</LinearLayout>
<LinearLayout
android:orientation="vertical"
Expand Down
4 changes: 0 additions & 4 deletions res/layout/help.xml

This file was deleted.

33 changes: 0 additions & 33 deletions res/layout/help_finish.xml

This file was deleted.

33 changes: 0 additions & 33 deletions res/layout/help_scan.xml

This file was deleted.

25 changes: 0 additions & 25 deletions res/layout/help_welcome.xml

This file was deleted.

6 changes: 0 additions & 6 deletions res/layout/network_list_item.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,6 @@
<ImageView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_rating_0"/>-->
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/text_view_rating_is_not_implemented"
android:textAppearance="?android:attr/textAppearanceSmall"
android:focusable="false"
android:textColor="@android:color/darker_gray"/>
</LinearLayout>
</LinearLayout>
</LinearLayout>
4 changes: 0 additions & 4 deletions res/menu/main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@
android:title="@string/menu_item_settings"
android:icon="@drawable/ic_action_settings"
android:showAsAction="never"/>
<item android:id="@+id/menuitem_help"
android:title="@string/menu_item_help"
android:icon="@drawable/ic_action_help"
android:showAsAction="never"/>
<item android:id="@+id/menuitem_about"
android:title="@string/activity_title_about"
android:icon="@drawable/ic_action_about"
Expand Down
Loading

0 comments on commit e4a97a5

Please sign in to comment.