Announcing Scm Workbench 0.9.4 for Git, Mercurial and Subversion

2020-06-13 Thread Barry Scott
SCM Workbench features

* Support Subversion (svn), Mercurial (hg) and Git projects.
* Experimental support for Perforce (P4)
* Easy to learn and use
* Builtin User Guide describes the operation and features of the application.
* Add project wizard can scan for all your existing projects.
* All subversion client operations in a GUI
* Many Git client operations in a GUI
* GUI git rebase
* Some mercurial (hg) client operations in a GUI
* Enhanced operations (subversion rename of modified files etc)
* Support for Dark mode
* Support software development workflow
* Builtin GUI diff showing line and character diffs
* Ability to diff between revisions in a files history
* Runs on Windows, Mac OS X and Unix platforms

Please visit http://scm-workbench.barrys-emacs.org/ for downloads, git source, 
user guide and further information on SCM Workbench.

New in 0.9.4
* Feature to show all commits since a tag (great for writing release notes)
* Update to Python 3.8 for built kits
* Build tools for macOS and Windows use venv
* Fix problem with creating editor and shell process on macOS 10.15
* Fix traceback with changing SVN properties
* Fix styles for light mode diff
* Support favourites that start with "Config".

Barry

-- 
https://mail.python.org/mailman/listinfo/python-list


change surface

2020-06-13 Thread Bischoop
I'm playing with pygame, https://bpa.st/6GOQ
 Not sure what is wrong here that object moves but draws another
 surface.
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: Fwd: python 3.8.3 fails

2020-06-13 Thread Mats Wichmann
On 6/11/20 8:58 AM, Avraham Markov wrote:
> Please suggest something to fix
> 
> -- Forwarded message -
> From: Avraham Markov 
> Date: Thu, Jun 11, 2020 at 5:50 PM
> Subject: python 3.8.3 fails
> To: 
> 
> 
> Hello, I successfully installed Python 3.8.3 (64-bit)
> at Windows 10 LTSC 64 bit by python-3.8.3-amd64 installer
> from https://www.python.org/downloads/windows/
> Also by  python-3.8.3 installer,
> but  lastly by  python-3.8.3-amd64 installer.
> Then when I open powershell,
> 
> PS C:\Users\AlexJer> python
> python : Python 3.8.3 (tags/v3.8.3:6f8c832, May 13 2020, 22:37:02) [MSC
> v.1924 64 bit (AMD64)] on win32
> At line:1 char:1
> + python
> + ~~
> + CategoryInfo  : NotSpecified: (Python 3.8.3 (t...MD64)] on
> win32:String) [], RemoteException
> + FullyQualifiedErrorId : NativeCommandError
> 
> Type "help", "copyright", "credits" or "license" for more information.
>>

For reasons which someone wiser in the ways of Powershell will have to
describe, you have to run some programs programs with a more qualified
name.  That is, try running:

python.exe

Alternatives:  the Python launcher doesn't have this limitation. Try
running:

py

If you used the python.org installer, the Python Launcher is recommended
anyway.

The Python install from the Microsoft Store also doesn't have that
limitation, if you install that you should be able to run by typing just

python

There's probably some simple setup to make it work as we might
expect/wish in Powershell... but the point is: there's nothing *wrong*
with your setup.


-- 
https://mail.python.org/mailman/listinfo/python-list


Re: Fwd: python 3.8.3 fails

2020-06-13 Thread MRAB

On 2020-06-13 15:41, Mats Wichmann wrote:

On 6/11/20 8:58 AM, Avraham Markov wrote:

Please suggest something to fix

-- Forwarded message -
From: Avraham Markov 
Date: Thu, Jun 11, 2020 at 5:50 PM
Subject: python 3.8.3 fails
To: 


Hello, I successfully installed Python 3.8.3 (64-bit)
at Windows 10 LTSC 64 bit by python-3.8.3-amd64 installer
from https://www.python.org/downloads/windows/
Also by  python-3.8.3 installer,
but  lastly by  python-3.8.3-amd64 installer.
Then when I open powershell,

PS C:\Users\AlexJer> python
python : Python 3.8.3 (tags/v3.8.3:6f8c832, May 13 2020, 22:37:02) [MSC
v.1924 64 bit (AMD64)] on win32
At line:1 char:1
+ python
+ ~~
+ CategoryInfo  : NotSpecified: (Python 3.8.3 (t...MD64)] on
win32:String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError

Type "help", "copyright", "credits" or "license" for more information.




For reasons which someone wiser in the ways of Powershell will have to
describe, you have to run some programs programs with a more qualified
name.  That is, try running:

python.exe

Alternatives:  the Python launcher doesn't have this limitation. Try
running:

py

If you used the python.org installer, the Python Launcher is recommended
anyway.

The Python install from the Microsoft Store also doesn't have that
limitation, if you install that you should be able to run by typing just

python

There's probably some simple setup to make it work as we might
expect/wish in Powershell... but the point is: there's nothing *wrong*
with your setup.

I have Windows 10 Home and the stock Python from python.org. Typing just 
"python" at the Powershell prompt starts Python without a problem.

--
https://mail.python.org/mailman/listinfo/python-list


Re: change surface

2020-06-13 Thread DL Neil via Python-list

On 13/06/20 10:40 PM, Bischoop wrote:

I'm playing with pygame, https://bpa.st/6GOQ
  Not sure what is wrong here that object moves but draws another
  surface.



(not sure how many will click on a link like that - best to copy-paste 
code into (text) email message)


The most usual reason for 'leaving' an old version of a surface visible, 
when a new frame is drawn by the game-loop, is that there is no code to 
'wipe' the old before painting the new 'on top'.


Either:
1 keep track of the position of each moving surface and before 
calculating its new position (and adding it to the background), execute 
appropriate code to wipe it (and restore whatever was 'underneath').
2 clear the entire display, and build it again from 'background' to 
'foreground'. (takes longer but is 'guaranteed')


--
Regards =dn
--
https://mail.python.org/mailman/listinfo/python-list