View Single Post
Old 06-13-2025, 11:41 AM   #17
ownedbycats
Custom User Title
ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.
 
ownedbycats's Avatar
 
Posts: 11,049
Karma: 75555555
Join Date: Oct 2018
Location: Canada
Device: Kobo Libra H2O, formerly Aura HD
I did some editing to remove 0s from both omnibuses and non-omnibuses. Worked as expected.

Code:
program:
	if '^omnibus$' inlist_field '#admintags' 	
		&& $series_index !=#0 
		then
		series_start = floor($series_index);
		fraction = fractional_part($series_index);
		if fraction ==# 0 then
			result = series_start
		else
			series_end = floor(fraction*100);
			if series_end >=# 0 then
				result = series_start & '-' & series_end
			fi
		fi
		elif 
			$series_index ==#0 
		then 
			result = ''
	else
		result = $series_index
	fi;
	result
Note the icons on the last column - signifies omnibus.

Click image for larger version

Name:	2025-06-13 12_44_14-calibre — __ My Books __ Series __ Series __.png
Views:	34
Size:	25.9 KB
ID:	216203

Click image for larger version

Name:	2025-06-13 12_40_06-Template tester dialog number 1 (multiple template dialogs allowed).png
Views:	29
Size:	11.0 KB
ID:	216202

I have just one book that uses 6.1 for 6-10 (Calibre removes the trailing 0.) Suggestions? I was thinking of splitting it as I have a few books from the series in physical format anyways.

Last edited by ownedbycats; 06-13-2025 at 11:49 AM.
ownedbycats is offline   Reply With Quote