Category Archives: Posts

SkyEpub 6.0.0 for iOS Released

SkyEpub 6.0.6 for iOS Released.

Reflowable Layout

Fixed a lot of issues.
Enhanced performance.
RTL engine totally revised.
RTL supports double paged in landscape mode.
RTL supports continuous curling between chapters.
Vertical writing for Chinese, Japanese and Korean supported.

Fixed Layout

Fixed a lot of issues.
Greatly Improved Performance.
Highlight/Memo Supported
Bookmark Supported
Search Supported
Thumbnails Supported.

SkyEpub 5.3.1 for Android Released

Reflowable Layout
Fixed the bug that the image inside page grows too large when “Android System WebView 48” is installed.
Fixed the bug that the page layouts are broken when when “Android System WebView 48” is installed.
Fixed the bug that the first page of each chapter is not be seen in None or Slide mode when when “Android System WebView 48” is installed.

SkyEpub 5.3.0 for iOS Released

Fixed issue that the rendering quality is bad while page curling in iPhone 6s plus.

A new class is added to SkyEpub SDK.

SkyKeyManager
; SkyKeyManager manages the keys for the encrypted epub which is created by SkyDRM solution.

// Creator
-(id)initWithClientId:(NSString*)clientId clientSecret:(NSString*)clientSecret;

// NSString clientId : id to access SkyDRM server.
// NSString clientSecret : secret code to access SkyDRM server.

// gets keys for the encrypted content from SkyDRM Server.
-(NSString*)getKey:(NSString*)uuidForEpub uuidForContent:(NSString*)uuidForContent;
// NSString uuidForContent : uuid of a content which is encrypted inside epub.
// NSString uuidForEpub : uuid of epub itself.

SkyEpub 5.3.0 for Android Released

Ready for Android Marshmallow

SkyKeyManager Class is newly added to SkyEpub SDK.
; SkyKeyManager manages the keys for the encrypted epub which is created by SkyDRM solution.

// Creator
public SkyKeyManager(String clientId,String clientSecret);
// String clientId : id to access SkyDRM server.
// String clientSecret : secret code to access SkyDRM server.

// gets the key for a content from SkyDRM Server.
public String getKey(String keyForContent,String keyForEpub);
// String keyForContent : uuid of a content which is encrypted inside epub.
// String keyForEpub : uuid of epub itself.

SkyEpub 5.2.1 for iOS Released

Fixed Layout

New function is added.
/** use only one layer to render. caching adjacent pages will be disabled. */
-(void)useSingleLayer;

// for low spec devices such as iPad 2 or the epub which has very large size images (the max size of width or height exceeds 1024) in it, [fv useSingleLayer] function enforces skyepub sdk to use only one webView layer to reduce the consumed memory.
// this function works only with NONE,SLIDE mode,