Skip to content

Commit

Permalink
pkp/pkp-lib#7885 Re-added the syncing state, added warnings and incre…
Browse files Browse the repository at this point in the history
…ased the reserved range for the versioning
  • Loading branch information
jonasraoni committed May 10, 2022
1 parent 4df1a56 commit b946ea7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions classes/DepositPackage.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -644,9 +644,12 @@ public function updateDepositStatus() {
case '':
// do nothing.
break;
// WARNING: The usage of 'received' is unknown and it may be removed in the future
case 'received':
$this->_deposit->setLockssReceivedStatus();
break;
// WARNING: The usage of 'syncing' is unknown and it may be removed in the future
case 'syncing':
case 'inProgress':
$this->_deposit->setLockssSyncingStatus();
break;
Expand Down
2 changes: 1 addition & 1 deletion version.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<version>
<application>pln</application>
<type>plugins.generic</type>
<release>2.0.5.0</release><!-- 2.0.5.x is reserved for OJS 3.4 -->
<release>3.0.0.0</release><!-- 3.x.x.x is reserved for OJS 3.4 -->
<date>2022-05-08</date>
<lazy-load>1</lazy-load>
<sitewide>0</sitewide>
Expand Down

0 comments on commit b946ea7

Please sign in to comment.