Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - nostra

Pages: 1 2 3 4 [5] 6 7 8 9 10 ... 87
81
Development / Re: File tagging
« on: November 02, 2013, 10:27:12 pm »
No, PVD does not currently support filling video tags.

82
Support / Re: IMDb people plugin or PVD problem
« on: November 02, 2013, 11:45:53 am »
Was "Rabbit Hole" in her Filmography after update? What are your "Overwrite" options for IMDB plugins? Is the problem reproducible?

83
Support / Re: Database File Location
« on: October 31, 2013, 07:46:52 pm »
Just copy the file to the desired location and open it from there.

84
Support / Re: [Error] Range check error
« on: October 28, 2013, 10:47:35 pm »
There seems to be a problem parsing certain types of File names. Could you try disabling "Smart episodes detection" and "Smart multiple disc detection" in File Scanner preferences?

85
Feature Suggestions / Re: Mass editor issues
« on: October 28, 2013, 10:45:15 pm »
Quote
What needs to happen is, any time a new field is chosen from the "Field" drop-down list, the "Value" box should be cleared out so it doesn't retain the previous value.

OK, I'll do this.

The old mass editor could only change a subset of fields that could fit in a window. Implementing such functionality for all fields, as it is now in version 1, would be not so great.

86
Support / Re: Seen date
« on: October 27, 2013, 10:49:20 am »
How do you enter the seen date?

87
Support / Re: [Error] Range check error
« on: October 24, 2013, 06:33:44 pm »
What are the exact steps to reproduce the problem?
If you receive a bug report, please send it to me.

88
Support / Re: File Scanner and imdb
« on: October 24, 2013, 06:32:56 pm »
Well, I am the only one who you could bribe if you really willing to do so :)

89
Support / Re: Amazon plugin stoped working
« on: October 23, 2013, 10:10:35 pm »
Please update your Amazon plugins. The issue should be fixed there.

90
Development / Re: Character encoding for script
« on: October 22, 2013, 06:42:38 pm »
There seem to be multiple problems (the program was never tested with such languages):
1. There is a problem when passing data to the script. I will fix it in next update
2. The pascal script compiler does not accept non ANSI characters. This can't be fixed, unless the pascal script compiler is updated. As a workaround you could try saving values in japanese in a file and load them in runtime. (but the first problem must be fixed for this to work)

91
Support / Re: File Scanner and imdb
« on: October 22, 2013, 06:38:12 pm »
No,  it is currently not possible, but could be implemented in future versions.

92
Support / Re: Selecting text
« on: October 20, 2013, 06:08:03 pm »
I will check what went wrong there and will try to fix the problem asap.

93
Development / Re: Character encoding for script
« on: October 20, 2013, 05:53:37 pm »
Make sure to provide a correct code page in GetCodePage function
Code: [Select]
function GetCodePage : Cardinal;
begin
 Result := CODE_PAGE;
end;

94
Support / Re: Apostrophe catastrophe
« on: October 20, 2013, 05:50:50 pm »
It will actually fix the studio problem and leave only one Studio, setting it for all appropriate records.

95
Support / Re: Apostrophe catastrophe
« on: October 20, 2013, 01:36:21 am »
Only new records are added correctly. The old ones can't easily be fixed, unfortunately. You can remove those duplicates and fix the database by executing the following SQL statements:
Code: [Select]
CREATE VIEW PRIMEVALUES ("vid", "value") AS
SELECT MIN(EX1."sid") minsid, EX1."value" FROM STUDIOS EX1
INNER JOIN STUDIOS EX2 ON (EX1."sid" <> EX2."sid" AND EX2."value" = EX1."value")
GROUP BY EX1."value"
ORDER BY minsid
Code: [Select]
CREATE VIEW DUPLICATES ("dupid", "primeid") AS
SELECT "sid", "vid" FROM STUDIOS
INNER JOIN PRIMEVALUES ON (STUDIOS."value" = PRIMEVALUES."value")
WHERE (STUDIOS."sid" <> PRIMEVALUES."vid")
Code: [Select]
UPDATE MOVIESTUDIOS SET "sid" = (SELECT FIRST 1 "primeid" FROM DUPLICATES WHERE "dupid" = "sid")
WHERE EXISTS (SELECT FIRST 1 1 FROM DUPLICATES WHERE "dupid" = "sid")
Code: [Select]
DELETE FROM STUDIOS WHERE EXISTS (SELECT FIRST 1 1 FROM DUPLICATES WHERE "dupid" = "sid")
You can do this by starting PVD with -debug command line parameter and selecting Personal Video Database -> Help -> SQL from the menu

96
Development / Re: Script or Plugin
« on: October 18, 2013, 09:32:21 pm »
Plugins are more powerful, but demand more programming knowledge. Scripts are easier to program. You can only create single record import scripts and no export scripts.

97
Support / Re: IMDB People plugin
« on: October 15, 2013, 10:56:58 pm »
The issue should be fixed in 0.3.0.19

98
Changelogs / 1.0.2.6
« on: October 15, 2013, 06:54:56 pm »
Changelog:

FeatureA possibility to add values instead of replacing in Mass Editor
FeatureOption: Update record on link click
FeatureOption: Best match selection after timeout
Improved-checkurl switch to enable URL comparison while checking for record existence
Changed.jpeg is now accepted in image selection dialogs
ChangedAdded Finnish and Greek translations
FixedGrouping by "Borrower"
FixedPVD started on disconnected monitors
Fixed"Ignore case" option sometimes produced duplicate list values
FixedClearing date fields for people
FixedSome minor search fixes
FixedScreenshots were not visible after automatic creation
FixedIssue with apostrophes in database path
FixedFixed some issues with handling errors in plugins

Downloads

99
Support / Re: IMDB movie information plugin partially broken
« on: October 14, 2013, 06:53:30 pm »
Done

100
Support / Re: IMDB movie information plugin partially broken
« on: October 14, 2013, 05:30:05 pm »
Well, it's a preference thing. I can change the look of generated data to your version if people like it better.

Pages: 1 2 3 4 [5] 6 7 8 9 10 ... 87