Thread Locked This thread is locked - replies are not allowed.



Permlink Replies: 124 - Pages: 9 [ Previous | 1 ... 3 4 5 6 7 8 9 | Next ] - Last Post: 29 Oct 25, 19:50 Last Post By: davidekholm Threads: [ Previous | Next ]
davidekholm

Posts: 3,800
Registered: 18-Oct-2002
Re: jAlbum 38 release candidate for testing
Posted: 19 Oct 25, 22:38   in response to: RobM in response to: RobM
RobM wrote:
I get an error using
obj.containsName("Dor")
with or without an equals true.

Ah, you're trying to call containsName() on a non folder. containsName() checks whether a folder has a child called a certain name. What you want to write is probably:
obj.name.contains("Dor")
I've improved the error message now.

Not sure if the API link will help casual users as the examples use Groovy shortcuts like obj.comment, which might be confusing. I expect most users would probably post a question on how to make a specific custom view.

I partly agree: Users can use plain Java syntax as well. The obj.xyz format is just a shorthand for obj.setXyz() or obj.getXyz(). Users don't need to

I hope we will see View contributions from others :-)
davidekholm

Posts: 3,800
Registered: 18-Oct-2002
Re: jAlbum 38 release candidate for testing
Posted: 19 Oct 25, 22:38   in response to: RobM in response to: RobM
RobM wrote:
The custom filter has two entries for 'Has keywords'

Fixed :-)
RobM

Posts: 3,877
Registered: 4-Aug-2006
Re: jAlbum 38 release candidate for testing
Posted: 20 Oct 25, 00:20   in response to: davidekholm in response to: davidekholm
davidekholm wrote:
RobM wrote:
I get an error using
obj.containsName("Dor")
with or without an equals true.

Ah, you're trying to call containsName() on a non folder. containsName() checks whether a folder has a child called a certain name. What you want to write is probably:

obj.name.contains("Dor")
I've improved the error message now.
Thanks.
davidekholm

Posts: 3,800
Registered: 18-Oct-2002
Re: jAlbum 38 release candidate for testing
Posted: 20 Oct 25, 01:21   in response to: RobM in response to: RobM
Attachment texts.properties (88.4 KB)
New release candidate out.

Changes:
  • Tightened case where changes to script didn't take
  • All views now have a basic UI, also showing where it's sourced (what folder delivers objects)
  • Alphabetical view now allows group by either file name, title or comment
davidekholm

Posts: 3,800
Registered: 18-Oct-2002
Re: jAlbum 38 release candidate for testing
Posted: 20 Oct 25, 01:37   in response to: davidekholm in response to: davidekholm
Question: If a view ends up empty, shall I delete it from the final album?
JeffTucker

Posts: 8,009
Registered: 31-Jan-2006
Re: jAlbum 38 release candidate for testing
Posted: 20 Oct 25, 01:52   in response to: davidekholm in response to: davidekholm
davidekholm wrote:
Question: If a view ends up empty, shall I delete it from the final album?

My gut reaction is to say, "yes." If someone wants a page just of new images, for example, but there aren't any, it's probably pointless to produce an empty page.

But I'll wager some user will be able to come up with a perfect counter-example. ;)
ronvanrossum

Posts: 66
Registered: 16-Jul-2014
Re: jAlbum 38 release candidate for testing
Posted: 20 Oct 25, 08:39   in response to: davidekholm in response to: davidekholm
davidekholm wrote:
New release candidate out.

Dutch translation for rc18 attached

Edited by: ronvanrossum on 21 Oct 2025, 08:27
RobM

Posts: 3,877
Registered: 4-Aug-2006
Re: jAlbum 38 release candidate for testing
Posted: 20 Oct 25, 09:03   in response to: davidekholm in response to: davidekholm
davidekholm wrote:
Question: If a view ends up empty, shall I delete it from the final album?
My vote is yes too.
davidekholm

Posts: 3,800
Registered: 18-Oct-2002
Re: jAlbum 38 release candidate for testing
Posted: 20 Oct 25, 10:47   in response to: ronvanrossum in response to: ronvanrossum
ronvanrossum wrote:
davidekholm wrote:
New release candidate out.

Dutch translation attached

Thanks Ron!
davidekholm

Posts: 3,800
Registered: 18-Oct-2002
Re: jAlbum 38 release candidate for testing
Posted: 20 Oct 25, 10:54   in response to: RobM in response to: RobM
RobM wrote:
davidekholm wrote:
Question: If a view ends up empty, shall I delete it from the final album?
My vote is yes too.

I go with that. beta core updated
davidekholm

Posts: 3,800
Registered: 18-Oct-2002
Re: jAlbum 38 release candidate for testing
Posted: 20 Oct 25, 14:31   in response to: davidekholm in response to: davidekholm
rc18 now available as a beta core update, new texts as well (at https://jalbum.net/download/beta/texts.properties)

Changes:
  • Added back/forward navigation buttons to Explore view
  • Fixed issue where navigating to an album object using the SearchBar didn't work if the target object was already present in the current folder
  • Changed icon for custom filter views
  • Internal links can now be right-clicked and the new "Show target" menu item will take you to the internal target
davidekholm

Posts: 3,800
Registered: 18-Oct-2002
Re: jAlbum 38 release candidate for testing
Posted: 21 Oct 25, 22:57   in response to: davidekholm in response to: davidekholm
rc20 now available as a beta core file. I hope and think this is the last release candidate

Changes:
  • Folders and views now accept attached representing images as well. Please check that your skins don't break with attached representing images
  • The representing image of views is now correctly gathered by first processing the view (previously from unprocessed view). Please report performance issues! A refresh (F5) triggers reprocessing
  • The equality of two AlbumObjects is now based on the full path from the root instead of just from the file name. The new equals() implementation should be correct, but I can't foresee what other bugs this might reveal... Things works while testing here but I appreciate if you also try to break this version
  • Attached images are scaled to 2000x2000 bounds for performance (upon being attached)
  • Improved error reporting of custom filter views crash (script errors)
JeffTucker

Posts: 8,009
Registered: 31-Jan-2006
Re: jAlbum 38 release candidate for testing
Posted: 21 Oct 25, 23:05   in response to: davidekholm in response to: davidekholm
I'll do some checking.

But is there any chance that the recently-reported bug about .info files can be addressed in this release? That one is particularly insidious - really caught one user off-guard, and took me a while to track down. I'm surprised we haven't heard about it before.
JeffTucker

Posts: 8,009
Registered: 31-Jan-2006
Re: jAlbum 38 release candidate for testing
Posted: 21 Oct 25, 23:24   in response to: JeffTucker in response to: JeffTucker
I haven't seen any smoke or flames. Using RI's for a folder may be a bridge too far, but it's largely working. In a weird way, it replicates the existing routine in which you add an image to a folder, drag it to the Thumbnail box, then exclude it. Pretty much the same effect.

The only odd thing occurs if you attach an image to a folder, then open the folder and drag a thumbnail over to the Thumbnail box on the right. The action is accepted, but it's ignored when you make the album. And when you return to that folder, the Thumbnail box is once again empty, as it should be.

One minor annoyance when attaching an RI - the file chooser starts at the root of the file system on the PC. It should start in Pictures or the most recent location, if there was one. That's what the usual "Add" file chooser does.
RobM

Posts: 3,877
Registered: 4-Aug-2006
Re: jAlbum 38 release candidate for testing
Posted: 21 Oct 25, 23:36   in response to: JeffTucker in response to: JeffTucker
JeffTucker wrote:
I'll do some checking.

But is there any chance that the recently-reported bug about .info files can be addressed in this release? That one is particularly insidious - really caught one user off-guard, and took me a while to track down. I'm surprised we haven't heard about it before.

A bit like this post from three years ago
https://jalbum.net/forum/message.jspa?messageID=358943#358943
Legend
Forum admins
Helpful Answer
Correct Answer

Point your RSS reader here for a feed of the latest messages in all forums