Skip to content

Commit

Permalink
1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
NoRulesJustFeels committed Feb 21, 2013
1 parent 55444d6 commit 4e6275f
Show file tree
Hide file tree
Showing 16 changed files with 491 additions and 138 deletions.
1 change: 1 addition & 0 deletions .classpath
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@
<classpathentry kind="lib" path="libs/libGoogleAnalyticsV2.jar"/>
<classpathentry kind="lib" path="libs/jsoup.jar"/>
<classpathentry kind="lib" path="libs/android-query.jar"/>
<classpathentry kind="lib" path="libs/commons-lang.jar"/>
<classpathentry kind="output" path="bin/classes"/>
</classpath>
4 changes: 2 additions & 2 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.entertailion.android.launcher"
android:versionCode="6"
android:versionName="1.5" >
android:versionCode="7"
android:versionName="1.6" >

<uses-sdk
android:minSdkVersion="13"
Expand Down
Binary file added libs/commons-lang.jar
Binary file not shown.
Binary file added res/drawable-xhdpi/ic_menu_row_name.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
47 changes: 47 additions & 0 deletions res/layout/add_browser_bookmarks_list.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center_vertical|center_horizontal"
android:orientation="vertical" >

<RadioGroup
android:id="@+id/radioGroup"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >

<RadioButton
android:id="@+id/currentRadio"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:text="@string/dialog_current_row"
android:textColor="@color/white" />

<RadioButton
android:id="@+id/newRadio"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/dialog_new_row"
android:textColor="@color/white" />
</RadioGroup>

<EditText
android:id="@+id/rowName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:hint="@string/dialog_new_row_name"
android:textColor="@color/white"
android:visibility="gone" >
</EditText>

<ListView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:listSelector="@drawable/gallery_selector" >
</ListView>

</LinearLayout>
2 changes: 1 addition & 1 deletion res/values-ko/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<string name="menu_add_row">줄 추가</string>
<string name="menu_add_app">앱 추가</string>
<string name="menu_add_spotlight_web_app">스포트라이트 웹 앱 추가</string>
<string name="menu_add_bookmark">브라우저 즐겨찾기 추가</string>
<string name="menu_add_browser_bookmark">브라우저 즐겨찾기 추가</string>
<string name="menu_delete_item">아이템 삭제</string>
<string name="menu_delete_row">줄 삭제</string>
<string name="menu_uninstall_app">앱 제거</string>
Expand Down
7 changes: 6 additions & 1 deletion res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<string name="menu_add_row">Add Row</string>
<string name="menu_add_app">Add App</string>
<string name="menu_add_spotlight_web_app">Add Spotlight Web App</string>
<string name="menu_add_bookmark">Add Browser Bookmark</string>
<string name="menu_add_browser_bookmark">Add Browser Bookmark</string>
<string name="menu_delete_item">Delete Item</string>
<string name="menu_delete_row">Delete Row</string>
<string name="menu_uninstall_app">Uninstall App</string>
Expand All @@ -44,6 +44,7 @@
<string name="menu_change_row_order_done">Done</string>
<string name="menu_change_row_order_instructions">Click on the row name to select, then move up or down and click again to place in the new position:</string>
<string name="menu_add_widget">Add Widget</string>
<string name="menu_change_row_name">Change Row Name</string>

<!-- Layers -->
<string name="layer_all_apps">ALL APPS</string>
Expand Down Expand Up @@ -118,6 +119,10 @@
<string name="dialog_select_row">Select the row for %s</string>
<string name="dialog_name">Name</string>
<string name="dialog_channel_name_alert">You must enter a name for the channel.</string>
<string name="dialog_row_name_title">Row Name</string>
<string name="dialog_row_name">Enter the new name:</string>
<string name="dialog_no_browser_history">No browser history</string>
<string name="dialog_no_browser_bookmarks">No browser bookmarks</string>

<!-- Rating -->
<string name="rating_title">Rate Open Launcher</string>
Expand Down
Loading

0 comments on commit 4e6275f

Please sign in to comment.