mirror of
https://github.com/murdos/musicbrainz-userscripts
synced 2024-12-13 11:52:27 +00:00
Merge pull request #171 from yvanzo/fix-update-version
Fix update version to make sub-version numbers without leading 0
This commit is contained in:
commit
5fd620a5fa
2 changed files with 3 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
|||
// ==UserScript==
|
||||
// @name Display shortcut for relationships on MusicBrainz
|
||||
// @description Display icon shortcut for relationships of release-group, release, recording and work: e.g. Amazon, Discogs, Wikipedia, ... links. This allows to access some relationships without opening the entity page.
|
||||
// @version 2018.02.11.0
|
||||
// @version 2018.2.17.1
|
||||
// @author Aurelien Mino <aurelien.mino@gmail.com>
|
||||
// @licence GPL (http://www.gnu.org/copyleft/gpl.html)
|
||||
// @downloadURL https://raw.github.com/murdos/musicbrainz-userscripts/master/mb_relationship_shortcuts.user.js
|
||||
|
|
|
@ -26,10 +26,10 @@ To test without modifying file, use stdin:
|
|||
def make_version_line(old_value='0.0.0.0', spacing=' '*8, eol="\n"):
|
||||
prev_version = [int(x) for x in old_value.split('.')]
|
||||
now = datetime.datetime.utcnow()
|
||||
version = [now.year, now.month, now.day, 0]
|
||||
version = [now.year, now.month, now.day, 1]
|
||||
if prev_version[:3] == version[:3]:
|
||||
version[3] = prev_version[3] + 1
|
||||
version_str = '%04d.%02d.%02d.%d' % tuple(version)
|
||||
version_str = '%04d.%d.%d.%d' % tuple(version)
|
||||
return ('// @version' + spacing + version_str + eol, version_str)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue