Wednesday, October 5, 2011

ColorNote 3.6.4 Black theme added


How to change theme to black :
1. Tap 'ColorNote' on upper left corner
2. Theme
3. Select Black

ColorNote BackUp & Sync : How to transfer notes from old phone to new phone. How to sync notes between phone and tablet.

ColorNote BackUp, Restore & Sync Manual

About Sync : When you sync on the phone, it sync notes with ColorNote Online Service. You can sync notes between phone and tablet or you can restore notes on the new phone. We will support PC client later.

[How to transfer notes from old phone to new phone]

[1] When you have old phone
+ Using online sync. [Recommended]
1. Sign up online sync on your old phone. [Menu - Backup - Sign Up]
2. Sync [Menu - Sync]
3. Check how many notes are synced [Menu - Settings - Online Sync - Synced notes]
4. Sign in online sync in your new phone. [Menu - Backup - Sign In]

+ Using sdcard backup
1. Goto sdcard backup screen on your old phone. [Menu - Backup - SD card backup]
2. Backup Notes [Press button - Enter master password - Done]
3. Move sdcard from old phone to new phone
4. Goto sdcard backup screen on your new phone
5. Tap backup item you want to restore - Type password that you have set when backup file was created.

[2] When you don't have old phone
+ If you already signed up online sync on your old phone
1. Just sign in online sync with same account on your new phone.

+ If you didn't signed up online sync.
1. Move sdcard from old phone to new phone
2. Goto sdcard backup screen on your new phone
3. Tap backup item you want to restore - Type password that you have set when backup file was created.

[3] When your phone is reset
+ Try to restore notes like when you don't have old phone.

- Trouble shooting
+ You cannot find backup menu and you can see sync menu only.
+ Or you cannot see 'Restore' option when you click backed up data. There are only View and Delete.
1. Go to online sync settings [Menu - Settings - Online Sync]
2. Sign Out [Menu - Sign out]
3. Now you can see backup menu on the main screen. Try to restore notes from sdcard.
4. Sign in online sync again.

+ You cannot find backup file list on your sdcard.
1.Copy files to the /sdcard/data/colornote/backup or /mnt/sdcard/data/colornote/backup in file manager


 /sdcard/data/colornote/backup

[How to sync notes between phone and tablet]
1. Sign up online sync on your phone. [Menu - Backup - Sign Up]
2. Sync on your phone
3. Sign in online sync in your tablet.
4. Sync on your tablet.


Monday, August 29, 2011

ColorNote 3.6.0 is released

-2x2 size note widget added
-2x2 size today widget added
-You can change trasparency of widgets
-Supports online backup and sync
: Notes will be encrypted before uploading using the AES standard,
which is the same encryption standard used by banks to secure customer data.
: It does not send any of your notes without your signing up.

Monday, June 6, 2011

Color Flashligh HD released



Color Flashlight HD is released. Design is improved & new effects are added.

Market : Download link

PS. Photo sent from Color Flashlight user. He took a picture with color flashlight




Monday, May 9, 2011

Android Note App ColorNote updated to 3.0




Added features
- Double Tap to enter edit mode
- Double Tap for quick word selection on text editor
- Ccalendar : Swipe on main screen
- Dashboard : Archive, Recycle bin
- Wiki style auto link : [[Title]]
- Improved interface
- Many UI Changes & minor updates

Version 3 update is now available on Android Market and will be updated soon on amazon appstore.

-Android Market : Download
-Amazon Appstore : Download

Monday, January 24, 2011

ColorDict Intent API for 3rd party developers

-------------- SEARCH API ---------------------
- You can use PopUp dialog style ColorDict result on your app.
- You can specify FrameLayout LayoutParams for dialog.

public static final String SEARCH_ACTION   = "colordict.intent.action.SEARCH";
public static final String EXTRA_QUERY    = "EXTRA_QUERY";
public static final String EXTRA_FULLSCREEN = "EXTRA_FULLSCREEN";
public static final String EXTRA_HEIGHT   = "EXTRA_HEIGHT";
public static final String EXTRA_WIDTH    = "EXTRA_WIDTH";
public static final String EXTRA_GRAVITY   = "EXTRA_GRAVITY";
public static final String EXTRA_MARGIN_LEFT  = "EXTRA_MARGIN_LEFT";
public static final String EXTRA_MARGIN_TOP   = "EXTRA_MARGIN_TOP";
public static final String EXTRA_MARGIN_BOTTOM  = "EXTRA_MARGIN_BOTTOM";
public static final String EXTRA_MARGIN_RIGHT  = "EXTRA_MARGIN_RIGHT";


Intent intent = new Intent(SEARCH_ACTION);
intent.putExtra(EXTRA_QUERY, "hello"); //Search Query
intent.putExtra(EXTRA_FULLSCREEN, false); //
intent.putExtra(EXTRA_HEIGHT, 400); //400pixel, if you don't specify, fill_parent"
intent.putExtra(EXTRA_GRAVITY, Gravity.BOTTOM);
intent.putExtra(EXTRA_MARGIN_LEFT, 100);
startActivity(intent);


- Check intent before using it

public static boolean isIntentAvailable(Context context, Intent intent) {
 final PackageManager packageManager = context.getPackageManager();
 List list = packageManager.queryIntentActivities(intent, PackageManager.MATCH_DEFAULT_ONLY);
 return list.size() > 0; 
}


-------------- PICK API ---------------------

[Constant]
public static final String PICK_RESULT_ACTION  = "colordict.intent.action.PICK_RESULT";

[Code]
Intent intent = new Intent(PICK_RESULT_ACTION);
intent.putExtra(EXTRA_QUERY, "hello"); //Search Query
intent.putExtra(EXTRA_FULLSCREEN, false); //
intent.putExtra(EXTRA_HEIGHT, 400); //400pixel, if you don't specify, fill_parent"
intent.putExtra(EXTRA_GRAVITY, Gravity.BOTTOM);
intent.putExtra(EXTRA_MARGIN_LEFT, 100);
startActivityForResult(intent, 5);


[RESULT]
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
 super.onActivityResult(requestCode, resultCode, data);
 if(resultCode == RESULT_OK) {
   Log.d("test", data.getStringExtra(Intent.EXTRA_SUBJECT));
   Log.d("test", data.getStringExtra(Intent.EXTRA_TEXT));
 }
}