From: <sa...@us...> - 2010-08-02 19:43:22
|
Revision: 3696 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=3696&view=rev Author: saamand Date: 2010-08-02 19:43:16 +0000 (Mon, 02 Aug 2010) Log Message: ----------- - LRC file in music tag will always be used - Couple of minor fixes and text edits Modified Paths: -------------- trunk/plugins/MyLyrics/My Lyrics/MyLyrics Configuration/MyLyricsSetup.Designer.cs trunk/plugins/MyLyrics/My Lyrics/MyLyrics.cs trunk/plugins/MyLyrics/My Lyrics/change log.txt Modified: trunk/plugins/MyLyrics/My Lyrics/MyLyrics Configuration/MyLyricsSetup.Designer.cs =================================================================== --- trunk/plugins/MyLyrics/My Lyrics/MyLyrics Configuration/MyLyricsSetup.Designer.cs 2010-08-02 19:15:45 UTC (rev 3695) +++ trunk/plugins/MyLyrics/My Lyrics/MyLyrics Configuration/MyLyricsSetup.Designer.cs 2010-08-02 19:43:16 UTC (rev 3696) @@ -785,7 +785,7 @@ this.cbMusicTagAlwaysCheck.Name = "cbMusicTagAlwaysCheck"; this.cbMusicTagAlwaysCheck.Size = new System.Drawing.Size(216, 17); this.cbMusicTagAlwaysCheck.TabIndex = 7; - this.cbMusicTagAlwaysCheck.Text = "Always use lyric in music tag (if available)"; + this.cbMusicTagAlwaysCheck.Text = "Always use plain lyric from tag (if available)"; this.cbMusicTagAlwaysCheck.UseVisualStyleBackColor = true; this.cbMusicTagAlwaysCheck.Leave += new System.EventHandler(this.WriteMediaPortalXML); // @@ -797,7 +797,7 @@ this.cbMusicTagWrite.Name = "cbMusicTagWrite"; this.cbMusicTagWrite.Size = new System.Drawing.Size(203, 17); this.cbMusicTagWrite.TabIndex = 6; - this.cbMusicTagWrite.Text = "Write newly found lyrics into music tag"; + this.cbMusicTagWrite.Text = "Write newly found lyrics to music tag"; this.cbMusicTagWrite.UseVisualStyleBackColor = true; this.cbMusicTagWrite.Leave += new System.EventHandler(this.WriteMediaPortalXML); // Modified: trunk/plugins/MyLyrics/My Lyrics/MyLyrics.cs =================================================================== --- trunk/plugins/MyLyrics/My Lyrics/MyLyrics.cs 2010-08-02 19:15:45 UTC (rev 3695) +++ trunk/plugins/MyLyrics/My Lyrics/MyLyrics.cs 2010-08-02 19:43:16 UTC (rev 3696) @@ -1611,7 +1611,7 @@ #region 1) LRC in music tag - if (_AutomaticReadFromMusicTag && g_Player.IsRadio == false + if (g_Player.IsRadio == false && _CurrentTrackTag != null && ((_CurrentTrackTag.Lyrics.Length != 0 && (_SimpleLrc = @@ -1650,7 +1650,7 @@ #region 3) Search the Internet for a LRC - if (_useLyricWiki && Setup.IsMember("LrcFinder")) + if (_useLrcFinder && Setup.IsMember("LrcFinder")) { _lyricsFound = false; Modified: trunk/plugins/MyLyrics/My Lyrics/change log.txt =================================================================== --- trunk/plugins/MyLyrics/My Lyrics/change log.txt 2010-08-02 19:15:45 UTC (rev 3695) +++ trunk/plugins/MyLyrics/My Lyrics/change log.txt 2010-08-02 19:43:16 UTC (rev 3696) @@ -1,4 +1,4 @@ -Release notes to MyLyrics 1.5.0.0 +Release notes to MyLyrics 1.5.1.0 MyLyrics displays the lyric of the currently played song inside MediaPortal. The plugin can show LRC's and plain lyrics. It uses both musictags and online searches to find lyrics. @@ -52,6 +52,8 @@ * Fix: hiding/showing controls order so that for example done text doesn't show over not done * Fix: hiding image on stop playback * Fix: improved browsing through all the screens + + * Fix: long operations called from threads are now in background workers for nice cancellation * Fix: improved reading lyrics from tag * Fix: proper message when there is no enough data for search This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |