File tree Expand file tree Collapse file tree 3 files changed +25
-11
lines changed Expand file tree Collapse file tree 3 files changed +25
-11
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,16 @@ Releases
3434
3535v2.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
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
8383v2.9.7
8484=================
Original file line number Diff line number Diff line change @@ -5,12 +5,20 @@ This page contains information to quickly getting started with the GUI.
55
66The 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
Original file line number Diff line number Diff line change 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 ()
You can’t perform that action at this time.
0 commit comments