POL_Install_AdobeAir
Informations
Créateur | Messages |
---|---|
Quentin PÂRIS
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience0 1 DescriptionOfficial Adobe Air changelog (release notes). Code source#!/bin/bash # PlayOnLinux Function # RealName: Adobe Air # Author : Tinou # # CHANGELOG # [Petch] (2015-12-13) # Set dnsapi DLL override to that AdobeAIR works (http://wiki.playonlinux.com/index.php/Troubleshooting_Common_Problems#Install_needed_components) # [Petch] (2015-12-23) # Download the installer as a resource # [Dadu042] (2020-01-24 21:20) # Adobe Air v18 -> 32. POL_SetupWindow_wait "$(eval_gettext 'Installing Adobe Air')" "$TITLE" POL_Download_Resource "https://archive.org/download/adobe-airinstaller/AdobeAIRInstaller.exe" "a57c38903764f64ba656df01130c38d7" cd "$POL_USER_ROOT/ressources" POL_Wine AdobeAIRInstaller.exe -silent # Incorrect dnsapi overrides is often the reason why AdobeAIR stops working POL_Wine_OverrideDLL "builtin,native" "dnsapi" |
Contributions
Filters:
ContribuerMembre | Messages |
camthegeek | Mardi 11 Mai 2021 à 17:49 |
camthegeek
|
InformationCette mise à jour a été acceptée par l'équipe MessagesDownload URL is dead. Adobe no longer supports. Consider launch own mirrow link of file or use archive.org.
Modification has archive.org in which the md5sum matches that of the original file. Differences@@ -13,7 +13,7 @@ POL_SetupWindow_wait "$(eval_gettext 'Installing Adobe Air')" "$TITLE" -POL_Download_Resource "http://airdownload.adobe.com/air/win/download/32.0/AdobeAIRInstaller.exe" "a57c38903764f64ba656df01130c38d7" +POL_Download_Resource "https://archive.org/download/adobe-airinstaller/AdobeAIRInstaller.exe" "a57c38903764f64ba656df01130c38d7" cd "$POL_USER_ROOT/ressources" POL_Wine AdobeAIRInstaller.exe -silent Nouveau code source#!/bin/bash # PlayOnLinux Function # RealName: Adobe Air # Author : Tinou # # CHANGELOG # [Petch] (2015-12-13) # Set dnsapi DLL override to that AdobeAIR works (http://wiki.playonlinux.com/index.php/Troubleshooting_Common_Problems#Install_needed_components) # [Petch] (2015-12-23) # Download the installer as a resource # [Dadu042] (2020-01-24 21:20) # Adobe Air v18 -> 32. POL_SetupWindow_wait "$(eval_gettext 'Installing Adobe Air')" "$TITLE" POL_Download_Resource "https://archive.org/download/adobe-airinstaller/AdobeAIRInstaller.exe" "a57c38903764f64ba656df01130c38d7" cd "$POL_USER_ROOT/ressources" POL_Wine AdobeAIRInstaller.exe -silent # Incorrect dnsapi overrides is often the reason why AdobeAIR stops working POL_Wine_OverrideDLL "builtin,native" "dnsapi" RéponsesLundi 18 Octobre 2021 à 22:52
|
Dadu042 | Vendredi 24 Janvier 2020 à 21:27 |
Dadu042
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -2,13 +2,21 @@ # PlayOnLinux Function # RealName: Adobe Air # Author : Tinou +# +# CHANGELOG +# [Petch] (2015-12-13) +# Set dnsapi DLL override to that AdobeAIR works (http://wiki.playonlinux.com/index.php/Troubleshooting_Common_Problems#Install_needed_components) +# [Petch] (2015-12-23) +# Download the installer as a resource +# [Dadu042] (2020-01-24 21:20) +# Adobe Air v18 -> 32. POL_SetupWindow_wait "$(eval_gettext 'Installing Adobe Air')" "$TITLE" -POL_Download_Resource "http://airdownload.adobe.com/air/win/download/18.0/AdobeAIRInstaller.exe" "40553c91a1d2d97d9931ffdfe2db45be" +POL_Download_Resource "http://airdownload.adobe.com/air/win/download/32.0/AdobeAIRInstaller.exe" "a57c38903764f64ba656df01130c38d7" cd "$POL_USER_ROOT/ressources" POL_Wine AdobeAIRInstaller.exe -silent # Incorrect dnsapi overrides is often the reason why AdobeAIR stops working -POL_Wine_OverrideDLL "builtin,native" "dnsapi" +POL_Wine_OverrideDLL "builtin,native" "dnsapi" \ No newline at end of file Nouveau code source#!/bin/bash # PlayOnLinux Function # RealName: Adobe Air # Author : Tinou # # CHANGELOG # [Petch] (2015-12-13) # Set dnsapi DLL override to that AdobeAIR works (http://wiki.playonlinux.com/index.php/Troubleshooting_Common_Problems#Install_needed_components) # [Petch] (2015-12-23) # Download the installer as a resource # [Dadu042] (2020-01-24 21:20) # Adobe Air v18 -> 32. POL_SetupWindow_wait "$(eval_gettext 'Installing Adobe Air')" "$TITLE" POL_Download_Resource "http://airdownload.adobe.com/air/win/download/32.0/AdobeAIRInstaller.exe" "a57c38903764f64ba656df01130c38d7" cd "$POL_USER_ROOT/ressources" POL_Wine AdobeAIRInstaller.exe -silent # Incorrect dnsapi overrides is often the reason why AdobeAIR stops working POL_Wine_OverrideDLL "builtin,native" "dnsapi" Réponses |
petch | Dimanche 13 Décembre 2015 à 11:49 |
petch
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesSet dnsapi DLL override to that AdobeAIR works (http://wiki.playonlinux.com/index.php/Troubleshooting_Common_Problems#Install_needed_components) Differences@@ -8,4 +8,7 @@ POL_Download_Resource "http://airdownload.adobe.com/air/win/download/18.0/AdobeAIRInstaller.exe" "40553c91a1d2d97d9931ffdfe2db45be" cd "$POL_USER_ROOT/ressources" -POL_Wine AdobeAIRInstaller.exe -silent \ No newline at end of file +POL_Wine AdobeAIRInstaller.exe -silent + +# Incorrect dnsapi overrides is often the reason why AdobeAIR stops working +POL_Wine_OverrideDLL "builtin,native" "dnsapi" Nouveau code source#!/bin/bash # PlayOnLinux Function # RealName: Adobe Air # Author : Tinou POL_SetupWindow_wait "$(eval_gettext 'Installing Adobe Air')" "$TITLE" POL_Download_Resource "http://airdownload.adobe.com/air/win/download/18.0/AdobeAIRInstaller.exe" "40553c91a1d2d97d9931ffdfe2db45be" cd "$POL_USER_ROOT/ressources" POL_Wine AdobeAIRInstaller.exe -silent # Incorrect dnsapi overrides is often the reason why AdobeAIR stops working POL_Wine_OverrideDLL "builtin,native" "dnsapi" RéponsesEdité par Dadu042 |
petch | Dimanche 23 Aoüt 2015 à 11:30 |
petch
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesDownload the installer as a resource Differences@@ -5,7 +5,7 @@ POL_SetupWindow_wait "$(eval_gettext 'Installing Adobe Air')" "$TITLE" -cd "$POL_USER_ROOT/tmp/" -POL_Download "http://airdownload.adobe.com/air/win/download/18.0/AdobeAIRInstaller.exe" "40553c91a1d2d97d9931ffdfe2db45be" +POL_Download_Resource "http://airdownload.adobe.com/air/win/download/18.0/AdobeAIRInstaller.exe" "40553c91a1d2d97d9931ffdfe2db45be" +cd "$POL_USER_ROOT/ressources" POL_Wine AdobeAIRInstaller.exe -silent \ No newline at end of file Nouveau code source#!/bin/bash # PlayOnLinux Function # RealName: Adobe Air # Author : Tinou POL_SetupWindow_wait "$(eval_gettext 'Installing Adobe Air')" "$TITLE" POL_Download_Resource "http://airdownload.adobe.com/air/win/download/18.0/AdobeAIRInstaller.exe" "40553c91a1d2d97d9931ffdfe2db45be" cd "$POL_USER_ROOT/ressources" POL_Wine AdobeAIRInstaller.exe -silent Réponses |
petch | Dimanche 23 Aoüt 2015 à 11:16 |
petch
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesDownload version update Differences@@ -6,6 +6,6 @@ POL_SetupWindow_wait "$(eval_gettext 'Installing Adobe Air')" "$TITLE" cd "$POL_USER_ROOT/tmp/" -POL_Download "http://airdownload.adobe.com/air/win/download/15.0/AdobeAIRInstaller.exe" "2f3b1dd634f95d265c4b30faf8ec2082" +POL_Download "http://airdownload.adobe.com/air/win/download/18.0/AdobeAIRInstaller.exe" "40553c91a1d2d97d9931ffdfe2db45be" POL_Wine AdobeAIRInstaller.exe -silent \ No newline at end of file Nouveau code source#!/bin/bash # PlayOnLinux Function # RealName: Adobe Air # Author : Tinou POL_SetupWindow_wait "$(eval_gettext 'Installing Adobe Air')" "$TITLE" cd "$POL_USER_ROOT/tmp/" POL_Download "http://airdownload.adobe.com/air/win/download/18.0/AdobeAIRInstaller.exe" "40553c91a1d2d97d9931ffdfe2db45be" POL_Wine AdobeAIRInstaller.exe -silent Réponses |
Ronin DUSETTE | Mercredi 12 Novembre 2014 à 17:54 |
Ronin DUSETTE
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesUpdating md5. Differences@@ -6,6 +6,6 @@ POL_SetupWindow_wait "$(eval_gettext 'Installing Adobe Air')" "$TITLE" cd "$POL_USER_ROOT/tmp/" -POL_Download "http://airdownload.adobe.com/air/win/download/15.0/AdobeAIRInstaller.exe" "7deb73c0b311f1b41ef8ad97ea196338" +POL_Download "http://airdownload.adobe.com/air/win/download/15.0/AdobeAIRInstaller.exe" "2f3b1dd634f95d265c4b30faf8ec2082" POL_Wine AdobeAIRInstaller.exe -silent \ No newline at end of file Nouveau code source#!/bin/bash # PlayOnLinux Function # RealName: Adobe Air # Author : Tinou POL_SetupWindow_wait "$(eval_gettext 'Installing Adobe Air')" "$TITLE" cd "$POL_USER_ROOT/tmp/" POL_Download "http://airdownload.adobe.com/air/win/download/15.0/AdobeAIRInstaller.exe" "2f3b1dd634f95d265c4b30faf8ec2082" POL_Wine AdobeAIRInstaller.exe -silent Réponses |
petch | Samedi 18 Octobre 2014 à 14:59 |
petch
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesDownload version update Differences@@ -6,6 +6,6 @@ POL_SetupWindow_wait "$(eval_gettext 'Installing Adobe Air')" "$TITLE" cd "$POL_USER_ROOT/tmp/" -POL_Download "http://airdownload.adobe.com/air/win/download/2.6/AdobeAIRInstaller.exe" "14b16710ae252d73d87f438f07845e0e" +POL_Download "http://airdownload.adobe.com/air/win/download/15.0/AdobeAIRInstaller.exe" "7deb73c0b311f1b41ef8ad97ea196338" POL_Wine AdobeAIRInstaller.exe -silent \ No newline at end of file Nouveau code source#!/bin/bash # PlayOnLinux Function # RealName: Adobe Air # Author : Tinou POL_SetupWindow_wait "$(eval_gettext 'Installing Adobe Air')" "$TITLE" cd "$POL_USER_ROOT/tmp/" POL_Download "http://airdownload.adobe.com/air/win/download/15.0/AdobeAIRInstaller.exe" "7deb73c0b311f1b41ef8ad97ea196338" POL_Wine AdobeAIRInstaller.exe -silent Réponses |
petch | Samedi 18 Octobre 2014 à 14:57 |
petch
|
MessagesURL is obsolete: $ LC_ALL=C wget 'http://airdownload.adobe.com/air/win/download/2.6/AdobeAIRInstaller.exe' --2014-10-18 14:56:51-- http://airdownload.adobe.com/air/win/download/2.6/AdobeAIRInstaller.exe Resolving airdownload.adobe.com (airdownload.adobe.com)... 90.84.59.120, 90.84.59.145 Connecting to airdownload.adobe.com (airdownload.adobe.com)|90.84.59.120|:80... connected. HTTP request sent, awaiting response... 404 Not Found 2014-10-18 14:56:51 ERROR 404: Not Found. Réponses |
This site allows content generated by members, and we promptly remove any content that infringes copyright according to our Terms of Service. To report copyright infringement, please send a notice to dmca-notice@playonlinux.com