Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tools - Add all optionals to steamWS #7859

Merged
merged 1 commit into from
Aug 23, 2020
Merged
Changes from all 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
53 changes: 46 additions & 7 deletions tools/publish.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,19 +96,58 @@ def main(argv):
# Note: command line publisher doesn't like our file structure, just upload this one manually



#RHS Compat USA - http://steamcommunity.com/sharedfiles/filedetails/?id=773125288
publishFolder(os.path.join(ace_optionals_dir,"@ace_compat_rhs_usf3"), "773125288", changelog_path)

#RHS Compat Russians - http://steamcommunity.com/sharedfiles/filedetails/?id=773131200
#compat_r3f: r3 - https://steamcommunity.com/sharedfiles/filedetails/?id=2202404402
publishFolder(os.path.join(ace_optionals_dir,"@compat_r3f"), "2202404402", changelog_path)

#compat_rh_acc: - https://steamcommunity.com/sharedfiles/filedetails/?id=2202407118
publishFolder(os.path.join(ace_optionals_dir,"@compat_rh_acc"), "2202407118", changelog_path)

#compat_rh_de: - https://steamcommunity.com/sharedfiles/filedetails/?id=2202407963
publishFolder(os.path.join(ace_optionals_dir,"@compat_rh_de"), "2202407963", changelog_path)

#compat_rh_m4: - https://steamcommunity.com/sharedfiles/filedetails/?id=2202408647
publishFolder(os.path.join(ace_optionals_dir,"@compat_rh_m4"), "2202408647", changelog_path)

#compat_rh_pdw: - https://steamcommunity.com/sharedfiles/filedetails/?id=2202409303
publishFolder(os.path.join(ace_optionals_dir,"@compat_rh_pdw"), "2202409303", changelog_path)

#ace_compat_rhs_afrf3: RHS Russians - http://steamcommunity.com/sharedfiles/filedetails/?id=773131200
publishFolder(os.path.join(ace_optionals_dir,"@ace_compat_rhs_afrf3"), "773131200", changelog_path)

#RHS Compat GREF - http://steamcommunity.com/sharedfiles/filedetails/?id=884966711
#ace_compat_rhs_gref3: RHS GREF - http://steamcommunity.com/sharedfiles/filedetails/?id=884966711
publishFolder(os.path.join(ace_optionals_dir,"@ace_compat_rhs_gref3"), "884966711", changelog_path)

#RHS Compat SAF - http://steamcommunity.com/sharedfiles/filedetails/?id=2174495332
#ace_compat_rhs_saf3: RHS SAF - http://steamcommunity.com/sharedfiles/filedetails/?id=2174495332
publishFolder(os.path.join(ace_optionals_dir,"@ace_compat_rhs_saf3"), "2174495332", changelog_path)

#ace_compat_rhs_usf3: RHS USA - http://steamcommunity.com/sharedfiles/filedetails/?id=773125288
publishFolder(os.path.join(ace_optionals_dir,"@ace_compat_rhs_usf3"), "773125288", changelog_path)

#compat_rksl_pm_ii: - https://steamcommunity.com/sharedfiles/filedetails/?id=2202410630
publishFolder(os.path.join(ace_optionals_dir,"@compat_rksl_pm_ii"), "2202410630", changelog_path)

#compat_sma3_iansky: - https://steamcommunity.com/sharedfiles/filedetails/?id=2202411104
publishFolder(os.path.join(ace_optionals_dir,"@compat_sma3_iansky"), "2202411104", changelog_path)

#noactionmenu: - https://steamcommunity.com/sharedfiles/filedetails/?id=2202412030
publishFolder(os.path.join(ace_optionals_dir,"@noactionmenu"), "2202412030", changelog_path)

#nocrosshair: - https://steamcommunity.com/sharedfiles/filedetails/?id=2202412481
publishFolder(os.path.join(ace_optionals_dir,"@nocrosshair"), "2202412481", changelog_path)

#nouniformrestrictions: - https://steamcommunity.com/sharedfiles/filedetails/?id=2202413047
publishFolder(os.path.join(ace_optionals_dir,"@nouniformrestrictions"), "2202413047", changelog_path)

#particles: - https://steamcommunity.com/sharedfiles/filedetails/?id=2202413537
publishFolder(os.path.join(ace_optionals_dir,"@particles"), "2202413537", changelog_path)

#realisticdispersion: - https://steamcommunity.com/sharedfiles/filedetails/?id=2202414018
publishFolder(os.path.join(ace_optionals_dir,"@realisticdispersion"), "2202414018", changelog_path)

#tracers: - https://steamcommunity.com/sharedfiles/filedetails/?id=2202414450
publishFolder(os.path.join(ace_optionals_dir,"@tracers"), "2202414450", changelog_path)




if __name__ == "__main__":
Expand Down