Search found 47 matches

by bobino
Sun Nov 22, 2009 9:48 am
Forum: Support
Topic: default column sort
Replies: 4
Views: 2315

Re: default column sort

no idea ?
by bobino
Thu Nov 19, 2009 5:15 pm
Forum: Support
Topic: plugin menuCommandFor issue
Replies: 63
Views: 30468

Re: plugin menuCommandFor issue

hi Conor,

how can I create, add and retrieve a folder in the collection list ?

thks
by bobino
Sun Nov 15, 2009 5:21 pm
Forum: Bug Reports
Topic: french translation mistake
Replies: 1
Views: 2957

french translation mistake

hi,

there is a small french translation mistake for "Make Columns Default" which is tranlated with "utiliser la taille par defaut des colonnes" instead of something like "Utiliser comme colonnes par défaut"
:D
by bobino
Sun Nov 15, 2009 10:31 am
Forum: Support
Topic: default column sort
Replies: 4
Views: 2315

default column sort

hi,

when choosing "make default column", the column which is sorted is not taken into account.
when applying default column, the sorted column is always the "title column".

is it possible to keep sorted column for the default configuration ?

thks
by bobino
Sun Oct 25, 2009 9:03 am
Forum: Support
Topic: plugin menuCommandFor issue
Replies: 63
Views: 30468

Re: plugin menuCommandFor issue

Conor wrote:
Would it be possible to create a smart list
No, the smart lists have to many variables and intricacies to be able to create programmatically, it's linked directly to the interface.
even i wan't to create a smartlist on only one condition : field "x" = string "y" ?
by bobino
Thu Oct 22, 2009 3:12 pm
Forum: Support
Topic: plugin menuCommandFor issue
Replies: 63
Views: 30468

Re: plugin menuCommandFor issue

Thks Conor, Regarding collections, i'm trying the method to create a collection. The created collection is an excluded collection, is it possible to add an included collection ? I would like to be able to add an entry of the Library to a collection, could you provide a method to do that ? i can do i...
by bobino
Wed Oct 21, 2009 4:32 pm
Forum: Support
Topic: plugin menuCommandFor issue
Replies: 63
Views: 30468

Re: plugin menuCommandFor issue

hi , when i try to remove a link, it seems ok, it doesn't appear any more. But if i close Bookpedia and relaunch it, links i've juste removed are present. NSMutableSet *linkSet = [entryTobeModified valueForKey:@"linksSet"]; [linkSet removeObject:linksToBeRemove]; it is like modifications a...
by bobino
Mon Oct 12, 2009 6:32 am
Forum: Support
Topic: plugin menuCommandFor issue
Replies: 63
Views: 30468

Re: plugin menuCommandFor issue

Yes,
if i want to add a link, i need to create an MOlink object.
I can't do it without MOLink definition? Am i wrong ?
by bobino
Sat Oct 10, 2009 1:28 am
Forum: Support
Topic: plugin menuCommandFor issue
Replies: 63
Views: 30468

Re: plugin menuCommandFor issue

hi Conor,

i try to modify programmatically links for an entry. it seems that Link is a MOLink class.
could you provide the definition of the MOLink class in order to be able to modified links ?

thks (again)
by bobino
Thu Oct 08, 2009 4:52 pm
Forum: Support
Topic: plugin menuCommandFor issue
Replies: 63
Views: 30468

Re: plugin menuCommandFor issue

nice.

would it be possible to create a smart list ?
by bobino
Mon Oct 05, 2009 3:55 pm
Forum: Support
Topic: plugin menuCommandFor issue
Replies: 63
Views: 30468

Re: plugin menuCommandFor issue

hi Conor,

it works very well i just added a declaration for MOCollection :

Code: Select all

@interface MOCollection : NSObject
@end
i suppose there is a method to add a new collection ?

thks
by bobino
Thu Sep 10, 2009 4:45 am
Forum: Support
Topic: plugin menuCommandFor issue
Replies: 63
Views: 30468

Re: plugin menuCommandFor issue

Conor wrote:No way to add it to another collection but the selected collection, I'll look at expanding the plug-in interface to include that possibility for you.
i Conor, any news about that point ? this will be very very usefull ....

thks
by bobino
Tue Sep 01, 2009 3:31 pm
Forum: Support
Topic: Help : making of plugin for aladdin
Replies: 3
Views: 2158

Re: Help : making of plugin for aladdin

Hi, return a NSDate instead of a NSString and format it yourself: NSString *releaseDate = [temp_info stringBetween:@"</a> | " and:@"</td></tr>"]; if (releaseDate) NSDateFormatter *inputFormatter = [[NSDateFormatter alloc] init]; [inputFormatter setDateFormat:@"MM/yyyy"]...
by bobino
Mon Aug 03, 2009 10:24 am
Forum: Support
Topic: plugin menuCommandFor issue
Replies: 63
Views: 30468

Re: plugin menuCommandFor issue

hi,
when i add a book through the plugin with values for fields "borrowedBy", "borrowedOn" and "dueDate", the book doesn't appear in the borrowed list. What do i need to do for that ?
thks
by bobino
Wed Jul 29, 2009 3:10 am
Forum: Support
Topic: plugin menuCommandFor issue
Replies: 63
Views: 30468

Re: plugin menuCommandFor issue

Hi Conor,

i test to add 1500 books with covers using the plugin method MenuCommandFor. Covers are localy on my HDD.
Bookpedia is going out of memory and crash. It seems that memory allocated to copy covers is not released during your adding process.