Publish or Perish
Informations
Creator | Message |
---|---|
Quentin PÂRIS
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks0 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. ScreenshotsSource code#!/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:
ContributeMember | Message |
Dadu042 | Thursday 7 November 2019 at 12:53 |
Dadu042
|
InformationThis update has been approved by the team. 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/" New source code#!/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 RepliesEdited by Dadu042 |
sjsh | Wednesday 22 November 2017 at 21:08 |
sjsh
|
MessagePublish 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 Replies |
Quentin PÂRIS | Saturday 24 December 2016 at 16:23 |
Quentin PÂRIS
|
WarningThis update has not been approved yet by the team. 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" New source code#!/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 Replies |
Victor Esbr | Tuesday 14 June 2016 at 1:43 |
Victor Esbr
|
MessageHello! The new signature: POL_Download "$POP_URL" "f92c360208a9747bda5f910ce7e3819f" Download ok - 13/06/2016.
Victor Replies |
petch | Monday 16 March 2015 at 19:44 |
petch
|
WarningThis update has not been approved yet by the team. MessageUpdate 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" New source code#!/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 Replies |
petch | Thursday 5 February 2015 at 21:13 |
petch
|
WarningThis update has not been approved yet by the team. MessageDownload 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" New source code#!/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 Replies |
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