Skip to content

Commit 1059ce2

Browse files
authored
-m daf_gui (#414)
1 parent 89d61b4 commit 1059ce2

File tree

3 files changed

+25
-11
lines changed

3 files changed

+25
-11
lines changed

docs/source/changelog.rst

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,16 @@ Releases
3434

3535
v2.10
3636
====================
37+
- GUI:
38+
39+
- GUI can now be started with ``python -m daf_gui``
40+
- Deprecation notices are now a button.
41+
- Certain fields are now masked with '*' when not editing the object.
42+
- Old data that is being updated will now be updated by index
43+
- View properties of trackable objects. This can be used to, eg. view the channels AutoCHANNEL found.
44+
- 'Load default' button when editing :class:`discord.Intents` object.
45+
- A warning is shown besides the method execution frame to let users know, the data is not preserved.
46+
- Fixed accounts not being deleted when using delete / backspace keys in live view.
3747

3848
- Accounts:
3949

@@ -69,16 +79,6 @@ v2.10
6979
- Selenium can now be used though remote, however it is not recommended.
7080
- Querying for new guilds will not repeat once no more guilds are found.
7181

72-
- GUI:
73-
74-
- deprecation notices are now a button.
75-
- Certain fields are now masked with '*' when not editing the object.
76-
- Old data that is being updated will now be updated by index
77-
- View properties of trackable objects. This can be used to, eg. view the channels AutoCHANNEL found.
78-
- 'Load default' button when editing :class:`discord.Intents` object.
79-
- A warning is shown besides the method execution frame to let users know, the data is not preserved.
80-
- Fixed accounts not being deleted when using delete / backspace keys in live view.
81-
8282

8383
v2.9.7
8484
=================

docs/source/guide/GUI/quickstart.rst

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,20 @@ This page contains information to quickly getting started with the GUI.
55

66
The first thing you need is the library installed, see :ref:`Installation`.
77

8-
After successful installation, DAF can be run in graphical mode by executing the command ``daf-gui`` command inside the terminal.
8+
After successful installation, DAF can be run in graphical mode by executing the command ``daf-gui`` command inside the terminal
99

1010
.. code-block:: bash
1111
1212
$ daf-gui
1313
14+
or by using ``python -m daf_gui`` command.
15+
16+
17+
.. code-block:: bash
18+
19+
$ python -m daf_gui
20+
21+
1422
On Windows it can also be started though the Run (Win + R) menu.
1523

1624
.. image:: ./images/run-windows-daf-gui.png

src/daf_gui/__main__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
"""
2+
Startup file, that can be used to start the framework with 'python -m daf_gui'.
3+
"""
4+
from . import main
5+
6+
main.run()

0 commit comments

Comments
 (0)