Skip to content

Commit

Permalink
V 3.0.0 Terminada
Browse files Browse the repository at this point in the history
  • Loading branch information
FedeManzano committed Dec 20, 2023
1 parent df9234a commit c9c1599
Show file tree
Hide file tree
Showing 164 changed files with 491 additions and 179,074 deletions.
Binary file not shown.
Binary file not shown.
Binary file modified .vs/MediaPlayer/v17/.suo
Binary file not shown.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ Toda la información de la utilización del reproductoror aquí.

Desde este enlace podemos descargar el instalador del reproductor.

:arrow_down: [Descarga Instalador v2.5.3 32 Bits](https://mega.nz/file/5RVzlZAJ#qXCj2Hqt6S9h7CTT59D8jn7qh_5LQHuOnYSAWH-o9qk)
:arrow_down: [Descarga Instalador v3.0.0 32 Bits](https://mega.nz/file/UUtEyKyA#JU3B77Yjk1r9EjLBaT9htchKpgYewk8kVMtzsCvdwXg)

:arrow_down: [Descarga Instalador v2.5.3 64 Bits](https://mega.nz/file/VNtSCDyT#dzuM746-4SdvtUAdA7fB8EgpPOfyGMF4NOCqefASkTA)
:arrow_down: [Descarga Instalador v3.0.0 64 Bits](https://mega.nz/file/IRMwBJzB#NdRlIjXmTbzb9FQhL26mkpfumHftY51v9Q57bL5eDv4)

### Formatos de audio (Esta versión)

Expand All @@ -52,12 +52,12 @@ Sistemas operativos Windows a partir de la versión 7 en adelante con arquitectu
256 MB de memoría.


### V2.5.0 Mejoras desde la versión V1.5.0
### V3.0.0 Mejoras desde la versión V2.5.0

* Mejora la estabilidad.
* Se mejoró la reproducción random de los diferentes listados de canciones.
* Generación de listas de reproducción de regalo al principio de cada mes.
* V2.5.2 mejora en la gestión de favoritos.
* Se incorpora la posibilidad de realizar respaldos del estado del reproductor.


### Autor
Expand Down
2 changes: 1 addition & 1 deletion ReproductorMusicaTagEditables/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ private void sliderLineTime_MouseLeftButtonDown(object sender, MouseButtonEventA

private void Menu_DocClick(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://github.com/FedericoManzano/media-player/blob/master/ReproductorMusicaTagEditables/Manual/Manual.md");
System.Diagnostics.Process.Start("https://github.com/FedeManzano/media-player/blob/master/ReproductorMusicaTagEditables/Manual/Manual.md");
}

private void Window_Loaded(object sender, RoutedEventArgs e)
Expand Down
6 changes: 3 additions & 3 deletions ReproductorMusicaTagEditables/Manual/Manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ Para descargar el reproductor lo podemos hacer desde los siguientes enlaces:

Dependiendo la arquitectura de su sistema operativo deberán seleccionar una de estas dos opciones:

:arrow_down: [Descarga Instalador v3.0.0 32 Bits](https://mega.nz/file/5RVzlZAJ#qXCj2Hqt6S9h7CTT59D8jn7qh_5LQHuOnYSAWH-o9qk)
:arrow_down: [Descarga Instalador v3.0.0 32 Bits](https://mega.nz/file/UUtEyKyA#JU3B77Yjk1r9EjLBaT9htchKpgYewk8kVMtzsCvdwXg)

:arrow_down: [Descarga Instalador v3.0.0 64 Bits](https://mega.nz/file/VNtSCDyT#dzuM746-4SdvtUAdA7fB8EgpPOfyGMF4NOCqefASkTA)
:arrow_down: [Descarga Instalador v3.0.0 64 Bits](https://mega.nz/file/IRMwBJzB#NdRlIjXmTbzb9FQhL26mkpfumHftY51v9Q57bL5eDv4)


El resultado de la descarga nos va a dejar un archivo llamado `MediaPlayer.zip`.
Expand Down Expand Up @@ -332,7 +332,7 @@ Lo mismo que pasa con los álbumes pasa con los géneros, los artistas y listas
Para reproducir las canciones de un artistas simplemente el usuario accede a la página del artista que le interesa y le da al botón **Reproducir Todas**.


![Reproducir](https://github.com/FedeManzano/media-player/blob/master/ReproductorMusicaTagEditables/Manual/Imagenes/repoducir1.png?raw=true)
![Reproducir](https://github.com/FedeManzano/media-player/blob/master/ReproductorMusicaTagEditables/Manual/Imagenes/rerpoducir1.png?raw=true)


#### Reproducir álbum
Expand Down
2 changes: 1 addition & 1 deletion ReproductorMusicaTagEditables/MediaPlayer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>47</ApplicationRevision>
<ApplicationRevision>50</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<PublishWizardCompleted>true</PublishWizardCompleted>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -308,14 +308,14 @@ public static Dictionary<string,List<Cancion>> GenerarListasDinamicasFavoritos (
foreach(string p in paths)
{
string nombre = ExtraerNombreArchivo(p);
//if (EsMenorQueLAFechaActual(nombre))
//{
if (EsMenorQueLAFechaActual(nombre))
{
List<Cancion> l = JsonConvert.DeserializeObject<List<Cancion>>(File.ReadAllText(p));
if (l != null && l.Any())
{
dicCanciones[nombre] = l;
}
//}
}
}
return dicCanciones;
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="ReproductorMusicaTagEditables.application" version="1.0.0.42" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
<assemblyIdentity name="ReproductorMusicaTagEditables.application" version="1.0.0.49" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="ReproductorMusicaTagEditables" asmv2:product="ReproductorMusicaTagEditables" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" />
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
<framework targetVersion="4.8" profile="Full" supportedRuntime="4.0.30319" />
</compatibleFrameworks>
<dependency>
<dependentAssembly dependencyType="install" codebase="ReproductorMusicaTagEditables.exe.manifest" size="14400">
<assemblyIdentity name="ReproductorMusicaTagEditables.exe" version="1.0.0.42" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" type="win32" />
<dependentAssembly dependencyType="install" codebase="ReproductorMusicaTagEditables.exe.manifest" size="14399">
<assemblyIdentity name="ReproductorMusicaTagEditables.exe" version="1.0.0.49" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" type="win32" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>NaMZRtrENRKTrvnzJy2osHdpTAZQFVlKDnLT21y1M/A=</dsig:DigestValue>
<dsig:DigestValue>ehc9ltBNwHoluA4EDQll6CZ1m9X4uyHfPfXVVkkzK8M=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<asmv1:assemblyIdentity name="ReproductorMusicaTagEditables.exe" version="1.0.0.42" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" type="win32" />
<asmv1:assemblyIdentity name="ReproductorMusicaTagEditables.exe" version="1.0.0.49" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" type="win32" />
<description asmv2:iconFile="nota-musical.ico" xmlns="urn:schemas-microsoft-com:asm.v1" />
<application />
<entryPoint>
Expand Down Expand Up @@ -199,14 +199,14 @@
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="ReproductorMusicaTagEditables.exe" size="1424824">
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="ReproductorMusicaTagEditables.exe" size="714168">
<assemblyIdentity name="ReproductorMusicaTagEditables" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>Y8yUulYVq8DvCacq1DFHN+zGb3cSkpHR0Xmu5NXDn7M=</dsig:DigestValue>
<dsig:DigestValue>BJ1w5rM0T/m0ZCXxSvbi7UcKPhZFdtaFfh/Fi1zNVjc=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
Expand Down
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit c9c1599

Please sign in to comment.