Skip to content

Commit

Permalink
Merge pull request #44 from rat4/patch
Browse files Browse the repository at this point in the history
lyrix_at: Fix end of lyric (thanks Pavel)
  • Loading branch information
sahib committed Feb 8, 2014
2 parents e26d321 + f5bde79 commit c3c6ed5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/intern/lyrics/lyrix_at.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ static void parse_lyrics_page (const gchar * url, GList ** result_list, cb_objec
gchar * lyr_begin = strstr (lyrcache->data,LYRIC_BEGIN);
if (lyr_begin != NULL)
{
gchar * lyr_endin = strstr (lyr_begin,"<div>");
gchar * lyr_endin = strstr (lyr_begin,"</div>");
if (lyr_endin != NULL)
{
gchar * lyrics = copy_value (lyr_begin,lyr_endin);
Expand Down

3 comments on commit c3c6ed5

@matiasdelellis
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey @sahib
The current version is 1.0.5?.
Remember update CMakeLists.txt and use make dist (No simple github tags).. 😉

Regards

@sahib
Copy link
Owner Author

@sahib sahib commented on c3c6ed5 Feb 10, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@matiasdelellis: Sorry, totally forgot to push it. Will do. Yes, it's 1.0.5.

Github does not support any longer uploading arbitary files, so "make dist" and uploading the tarball is not possible anymore.

@matiasdelellis
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey ..
Github there was removed the option.. 😡 (hate them!. I had to upload to google code temporarily), but now added back. 😃

You got to create the new tag on "releases"> "Draf a new release".. then you have to drag the files where it says:
"Attach binaries for this release by dropping them here."

Regards.

Please sign in to comment.