From 98a45e371a4c7fca6e0e51576a354739fbc136ed Mon Sep 17 00:00:00 2001 From: aidik Date: Fri, 6 Jun 2014 00:40:21 +0200 Subject: [PATCH] Change in the XML output The older version generated "name of the book" from "author". The new version reads "name of the book" by "author" --- AudioBook2Podcast/Form1.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AudioBook2Podcast/Form1.cs b/AudioBook2Podcast/Form1.cs index cb2d2e5..6fe2ad0 100644 --- a/AudioBook2Podcast/Form1.cs +++ b/AudioBook2Podcast/Form1.cs @@ -189,7 +189,7 @@ private void podcast() podcast.WriteLine(" " + titulek + ""); podcast.WriteLine(" " + adresa + aport + "/" + Uri.EscapeDataString(f.ToString()) + ""); podcast.WriteLine(" http://www.aidik.com/"); - podcast.WriteLine(" " + cislo.ToString() + ". part of book " + args[1] + " from " + args[6] + "."); + podcast.WriteLine(" " + cislo.ToString() + ". part of book " + args[1] + " by " + args[6] + "."); podcast.WriteLine(" " + gooddate + ""); podcast.WriteLine(" " + adresa + aport + "/" + Uri.EscapeDataString(f.ToString()) + ""); podcast.WriteLine(" " + args[6] + "");