From: <che...@us...> - 2007-11-28 22:59:54
|
Revision: 1101 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=1101&view=rev Author: chef_koch Date: 2007-11-28 14:59:51 -0800 (Wed, 28 Nov 2007) Log Message: ----------- fixed: it is possible to change the imagefile in file details dialog, even if default folder/filenames were used Modified Paths: -------------- trunk/plugins/myGUIProgramsAlt/GUIProgramsAlt/Design/FileDetailsForm.cs trunk/plugins/myGUIProgramsAlt/README.txt Modified: trunk/plugins/myGUIProgramsAlt/GUIProgramsAlt/Design/FileDetailsForm.cs =================================================================== --- trunk/plugins/myGUIProgramsAlt/GUIProgramsAlt/Design/FileDetailsForm.cs 2007-11-28 19:34:14 UTC (rev 1100) +++ trunk/plugins/myGUIProgramsAlt/GUIProgramsAlt/Design/FileDetailsForm.cs 2007-11-28 22:59:51 UTC (rev 1101) @@ -74,13 +74,11 @@ txtFilename.Text = m_CurFile.Filename; if (ProgramUtils.UseThumbsDir()) - { txtImageFile.Text = ProgramUtils.GetFileImage(CurrentApplicationItem, CurrentFileItem); - } else - { txtImageFile.Text = m_CurFile.Imagefile; - } + txtImageFile.ReadOnly = ProgramUtils.UseThumbsDir(); + btnImageFile.Visible = !ProgramUtils.UseThumbsDir(); FileItemToGenre(); manufacturerComboBox.SelectedValue = CurrentFileItem.ManufacturerId; Modified: trunk/plugins/myGUIProgramsAlt/README.txt =================================================================== --- trunk/plugins/myGUIProgramsAlt/README.txt 2007-11-28 19:34:14 UTC (rev 1100) +++ trunk/plugins/myGUIProgramsAlt/README.txt 2007-11-28 22:59:51 UTC (rev 1101) @@ -25,11 +25,17 @@ ------------------ -- Known Issues -- ------------------ + - When adding a new Application item, a new folder called "new item" in thumbs\MyProgramsAlt is created. + - bei mame werden auch die Konsolen-roms importiert (quasi die betriebssystem images der konsolen), das m\xFCsste auch noch raus... schau mal in den thread, ich habe eine anleitung verfasst, da siehst du was ich meine + --------------- -- ChangeLog -- --------------- +v0.1.0.11 +2007-11-28: chefkoch : fixed: it is possible to change the imagefile in file details dialog, even if default folder/filenames were used + v0.1.0.10 2007-11-18: chefkoch : added: option to set an application item as root, so it is possible to show it's files in root view together with other application items This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |