Updating version numbers

This commit is contained in:
Imanol-Mikel Barba Sabariego 2023-07-06 20:14:35 +02:00
parent 7d9ba4e893
commit 3adf9aa8cf
9 changed files with 10 additions and 10 deletions

2
gui.py
View File

@ -7,7 +7,7 @@
"""Graphical user-interface for mymc."""
_SCCS_ID = "@(#) mymc gui.py 1.8 22/02/05 19:20:59\n"
_SCCS_ID = "@(#) mymc gui.py 1.9 23/07/06 19:35:21\n"
import os
import sys

View File

@ -11,7 +11,7 @@ a two level dicitionary look up during compression rather than
LZARI.C's binary search tree.
"""
_SCCS_ID = "@(#) mymc lzari.py 1.6 12/10/04 19:07:53\n"
_SCCS_ID = "@(#) mymc lzari.py 1.7 23/07/06 16:03:53\n"
import sys
import array

View File

@ -7,7 +7,7 @@
"""A utility for manipulating PS2 memory card images."""
_SCCS_ID = "@(#) mymc mymc.py 1.13 22/01/15 01:04:45\n"[:-1]
_SCCS_ID = "@(#) mymc mymc.py 1.14 23/07/06 15:51:52\n"[:-1]
import sys
import os

View File

@ -7,7 +7,7 @@
"""Manipulate PS2 memory card images."""
_SCCS_ID = "@(#) mymc ps2mc.py 1.11 22/01/15 01:17:07\n"
_SCCS_ID = "@(#) mymc ps2mc.py 1.12 23/07/06 19:48:03\n"
import sys
import array

View File

@ -7,7 +7,7 @@
"""Functions for working with PS2 memory card directory entries."""
_SCCS_ID = "@(#) mymc ps2mc_dir.py 1.4 12/10/04 19:11:08\n"
_SCCS_ID = "@(#) mymc ps2mc_dir.py 1.5 23/07/06 06:30:13\n"
import struct
import time

View File

@ -10,7 +10,7 @@ Routines for calculating the Hamming codes, a simple form of error
correcting codes (ECC), as used on PS2 memory cards.
"""
_SCCS_ID = "@(#) mymc ps2mc_ecc.py 1.4 07/12/17 02:34:04\n"
_SCCS_ID = "@(#) mymc ps2mc_ecc.py 1.5 23/07/06 16:03:58\n"
import array

View File

@ -7,7 +7,7 @@
# A simple interface for working with various PS2 save file formats.
#
_SCCS_ID = "@(#) mymc ps2save.py 1.8 22/01/15 01:25:25\n"
_SCCS_ID = "@(#) mymc ps2save.py 1.9 23/07/06 19:46:30\n"
import sys
import os

View File

@ -7,7 +7,7 @@
# Simple rounding functions.
#
_SCCS_ID = "@(#) mymc round.py 1.3 07/04/17 02:10:27\n"
_SCCS_ID = "@(#) mymc round.py 1.4 23/07/06 02:44:14\n"
def div_round_up(a, b):
return int((a + b - 1) / b)

View File

@ -1,2 +1,2 @@
MYMC_VERSION_BUILD = r'''7'''
MYMC_VERSION_MAJOR = r'''2'''
MYMC_VERSION_BUILD = r'''0'''
MYMC_VERSION_MAJOR = r'''3'''