Author Archives: skytree21

SkyEpub 6.2.3 for Android Released

Fixed Layout

fixed the bug that App crashes for some large size book.
fixed the bug that App crashes when back button is pressed while book is loading.
fixed the bug that Vertical Scrolling does not work inside div in None, Slide mode.
modified the PageTransition.Slide with Animation.

SkyEpub 6.2.2 for Android Released

SkyKeyManager (SkyDRM ONLY)

enhanced performance when multiple keys generated SkyDRM are fetched from Sky Content Server
New function is added

/** returns ArrayList for given uuidForEpub;
public ArrayList getKeys(String uuidForEpub);

SkyKey class is newly added (SkyDRM ONLY)

public class SkyKey {
public String encryptedId = “”;
public String contentId = “”;
public String key = “”;
}

Reflowable Layout
// adjustContentWidth to avoid page broken in some devices.
// default value : false;
public void adjustContentWidth(boolean value);

SkyEpub 6.2.2 for iOS Released

SkyKeyManager (SkyDRM ONLY)

enhanced performance when multiple keys generated SkyDRM are fetched from Sky Content Server
New function is added
/** returns NSMutableArray(containing SkyKey object) for given uuidForEpub;
-(NSMutableArray*)getKeys:(NSString*)uuidForEpub;

SkyKey class is newly added (SkyDRM ONLY)

@interface SkyKey : NSObject {
NSString* encryptedId;
NSString* contentId;
NSString* key;
}

@property (nonatomic,retain) NSString *encryptedId;
@property (nonatomic,retain) NSString *contentId;
@property (nonatomic,retain) NSString *key;

@end

SkyEpub 6.2.1 for Android Released

Reflowable Layout

resolved the issue that the rendering of page is broken for some devices.
resolved the issue that page flickers after turning for some devices.
resolved the issue that pages are broken in Samsung Galaxy Note 5.

Fixed Layout

performance is tuned for PageTransition.Curl.
resolved the issue that scrollning page misbehaves as turning page in PageTransition.NONE in zoom scale.
resolved the issue that onFailedToMove event has reverse arguments in PageTransition.NONE.
resolved the issue that vertical scroll bar shows and hides for a short time.

SkyEpub 6.2.0 for iOS Released

Reflowable Layout
New callback function is Added to ReflowableViewControllerDelegate.
// 6.2.0
/** called when user tries to go to the previous page at the first of book or to go to the next page at the last of book. */
-(void)reflowableViewController:(ReflowableViewController*)rvc failedToMove:(BOOL)toForward;

Fixed Layout

fixed the bug that double tab does not work after rotation.
fixed the bug that itemRef which has “linear no” property shows.
fixed tht bug that pages are not displayed in None or Slide mode for some books.

New callback function is added to FixedViewControllerDelegate.

/** called when user tries to go to the previous page at the first of book or to go to the next page at the last of book. */
-(void)fixedViewController:(FixedViewController*)fvc failedToMove:(BOOL)toForward;

SkyEpub 6.2.0 for Android Released

Fixed Layout

enhanced the overall performance.
enhanced the page transition speed in PageTransition.NONE.
fixed the bug that flickering happens whenever page is tunred in PageTransition.Curl.
fixed the bug that ItemRef which has ‘linear no’ property shows.
tuned for the books which are created by NamoAuthor epub3 software.

MagazineActivity.java in Advanced demo
fixed the bug that Thumbnail images are not be released after leaving Activity so that app crashes by OOM.