• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Simple Notepad Application for Android OS


Commit MetaInfo

Revisionde86daef03fa09b97b45372612fd3cf6cf0660be (tree)
Zeit2012-09-21 00:27:50
AutorMasahiko, SAWAI <say@user...>
CommiterMasahiko, SAWAI

Log Message

Merge branch 'master' of git.pf.sourceforge.jp:/gitroot/s/sa/say/android_notepad

Ändern Zusammenfassung

Diff

--- a/notepad-app/README.txt
+++ b/README.txt
@@ -1,6 +1,12 @@
11 ! notepad-app
22
3-This is a simple notepad application for Android OS.
3+Simple Notepad is a simple notepad application for Android.
4+
5+The following functions are supported.
6+* Add new note from template
7+* Searching note
8+* Creating the shortcut to a note
9+* Hardware keyboard support
410
511
612 !! Build Targets
--- a/notepad-app-level-11/AndroidManifest.xml
+++ b/notepad-app-level-11/AndroidManifest.xml
@@ -2,8 +2,8 @@
22 <manifest
33 xmlns:android="http://schemas.android.com/apk/res/android"
44 package="org.routine_work.notepad"
5- android:versionCode="7"
6- android:versionName="0.1.7"
5+ android:versionCode="13"
6+ android:versionName="1.0.2"
77 android:installLocation="auto"
88 >
99 <uses-sdk android:minSdkVersion="11" android:targetSdkVersion="11" />
@@ -12,7 +12,7 @@
1212 android:label="@string/app_name"
1313 android:icon="@drawable/ic_launcher_notepad"
1414 android:theme="@style/Theme.Notepad.Dark"
15- android:debuggable="true"
15+ android:debuggable="false"
1616 >
1717 <!--
1818 android:uiOptions="splitActionBarWhenNarrow"
--- a/notepad-app-level-11/README.txt
+++ /dev/null
@@ -1,46 +0,0 @@
1-! notepad-app-level-11
2-
3-This is a simple notepad application for Android version 3.0 or later.
4-
5-
6-!! Build Targets
7-
8-http://maven-android-plugin-m2site.googlecode.com/svn/plugin-info.html
9-
10-* mvn compile - compile sources.
11-* mvn package - build apk package.
12-* mvn clean - cleaning generated files.
13-* mvn install - install packages to maven local repository.
14-
15-* mvn android:deploy - install apk to device or emulator.
16-* mvn android:generate-sources
17-
18-
19-!! Release Build
20-
21-Define following properties in 'android-release' profile.
22-* sign.keystore
23-* sign.alias
24-* sign.storepass
25-* sign.keypass
26-
27-Set up profile in ~/.m2/settings.xml
28-------------------------------------------------------------
29-<?xml version="1.0" encoding="UTF-8"?>
30-<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
31- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
32- xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"
33->
34- <profiles>
35- <profile>
36- <id>android-release</id>
37- <properties>
38- <sign.keystore>some/keystore/path/hello.keystore</sign.keystore>
39- <sign.storepass>hello.keystore.pass</sign.storepass>
40- <sign.alias>hello</sign.alias>
41- <sign.keypass>hello.pass</sign.keypass>
42- </properties>
43- </profile>
44- </profiles>
45-</settings>
46-------------------------------------------------------------
--- a/notepad-app-level-11/pom.xml
+++ b/notepad-app-level-11/pom.xml
@@ -6,14 +6,14 @@
66 <groupId>org.routine_work</groupId>
77 <artifactId>notepad-app-level-11</artifactId>
88 <packaging>apk</packaging>
9- <version>0.1.7</version>
9+ <version>1.0.2</version>
1010 <name>Notepad App Level 11</name>
1111 <url>http://www.example.com/</url>
1212
1313 <parent>
1414 <groupId>org.routine_work</groupId>
1515 <artifactId>notepad-project</artifactId>
16- <version>0.1.7</version>
16+ <version>1.0.2</version>
1717 </parent>
1818
1919 <dependencies>
@@ -38,7 +38,7 @@
3838 <dependency>
3939 <groupId>org.routine_work</groupId>
4040 <artifactId>notepad-common</artifactId>
41- <version>0.1.7</version>
41+ <version>1.0.2</version>
4242 <scope>compile</scope>
4343 </dependency>
4444
--- a/notepad-app-level-11/res/xml/notepad_preference.xml
+++ b/notepad-app-level-11/res/xml/notepad_preference.xml
@@ -92,7 +92,7 @@
9292 </PreferenceScreen>
9393 </PreferenceCategory>
9494
95-
95+ <!--
9696 <PreferenceCategory android:title="Debug" >
9797 <PreferenceScreen
9898 android:title="Debug"
@@ -105,7 +105,6 @@
105105 />
106106 </PreferenceScreen>
107107 </PreferenceCategory>
108- <!--
109108 -->
110109
111110 </PreferenceScreen>
--- a/notepad-app/AndroidManifest.xml
+++ b/notepad-app/AndroidManifest.xml
@@ -2,8 +2,8 @@
22 <manifest
33 xmlns:android="http://schemas.android.com/apk/res/android"
44 package="org.routine_work.notepad"
5- android:versionCode="7"
6- android:versionName="0.1.7"
5+ android:versionCode="12"
6+ android:versionName="1.0.2"
77 android:installLocation="auto"
88 >
99 <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4" android:maxSdkVersion="10" />
@@ -12,7 +12,7 @@
1212 android:label="@string/app_name"
1313 android:theme="@style/Theme.Notepad.Dark"
1414 android:icon="@drawable/ic_launcher_notepad"
15- android:debuggable="true"
15+ android:debuggable="false"
1616 >
1717
1818 <!-- Activity : Notes -->
--- a/notepad-app/pom.xml
+++ b/notepad-app/pom.xml
@@ -6,14 +6,14 @@
66 <groupId>org.routine_work</groupId>
77 <artifactId>notepad-app</artifactId>
88 <packaging>apk</packaging>
9- <version>0.1.7</version>
9+ <version>1.0.2</version>
1010 <name>Notepad App</name>
1111 <url>http://www.example.com/</url>
1212
1313 <parent>
1414 <groupId>org.routine_work</groupId>
1515 <artifactId>notepad-project</artifactId>
16- <version>0.1.7</version>
16+ <version>1.0.2</version>
1717 </parent>
1818
1919 <dependencies>
@@ -38,7 +38,7 @@
3838 <dependency>
3939 <groupId>org.routine_work</groupId>
4040 <artifactId>notepad-common</artifactId>
41- <version>0.1.7</version>
41+ <version>1.0.2</version>
4242 <scope>compile</scope>
4343 </dependency>
4444
--- a/notepad-app/res/xml/notepad_preference.xml
+++ b/notepad-app/res/xml/notepad_preference.xml
@@ -73,7 +73,7 @@
7373 </PreferenceScreen>
7474 </PreferenceCategory>
7575
76-
76+ <!--
7777 <PreferenceCategory android:title="Debug" >
7878 <PreferenceScreen
7979 android:title="Debug"
@@ -86,7 +86,6 @@
8686 />
8787 </PreferenceScreen>
8888 </PreferenceCategory>
89- <!--
9089 -->
9190
9291 </PreferenceScreen>
--- a/notepad-common/pom.xml
+++ b/notepad-common/pom.xml
@@ -6,14 +6,14 @@
66 <groupId>org.routine_work</groupId>
77 <artifactId>notepad-common</artifactId>
88 <packaging>jar</packaging>
9- <version>0.1.7</version>
9+ <version>1.0.2</version>
1010 <name>Notepad Common Library</name>
1111 <url>http://www.example.com/</url>
1212
1313 <parent>
1414 <groupId>org.routine_work</groupId>
1515 <artifactId>notepad-project</artifactId>
16- <version>0.1.7</version>
16+ <version>1.0.2</version>
1717 </parent>
1818
1919 <dependencies>
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@
55 <groupId>org.routine_work</groupId>
66 <artifactId>notepad-project</artifactId>
77 <packaging>pom</packaging>
8- <version>0.1.7</version>
8+ <version>1.0.2</version>
99 <name>Notepad Project</name>
1010 <url>http://www.example.com/</url>
1111
Binary files /dev/null and b/screenshot/notepad-08-shortcuts.png differ