From 350f1ee3627ae0afd54336fb064f1266a7632f8b Mon Sep 17 00:00:00 2001 From: zeffy Date: Mon, 9 Oct 2017 18:09:06 -0700 Subject: [PATCH] finish advanced installer setup, add DONATIONS.md --- DONATIONS.md | 6 + wufuc.sln | 27 ++- {wufuc_setup_ai => wufuc_setup}/LICENSE.rtf | 0 wufuc_setup/wufuc_setup.aip | 227 ++++++++++++++++++ .../wufuc_setup.aiproj | 14 +- wufuc_setup_ai/wufuc_setup_ai.aip | 130 ---------- 6 files changed, 255 insertions(+), 149 deletions(-) create mode 100644 DONATIONS.md rename {wufuc_setup_ai => wufuc_setup}/LICENSE.rtf (100%) create mode 100644 wufuc_setup/wufuc_setup.aip rename wufuc_setup_ai/wufuc_setup_ai.aiproj => wufuc_setup/wufuc_setup.aiproj (63%) delete mode 100644 wufuc_setup_ai/wufuc_setup_ai.aip diff --git a/DONATIONS.md b/DONATIONS.md new file mode 100644 index 0000000..3a6723d --- /dev/null +++ b/DONATIONS.md @@ -0,0 +1,6 @@ +# Donations + +Thanks for showing an interest in donating to the development of wufuc! +While any support is very highly appreciated please keep in mind that donating will not guarantee you better support or other perks, just a warm fuzzy feeling knowing you really helped me out. :) + +### Sorry, I'm currently in the process of moving to a new donation platform, please check back again in a few days! diff --git a/wufuc.sln b/wufuc.sln index 9a765a9..acdd8d1 100644 --- a/wufuc.sln +++ b/wufuc.sln @@ -20,11 +20,12 @@ EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Documentation", "Documentation", "{65210B26-9B74-4B7E-B777-7A2EE4162595}" ProjectSection(SolutionItems) = preProject CONTRIBUTING.md = CONTRIBUTING.md + DONATIONS.md = DONATIONS.md LICENSE = LICENSE README.md = README.md EndProjectSection EndProject -Project("{840C416C-B8F3-42BC-B0DD-F6BB14C9F8CB}") = "wufuc_setup_ai", "wufuc_setup_ai\wufuc_setup_ai.aiproj", "{8F75FC4A-22FF-4CDA-8A09-3BC547E7C29B}" +Project("{840C416C-B8F3-42BC-B0DD-F6BB14C9F8CB}") = "wufuc_setup", "wufuc_setup\wufuc_setup.aiproj", "{8F75FC4A-22FF-4CDA-8A09-3BC547E7C29B}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -48,18 +49,18 @@ Global {00F96695-CE41-4C2F-A344-6219DFB4F887}.Release|x64.Build.0 = Release|x64 {00F96695-CE41-4C2F-A344-6219DFB4F887}.Release|x86.ActiveCfg = Release|Win32 {00F96695-CE41-4C2F-A344-6219DFB4F887}.Release|x86.Build.0 = Release|Win32 - {8F75FC4A-22FF-4CDA-8A09-3BC547E7C29B}.Debug|x64.ActiveCfg = DefaultBuild - {8F75FC4A-22FF-4CDA-8A09-3BC547E7C29B}.Debug|x64.Build.0 = DefaultBuild - {8F75FC4A-22FF-4CDA-8A09-3BC547E7C29B}.Debug|x86.ActiveCfg = DefaultBuild - {8F75FC4A-22FF-4CDA-8A09-3BC547E7C29B}.Debug|x86.Build.0 = DefaultBuild - {8F75FC4A-22FF-4CDA-8A09-3BC547E7C29B}.DefaultBuild|x64.ActiveCfg = DefaultBuild - {8F75FC4A-22FF-4CDA-8A09-3BC547E7C29B}.DefaultBuild|x64.Build.0 = DefaultBuild - {8F75FC4A-22FF-4CDA-8A09-3BC547E7C29B}.DefaultBuild|x86.ActiveCfg = DefaultBuild - {8F75FC4A-22FF-4CDA-8A09-3BC547E7C29B}.DefaultBuild|x86.Build.0 = DefaultBuild - {8F75FC4A-22FF-4CDA-8A09-3BC547E7C29B}.Release|x64.ActiveCfg = DefaultBuild - {8F75FC4A-22FF-4CDA-8A09-3BC547E7C29B}.Release|x64.Build.0 = DefaultBuild - {8F75FC4A-22FF-4CDA-8A09-3BC547E7C29B}.Release|x86.ActiveCfg = DefaultBuild - {8F75FC4A-22FF-4CDA-8A09-3BC547E7C29B}.Release|x86.Build.0 = DefaultBuild + {8F75FC4A-22FF-4CDA-8A09-3BC547E7C29B}.Debug|x64.ActiveCfg = All + {8F75FC4A-22FF-4CDA-8A09-3BC547E7C29B}.Debug|x64.Build.0 = All + {8F75FC4A-22FF-4CDA-8A09-3BC547E7C29B}.Debug|x86.ActiveCfg = All + {8F75FC4A-22FF-4CDA-8A09-3BC547E7C29B}.Debug|x86.Build.0 = All + {8F75FC4A-22FF-4CDA-8A09-3BC547E7C29B}.DefaultBuild|x64.ActiveCfg = All + {8F75FC4A-22FF-4CDA-8A09-3BC547E7C29B}.DefaultBuild|x64.Build.0 = All + {8F75FC4A-22FF-4CDA-8A09-3BC547E7C29B}.DefaultBuild|x86.ActiveCfg = All + {8F75FC4A-22FF-4CDA-8A09-3BC547E7C29B}.DefaultBuild|x86.Build.0 = All + {8F75FC4A-22FF-4CDA-8A09-3BC547E7C29B}.Release|x64.ActiveCfg = All + {8F75FC4A-22FF-4CDA-8A09-3BC547E7C29B}.Release|x64.Build.0 = All + {8F75FC4A-22FF-4CDA-8A09-3BC547E7C29B}.Release|x86.ActiveCfg = All + {8F75FC4A-22FF-4CDA-8A09-3BC547E7C29B}.Release|x86.Build.0 = All EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/wufuc_setup_ai/LICENSE.rtf b/wufuc_setup/LICENSE.rtf similarity index 100% rename from wufuc_setup_ai/LICENSE.rtf rename to wufuc_setup/LICENSE.rtf diff --git a/wufuc_setup/wufuc_setup.aip b/wufuc_setup/wufuc_setup.aip new file mode 100644 index 0000000..9d25cc5 --- /dev/null +++ b/wufuc_setup/wufuc_setup.aip @@ -0,0 +1,227 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/wufuc_setup_ai/wufuc_setup_ai.aiproj b/wufuc_setup/wufuc_setup.aiproj similarity index 63% rename from wufuc_setup_ai/wufuc_setup_ai.aiproj rename to wufuc_setup/wufuc_setup.aiproj index a9c36a7..5c86eac 100644 --- a/wufuc_setup_ai/wufuc_setup_ai.aiproj +++ b/wufuc_setup/wufuc_setup.aiproj @@ -5,18 +5,20 @@ 8f75fc4a-22ff-4cda-8a09-3bc547e7c29b msi . - wufuc_setup_ai.aip + wufuc_setup.aip . True - wufuc_setup_ai - wufuc_setup_ai - wufuc_setup_ai + wufuc_setup + wufuc_setup + wufuc_setup - + + + - + Code diff --git a/wufuc_setup_ai/wufuc_setup_ai.aip b/wufuc_setup_ai/wufuc_setup_ai.aip deleted file mode 100644 index f00eaba..0000000 --- a/wufuc_setup_ai/wufuc_setup_ai.aip +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -