Skip to content

Commit 45baf1f

Browse files
committed
CHORE: Release version 1.0.0
The software is feature complete and stable It has been tested and used by hundreds of users It is very PEP8 linted and has decent test coverage
1 parent 099c49f commit 45baf1f

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

ardupilot_methodic_configurator/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212

1313
_ = load_translation()
1414

15-
__version__ = "0.9.17"
15+
__version__ = "1.0.0"

ardupilot_methodic_configurator/frontend_tkinter_parameter_editor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def show_about_window(root: ttk.Frame, _version: str) -> None: # pylint: disabl
103103
report_bug_button = ttk.Button(
104104
main_frame,
105105
text=_("Report a Bug"),
106-
command=lambda: webbrowser_open("https://github.com/ArduPilot/MethodicConfigurator/issues/new"),
106+
command=lambda: webbrowser_open("https://github.com/ArduPilot/MethodicConfigurator/issues/new/choose"),
107107
)
108108
licenses_button = ttk.Button(
109109
main_frame,

pyproject.toml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,25 @@ keywords = ["ArduPilot", "Configuration", "SCM", "Methodic", "ArduCopter", "Ardu
1717
license = {text = "GPLv3"}
1818

1919
classifiers = [
20-
"Development Status :: 4 - Beta",
20+
"Development Status :: 5 - Production/Stable",
21+
"Intended Audience :: Developers",
22+
"Intended Audience :: Education",
23+
"Intended Audience :: End Users/Desktop",
24+
"Intended Audience :: Manufacturing",
2125
"Intended Audience :: Science/Research",
2226
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
27+
"Natural Language :: English",
28+
"Natural Language :: Chinese (Simplified)",
29+
"Natural Language :: German",
30+
"Natural Language :: Portuguese",
2331
"Operating System :: OS Independent",
2432
"Programming Language :: Python :: 3.9",
2533
"Programming Language :: Python :: 3.10",
2634
"Programming Language :: Python :: 3.11",
2735
"Programming Language :: Python :: 3.12",
2836
"Programming Language :: Python :: 3.13",
37+
"Topic :: Software Development :: Embedded Systems",
38+
"Topic :: System :: Installation/Setup",
2939
"Topic :: Scientific/Engineering",
3040
]
3141

0 commit comments

Comments
 (0)