Skip to content

Commit bd4e58d

Browse files
Merge pull request #552 from jungmannlab/development
Development
2 parents 7df6b80 + fef80e0 commit bd4e58d

File tree

18 files changed

+28
-19
lines changed

18 files changed

+28
-19
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.8.6
2+
current_version = 0.8.7
33
commit = True
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ wheels/
2929
picasso/gui/plugins/
3030

3131
# Sound notifications
32-
picasso/notification_sounds/
32+
picasso/gui/notification_sounds/
3333

3434
# Camera configuration
3535
picasso/config.yaml

changelog.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Changelog
33

44
Last change: 01-OCT-2025 CEST
55

6-
0.8.5-6
6+
0.8.5-7
77
-------
88
- Sound notifications when long processes finish, see `here <https://picassosr.readthedocs.io/en/latest/others.html>`_
99
- Several dialogs in Render, Localize and Simulate are now scrollable (*experimental*)

distribution/picasso.iss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
AppName=Picasso
33
AppPublisher=Jungmann Lab, Max Planck Institute of Biochemistry
44

5-
AppVersion=0.8.6
5+
AppVersion=0.8.7
66
DefaultDirName={commonpf}\Picasso
77
DefaultGroupName=Picasso
8-
OutputBaseFilename="Picasso-Windows-64bit-0.8.6"
8+
OutputBaseFilename="Picasso-Windows-64bit-0.8.7"
99
ArchitecturesAllowed=x64
1010
ArchitecturesInstallIn64BitMode=x64
1111

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# The short X.Y version
2727
version = ""
2828
# The full version, including alpha/beta/rc tags
29-
release = "0.8.6"
29+
release = "0.8.7"
3030

3131
# -- General configuration ---------------------------------------------------
3232

docs/others.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@ Other
44

55
Sound notifications
66
-------------------
7-
Starting in version 0.8.5, Picasso supports sound notifications. In Render and SPINNA, these can be selected in the ``File`` menu in the menu bar. The available files are read from the ``notification_sounds`` folder. ``.mp3`` and ``.wav`` files are supported. Default sound notification is saved automatically when manually changed.
7+
Starting in version 0.8.5, Picasso supports sound notifications. In Render and SPINNA, these can be selected in the ``File`` menu in the menu bar. The available files are read from the ``picasso/gui/notification_sounds`` folder. ``.mp3`` and ``.wav`` files are supported. Default sound notification is saved automatically when manually changed.
88

99
Custom notifications
1010
~~~~~~~~~~~~~~~~~~~~
11-
To add custom notification sounds, copy the sound files (``.mp3`` or ``.wav``) to the ``notification_sounds`` folder. Depending on how you installed Picasso, this folder can be found in different locations:
11+
To add custom notification sounds, copy the sound files (``.mp3`` or ``.wav``) to the ``picasso/gui/notification_sounds`` folder. Depending on how you installed Picasso, this folder can be found in different locations:
1212

1313
GitHub
1414
------
1515
If you cloned the GitHub repository, you can add sound notifications by following these steps:
1616

1717
- Find the directory where you cloned the GitHub repository with Picasso.
18-
- Go to ``picasso/notification_sounds``.
18+
- Go to ``picasso/gui/notification_sounds``.
1919
- Copy the sound files to this folder.
2020

2121
PyPI
@@ -24,7 +24,7 @@ If you installed Picasso using ``pip install picassosr``, you can add sound noti
2424

2525
- Activate your conda environment where ``picassosr`` is installed by typing ``conda activate YOUR_ENVIRONMENT``.
2626
- To find the location of the package, type ``pip show picassosr`` and look for the line starting with ``Location:``.
27-
- Navigate to this location and go to ``picasso/notification_sounds``.
27+
- Navigate to this location and go to ``picasso/gui/notification_sounds``.
2828
- Copy the sound files to this folder.
2929

3030

@@ -33,5 +33,5 @@ One click installer
3333
If you installed Picasso using the one click installer from `the Picasso release page <https://github.com/jungmannlab/picasso/releases/>`__ , you can add sound notifications by following these steps:
3434

3535
- Find the location where you installed Picasso. By default, it is ``C:/Picasso``. *Before version 0.8.3, the default location was* ``C:/Program Files/Picasso``.
36-
- Go to the following subfolder in the `Picasso` directory: ``picasso/notification_sounds``.
36+
- Go to the following subfolder: ``picasso/gui/notification_sounds``.
3737
- Copy the sound files to this folder.

picasso/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import os.path
1212
import yaml as yaml
1313

14-
__version__ = "0.8.6"
14+
__version__ = "0.8.7"
1515

1616
_this_file = os.path.abspath(__file__)
1717
_this_dir = os.path.dirname(_this_file)

picasso/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION_NO = "0.8.6"
1+
VERSION_NO = "0.8.7"
File renamed without changes.

0 commit comments

Comments
 (0)