Skip to content

Commit

Permalink
Update Versions
Browse files Browse the repository at this point in the history
visualization.py 0.4
construct_dpdb_visu.py 0.4
svgjoin.py 0.3
  • Loading branch information
VaeterchenFrost committed May 23, 2020
1 parent 0b89dd4 commit f4a54c3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions tdvisualization_repo/tdvisu/construct_dpdb_visu.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

from time import sleep
from configparser import ConfigParser
from typing import Optional, Iterable, Iterator, TypeVar
from typing import Iterable, Iterator, TypeVar

import psycopg2 as pg

Expand All @@ -48,8 +48,8 @@

__author__ = "Martin Röbke <martin.roebke@tu-dresden.de>"
__status__ = "development"
__version__ = "0.3"
__date__ = "21 May 2020"
__version__ = "0.4"
__date__ = "23 May 2020"

logging.basicConfig(
format="%(asctime)s,%(msecs)d %(levelname)-8s"
Expand Down
6 changes: 3 additions & 3 deletions tdvisualization_repo/tdvisu/svgjoin.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

__author__ = "Martin Röbke <martin.roebke@tu-dresden.de>"
__status__ = "development"
__version__ = "0.2"
__date__ = "29 April 2020"
__version__ = "0.3"
__date__ = "23 May 2020"

LOGGER = logging.getLogger(__name__)

Expand Down Expand Up @@ -63,7 +63,7 @@ def append_svg(first_dict: dict, snd_dict: dict,
h_displacement = float(viewbox1[WIDTH]) + centerpad
# adjust viewbox of first svg
viewbox1[WIDTH] = str(max(float(viewbox1[WIDTH]),
h_displacement + float(viewbox2[WIDTH])))
h_displacement + float(viewbox2[WIDTH])))

(v_displacement, combine_height, scale2) = f_transform(
viewbox1[HEIGHT], viewbox2[HEIGHT], v_bottom, v_top)
Expand Down
4 changes: 2 additions & 2 deletions tdvisualization_repo/tdvisu/visualization.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@

__author__ = "Martin Röbke <martin.roebke@tu-dresden.de>"
__status__ = "development"
__version__ = "0.3"
__date__ = "21 May 2020"
__version__ = "0.4"
__date__ = "23 May 2020"

logging.basicConfig(
format="%(asctime)s,%(msecs)d %(levelname)s"
Expand Down

0 comments on commit f4a54c3

Please sign in to comment.