Skip to content

Commit

Permalink
0.20.1 setup.py fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cmang committed May 27, 2023
1 parent 8b33e11 commit 747ebc2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Durdraw
_| |__ __ _____ __| |_____ _____ __ __ __
/ _ | | | __| _ | __| _ | | | |\
/_____|_____|__|__|_____|__|___\____|________| |
\_____________________________________________\| v 0.20.0
\_____________________________________________\| v 0.20.1


![Durdraw-0 20-demo](https://github.com/cmang/durdraw/assets/261501/ce539865-2e84-4423-92af-cd9ddeeb02ce)
Expand Down Expand Up @@ -103,7 +103,7 @@ This will place durdraw.ini into ~/.durdraw/ and the themes into ~/.durdraw/them
Here is an example durdraw.ini file:

<pre>
; Durdraw 0.20.0 Configuration File
; Durdraw 0.20 Configuration File
[Theme]
theme-16: ~/.durdraw/themes/purpledrank-16.dtheme.ini
theme-256: ~/.durdraw/themes/mutedform-256.dtheme.ini
Expand Down
2 changes: 1 addition & 1 deletion durdraw/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def undosize(size_s):
raise argparse.ArgumentTypeError("Undo size must be between 1 and 1000.")

def main():
DUR_VER = '0.20.0'
DUR_VER = '0.20.1'
DUR_FILE_VER = 7
DEBUG_MODE = False # debug = makes debug_write available, sends more notifications
durlogo = '''
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name='durdraw',
version='0.20.0',
version='0.20.1',
author='Sam Foster',
author_email='samfoster@gmail.com',
description='Animated Color ASCII and Unicode Art Editor',
Expand All @@ -25,7 +25,8 @@
# ('share/durdraw', ['examples/*.dur']),
('share/durdraw', ['examples/cm-doge.asc']),
('share/durdraw', ['examples/cm-doge.dur']),
('share/durdraw', ['examples/eye.dur']),
('share/durdraw', ['examples/cm-eye.dur']),
('share/durdraw', ['examples/dopehax.dur']),
('share/durdraw', ['examples/mane.dur']),
('share/durdraw', ['examples/rain.dur']),
],
Expand Down

0 comments on commit 747ebc2

Please sign in to comment.