-
-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #134 from SamSchott/develop
v1.0.0
- Loading branch information
Showing
65 changed files
with
3,831 additions
and
2,185 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -86,8 +86,8 @@ celerybeat-schedule | |
# Environments | ||
.env | ||
.venv | ||
env/ | ||
venv/ | ||
env* | ||
venv* | ||
ENV/ | ||
env.bak/ | ||
venv.bak/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
|
||
#### Short term: | ||
|
||
* Switch from implicit grant to PKCE OAuth flow as soon as Dropbox supports it (DONE). | ||
* Snap package once core20 is released and kde-neon works on core20. | ||
* CLI autocomplete for paths once there is better support from upstream `click`. | ||
* Update macOS app bundle to Python 3.8 and Qt 5.14. | ||
|
||
#### Long term: | ||
|
||
* deb and rpm packages: either with Pyinstaller executable or as Python package. | ||
* GUI support for multiple Dropbox accounts. | ||
* Option to install command line scripts from macOS app bundle (DONE). | ||
* Work with upstream `toga` to fix remaining issues for native macOS GUI, | ||
notably memory leak in `rubicon.objc` (DONE). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
|
||
.wy-side-nav-search > a img.logo, .wy-side-nav-search .wy-dropdown > a img.logo { | ||
display: block; | ||
margin: 0 auto; | ||
height: auto; | ||
width: auto; | ||
border-radius: 0; | ||
max-width: 50%; | ||
background:transparent | ||
} | ||
|
||
.wy-side-nav-search { | ||
background-color: #9d9d9d; | ||
} | ||
|
||
.wy-side-nav-search input[type=text] { | ||
border-color:#9d9d9d | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
|
||
Config helper functions | ||
======================= | ||
|
||
.. automodule:: config.base | ||
:members: | ||
:show-inheritance: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
|
||
maestral.config | ||
=============== | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
config.main <main> | ||
config.user <user> | ||
config.base <base> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
|
||
Config defaults | ||
=============== | ||
|
||
.. automodule:: config.main | ||
:members: | ||
:show-inheritance: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
|
||
Config file management | ||
====================== | ||
|
||
.. automodule:: config.user | ||
:members: | ||
:show-inheritance: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,3 +16,4 @@ six | |
u-msgpack-python | ||
watchdog | ||
m2r | ||
sphinx-click |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.