Skip to content

Commit

Permalink
change variable ()/[] to {}
Browse files Browse the repository at this point in the history
  • Loading branch information
GroundAura committed Feb 13, 2024
1 parent cff565c commit b4e1258
Show file tree
Hide file tree
Showing 12 changed files with 35 additions and 35 deletions.
2 changes: 1 addition & 1 deletion .vscode/commandline/copy-img.bat
Original file line number Diff line number Diff line change
@@ -1 +1 @@
copy "docs\images\brand\Main.png" "dist\(FolderName)\fomod\images"
copy "docs\images\brand\Main.png" "dist\{FolderName}\fomod\images"
2 changes: 1 addition & 1 deletion .vscode/commandline/copy-pex.bat
Original file line number Diff line number Diff line change
@@ -1 +1 @@
robocopy "build\papyrus\release" "dist\(FolderName)\Base\scripts" *.pex /it
robocopy "build\papyrus\release" "dist\{FolderName}\Base\scripts" *.pex /it
2 changes: 1 addition & 1 deletion .vscode/commandline/md2nexus.bat
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"(Pathmd2nexus)\md2nexus" -i "docs/description-md" -o "docs/description-nexus"
"{Pathmd2nexus}\md2nexus" -i "docs/description-md" -o "docs/description-nexus"
robocopy "docs\description-md" "docs\description-nexus" *.txt /it
4 changes: 2 additions & 2 deletions .vscode/commandline/mo2-downloads.bat
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
copy "build\(ZipName).zip" "(PathMO2Downloads)"
copy "build\MO2\(ZipName).zip.meta" "(PathMO2Downloads)"
copy "build\{ZipName}.zip" "{PathMO2Downloads}"
copy "build\MO2\{ZipName}.zip.meta" "{PathMO2Downloads}"
2 changes: 1 addition & 1 deletion .vscode/commandline/mo2-mod.bat
Original file line number Diff line number Diff line change
@@ -1 +1 @@
robocopy "dist\(FolderName)\Base" "(PathMO2Mods)\(MO2ModNamePR)" /e
robocopy "dist\{FolderName}\Base" "{PathMO2Mods}\{MO2ModNamePR}" /e
6 changes: 3 additions & 3 deletions .vscode/commandline/zip.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
del "build\(ZipName).zip"
cd "dist\(FolderName)"
"(Path7Zip)\7z" a -tzip "..\..\build\(ZipName).zip"
del "build\{ZipName}.zip"
cd "dist\{FolderName}"
"{Path7Zip}\7z" a -tzip "..\..\build\{ZipName}.zip"
38 changes: 19 additions & 19 deletions .vscode/python/prepare_repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,25 @@
# VARIABLES

# Old Text:
old_author_display = "(AuthorName)"
old_author_github = "(GitHubAccount)"
old_id_github = "(GitHubID)"
old_id_nexus = "(NexusID)"
old_license_holder = "[fullname]"
old_license_year = "[year]"
old_name_folder = "(FolderName)"
old_name_mo2_release = "(MO2ModName)"
old_name_mo2_test = "(MO2ModNamePR)"
old_name_plugin = "(PluginName)"
old_name_zip = "(ZipName)"
old_path_7Zip = "(Path7Zip)"
old_path_md2nexus = "(Pathmd2nexus)"
old_path_MO2Downloads = "(PathMO2Downloads)"
old_path_MO2Mods = "(PathMO2Mods)"
old_title = "(TitleName)"
old_title_short = "(TitleNameShort)"
old_title_xml = "(TitleNameXML)"
old_title_xml_short = "(TitleNameXMLShort)"
old_author_display = "{AuthorName}"
old_author_github = "{GitHubAccount}"
old_id_github = "{GitHubID}"
old_id_nexus = "{NexusID}"
old_license_holder = "{fullname}"
old_license_year = "{year}"
old_name_folder = "{FolderName}"
old_name_mo2_release = "{MO2ModName}"
old_name_mo2_test = "{MO2ModNamePR}"
old_name_plugin = "{PluginName}"
old_name_zip = "{ZipName}"
old_path_7Zip = "{Path7Zip}"
old_path_md2nexus = "{Pathmd2nexus}"
old_path_MO2Downloads = "{PathMO2Downloads}"
old_path_MO2Mods = "{PathMO2Mods}"
old_title = "{TitleName}"
old_title_short = "{TitleNameShort}"
old_title_xml = "{TitleNameXML}"
old_title_xml_short = "{TitleNameXMLShort}"

# New Text:
new_author_display = "______"
Expand Down
2 changes: 1 addition & 1 deletion _root/LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# MIT License

Copyright (c) [year] [fullname]
Copyright (c) {year} {fullname}

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
10 changes: 5 additions & 5 deletions _root/README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# ProjectName

ProjectName is a mod for Skyrim Special Edition created by (AuthorName).
ProjectName is a mod for Skyrim Special Edition created by {AuthorName}.

This mod can be found on [Nexus Mods](https://www.nexusmods.com/skyrimspecialedition/mods/(NexusID)).
This mod can be found on [Nexus Mods](https://www.nexusmods.com/skyrimspecialedition/mods/{NexusID}).
That is the best place to find installation information, comment, report bugs, and find my contact information.

Releases can also be downloaded on [here on GitHub](https://github.com/(GitHubAccount)/(GitHubID)/releases).
Releases can also be downloaded on [here on GitHub](https://github.com/{GitHubAccount}/{GitHubID}/releases).

A changelog can be found [here](https://github.com/(GitHubAccount)/(GitHubID)/blob/main/docs/CHANGELOG.md).
A changelog can be found [here](https://github.com/{GitHubAccount}/{GitHubID}/blob/main/docs/CHANGELOG.md).

Additional information can be found on the [GitHub Wiki](https://github.com/(GitHubAccount)/(GitHubID)/wiki).
Additional information can be found on the [GitHub Wiki](https://github.com/{GitHubAccount}/{GitHubID}/wiki).
Binary file modified dist/ProjectName/fomod/ModuleConfig.xml
Binary file not shown.
Binary file modified dist/ProjectName/fomod/info.xml
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/wiki/_Sidebar.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# [ProjectName](https://github.com/GroundAura/(GitHubID)/wiki)
# [ProjectName](https://github.com/GroundAura/{GitHubID}/wiki)

0 comments on commit b4e1258

Please sign in to comment.