Skip to content

Commit

Permalink
BUGFIX: SPDX works a bit differently than expected
Browse files Browse the repository at this point in the history
  • Loading branch information
amilcarlucas committed Jun 12, 2024
1 parent 6ddfaf0 commit d10464d
Show file tree
Hide file tree
Showing 20 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion MethodicConfigurator/frontend_tkinter_parameter_editor.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def show_about_window(root, version: str):
"https://github.com/ArduPilot/MethodicConfigurator/issues/new"))
licenses_button = ttk.Button(main_frame, text="Licenses",
command=lambda: webbrowser_open(
"https://github.com/ArduPilot/MethodicConfigurator/blob/master/LICENSES/CREDITS.md"))
"https://github.com/ArduPilot/MethodicConfigurator/blob/master/credits/CREDITS.md"))
source_button = ttk.Button(main_frame, text="Source Code",
command=lambda: webbrowser_open(
"https://github.com/ArduPilot/MethodicConfigurator"))
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,4 @@ To use and develop this software you must obey the [ArduPilot Methodic Configura
## License

This project is licensed under the [GNU General Public License v3.0](LICENSE.md).
It builds upon other [opensource software packages](LICENSES/CREDITS.md)
It builds upon other [opensource software packages](credits/CREDITS.md)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
long_description = long_description.replace("(ARCHITECTURE.md", f"({PRJ_URL}/blob/master/ARCHITECTURE.md")
long_description = long_description.replace("(CODE_OF_CONDUCT.md", f"({PRJ_URL}/blob/master/CODE_OF_CONDUCT.md")
long_description = long_description.replace("(LICENSE.md", f"({PRJ_URL}/blob/master/LICENSE.md")
long_description = long_description.replace("(LICENSES/CREDITS.md", f"({PRJ_URL}/blob/master/LICENSES/CREDITS.md")
long_description = long_description.replace("(credits/CREDITS.md", f"({PRJ_URL}/blob/master/credits/CREDITS.md")
long_description = long_description.replace("images/App_screenshot1.png",
f"{PRJ_URL}/raw/master/images/App_screenshot1.png")

Expand Down
1 change: 1 addition & 0 deletions windows/ardupilot_methodic_configurator.iss
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ Source: "..\MethodicConfigurator\ArduPilot_logo.png"; DestDir: "{app}\_internal\
Source: "..\MethodicConfigurator\ArduCopter_configuration_steps.json"; DestDir: "{app}\_internal\MethodicConfigurator"; Flags: ignoreversion
Source: "..\MethodicConfigurator\ArduPlane_configuration_steps.json"; DestDir: "{app}\_internal\MethodicConfigurator"; Flags: ignoreversion
Source: "..\LICENSES\*.*"; DestDir: "{app}\LICENSES"; Flags: ignoreversion
Source: "..\credits\*.*"; DestDir: "{app}\credits"; Flags: ignoreversion

[Dirs]
Name: "{userappdata}\.ardupilot_methodic_configurator\vehicles"; Flags: uninsneveruninstall
Expand Down

0 comments on commit d10464d

Please sign in to comment.