Joe R
|
0e1ecd1c1e
|
Enhanced higher resolution cardset support.
|
2021-04-25 13:46:53 -04:00 |
|
Joe R
|
dba55c20fd
|
Split spread stacks logic from auto-scale logic.
|
2021-04-25 08:51:04 +03:00 |
|
Guillaumegaillard
|
5876134d11
|
Make auto_scale spread non-talon stacks on canvas
make card size, scale and canvas changes independent
check scale x after change cardset
|
2020-11-23 16:26:22 +02:00 |
|
Shlomi Fish
|
7da41a93be
|
Allow to swap the mouse keys using the ini file.
See: https://sourceforge.net/p/pysolfc/discussion/503708/thread/5d77434ff8/
" PySolFC / Discussion / Open Discussion: Any way to remap mouse buttons? "
We may not have covered all the affected calls to bind().
|
2020-10-19 18:18:13 +03:00 |
|
Shlomi Fish
|
39d59547af
|
flake8 compliance
|
2020-09-07 11:20:53 +03:00 |
|
Shlomi Fish
|
3de9955879
|
try2fix flake 8 tests [travis/etc.]
|
2020-06-17 20:53:11 +03:00 |
|
Shlomi Fish
|
2437c702fd
|
extract more code to pysol_cards
|
2020-05-26 18:56:14 +03:00 |
|
Shlomi Fish
|
12cf1e507f
|
Rename variable/s to make them more descriptive.
|
2020-05-25 14:06:08 +03:00 |
|
Shlomi Fish
|
0ac4339252
|
Require a minimal version of "attr".
See: https://github.com/shlomif/PySolFC/issues/159 . Thanks to
@radub7 for the report.
|
2020-04-22 20:21:10 +03:00 |
|
Shlomi Fish
|
57b9c9d41e
|
fix a crash on "open game"
|
2020-02-09 11:44:52 +02:00 |
|
Shlomi Fish
|
2258274c77
|
Refactoring / code cleanup.
Use a frozenset()-like list.
See:
* https://en.wikipedia.org/wiki/Code_refactoring
* https://www.refactoring.com/
* https://www.joelonsoftware.com/2002/01/23/rub-a-dub-dub/
Some small optimisations may have slipped in as well.
|
2020-02-07 11:44:24 +02:00 |
|
Shlomi Fish
|
0306d648fa
|
fix load/save
|
2020-02-07 11:31:34 +02:00 |
|
Shlomi Fish
|
b3f79c9df8
|
Extract a function or class to step away from God Object.
See:
* https://en.wikipedia.org/wiki/God_object
* https://www.c-sharpcorner.com/article/god-object-a-code-smell/ .
This is Refactoring / code cleanup.
See:
* https://refactoring.com/catalog/extractMethod.html
* https://en.wikipedia.org/wiki/Code_refactoring
* https://www.refactoring.com/
* https://www.joelonsoftware.com/2002/01/23/rub-a-dub-dub/
Some small optimisations may have slipped in as well.
|
2019-12-30 20:38:25 +02:00 |
|
Shlomi Fish
|
fab74e9a4b
|
Extract a function or class to step away from God Object.
See:
* https://en.wikipedia.org/wiki/God_object
* https://www.c-sharpcorner.com/article/god-object-a-code-smell/ .
This is Refactoring / code cleanup.
See:
* https://refactoring.com/catalog/extractMethod.html
* https://en.wikipedia.org/wiki/Code_refactoring
* https://www.refactoring.com/
* https://www.joelonsoftware.com/2002/01/23/rub-a-dub-dub/
Some small optimisations may have slipped in as well.
|
2019-12-29 11:37:13 +02:00 |
|
Shlomi Fish
|
0f662fdb12
|
Extract a function or class to step away from God Object.
See:
* https://en.wikipedia.org/wiki/God_object
* https://www.c-sharpcorner.com/article/god-object-a-code-smell/ .
This is Refactoring / code cleanup.
See:
* https://refactoring.com/catalog/extractMethod.html
* https://en.wikipedia.org/wiki/Code_refactoring
* https://www.refactoring.com/
* https://www.joelonsoftware.com/2002/01/23/rub-a-dub-dub/
Some small optimisations may have slipped in as well.
|
2019-12-29 11:08:56 +02:00 |
|
lufebe16
|
92f2d5f602
|
fixed2: allow game restore to accept older storage format.
|
2019-09-27 11:24:03 +02:00 |
|
lb@lb7520
|
97267e9a77
|
fixed: restore game
|
2019-09-26 12:21:58 +02:00 |
|
Juhani Numminen
|
65b86f2d1d
|
Improve internationalization
- More strings marked for translation
- Used format strings instead of concatinating fragments
- Removed space before '?' or '!' from sentences in English
Following the GNU gettext guidelines at
https://www.gnu.org/software/gettext/manual/gettext.html#Preparing-Strings
|
2019-08-31 13:22:21 +03:00 |
|
Shlomi Fish
|
34609fc9d2
|
Extract a common class/struct.
This is Refactoring / code cleanup.
See:
* https://en.wikipedia.org/wiki/God_object
* https://en.wikipedia.org/wiki/Extract_class
* https://en.wikipedia.org/wiki/Code_refactoring
* https://www.refactoring.com/
* https://www.joelonsoftware.com/2002/01/23/rub-a-dub-dub/
Some small optimisations may have slipped in as well.
|
2019-08-29 16:55:47 +03:00 |
|
Shlomi Fish
|
a472160ca7
|
Extract a common class/struct.
This is Refactoring / code cleanup.
See:
* https://en.wikipedia.org/wiki/God_object
* https://en.wikipedia.org/wiki/Extract_class
* https://en.wikipedia.org/wiki/Code_refactoring
* https://www.refactoring.com/
* https://www.joelonsoftware.com/2002/01/23/rub-a-dub-dub/
Some small optimisations may have slipped in as well.
|
2019-08-27 21:32:20 +03:00 |
|
Shlomi Fish
|
7bbacfb97e
|
Extract a method or a function.
This is Refactoring / code cleanup.
See:
* https://refactoring.com/catalog/extractMethod.html
* https://en.wikipedia.org/wiki/Code_refactoring
* https://www.refactoring.com/
* https://www.joelonsoftware.com/2002/01/23/rub-a-dub-dub/
Some small optimisations may have slipped in as well.
|
2019-08-14 20:49:03 +03:00 |
|
Shlomi Fish
|
0ffcc12afc
|
Extract a common class/struct.
This is Refactoring / code cleanup.
See:
* https://en.wikipedia.org/wiki/God_object
* https://en.wikipedia.org/wiki/Extract_class
* https://en.wikipedia.org/wiki/Code_refactoring
* https://www.refactoring.com/
* https://www.joelonsoftware.com/2002/01/23/rub-a-dub-dub/
Some small optimisations may have slipped in as well.
|
2019-08-14 19:42:24 +03:00 |
|
Shlomi Fish
|
9b0b862406
|
Extract a common class/struct.
This is Refactoring / code cleanup.
See:
* https://en.wikipedia.org/wiki/God_object
* https://en.wikipedia.org/wiki/Extract_class
* https://en.wikipedia.org/wiki/Code_refactoring
* https://www.refactoring.com/
* https://www.joelonsoftware.com/2002/01/23/rub-a-dub-dub/
Some small optimisations may have slipped in as well.
|
2019-08-14 18:25:34 +03:00 |
|
Shlomi Fish
|
23843dc2a8
|
Extract a common class/struct.
This is Refactoring / code cleanup.
See:
* https://en.wikipedia.org/wiki/God_object
* https://en.wikipedia.org/wiki/Extract_class
* https://en.wikipedia.org/wiki/Code_refactoring
* https://www.refactoring.com/
* https://www.joelonsoftware.com/2002/01/23/rub-a-dub-dub/
Some small optimisations may have slipped in as well.
|
2019-08-14 17:59:27 +03:00 |
|
Shlomi Fish
|
0082962a93
|
Extract a common class/struct.
This is Refactoring / code cleanup.
See:
* https://en.wikipedia.org/wiki/God_object
* https://en.wikipedia.org/wiki/Extract_class
* https://en.wikipedia.org/wiki/Code_refactoring
* https://www.refactoring.com/
* https://www.joelonsoftware.com/2002/01/23/rub-a-dub-dub/
Some small optimisations may have slipped in as well.
|
2019-07-31 16:10:28 +03:00 |
|
Shlomi Fish
|
3c93a19508
|
Extract a common class/struct.
This is Refactoring / code cleanup.
See:
* https://en.wikipedia.org/wiki/God_object
* https://en.wikipedia.org/wiki/Extract_class
* https://en.wikipedia.org/wiki/Code_refactoring
* https://www.refactoring.com/
* https://www.joelonsoftware.com/2002/01/23/rub-a-dub-dub/
Some small optimisations may have slipped in as well.
|
2019-07-26 16:21:07 +03:00 |
|
Shlomi Fish
|
602f9ebc93
|
add missing attribute.
See https://github.com/shlomif/PySolFC/issues/129 .
|
2019-07-26 00:04:07 +03:00 |
|
Shlomi Fish
|
6dd98f5984
|
Extract a function or class to step away from God Object.
See:
* https://en.wikipedia.org/wiki/God_object
* https://www.c-sharpcorner.com/article/god-object-a-code-smell/ .
This is Refactoring / code cleanup.
See:
* https://refactoring.com/catalog/extractMethod.html
* https://en.wikipedia.org/wiki/Code_refactoring
* https://www.refactoring.com/
* https://www.joelonsoftware.com/2002/01/23/rub-a-dub-dub/
Some small optimisations may have slipped in as well.
|
2019-07-22 14:31:56 +03:00 |
|
Shlomi Fish
|
6d4a1191cc
|
Refactoring / code cleanup.
See:
* https://en.wikipedia.org/wiki/Code_refactoring
* https://www.refactoring.com/
* https://www.joelonsoftware.com/2002/01/23/rub-a-dub-dub/
Some small optimisations may have slipped in as well.
|
2019-07-18 14:43:58 +03:00 |
|
Shlomi Fish
|
7934babad2
|
Extract a method or a function.
This is Refactoring / code cleanup.
See:
* https://refactoring.com/catalog/extractMethod.html
* https://en.wikipedia.org/wiki/Code_refactoring
* https://www.refactoring.com/
* https://www.joelonsoftware.com/2002/01/23/rub-a-dub-dub/
Some small optimisations may have slipped in as well.
|
2019-07-15 17:17:04 +03:00 |
|
Shlomi Fish
|
62005c7c42
|
Extract a common class/struct.
This is Refactoring / code cleanup.
See:
* https://en.wikipedia.org/wiki/God_object
* https://en.wikipedia.org/wiki/Extract_class
* https://en.wikipedia.org/wiki/Code_refactoring
* https://www.refactoring.com/
* https://www.joelonsoftware.com/2002/01/23/rub-a-dub-dub/
Some small optimisations may have slipped in as well.
|
2019-07-15 14:17:03 +03:00 |
|
Shlomi Fish
|
18efc0e5d3
|
Extract a common class/struct.
This is Refactoring / code cleanup.
See:
* https://en.wikipedia.org/wiki/God_object
* https://en.wikipedia.org/wiki/Extract_class
* https://en.wikipedia.org/wiki/Code_refactoring
* https://www.refactoring.com/
* https://www.joelonsoftware.com/2002/01/23/rub-a-dub-dub/
Some small optimisations may have slipped in as well.
|
2019-07-14 22:56:06 +03:00 |
|
Shlomi Fish
|
69a2036f94
|
remove pointless comments
|
2019-06-24 17:23:13 +03:00 |
|
Shlomi Fish
|
7cb6d9c8b5
|
extract a method.
|
2019-06-24 16:53:57 +03:00 |
|