Publish or Perish
Informations
Créateur | Messages |
---|---|
Quentin PÂRIS
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience0 0 DescriptionPublish or Perish is a software program that retrieves and analyzes academic citations. It uses a variety of data sources (incl. Google Scholar and Microsoft Academic Search) to obtain the raw citations, then analyzes these and presents the metrics. Captures d'écranCode source#!/bin/bash # CHANGELOG # [SuperPlumus] (2013-06-27 11-38) # Clean code # [petch] (2013-07-13 08-00) # Update hash # [petch] (2013-09-03 19-22) # Update hash # [petch] (2014-01-17 19-56) # Update hash # [petch] (2014-03-02 22-56) # Update hash # [Dadu042] (2019-11-07 &é-56) # Disable download # Wine 1.2.3 -> 3.0.3 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Publish or Perish" PREFIX="PublishOrPerish" WORKING_WINE_VERSION="3.0.3" EDITEUR="Harzing.com" EDITEUR_URL="http://www.harzing.com/" POP_URL="https://harzing.com/download/PoP7Setup.exe" FILE="PoPSetup.exe" EXECUTABLE="popwin.exe" AUTEUR="Tinou" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITEUR" "$EDITEUR_URL" "$AUTEUR" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$PREFIX" POL_Wine_InstallFonts POL_Call POL_Install_LunaTheme cd "$POL_System_TmpDir" if [ "$POL_SELECTED_FILE" ]; then SetupFile="$POL_SELECTED_FILE" else # POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" INSTALL_METHOD="LOCAL" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then POL_Download "$POP_URL" "f92c360208a9747bda5f910ce7e3819f" SetupFile="$POL_System_TmpDir/PoP7Setup.exe" elif [ "$INSTALL_METHOD" = "LOCAL" ]; then POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SetupFile="$APP_ANSWER" fi fi POL_Wine_WaitBefore "$TITLE" POL_Wine "$SetupFile" POL_System_TmpDelete POL_Shortcut "$EXECUTABLE" "$TITLE" POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContribuerMembre | Messages |
Dadu042 | Jeudi 7 Novembre 2019 à 12:53 |
Dadu042
|
InformationCette mise à jour a été acceptée par l'équipe Differences@@ -13,7 +13,7 @@ # Update hash # [Dadu042] (2019-11-07 &é-56) # Disable download -# Wine 1.2.3 -> 2.22 +# Wine 1.2.3 -> 3.0.3 [ "$PLAYONLINUX" = "" ] && exit 0 @@ -21,7 +21,7 @@ TITLE="Publish or Perish" PREFIX="PublishOrPerish" -WORKING_WINE_VERSION="2.22" +WORKING_WINE_VERSION="3.0.3" EDITEUR="Harzing.com" EDITEUR_URL="http://www.harzing.com/" Nouveau code source#!/bin/bash # CHANGELOG # [SuperPlumus] (2013-06-27 11-38) # Clean code # [petch] (2013-07-13 08-00) # Update hash # [petch] (2013-09-03 19-22) # Update hash # [petch] (2014-01-17 19-56) # Update hash # [petch] (2014-03-02 22-56) # Update hash # [Dadu042] (2019-11-07 &é-56) # Disable download # Wine 1.2.3 -> 3.0.3 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Publish or Perish" PREFIX="PublishOrPerish" WORKING_WINE_VERSION="3.0.3" EDITEUR="Harzing.com" EDITEUR_URL="http://www.harzing.com/" POP_URL="https://harzing.com/download/PoP7Setup.exe" FILE="PoPSetup.exe" EXECUTABLE="popwin.exe" AUTEUR="Tinou" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITEUR" "$EDITEUR_URL" "$AUTEUR" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$PREFIX" POL_Wine_InstallFonts POL_Call POL_Install_LunaTheme cd "$POL_System_TmpDir" if [ "$POL_SELECTED_FILE" ]; then SetupFile="$POL_SELECTED_FILE" else # POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" INSTALL_METHOD="LOCAL" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then POL_Download "$POP_URL" "f92c360208a9747bda5f910ce7e3819f" SetupFile="$POL_System_TmpDir/PoP7Setup.exe" elif [ "$INSTALL_METHOD" = "LOCAL" ]; then POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SetupFile="$APP_ANSWER" fi fi POL_Wine_WaitBefore "$TITLE" POL_Wine "$SetupFile" POL_System_TmpDelete POL_Shortcut "$EXECUTABLE" "$TITLE" POL_SetupWindow_Close exit 0 RéponsesEdité par Dadu042 |
sjsh | Mercredi 22 Novembre 2017 à 21:08 |
sjsh
|
MessagesPublish or Perish on OS X, using PlayOnMac, will no longer work unless you install a newer version of Wine (1.9.10 or later) and the gdiplus library. Instructions are here: https://harzing.com/resources/publish-or-perish/os-x/playonmac Réponses |
Quentin PÂRIS | Samedi 24 Décembre 2016 à 16:23 |
Quentin PÂRIS
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -45,7 +45,7 @@ else POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then - POL_Download "$POP_URL" "2f15fd3d6d78762c1e4c75ca9e652d8d" + POL_Download "$POP_URL" "f92c360208a9747bda5f910ce7e3819f" SetupFile="$POL_System_TmpDir/PoPSetup.exe" elif [ "$INSTALL_METHOD" = "LOCAL" ]; then POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" Nouveau code source#!/bin/bash # CHANGELOG # [SuperPlumus] (2013-06-27 11-38) # Clean code # [petch] (2013-07-13 08-00) # Update hash # [petch] (2013-09-03 19-22) # Update hash # [petch] (2014-01-17 19-56) # Update hash # [petch] (2014-03-02 22-56) # Update hash [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Publish or Perish" PREFIX="PublishOrPerish" WORKING_WINE_VERSION="1.2.3" EDITEUR="Harzing.com" EDITEUR_URL="http://www.harzing.com/" POP_URL="http://www.harzing.com/download/PoPSetup.exe" FILE="PoPSetup.exe" EXECUTABLE="PoP.exe" AUTEUR="Tinou" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITEUR" "$EDITEUR_URL" "$AUTEUR" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$PREFIX" POL_Wine_InstallFonts POL_Call POL_Install_LunaTheme cd "$POL_System_TmpDir" if [ "$POL_SELECTED_FILE" ]; then SetupFile="$POL_SELECTED_FILE" else POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then POL_Download "$POP_URL" "f92c360208a9747bda5f910ce7e3819f" SetupFile="$POL_System_TmpDir/PoPSetup.exe" elif [ "$INSTALL_METHOD" = "LOCAL" ]; then POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SetupFile="$APP_ANSWER" fi fi POL_Wine_WaitBefore "$TITLE" POL_Wine "$SetupFile" POL_System_TmpDelete POL_Shortcut "$EXECUTABLE" "$TITLE" POL_SetupWindow_Close exit 0 Réponses |
Victor Esbr | Mardi 14 Juin 2016 à 1:43 |
Victor Esbr
|
MessagesHello! The new signature: POL_Download "$POP_URL" "f92c360208a9747bda5f910ce7e3819f" Download ok - 13/06/2016.
Victor Réponses |
petch | Lundi 16 Mars 2015 à 19:44 |
petch
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesUpdate download hash Differences@@ -45,7 +45,7 @@ else POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then - POL_Download "$POP_URL" "56859aba2b6f46fe85bd97334141fc1c" + POL_Download "$POP_URL" "2f15fd3d6d78762c1e4c75ca9e652d8d" SetupFile="$POL_System_TmpDir/PoPSetup.exe" elif [ "$INSTALL_METHOD" = "LOCAL" ]; then POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" Nouveau code source#!/bin/bash # CHANGELOG # [SuperPlumus] (2013-06-27 11-38) # Clean code # [petch] (2013-07-13 08-00) # Update hash # [petch] (2013-09-03 19-22) # Update hash # [petch] (2014-01-17 19-56) # Update hash # [petch] (2014-03-02 22-56) # Update hash [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Publish or Perish" PREFIX="PublishOrPerish" WORKING_WINE_VERSION="1.2.3" EDITEUR="Harzing.com" EDITEUR_URL="http://www.harzing.com/" POP_URL="http://www.harzing.com/download/PoPSetup.exe" FILE="PoPSetup.exe" EXECUTABLE="PoP.exe" AUTEUR="Tinou" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITEUR" "$EDITEUR_URL" "$AUTEUR" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$PREFIX" POL_Wine_InstallFonts POL_Call POL_Install_LunaTheme cd "$POL_System_TmpDir" if [ "$POL_SELECTED_FILE" ]; then SetupFile="$POL_SELECTED_FILE" else POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then POL_Download "$POP_URL" "2f15fd3d6d78762c1e4c75ca9e652d8d" SetupFile="$POL_System_TmpDir/PoPSetup.exe" elif [ "$INSTALL_METHOD" = "LOCAL" ]; then POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SetupFile="$APP_ANSWER" fi fi POL_Wine_WaitBefore "$TITLE" POL_Wine "$SetupFile" POL_System_TmpDelete POL_Shortcut "$EXECUTABLE" "$TITLE" POL_SetupWindow_Close exit 0 Réponses |
petch | Jeudi 5 Février 2015 à 21:13 |
petch
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesDownload hash update Differences@@ -45,7 +45,7 @@ else POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then - POL_Download "$POP_URL" "631dc6f5413267d968055548c171d284" + POL_Download "$POP_URL" "56859aba2b6f46fe85bd97334141fc1c" SetupFile="$POL_System_TmpDir/PoPSetup.exe" elif [ "$INSTALL_METHOD" = "LOCAL" ]; then POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" Nouveau code source#!/bin/bash # CHANGELOG # [SuperPlumus] (2013-06-27 11-38) # Clean code # [petch] (2013-07-13 08-00) # Update hash # [petch] (2013-09-03 19-22) # Update hash # [petch] (2014-01-17 19-56) # Update hash # [petch] (2014-03-02 22-56) # Update hash [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Publish or Perish" PREFIX="PublishOrPerish" WORKING_WINE_VERSION="1.2.3" EDITEUR="Harzing.com" EDITEUR_URL="http://www.harzing.com/" POP_URL="http://www.harzing.com/download/PoPSetup.exe" FILE="PoPSetup.exe" EXECUTABLE="PoP.exe" AUTEUR="Tinou" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITEUR" "$EDITEUR_URL" "$AUTEUR" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$PREFIX" POL_Wine_InstallFonts POL_Call POL_Install_LunaTheme cd "$POL_System_TmpDir" if [ "$POL_SELECTED_FILE" ]; then SetupFile="$POL_SELECTED_FILE" else POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then POL_Download "$POP_URL" "56859aba2b6f46fe85bd97334141fc1c" SetupFile="$POL_System_TmpDir/PoPSetup.exe" elif [ "$INSTALL_METHOD" = "LOCAL" ]; then POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SetupFile="$APP_ANSWER" fi fi POL_Wine_WaitBefore "$TITLE" POL_Wine "$SetupFile" POL_System_TmpDelete POL_Shortcut "$EXECUTABLE" "$TITLE" POL_SetupWindow_Close exit 0 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