From 5aacdefbb4a349b091b37f69577f5d99593aaaf3 Mon Sep 17 00:00:00 2001 From: Jacob Schmidt Date: Sun, 17 Nov 2024 08:13:55 -0600 Subject: [PATCH] Update 11172024@0815 --- README.md | 41 +++++++++++++++++++++++++++++++++++++++++ main.go | 2 +- 2 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..38f9f6b --- /dev/null +++ b/README.md @@ -0,0 +1,41 @@ +Arma 3 FORGE Factions: Redefine The Battlefield\ +Version: Alpha 0.1.0 + +[Development Status: Active] + +--- + +Experience warfare reimagined with Arma 3 FORGE Factions, a comprehensive faction expansion that brings new depths of military diversity to your operations. Command unique forces, deploy specialized units, and engage in complex scenarios across distinctive fighting forces. + +Key Features: +--- +* Elite Forces: From hardened PMC operators to specialized military units, lead forces that bring unique capabilities and tactical options to the battlefield +* Distinctive Identity: Each faction features carefully crafted loadouts, custom equipment selections, and specialized vehicle configurations that define their combat doctrine +* Dynamic Integration: Seamlessly connects with the FORGE framework, enabling deep progression and organizational development for each faction +* Tactical Variety: Unique unit compositions and equipment combinations create fresh tactical challenges and opportunities +* Command Options: Full Zeus and Eden Editor support ensures complete mission-making freedom with all faction assets +* Balanced Design: Meticulously tuned for competitive balance while maintaining each faction's unique character +* Future-Ready: Built for expansion with a modular framework that supports regular content updates +* Mission Framework: Ready-to-use unit compositions and mission templates accelerate scenario creation + +Perfect for: +* Mission makers seeking fresh tactical possibilities +* Players wanting new combat experiences +* Communities running persistent campaigns +* Scenario designers crafting complex operations + +Coming Features: +* Additional Faction Types +* Expanded Vehicle Pools + +Support & Development +--- +* Part of the FORGE Development Initiative +* Regular updates and expansion plans +* Community-driven improvement process + +License: +--- +This mod is licensed under the [Arma Public License (APL-SA)](https://www.bohemia.net/community/licenses/arma-public-license-share-alike). + +Join us in reshaping modern warfare. diff --git a/main.go b/main.go index 2fd927c..fa7e5e6 100644 --- a/main.go +++ b/main.go @@ -74,7 +74,7 @@ func createGiteaClient() (*gitea.Client, error) { func createRelease(client *gitea.Client, owner, repo, version string) (*gitea.Release, error) { release, _, err := client.CreateRelease(owner, repo, gitea.CreateReleaseOption{ TagName: version, - Title: fmt.Sprintf("IDSolutions Factions v%s", version), + Title: fmt.Sprintf("FORGE Factions v%s", version), Note: fmt.Sprintf("Release notes for version %s", version), }) return release, err