mirror of
https://github.com/ZuneDev/PyZuneResourcesServer.git
synced 2026-07-27 13:12:47 -07:00
Initial commit
This commit is contained in:
+95
@@ -0,0 +1,95 @@
|
||||
# Byte-compiled / optimized / DLL files
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
|
||||
# C extensions
|
||||
*.so
|
||||
|
||||
# Distribution / packaging
|
||||
.Python
|
||||
env/
|
||||
build/
|
||||
develop-eggs/
|
||||
dist/
|
||||
downloads/
|
||||
eggs/
|
||||
.eggs/
|
||||
lib/
|
||||
lib64/
|
||||
parts/
|
||||
sdist/
|
||||
var/
|
||||
*.egg-info/
|
||||
.installed.cfg
|
||||
*.egg
|
||||
|
||||
# PyInstaller
|
||||
# Usually these files are written by a python script from a template
|
||||
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
||||
*.manifest
|
||||
*.spec
|
||||
|
||||
# Installer logs
|
||||
pip-log.txt
|
||||
pip-delete-this-directory.txt
|
||||
|
||||
# Unit test / coverage reports
|
||||
htmlcov/
|
||||
.tox/
|
||||
.coverage
|
||||
.coverage.*
|
||||
.cache
|
||||
nosetests.xml
|
||||
coverage.xml
|
||||
*,cover
|
||||
.hypothesis/
|
||||
|
||||
# Translations
|
||||
*.mo
|
||||
*.pot
|
||||
|
||||
# Django stuff:
|
||||
*.log
|
||||
local_settings.py
|
||||
|
||||
# Flask stuff:
|
||||
instance/
|
||||
.webassets-cache
|
||||
|
||||
# Scrapy stuff:
|
||||
.scrapy
|
||||
|
||||
# Sphinx documentation
|
||||
docs/_build/
|
||||
|
||||
# PyBuilder
|
||||
target/
|
||||
|
||||
# IPython Notebook
|
||||
.ipynb_checkpoints
|
||||
|
||||
# pyenv
|
||||
.python-version
|
||||
|
||||
# celery beat schedule file
|
||||
celerybeat-schedule
|
||||
|
||||
# dotenv
|
||||
.env
|
||||
|
||||
# virtualenv
|
||||
venv/
|
||||
ENV/
|
||||
.venv/
|
||||
|
||||
# Spyder project settings
|
||||
.spyderproject
|
||||
|
||||
# Rope project settings
|
||||
.ropeproject
|
||||
|
||||
# Visual Studio Code
|
||||
.vscode/
|
||||
.azure/
|
||||
.idea/
|
||||
@@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE
|
||||
@@ -0,0 +1,7 @@
|
||||
# PyZuneResourcesServer
|
||||
|
||||
This repository houses a community effort to recreate the Zune Marketplace resource server.
|
||||
|
||||
## Contributing
|
||||
|
||||
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
|
||||
@@ -0,0 +1,19 @@
|
||||
from flask import Flask, abort, send_from_directory
|
||||
|
||||
from locale import *
|
||||
|
||||
|
||||
app = Flask(__name__)
|
||||
|
||||
|
||||
@app.route(f"/<path:filepath>")
|
||||
def get_image(filepath: str):
|
||||
try:
|
||||
print(filepath)
|
||||
return send_from_directory("./static", filename=filepath, as_attachment=True)
|
||||
except FileNotFoundError:
|
||||
abort(404)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
app.run(port=80)
|
||||
@@ -0,0 +1,2 @@
|
||||
bind = "0.0.0.0:80"
|
||||
workers = 2
|
||||
@@ -0,0 +1,2 @@
|
||||
Flask>=1.0,<=1.1.2
|
||||
gunicorn; platform_system == "Linux"
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,244 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<FirmwareUpdates>
|
||||
<!-- Keel -->
|
||||
<FirmwareUpdate DeviceClass="1"
|
||||
FamilyID="0"
|
||||
HardwareID="USB\Vid_045e&Pid_0710&Rev_0100"
|
||||
Manufacturer="Microsoft"
|
||||
Name="Zune"
|
||||
Version="03.30.00039.00-00435"
|
||||
URL="KeelBaseline.cab">
|
||||
|
||||
<Metadata xml:lang="en-US">
|
||||
<Title>Zune firmware version 3.3</Title>
|
||||
<Description>
|
||||
<![CDATA[This required update enhances device functionality and performance.
|
||||
|
||||
For more information, go to www.zune.net/support.]]>
|
||||
</Description>
|
||||
<EULA>
|
||||
<![CDATA[This product is protected by U.S. and international copyright laws. Microsoft, Zune, and the Zune logo are trademarks of the Microsoft group of companies.]]>
|
||||
</EULA>
|
||||
</Metadata>
|
||||
|
||||
<Metadata xml:lang="fr-FR">
|
||||
<Title>Microprogramme Zune version 3.3</Title>
|
||||
<Description>
|
||||
<![CDATA[Cette mise à jour améliore le fonctionnement et les performances de l'appareil.
|
||||
|
||||
Pour plus d'informations, voir www.zune.net/support.]]>
|
||||
</Description>
|
||||
<EULA>
|
||||
<![CDATA[Ce programme est protégé par les lois internationales et américaines relatives au droit d'auteur. Microsoft, Zune et le logo Zune sont des marques du groupe de sociétés Microsoft.]]>
|
||||
</EULA>
|
||||
</Metadata>
|
||||
|
||||
<Metadata xml:lang="es-ES">
|
||||
<Title>Versión 3.3 del firmware de Zune</Title>
|
||||
<Description>
|
||||
<![CDATA[Esta actualización mejora la funcionalidad y el rendimiento del dispositivo.
|
||||
|
||||
Para obtener más información, visite www.zune.net/support.]]>
|
||||
</Description>
|
||||
<EULA>
|
||||
<![CDATA[Este producto está protegido por las leyes de derechos de autor estadounidenses e internacionales. Microsoft, Zune y el logotipo de Zune son marcas comerciales del grupo de compañías Microsoft.]]>
|
||||
</EULA>
|
||||
</Metadata>
|
||||
|
||||
<SupportedUpgradeBaseVersions>
|
||||
<UpgradeFrom Version="00.00.00000.00-00.00" />
|
||||
<UpgradeFrom Version="00.00.00000.00-00000" />
|
||||
<UpgradeFrom Version="01.00.00193.00-02.04" />
|
||||
<UpgradeFrom Version="01.01.00322.00-00309" />
|
||||
<UpgradeFrom Version="01.02.00434.00-00425" />
|
||||
<UpgradeFrom Version="01.03.00482.00-00425" />
|
||||
<UpgradeFrom Version="01.04.00485.00-00425" />
|
||||
<UpgradeFrom Version="02.01.01014.00-00425" />
|
||||
<UpgradeFrom Version="02.02.01040.00-00425" />
|
||||
<UpgradeFrom Version="02.03.01145.00-00435" />
|
||||
<UpgradeFrom Version="02.05.01614.00-00435" />
|
||||
<UpgradeFrom Version="03.00.00225.00-00435" />
|
||||
<UpgradeFrom Version="03.01.00050.00-00435" />
|
||||
<UpgradeFrom Version="03.20.00034.00-00435" />
|
||||
<UpgradeFrom Version="03.20.00035.00-00435" />
|
||||
</SupportedUpgradeBaseVersions>
|
||||
</FirmwareUpdate>
|
||||
|
||||
<!-- Scorpius -->
|
||||
<FirmwareUpdate DeviceClass="1"
|
||||
FamilyID="2"
|
||||
HardwareID="USB\Vid_045e&Pid_0710&Rev_0200"
|
||||
Manufacturer="Microsoft"
|
||||
Name="Zune"
|
||||
Version="03.30.00039.00-01620"
|
||||
URL="ScorpiusBaseline.cab">
|
||||
|
||||
<Metadata xml:lang="en-US">
|
||||
<Title>Zune firmware version 3.3</Title>
|
||||
<Description>
|
||||
<![CDATA[This required update enhances device functionality and performance.
|
||||
|
||||
For more information, go to www.zune.net/support.]]>
|
||||
</Description>
|
||||
<EULA>
|
||||
<![CDATA[This product is protected by U.S. and international copyright laws. Microsoft, Zune, and the Zune logo are trademarks of the Microsoft group of companies.]]>
|
||||
</EULA>
|
||||
</Metadata>
|
||||
|
||||
<Metadata xml:lang="fr-FR">
|
||||
<Title>Microprogramme Zune version 3.3</Title>
|
||||
<Description>
|
||||
<![CDATA[Cette mise à jour améliore le fonctionnement et les performances de l'appareil.
|
||||
|
||||
Pour plus d'informations, voir www.zune.net/support.]]>
|
||||
</Description>
|
||||
<EULA>
|
||||
<![CDATA[Ce programme est protégé par les lois internationales et américaines relatives au droit d'auteur. Microsoft, Zune et le logo Zune sont des marques du groupe de sociétés Microsoft.]]>
|
||||
</EULA>
|
||||
</Metadata>
|
||||
|
||||
<Metadata xml:lang="es-ES">
|
||||
<Title>Versión 3.3 del firmware de Zune</Title>
|
||||
<Description>
|
||||
<![CDATA[Esta actualización mejora la funcionalidad y el rendimiento del dispositivo.
|
||||
|
||||
Para obtener más información, visite www.zune.net/support.]]>
|
||||
</Description>
|
||||
<EULA>
|
||||
<![CDATA[Este producto está protegido por las leyes de derechos de autor estadounidenses e internacionales. Microsoft, Zune y el logotipo de Zune son marcas comerciales del grupo de compañías Microsoft.]]>
|
||||
</EULA>
|
||||
</Metadata>
|
||||
|
||||
<SupportedUpgradeBaseVersions>
|
||||
<UpgradeFrom Version="00.00.00000.00-00000" />
|
||||
<UpgradeFrom Version="02.00.00799.00-00799" />
|
||||
<UpgradeFrom Version="02.01.01014.00-01003" />
|
||||
<UpgradeFrom Version="02.02.01040.00-01040" />
|
||||
<UpgradeFrom Version="02.03.01145.00-01040" />
|
||||
<UpgradeFrom Version="02.05.01614.00-01613" />
|
||||
<UpgradeFrom Version="03.00.00225.00-01613" />
|
||||
<UpgradeFrom Version="03.01.00050.00-01620" />
|
||||
<UpgradeFrom Version="03.20.00034.00-01620" />
|
||||
<UpgradeFrom Version="03.20.00035.00-01620" />
|
||||
</SupportedUpgradeBaseVersions>
|
||||
</FirmwareUpdate>
|
||||
|
||||
<!-- Draco -->
|
||||
<FirmwareUpdate DeviceClass="1"
|
||||
FamilyID="3"
|
||||
HardwareID="USB\Vid_045e&Pid_0710&Rev_0300"
|
||||
Manufacturer="Microsoft"
|
||||
Name="Zune"
|
||||
Version="03.30.00039.00-01620"
|
||||
URL="DracoBaseline.cab">
|
||||
|
||||
<Metadata xml:lang="en-US">
|
||||
<Title>Zune firmware version 3.3</Title>
|
||||
<Description>
|
||||
<![CDATA[This required update enhances device functionality and performance.
|
||||
|
||||
For more information, go to www.zune.net/support.]]>
|
||||
</Description>
|
||||
<EULA>
|
||||
<![CDATA[This product is protected by U.S. and international copyright laws. Microsoft, Zune, and the Zune logo are trademarks of the Microsoft group of companies.]]>
|
||||
</EULA>
|
||||
</Metadata>
|
||||
|
||||
<Metadata xml:lang="fr-FR">
|
||||
<Title>Microprogramme Zune version 3.3</Title>
|
||||
<Description>
|
||||
<![CDATA[Cette mise à jour améliore le fonctionnement et les performances de l'appareil.
|
||||
|
||||
Pour plus d'informations, voir www.zune.net/support.]]>
|
||||
</Description>
|
||||
<EULA>
|
||||
<![CDATA[Ce programme est protégé par les lois internationales et américaines relatives au droit d'auteur. Microsoft, Zune et le logo Zune sont des marques du groupe de sociétés Microsoft.]]>
|
||||
</EULA>
|
||||
</Metadata>
|
||||
|
||||
<Metadata xml:lang="es-ES">
|
||||
<Title>Versión 3.3 del firmware de Zune</Title>
|
||||
<Description>
|
||||
<![CDATA[Esta actualización mejora la funcionalidad y el rendimiento del dispositivo.
|
||||
|
||||
Para obtener más información, visite www.zune.net/support.]]>
|
||||
</Description>
|
||||
<EULA>
|
||||
<![CDATA[Este producto está protegido por las leyes de derechos de autor estadounidenses e internacionales. Microsoft, Zune y el logotipo de Zune son marcas comerciales del grupo de compañías Microsoft.]]>
|
||||
</EULA>
|
||||
</Metadata>
|
||||
|
||||
<SupportedUpgradeBaseVersions>
|
||||
<UpgradeFrom Version="00.00.00000.00-00000" />
|
||||
<UpgradeFrom Version="02.00.00799.00-00799" />
|
||||
<UpgradeFrom Version="02.01.01014.00-01003" />
|
||||
<UpgradeFrom Version="02.02.01040.00-01040" />
|
||||
<UpgradeFrom Version="02.03.01145.00-01040" />
|
||||
<UpgradeFrom Version="02.05.01614.00-01613" />
|
||||
<UpgradeFrom Version="03.00.00225.00-01613" />
|
||||
<UpgradeFrom Version="03.01.00050.00-01620" />
|
||||
<UpgradeFrom Version="03.20.00034.00-01620" />
|
||||
<UpgradeFrom Version="03.20.00035.00-01620" />
|
||||
</SupportedUpgradeBaseVersions>
|
||||
</FirmwareUpdate>
|
||||
|
||||
<!-- Pavo -->
|
||||
<FirmwareUpdate DeviceClass="2"
|
||||
FamilyID="6"
|
||||
HardwareID="USB\Vid_045e&Pid_063E&Rev_0100"
|
||||
Manufacturer="Microsoft"
|
||||
Name="Zune"
|
||||
Version="04.05.00114.00-04.05.00114.00-04.05.00114.00"
|
||||
URL="PavoBaseline.cab">
|
||||
|
||||
<Metadata xml:lang="en-US">
|
||||
<Title>Zune firmware version 4.5</Title>
|
||||
<Description>
|
||||
<![CDATA[This update enhances device functionality and performance.
|
||||
|
||||
For more information, go to www.zune.net/support.]]>
|
||||
</Description>
|
||||
<EULA>
|
||||
<![CDATA[This product is protected by U.S. and international copyright laws. Microsoft, Zune, and the Zune logo are trademarks of the Microsoft group of companies.]]>
|
||||
</EULA>
|
||||
</Metadata>
|
||||
|
||||
<Metadata xml:lang="fr-FR">
|
||||
<Title>Microprogramme Zune version 4.5</Title>
|
||||
<Description>
|
||||
<![CDATA[Cette mise à jour améliore le fonctionnement et les performances de l'appareil.
|
||||
|
||||
Pour plus d'informations, voir www.zune.net/support.]]>
|
||||
</Description>
|
||||
<EULA>
|
||||
<![CDATA[Ce programme est protégé par les lois internationales et américaines relatives au droit d'auteur. Microsoft, Zune et le logo Zune sont des marques du groupe de sociétés Microsoft.]]>
|
||||
</EULA>
|
||||
</Metadata>
|
||||
|
||||
<Metadata xml:lang="es-ES">
|
||||
<Title>Versión 4.5 del firmware de Zune</Title>
|
||||
<Description>
|
||||
<![CDATA[Esta actualización mejora la funcionalidad y el rendimiento del dispositivo.
|
||||
|
||||
Para obtener más información, visite www.zune.net/support.]]>
|
||||
</Description>
|
||||
<EULA>
|
||||
<![CDATA[Este producto está protegido por las leyes de derechos de autor estadounidenses e internacionales. Microsoft, Zune y el logotipo de Zune son marcas comerciales del grupo de compañías Microsoft.]]>
|
||||
</EULA>
|
||||
</Metadata>
|
||||
|
||||
<SupportedUpgradeBaseVersions>
|
||||
<UpgradeFrom Version="00.00.00000.00-00.00.00000.00-00.00.00000.00" /> <!-- Generic recovery image firmware version -->
|
||||
<UpgradeFrom Version="00.00.00000.00-04.00.00356.00-04.00.00356.00" /> <!-- Recovery image version for firmware 4.0 -->
|
||||
<UpgradeFrom Version="00.00.00000.00-04.01.00137.00-04.01.00137.00" /> <!-- Recovery image version for firmware 4.1 -->
|
||||
<UpgradeFrom Version="00.00.00000.00-04.03.00191.00-04.03.00191.00" /> <!-- Recovery image version for firmware 4.3 -->
|
||||
<UpgradeFrom Version="00.00.00000.00-04.05.00109.00-04.05.00109.00" /> <!-- Recovery image version for firmware 4.5 -->
|
||||
<UpgradeFrom Version="00.00.00000.00-04.05.00114.00-04.05.00114.00" /> <!-- Recovery image version for firmware 4.5 -->
|
||||
<UpgradeFrom Version="04.00.00356.00-04.00.00356.00-04.00.00356.00" />
|
||||
<UpgradeFrom Version="04.01.00137.00-04.01.00137.00-04.01.00137.00" />
|
||||
<UpgradeFrom Version="04.03.00191.00-04.03.00191.00-04.03.00191.00" />
|
||||
<UpgradeFrom Version="04.05.00109.00-04.05.00109.00-04.05.00109.00" />
|
||||
</SupportedUpgradeBaseVersions>
|
||||
</FirmwareUpdate>
|
||||
</FirmwareUpdates>
|
||||
|
||||
@@ -0,0 +1,244 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<FirmwareUpdates>
|
||||
<!-- Keel -->
|
||||
<FirmwareUpdate DeviceClass="1"
|
||||
FamilyID="0"
|
||||
HardwareID="USB\Vid_045e&Pid_0710&Rev_0100"
|
||||
Manufacturer="Microsoft"
|
||||
Name="Zune"
|
||||
Version="03.30.00039.00-00435"
|
||||
URL="http://resources.zune.net/KeelBaseline.cab">
|
||||
|
||||
<Metadata xml:lang="en-US">
|
||||
<Title>Zune firmware version 3.3</Title>
|
||||
<Description>
|
||||
<![CDATA[This required update enhances device functionality and performance.
|
||||
|
||||
For more information, go to www.zune.net/support.]]>
|
||||
</Description>
|
||||
<EULA>
|
||||
<![CDATA[This product is protected by U.S. and international copyright laws. Microsoft, Zune, and the Zune logo are trademarks of the Microsoft group of companies.]]>
|
||||
</EULA>
|
||||
</Metadata>
|
||||
|
||||
<Metadata xml:lang="fr-FR">
|
||||
<Title>Microprogramme Zune version 3.3</Title>
|
||||
<Description>
|
||||
<![CDATA[Cette mise à jour améliore le fonctionnement et les performances de l'appareil.
|
||||
|
||||
Pour plus d'informations, voir www.zune.net/support.]]>
|
||||
</Description>
|
||||
<EULA>
|
||||
<![CDATA[Ce programme est protégé par les lois internationales et américaines relatives au droit d'auteur. Microsoft, Zune et le logo Zune sont des marques du groupe de sociétés Microsoft.]]>
|
||||
</EULA>
|
||||
</Metadata>
|
||||
|
||||
<Metadata xml:lang="es-ES">
|
||||
<Title>Versión 3.3 del firmware de Zune</Title>
|
||||
<Description>
|
||||
<![CDATA[Esta actualización mejora la funcionalidad y el rendimiento del dispositivo.
|
||||
|
||||
Para obtener más información, visite www.zune.net/support.]]>
|
||||
</Description>
|
||||
<EULA>
|
||||
<![CDATA[Este producto está protegido por las leyes de derechos de autor estadounidenses e internacionales. Microsoft, Zune y el logotipo de Zune son marcas comerciales del grupo de compañías Microsoft.]]>
|
||||
</EULA>
|
||||
</Metadata>
|
||||
|
||||
<SupportedUpgradeBaseVersions>
|
||||
<UpgradeFrom Version="00.00.00000.00-00.00" />
|
||||
<UpgradeFrom Version="00.00.00000.00-00000" />
|
||||
<UpgradeFrom Version="01.00.00193.00-02.04" />
|
||||
<UpgradeFrom Version="01.01.00322.00-00309" />
|
||||
<UpgradeFrom Version="01.02.00434.00-00425" />
|
||||
<UpgradeFrom Version="01.03.00482.00-00425" />
|
||||
<UpgradeFrom Version="01.04.00485.00-00425" />
|
||||
<UpgradeFrom Version="02.01.01014.00-00425" />
|
||||
<UpgradeFrom Version="02.02.01040.00-00425" />
|
||||
<UpgradeFrom Version="02.03.01145.00-00435" />
|
||||
<UpgradeFrom Version="02.05.01614.00-00435" />
|
||||
<UpgradeFrom Version="03.00.00225.00-00435" />
|
||||
<UpgradeFrom Version="03.01.00050.00-00435" />
|
||||
<UpgradeFrom Version="03.20.00034.00-00435" />
|
||||
<UpgradeFrom Version="03.20.00035.00-00435" />
|
||||
</SupportedUpgradeBaseVersions>
|
||||
</FirmwareUpdate>
|
||||
|
||||
<!-- Scorpius -->
|
||||
<FirmwareUpdate DeviceClass="1"
|
||||
FamilyID="2"
|
||||
HardwareID="USB\Vid_045e&Pid_0710&Rev_0200"
|
||||
Manufacturer="Microsoft"
|
||||
Name="Zune"
|
||||
Version="03.30.00039.00-01620"
|
||||
URL="http://resources.zune.net/ScorpiusBaseline.cab">
|
||||
|
||||
<Metadata xml:lang="en-US">
|
||||
<Title>Zune firmware version 3.3</Title>
|
||||
<Description>
|
||||
<![CDATA[This required update enhances device functionality and performance.
|
||||
|
||||
For more information, go to www.zune.net/support.]]>
|
||||
</Description>
|
||||
<EULA>
|
||||
<![CDATA[This product is protected by U.S. and international copyright laws. Microsoft, Zune, and the Zune logo are trademarks of the Microsoft group of companies.]]>
|
||||
</EULA>
|
||||
</Metadata>
|
||||
|
||||
<Metadata xml:lang="fr-FR">
|
||||
<Title>Microprogramme Zune version 3.3</Title>
|
||||
<Description>
|
||||
<![CDATA[Cette mise à jour améliore le fonctionnement et les performances de l'appareil.
|
||||
|
||||
Pour plus d'informations, voir www.zune.net/support.]]>
|
||||
</Description>
|
||||
<EULA>
|
||||
<![CDATA[Ce programme est protégé par les lois internationales et américaines relatives au droit d'auteur. Microsoft, Zune et le logo Zune sont des marques du groupe de sociétés Microsoft.]]>
|
||||
</EULA>
|
||||
</Metadata>
|
||||
|
||||
<Metadata xml:lang="es-ES">
|
||||
<Title>Versión 3.3 del firmware de Zune</Title>
|
||||
<Description>
|
||||
<![CDATA[Esta actualización mejora la funcionalidad y el rendimiento del dispositivo.
|
||||
|
||||
Para obtener más información, visite www.zune.net/support.]]>
|
||||
</Description>
|
||||
<EULA>
|
||||
<![CDATA[Este producto está protegido por las leyes de derechos de autor estadounidenses e internacionales. Microsoft, Zune y el logotipo de Zune son marcas comerciales del grupo de compañías Microsoft.]]>
|
||||
</EULA>
|
||||
</Metadata>
|
||||
|
||||
<SupportedUpgradeBaseVersions>
|
||||
<UpgradeFrom Version="00.00.00000.00-00000" />
|
||||
<UpgradeFrom Version="02.00.00799.00-00799" />
|
||||
<UpgradeFrom Version="02.01.01014.00-01003" />
|
||||
<UpgradeFrom Version="02.02.01040.00-01040" />
|
||||
<UpgradeFrom Version="02.03.01145.00-01040" />
|
||||
<UpgradeFrom Version="02.05.01614.00-01613" />
|
||||
<UpgradeFrom Version="03.00.00225.00-01613" />
|
||||
<UpgradeFrom Version="03.01.00050.00-01620" />
|
||||
<UpgradeFrom Version="03.20.00034.00-01620" />
|
||||
<UpgradeFrom Version="03.20.00035.00-01620" />
|
||||
</SupportedUpgradeBaseVersions>
|
||||
</FirmwareUpdate>
|
||||
|
||||
<!-- Draco -->
|
||||
<FirmwareUpdate DeviceClass="1"
|
||||
FamilyID="3"
|
||||
HardwareID="USB\Vid_045e&Pid_0710&Rev_0300"
|
||||
Manufacturer="Microsoft"
|
||||
Name="Zune"
|
||||
Version="03.30.00039.00-01620"
|
||||
URL="http://resources.zune.net/DracoBaseline.cab">
|
||||
|
||||
<Metadata xml:lang="en-US">
|
||||
<Title>Zune firmware version 3.3</Title>
|
||||
<Description>
|
||||
<![CDATA[This required update enhances device functionality and performance.
|
||||
|
||||
For more information, go to www.zune.net/support.]]>
|
||||
</Description>
|
||||
<EULA>
|
||||
<![CDATA[This product is protected by U.S. and international copyright laws. Microsoft, Zune, and the Zune logo are trademarks of the Microsoft group of companies.]]>
|
||||
</EULA>
|
||||
</Metadata>
|
||||
|
||||
<Metadata xml:lang="fr-FR">
|
||||
<Title>Microprogramme Zune version 3.3</Title>
|
||||
<Description>
|
||||
<![CDATA[Cette mise à jour améliore le fonctionnement et les performances de l'appareil.
|
||||
|
||||
Pour plus d'informations, voir www.zune.net/support.]]>
|
||||
</Description>
|
||||
<EULA>
|
||||
<![CDATA[Ce programme est protégé par les lois internationales et américaines relatives au droit d'auteur. Microsoft, Zune et le logo Zune sont des marques du groupe de sociétés Microsoft.]]>
|
||||
</EULA>
|
||||
</Metadata>
|
||||
|
||||
<Metadata xml:lang="es-ES">
|
||||
<Title>Versión 3.3 del firmware de Zune</Title>
|
||||
<Description>
|
||||
<![CDATA[Esta actualización mejora la funcionalidad y el rendimiento del dispositivo.
|
||||
|
||||
Para obtener más información, visite www.zune.net/support.]]>
|
||||
</Description>
|
||||
<EULA>
|
||||
<![CDATA[Este producto está protegido por las leyes de derechos de autor estadounidenses e internacionales. Microsoft, Zune y el logotipo de Zune son marcas comerciales del grupo de compañías Microsoft.]]>
|
||||
</EULA>
|
||||
</Metadata>
|
||||
|
||||
<SupportedUpgradeBaseVersions>
|
||||
<UpgradeFrom Version="00.00.00000.00-00000" />
|
||||
<UpgradeFrom Version="02.00.00799.00-00799" />
|
||||
<UpgradeFrom Version="02.01.01014.00-01003" />
|
||||
<UpgradeFrom Version="02.02.01040.00-01040" />
|
||||
<UpgradeFrom Version="02.03.01145.00-01040" />
|
||||
<UpgradeFrom Version="02.05.01614.00-01613" />
|
||||
<UpgradeFrom Version="03.00.00225.00-01613" />
|
||||
<UpgradeFrom Version="03.01.00050.00-01620" />
|
||||
<UpgradeFrom Version="03.20.00034.00-01620" />
|
||||
<UpgradeFrom Version="03.20.00035.00-01620" />
|
||||
</SupportedUpgradeBaseVersions>
|
||||
</FirmwareUpdate>
|
||||
|
||||
<!-- Pavo -->
|
||||
<FirmwareUpdate DeviceClass="2"
|
||||
FamilyID="6"
|
||||
HardwareID="USB\Vid_045e&Pid_063E&Rev_0100"
|
||||
Manufacturer="Microsoft"
|
||||
Name="Zune"
|
||||
Version="04.05.00114.00-04.05.00114.00-04.05.00114.00"
|
||||
URL="http://resources.zune.net/PavoBaseline.cab">
|
||||
|
||||
<Metadata xml:lang="en-US">
|
||||
<Title>Zune firmware version 4.5</Title>
|
||||
<Description>
|
||||
<![CDATA[This update enhances device functionality and performance.
|
||||
|
||||
For more information, go to www.zune.net/support.]]>
|
||||
</Description>
|
||||
<EULA>
|
||||
<![CDATA[This product is protected by U.S. and international copyright laws. Microsoft, Zune, and the Zune logo are trademarks of the Microsoft group of companies.]]>
|
||||
</EULA>
|
||||
</Metadata>
|
||||
|
||||
<Metadata xml:lang="fr-FR">
|
||||
<Title>Microprogramme Zune version 4.5</Title>
|
||||
<Description>
|
||||
<![CDATA[Cette mise à jour améliore le fonctionnement et les performances de l'appareil.
|
||||
|
||||
Pour plus d'informations, voir www.zune.net/support.]]>
|
||||
</Description>
|
||||
<EULA>
|
||||
<![CDATA[Ce programme est protégé par les lois internationales et américaines relatives au droit d'auteur. Microsoft, Zune et le logo Zune sont des marques du groupe de sociétés Microsoft.]]>
|
||||
</EULA>
|
||||
</Metadata>
|
||||
|
||||
<Metadata xml:lang="es-ES">
|
||||
<Title>Versión 4.5 del firmware de Zune</Title>
|
||||
<Description>
|
||||
<![CDATA[Esta actualización mejora la funcionalidad y el rendimiento del dispositivo.
|
||||
|
||||
Para obtener más información, visite www.zune.net/support.]]>
|
||||
</Description>
|
||||
<EULA>
|
||||
<![CDATA[Este producto está protegido por las leyes de derechos de autor estadounidenses e internacionales. Microsoft, Zune y el logotipo de Zune son marcas comerciales del grupo de compañías Microsoft.]]>
|
||||
</EULA>
|
||||
</Metadata>
|
||||
|
||||
<SupportedUpgradeBaseVersions>
|
||||
<UpgradeFrom Version="00.00.00000.00-00.00.00000.00-00.00.00000.00" /> <!-- Generic recovery image firmware version -->
|
||||
<UpgradeFrom Version="00.00.00000.00-04.00.00356.00-04.00.00356.00" /> <!-- Recovery image version for firmware 4.0 -->
|
||||
<UpgradeFrom Version="00.00.00000.00-04.01.00137.00-04.01.00137.00" /> <!-- Recovery image version for firmware 4.1 -->
|
||||
<UpgradeFrom Version="00.00.00000.00-04.03.00191.00-04.03.00191.00" /> <!-- Recovery image version for firmware 4.3 -->
|
||||
<UpgradeFrom Version="00.00.00000.00-04.05.00109.00-04.05.00109.00" /> <!-- Recovery image version for firmware 4.5 -->
|
||||
<UpgradeFrom Version="00.00.00000.00-04.05.00114.00-04.05.00114.00" /> <!-- Recovery image version for firmware 4.5 -->
|
||||
<UpgradeFrom Version="04.00.00356.00-04.00.00356.00-04.00.00356.00" />
|
||||
<UpgradeFrom Version="04.01.00137.00-04.01.00137.00-04.01.00137.00" />
|
||||
<UpgradeFrom Version="04.03.00191.00-04.03.00191.00-04.03.00191.00" />
|
||||
<UpgradeFrom Version="04.05.00109.00-04.05.00109.00-04.05.00109.00" />
|
||||
</SupportedUpgradeBaseVersions>
|
||||
</FirmwareUpdate>
|
||||
</FirmwareUpdates>
|
||||
|
||||
Reference in New Issue
Block a user