Skip to content

Commit 9c78307

Browse files
committed
Fixed #59
Fixed #62
1 parent 9ae09ac commit 9c78307

File tree

6 files changed

+25
-3
lines changed

6 files changed

+25
-3
lines changed

albow/themes/resources/default-theme.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ scroll_button_color = (64, 64, 64)
108108
[FileDialog]
109109
name = FileDialog
110110
base =
111-
up_button_text = «
111+
up_button_text =
112112

113113
[PaletteView]
114114
name = PaletteView

albow/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = '2.7.8'
1+
version = '2.7.9'

cleanup.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
3+
rm -rf dist build python3_albow.egg-info

packageme.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/bash
2+
#
3+
# Assumes python 3 is on PATH
4+
#
5+
clear
6+
7+
source venv-albow-Python-3.7.3/bin/activate
8+
./cleanup.sh
9+
python3 setup.py sdist bdist_wheel
10+
11+
# Check package
12+
twine check dist/*

pushtotest.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
source venv-albow-Python-3.7.3/bin/activate
4+
5+
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
6+
7+
deactivate

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name="python3-albow",
13-
version="2.7.8",
13+
version="2.7.9",
1414
description="A Little Bit of Widgetry for PyGame",
1515
long_description=README,
1616
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)