samschott
samschott
**Is your feature request related to a problem? Please describe.** The macOS GUI currently has a baseline memory usage of about 50MB. This is because all windows are kept in...
This would allow distribution over the App Store and the automatic updates that come with it (see #316). It would also have security benefits. Possible road blocks from a first...
**Is your feature request related to a problem? Please describe.** Sometimes the main app also doubles as a regular Python package with a setup.py / setup.cfg which defines additional metadata....
**Describe the bug** Stone's frontend uses the `inspect.getargspec` method which was deprecated in Python 3.0 and removed in 3.11 (see https://docs.python.org/3.10/library/inspect.html#inspect.getargspec). https://github.com/dropbox/stone/blob/bdd49bc1017dcea2d193beb1925cded33a276d54/stone/frontend/ir_generator.py#L1077 This results in attribute errors when running stone...
**Describe the bug** `UserRootInfo` in the Python SDK does not have a `home_path` field, while the API docs at https://www.dropbox.com/developers/documentation/http/documentation#users-get_current_account say that it does. **Versions** * What version of the...
**Why is this feature valuable to you? Does it solve a problem you're having?** The requests library allows both streaming and chunked uploads (see https://requests.readthedocs.io/en/latest/user/advanced/#streaming-uploads and https://requests.readthedocs.io/en/latest/user/advanced/#chunk-encoded-requests). This has two...
**Is your feature request related to a problem? Please describe.** Maestral's support for multiple accounts is simple: different app instances can use different config files, therefore working completely independently to...
**Is your feature request related to a problem? Please describe.** A frequent question on Discord is how to create tasks that run in the background and don't block the GUI....
**Is your feature request related to a problem? Please describe.** Currently, there is only support for turning notification sounds off (default) or on. When enabled, the platform's default sound for...
This WIP PR starts by adding tests for the garbage collection of widgets. Known issues causing test failures are: * Circular references between winforms and Python. Will be fixed by...