Why imageSuffix table changed?

Hi,

I was using imageSuffix table like this in our universal iOS game:

local model = system.getInfo("model")  
  
if model:find('iPhone') ~= nil or model:find('iPod') ~= nil then  
  
 application=  
 {  
 content=  
 {  
 fps = 60,  
 width = 320,  
 height = 480,  
 scale = "letterbox",  
  
  
 imageSuffix =  
 {  
 ["@iph3"] = 1,  
 ["@iph4"] = 2,  
 },   
  
  
 },  
 }  
  
else --// ipad  
  
 application=  
 {  
 content=  
 {  
 fps = 60,  
 width = 768,  
 height = 1024,  
 scale = "letterbox",  
  
 imageSuffix =  
 {  
 ["@ipa2"] = 1,  
 ["@ipa3"] = 2,   
 },   
 },  
 }  
end  

This’s really handy, i could put all my graphics in one place
But i noticed that i can not use this method any more in a newer build

After made some research, i found that Corona will alway treat images with no suffix as 1 time scale, e.g imageForNotRetina.png, and image name like imageForNotRetina@iph3.png or imageForNotRetina@ipa2.png will be ignored.

Is that true? why this changed?
Thanks
Sun JiaJie [import]uid: 74676 topic_id: 30413 reply_id: 330413[/import]

Is it real for sure?

PS: Are you using the API [lua]display.newImageRect()[/lua] [import]uid: 89165 topic_id: 30413 reply_id: 121866[/import]

Is it real for sure?

PS: Are you using the API [lua]display.newImageRect()[/lua] [import]uid: 89165 topic_id: 30413 reply_id: 121866[/import]

Yes, of course.
The code i post above works in earlier build, like 805 or 751. But after i updated a newer version, this method won’t work.
[import]uid: 74676 topic_id: 30413 reply_id: 124044[/import]

Yes, of course.
The code i post above works in earlier build, like 805 or 751. But after i updated a newer version, this method won’t work.
[import]uid: 74676 topic_id: 30413 reply_id: 124044[/import]

i guess this’s caused by the new display.imageSuffix property?
http://docs.coronalabs.com/api/library/display/imageSuffix.html

so ["@iph3"] = 1 and ["@ipa2"] = 1 will always returen a ‘nil’ suffix name, that mean’s @iph3 and @ipa2 will never be used in this case.

Corona guys, could you please restore this feature? [import]uid: 74676 topic_id: 30413 reply_id: 128042[/import]

i guess this’s caused by the new display.imageSuffix property?
http://docs.coronalabs.com/api/library/display/imageSuffix.html

so ["@iph3"] = 1 and ["@ipa2"] = 1 will always returen a ‘nil’ suffix name, that mean’s @iph3 and @ipa2 will never be used in this case.

Corona guys, could you please restore this feature? [import]uid: 74676 topic_id: 30413 reply_id: 128042[/import]