Author Archives: skytree21

SkyEpub 6.0.5 for iOS Released

Reflowable Layout
In RTL books, Bug fixed in gotoPageByNavPoint function.

Fixed Layout
Bug Fixed that when double tap in landscape mode, right page disappears.
Bug Fixed that gotoPage malfunctions to go to the last page.
New Functions are added.

/** if value is true, page will be fit to Height. otherwise page will be fit to Width */
-(void)setFitToHeight:(BOOL)value;

/** set MaxLayer to pre load another pages */
-(void)setMaxLayer:(int)max;

SkyEpub 6.0.0 for Android Released

SkyEpub 6.0.6 for Android Released.

Reflowable Layout

Fixed a lot of issues.
Android System Webview 49 supported
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 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.