Skip to content
Merged
Show file tree
Hide file tree
Changes from 17 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
1 change: 1 addition & 0 deletions cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"guid": "1409c8f5-c276-4cf3-a2fd-defcbdfef9a2",
"install_scope": "",
"use_full_install_path": true,
"package_path": "C:\\path\\to\\content",
"binary_path": "{{ cookiecutter.formal_name }}.exe",
"document_types": "",
"python_version": "3.X.0",
Expand Down
3 changes: 3 additions & 0 deletions {{ cookiecutter.format }}/briefcase.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Generated using Python {{ cookiecutter.python_version }}
[briefcase]
target_version = "0.3.24"

[paths]
app_path = "src/app"
app_packages_path = "src/app_packages"
Expand Down
9 changes: 6 additions & 3 deletions {{ cookiecutter.format }}/unicode.wxl
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<WixLocalization Codepage="utf-8" xmlns="http://schemas.microsoft.com/wix/2006/localization">
<String Id="InstallScopeDlgPerMachineDescription">[ProductName] will be installed in a per-machine folder and be available for all users. You must have local Administrator privileges.</String>
<WixLocalization Culture="en-US" xmlns="http://wixtoolset.org/schemas/v4/wxl">
<!-- We override this string to remove the sentence "You can change the default
installation folder", which is an option we don't currently offer. -->
<String
Id="InstallScopeDlgPerMachineDescription"
Value="[ProductName] will be installed in a per-machine folder and be available for all users. You must have local Administrator privileges." />
</WixLocalization>
Loading