Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Readers > Amazon Kindle > Kindle Developer's Corner

Notices

Closed Thread
 
Thread Tools Search this Thread
Old 04-23-2012, 10:20 AM   #136
silver18
THE NOOB
silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.
 
silver18's Avatar
 
Posts: 701
Karma: 1545649
Join Date: Jan 2012
Location: Italy
Device: Kindle Touch 5.3.2
I fixed the crashes problems!

Here's what I found out:
- if I open an alert box in the main page (where you can find the splash image), it doesn't crash!
-i f I open an alert box ONLY while reading or managing bookmarks, it crashes.

It seems that the Kindle doesn't give permissions to open pop-ups (or can't manage them) from a page that's isn't the index.html!
But, opening an alert box in index.html make the rest of alert boxes work...


So that, wait till tomorrow and I'll release the new portrait version with this workaround (welcome popup! )
silver18 is offline  
Old 04-23-2012, 10:58 AM   #137
canopus
Member
canopus began at the beginning.
 
Posts: 16
Karma: 10
Join Date: Feb 2012
Device: Kindle Touch
Quote:
Originally Posted by thomass View Post
How about changing the image directory to "images" (/mnt/us/images) instead of /mnt/us/documents/gallery to adapt to the official app?


I used the plain install.
Yeah, me too... plain install...
And confirm that I do have design problems, but not in the home page... sorry, my mistake...
canopus is offline  
Advert
Old 04-25-2012, 06:21 AM   #138
silver18
THE NOOB
silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.
 
silver18's Avatar
 
Posts: 701
Karma: 1545649
Join Date: Jan 2012
Location: Italy
Device: Kindle Touch 5.3.2
Here I am!!

This time it's not really a new release, it's just an easy fix for 5.1.0 firmware.

As I stated before, 5.1.0 firmware messed up a lot with Image Gallery.
I fixed:
- design problems
- crash problems

A small drawback is the new welcome popup: a little trick to make the app working with the new firmware.

What I added:
- you can now try the resize function. In reading menu you can tap on "change image width" and enter a % (from 0 to ∞).
From 0 to 100 you'll shrink the image width, from 100 to ∞ you'll enlarge it and you'll find 4 arrows.
They can scroll the image in 4 directions with 200px steps and they hide themselves after 2 seconds unless you use them. To bring them back, double click anywhere (not too fast!!).

A little explanation:
this feature was intended to be used almost only in landscape mode, therefore the 4 arrows!
In portrait mode, up and down arrows are useless as you can change only the image width.
Let me know if you prefer to change the length along with the width.
Feedbacks are always welcome but with this feature they are almost necessary!

AND THE LANDSCAPE MODE???
I can't do nothing by now to bring it back. 5.1.0 removed the possibility to rotate browser and WAF applications.
Landscape mode is still there, waiting for someone to hack the rotation system.
I'm a bit sad as I use landscape mode more than portrait!
If you miss it, help me make the browser rotate again!


HOW TO INSTALL
Just replace files in the correct place:
- index.js in /extensions/imagegallery/bin/resource/JSandSH
- all html files in /extensions/imagegallery/bin/
- all gif files in /extensions/imagegallery/bin/resource/Images

Last edited by silver18; 04-25-2012 at 10:33 AM.
silver18 is offline  
Old 04-25-2012, 06:50 AM   #139
eureka
but forgot what it's like
eureka ought to be getting tired of karma fortunes by now.eureka ought to be getting tired of karma fortunes by now.eureka ought to be getting tired of karma fortunes by now.eureka ought to be getting tired of karma fortunes by now.eureka ought to be getting tired of karma fortunes by now.eureka ought to be getting tired of karma fortunes by now.eureka ought to be getting tired of karma fortunes by now.eureka ought to be getting tired of karma fortunes by now.eureka ought to be getting tired of karma fortunes by now.eureka ought to be getting tired of karma fortunes by now.eureka ought to be getting tired of karma fortunes by now.
 
Posts: 741
Karma: 2345678
Join Date: Dec 2011
Location: north (by northwest)
Device: Kindle Touch
@silver18, did you tried to use CSS properties for implementing of landscape mode? Something like:
Code:
-webkit-transform: rotate(90deg);
(or, maybe, just plain transform: rotate(90deg); will work)

Of course, it should be applied on user request through JavaScript...
eureka is offline  
Old 04-25-2012, 10:05 AM   #140
faithcraft
Junior Member
faithcraft began at the beginning.
 
Posts: 8
Karma: 10
Join Date: Mar 2012
Device: Kindle Touch
Quote:
Originally Posted by silver18 View Post
Here I am!!

This time it's not really a new release, it's just an easy fix for 5.1.0 firmware.

As I stated before, 5.1.0 firmware messed up a lot with Image Gallery.
I fixed:
- design problems
- crash problems

A small drawback is the new welcome popup: a little trick to make the app working with the new firmware.

What I added:
- you can now try the resize function. In reading menu you can tap on "change image width" and enter a % (from 0 to ∞).
From 0 to 100 you'll shrink the image width, from 100 to ∞ you'll enlarge it and you'll find 4 arrows.
They can scroll the image in 4 directions with 200px steps and they hide themselves after 2 seconds unless you use them. To bring them back, double click anywhere (not too fast!!).

A little explanation:
this feature was intended to be used almost only in landscape mode, therefore the 4 arrows!
In portrait mode, up and down arrows are useless as you can change only the image width.
Let me know if you prefer to change the length along with the width.
Feedbacks are always welcome but with this feature they are almost necessary!

AND THE LANDSCAPE MODE???
I can't do nothing by now to bring it back. 5.1.0 removed the possibility to rotate browser and WAF applications.
Landscape mode is still there, waiting for someone to hack the rotation system.
I'm a bit sad as I use landscape mode more than portrait!
If you miss it, help me make the browser rotate again!


HOW TO INSTALL
Just replace files in the correct place (index.js in /extensions/imagegallery/bin/resource/JSandSH)
Is it necessary have installed the 5.1.0 firmware to use this update?... Will it work with the 5.0.4?

Thanks! =)
faithcraft is offline  
Advert
Old 04-25-2012, 10:30 AM   #141
silver18
THE NOOB
silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.
 
silver18's Avatar
 
Posts: 701
Karma: 1545649
Join Date: Jan 2012
Location: Italy
Device: Kindle Touch 5.3.2
Quote:
Originally Posted by faithcraft View Post
Is it necessary have installed the 5.1.0 firmware to use this update?... Will it work with the 5.0.4?

Thanks! =)

Here is the 5.0.4 version.
It has resize function both in landscape and in portrait mode.

As before, replace files in correct position!
Attached Files
File Type: zip Imagegallery resize for 5.0.4.zip (31.7 KB, 183 views)
silver18 is offline  
Old 04-25-2012, 10:36 AM   #142
silver18
THE NOOB
silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.
 
silver18's Avatar
 
Posts: 701
Karma: 1545649
Join Date: Jan 2012
Location: Italy
Device: Kindle Touch 5.3.2
Quote:
Originally Posted by eureka View Post
@silver18, did you tried to use CSS properties for implementing of landscape mode? Something like:
Code:
-webkit-transform: rotate(90deg);
(or, maybe, just plain transform: rotate(90deg); will work)

Of course, it should be applied on user request through JavaScript...
I'm working on it...
Rotation seems to work, but I have to change the pivot point, translate everything and then change width and height....
I'm having problems with moving around elements!
silver18 is offline  
Old 04-25-2012, 10:49 AM   #143
thomass
Wizard
thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.
 
Posts: 1,669
Karma: 2300001
Join Date: Mar 2011
Location: Türkiye
Device: Kindle 5.3.7
A small request: Can you add the currently viewed folder name to the titlebar?
thomass is offline  
Old 04-25-2012, 01:49 PM   #144
silver18
THE NOOB
silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.silver18 ought to be getting tired of karma fortunes by now.
 
silver18's Avatar
 
Posts: 701
Karma: 1545649
Join Date: Jan 2012
Location: Italy
Device: Kindle Touch 5.3.2
It would be awesome!!! Imagine curret folder on the left and current page on the right...
Anyway, I don't think it could be possible in a waf!
silver18 is offline  
Old 04-25-2012, 02:20 PM   #145
thomass
Wizard
thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.
 
Posts: 1,669
Karma: 2300001
Join Date: Mar 2011
Location: Türkiye
Device: Kindle 5.3.7
Quote:
Originally Posted by silver18 View Post
It would be awesome!!! Imagine curret folder on the left and current page on the right...
Anyway, I don't think it could be possible in a waf!
Thanks anyway
thomass is offline  
Old 04-25-2012, 08:53 PM   #146
faithcraft
Junior Member
faithcraft began at the beginning.
 
Posts: 8
Karma: 10
Join Date: Mar 2012
Device: Kindle Touch
Hi guys! Can somebody help me plz?... I have my kindle with the 5.0.4 firmware, the Yifan Lu launcher and the Image Gallery WAF...

Now i want to update the firmware to 5.1.0 but how should i do this?...

A.- Should i just follow the instructions from this (http://www.amazon.com/gp/help/custom...deId=200790650)

-or-

B.- Should i first uninstall the jailbreak and all that stuff? and THEN install the update package?... (if so, can u tell me how to uninstall the image gallery hack plz?)

Thank you very much my good ppl!
faithcraft is offline  
Old 04-26-2012, 03:21 AM   #147
thomass
Wizard
thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.
 
Posts: 1,669
Karma: 2300001
Join Date: Mar 2011
Location: Türkiye
Device: Kindle 5.3.7
Quote:
Originally Posted by faithcraft View Post
Hi guys! Can somebody help me plz?... I have my kindle with the 5.0.4 firmware, the Yifan Lu launcher and the Image Gallery WAF...

Now i want to update the firmware to 5.1.0 but how should i do this?...

A.- Should i just follow the instructions from this (http://www.amazon.com/gp/help/custom...deId=200790650)

-or-

B.- Should i first uninstall the jailbreak and all that stuff? and THEN install the update package?... (if so, can u tell me how to uninstall the image gallery hack plz?)

Thank you very much my good ppl!
  • uninstall launcher, (and screensaver, ktrotate)
  • update
  • install the new launcher
  • enjoy
thomass is offline  
Old 04-26-2012, 08:51 AM   #148
canopus
Member
canopus began at the beginning.
 
Posts: 16
Karma: 10
Join Date: Feb 2012
Device: Kindle Touch
Quote:
Originally Posted by thomass View Post
  • uninstall launcher, (and screensaver, ktrotate)
  • update
  • install the new launcher
  • enjoy
Correct me if I got wrong, but should not be this way?

- uninstall: screensaver and everything else
- uninstall: launcher
- update
- jailbreak again
- install the new launcher
- install image gallery
canopus is offline  
Old 04-26-2012, 10:14 AM   #149
thomass
Wizard
thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.thomass ought to be getting tired of karma fortunes by now.
 
Posts: 1,669
Karma: 2300001
Join Date: Mar 2011
Location: Türkiye
Device: Kindle 5.3.7
This is what I know:
- uninstall: screensaver and everything else (AFAIK only screensaver, localization hacks, ktrotate and launcher has problems with 5.1.0. For example you do not need to uninstal usbnetwork, jailbreak)
- uninstall: launcher
- update
- jailbreak again (not necessary)
- install the new launcher
- install image gallery
thomass is offline  
Old 04-26-2012, 11:24 AM   #150
canopus
Member
canopus began at the beginning.
 
Posts: 16
Karma: 10
Join Date: Feb 2012
Device: Kindle Touch
When I Update my KT, I lost my Jailbreak... :P
Was my fault, maybe?
canopus is offline  
Closed Thread


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
PDF images upside down - a solution Fingerstoo Conversion 4 12-21-2011 11:57 AM
Double tap doesn't zoom images full screen nonsequito Apple Devices 0 01-15-2011 05:03 PM
Display images full-screen? jttraverse ePub 3 01-09-2011 04:59 AM
Full-Screen images on the K2? Thorkin Amazon Kindle 1 03-12-2009 07:48 PM


All times are GMT -4. The time now is 02:17 AM.


MobileRead.com is a privately owned, operated and funded community.