Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove some links to 2021 #18

Merged
merged 1 commit into from
May 20, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 3ds Max 2021 Python How Tos
# 3ds Max 2021 and 2022 Python How Tos
### Practical Python 3.7 Development Examples For 3ds Max

![Splash](/doc/Splash.png)
Expand Down
2 changes: 1 addition & 1 deletion doc/uninstall.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ needed to remove them are explained at the bottom of this page).

After the installation, pystartup.ms will be copied to:

"$HOME/AppData/Local/Autodesk/3dsMax/2021 - 64bit/ENU/scripts/startup"
"$HOME/AppData/Local/Autodesk/3dsMax/2022 - 64bit/ENU/scripts/startup"

It can simply be removed from there.

Expand Down
23 changes: 17 additions & 6 deletions src/packages/inbrowserhelp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,24 @@ is the url (without https://, this will be added later, forcing https and not
http to be used for everything).

```python
from pymxs import runtime as rt
MAX_VERSION = rt.maxversion()[7]
MAX_HELP = f"help.autodesk.com/view/MAXDEV/{MAX_VERSION}/ENU"

TOPICS = [
("gettingstarted", "Getting Started With Python in 3ds Max", "git.autodesk.com/windish/maxpythontutorials"),
("howtos", "Python HowTos Github Repo", "git.autodesk.com/windish/pythonhowtos"),
("pymxs", "Pymxs Online Documentation", "help-beta.autodesk.com/view/MAXDEV/2021/ENU/?guid=__developer_using_pymxs_html"),
("pyside2", "Qt for Python Documentation (PySide2)", "doc.qt.io/qtforpython/contents.html"),
("python", "Python 3.7 Documentation", "docs.python.org/3.7/")
]
("gettingstarted", "Getting Started With Python in 3ds Max",
f"{MAX_HELP}/?guid=Max_Python_API_tutorials_creating_the_dialog_html"),
("howtos", "Python HowTos Github Repo",
"github.com/ADN-DevTech/3dsMax-Python-HowTos"),
("samples", "Python samples (Github Repo)",
"github.com/ADN-DevTech/3dsMax-Python-HowTos/tree/master/src/samples"),
("pymxs", "Pymxs Online Documentation",
f"{MAX_HELP}/?guid=Max_Python_API_using_pymxs_html"),
("pyside2", "Qt for Python Documentation (PySide2)",
"doc.qt.io/qtforpython/contents.html"),
("python", "Python 3.7 Documentation",
"docs.python.org/3.7/")
]
```

The MENU\_LOCATION constant gives the location in the menu system where the
Expand Down