game patch(Immortal) 0.0.6.9121a patch updates, plus WIP build calculator code
This commit is contained in:
Binary file not shown.
@@ -155,7 +155,6 @@
|
||||
entity = DATA.Get()[entityDialogService.GetEntityId()];
|
||||
refresh++;
|
||||
|
||||
Console.WriteLine("OnUpdate()");
|
||||
StateHasChanged();
|
||||
}
|
||||
|
||||
|
||||
@@ -110,9 +110,6 @@
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.taskContainer.@StatusType.In_Progress.ToLower() {
|
||||
border-color: #030129;
|
||||
background-color: #2c3a4c;
|
||||
@@ -144,6 +141,10 @@
|
||||
border-width: 8px;
|
||||
}
|
||||
|
||||
.taskContainer.@TaskType.Document.ToLower() {
|
||||
border-style: dashed;
|
||||
border-width: 2px;
|
||||
}
|
||||
|
||||
.taskName {
|
||||
font-weight: bold;
|
||||
|
||||
@@ -33,6 +33,12 @@
|
||||
<b>- Energy: </b> @production.Energy
|
||||
</div>
|
||||
}
|
||||
@if (!production.DefensiveLayer.Equals(0))
|
||||
{
|
||||
<div>
|
||||
<b>- Shields:</b> @production.DefensiveLayer
|
||||
</div>
|
||||
}
|
||||
if (production.BuildTime != 0)
|
||||
{
|
||||
<div>
|
||||
@@ -84,6 +90,12 @@
|
||||
<b> Energy: </b> @production.Energy
|
||||
</div>
|
||||
}
|
||||
@if (!production.DefensiveLayer.Equals(0))
|
||||
{
|
||||
<div>
|
||||
<b>Shields:</b> @production.DefensiveLayer
|
||||
</div>
|
||||
}
|
||||
if (production.BuildTime != 0)
|
||||
{
|
||||
<div>
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
|
||||
<div>
|
||||
<div>
|
||||
<b>Name:</b> @info.Name
|
||||
<b>Passive Name:</b> @info.Name
|
||||
</div>
|
||||
<div>
|
||||
<b>- Description:</b> @((MarkupString)info.Description)
|
||||
@@ -54,7 +54,7 @@
|
||||
var requirementModel = DATA.Get()[requirement.Id];
|
||||
<div>
|
||||
<span>
|
||||
<b>@requirement.Requirement.Replace("_", " "):</b> @requirementModel.Info().Name
|
||||
<b>- @requirement.Requirement.Replace("_", " "):</b> @requirementModel.Info().Name
|
||||
</span>
|
||||
</div>
|
||||
}
|
||||
|
||||
@@ -42,6 +42,12 @@
|
||||
<b>Pyre:</b> @Production.Pyre
|
||||
</div>
|
||||
}
|
||||
@if (!Production.Pyre.Equals(0))
|
||||
{
|
||||
<div>
|
||||
<b>Shields:</b> @Production.DefensiveLayer
|
||||
</div>
|
||||
}
|
||||
|
||||
@if (!Production.BuildTime.Equals(0))
|
||||
{
|
||||
@@ -128,6 +134,12 @@
|
||||
<b>Pyre:</b> @Production.Pyre
|
||||
</div>
|
||||
}
|
||||
@if (!Production.DefensiveLayer.Equals(0))
|
||||
{
|
||||
<div>
|
||||
<b>Shields:</b> @Production.DefensiveLayer
|
||||
</div>
|
||||
}
|
||||
|
||||
@if (!Production.BuildTime.Equals(0))
|
||||
{
|
||||
|
||||
@@ -23,6 +23,13 @@
|
||||
<b>Energy:</b> @Vitality.Energy
|
||||
</div>
|
||||
}
|
||||
@if (!Vitality.Lasts.Equals(0))
|
||||
{
|
||||
<div>
|
||||
<b>Lasts:</b> @Vitality.Lasts.ToString()s
|
||||
</div>
|
||||
}
|
||||
|
||||
@if (Vitality.Armor != "")
|
||||
{
|
||||
<div>
|
||||
@@ -92,6 +99,12 @@
|
||||
<b>Energy:</b> @Vitality.Energy
|
||||
</div>
|
||||
}
|
||||
@if (!Vitality.Lasts.Equals(0))
|
||||
{
|
||||
<div>
|
||||
<b>Lasts:</b> @Vitality.Lasts.ToString()s
|
||||
</div>
|
||||
}
|
||||
@if (Vitality.Armor != "")
|
||||
{
|
||||
<div>
|
||||
|
||||
+8
-10
@@ -20,7 +20,6 @@ builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.
|
||||
|
||||
builder.Services.AddLocalization();
|
||||
|
||||
|
||||
builder.Services.AddSingleton<INavigationService, NavigationService>();
|
||||
builder.Services.AddSingleton<IKeyService, KeyService>();
|
||||
builder.Services.AddSingleton<IImmortalSelectionService, ImmortalSelectionService>();
|
||||
@@ -30,9 +29,15 @@ builder.Services.AddSingleton<IEconomyService, EconomyService>();
|
||||
builder.Services.AddSingleton<ITimingService, TimingService>();
|
||||
builder.Services.AddSingleton<IMemoryTesterService, MemoryTesterService>();
|
||||
builder.Services.AddSingleton<IEntityFilterService, EntityFilterService>();
|
||||
|
||||
builder.Services.AddSingleton<IGameLogicService, GameLogicService>();
|
||||
builder.Services.AddSingleton<IEntityDisplayService, EntityDisplayService>();
|
||||
|
||||
builder.Services.AddSingleton<IEntityDialogService, EntityDialogService>();
|
||||
builder.Services.AddSingleton<IToastService, ToastService>();
|
||||
builder.Services.AddSingleton<IWebsiteService, WebsiteService>();
|
||||
builder.Services.AddSingleton<IAgileService, AgileService>();
|
||||
builder.Services.AddSingleton<IGitService, GitService>();
|
||||
builder.Services.AddSingleton<INoteService, NoteService>();
|
||||
builder.Services.AddSingleton<IDocumentationService, DocumentationService>();
|
||||
|
||||
builder.Services.AddSingleton(new HttpClient
|
||||
{
|
||||
@@ -40,8 +45,6 @@ builder.Services.AddSingleton(new HttpClient
|
||||
});
|
||||
|
||||
|
||||
builder.Services.AddSingleton<IEntityDialogService, EntityDialogService>();
|
||||
builder.Services.AddSingleton<IToastService, ToastService>();
|
||||
|
||||
#if NO_SQL
|
||||
|
||||
@@ -49,11 +52,6 @@ builder.Services.AddSingleton<IToastService, ToastService>();
|
||||
//builder.Services.AddDbContext<DatabaseContext>(options => { options.UseSqlite("Data Source=./Database.db"); });
|
||||
#endif
|
||||
|
||||
builder.Services.AddSingleton<IWebsiteService, WebsiteService>();
|
||||
builder.Services.AddSingleton<IAgileService, AgileService>();
|
||||
builder.Services.AddSingleton<IGitService, GitService>();
|
||||
builder.Services.AddSingleton<INoteService, NoteService>();
|
||||
builder.Services.AddSingleton<IDocumentationService, DocumentationService>();
|
||||
|
||||
|
||||
await builder.Build().RunAsync();
|
||||
|
||||
@@ -7,7 +7,7 @@ updated_date: 4/13/2022
|
||||
|
||||
In the pre-alpha, IGP comes with some Unreal default hotkey setup.
|
||||
|
||||
This document will explain how to setup, modify, and use a new hotkey setup.
|
||||
This document will explain how to set up, modify, and use a new hotkey setup.
|
||||
|
||||
## Save the "Input.ini" file
|
||||
|
||||
@@ -104,7 +104,7 @@ You can notice a single line of this file can be broken down like this.
|
||||
|
||||
## Modify the Input.ini file
|
||||
|
||||
Your now going to want to modify the file with your own hotkey setup.
|
||||
You are now going to want to modify the file with your own hotkey setup.
|
||||
|
||||
To do this, replace any of the Key=`VALUE` mapped to the desired actions with any value from the list below.
|
||||
|
||||
|
||||
@@ -1 +1 @@
|
||||
[{"Id":1,"Name":"Agile Sprint","Description":"Changelogs and sprint views were going to be pushed till later, but I am feeling inspired by the IGP Content Creators\u0027 minimum weekly lifecycle requirement. So I am going to focus on agile-related tasks, and handle roadmap tasks after this initial sprint. All weekly sprints will release on Sunday, starting next Sunday.","StartDate":"2022-02-14T00:00:00","EndDate":"2022-02-20T00:00:00","Notes":null,"AgileTaskModels":[]},{"Id":2,"Name":"SQL Update","Description":"The SQL update is big enough to be a full sprint in of itself, and I spent less time this week for development. Will just extend sprint by 2 week, and remove all non SQL tasks from the sprint.","StartDate":"2022-02-20T00:00:00","EndDate":"2022-03-27T00:00:00","Notes":null,"AgileTaskModels":[]},{"Id":3,"Name":"Database Page","Description":"Improvements to the Database page","StartDate":"2022-03-27T00:00:00","EndDate":"2022-04-03T00:00:00","Notes":null,"AgileTaskModels":[]},{"Id":4,"Name":"Branding","Description":"Improve streaming branding around the website","StartDate":"2022-04-03T00:00:00","EndDate":"2022-04-10T00:00:00","Notes":null,"AgileTaskModels":[]},{"Id":5,"Name":"Calculators","Description":"Improve Calculators","StartDate":"2022-04-10T00:00:00","EndDate":"2022-04-24T00:00:00","Notes":null,"AgileTaskModels":[]},{"Id":6,"Name":"Infrastructure Misc","Description":"Localization, Analytics, and Test Automation","StartDate":"2022-04-24T00:00:00","EndDate":"2022-05-08T00:00:00","Notes":null,"AgileTaskModels":[]},{"Id":7,"Name":"Damage Calculator and Lists","Description":"Sort unit data by damage output. Select a attack and defense unit to see hits to kill.","StartDate":"2022-05-08T00:00:00","EndDate":"2022-05-22T00:00:00","Notes":null,"AgileTaskModels":[]},{"Id":8,"Name":"More Test Automation and CI","Description":"More test automation work. Integrate into CI","StartDate":"2022-05-22T00:00:00","EndDate":"2022-06-05T00:00:00","Notes":null,"AgileTaskModels":[]}]
|
||||
[{"Id":0,"Name":"Easy Tasks","Description":"General tasks that I can grab when too tired to program","StartDate":null,"EndDate":null,"Notes":null,"AgileTaskModels":[]},{"Id":1,"Name":"Agile Sprint","Description":"Changelogs and sprint views were going to be pushed till later, but I am feeling inspired by the IGP Content Creators\u0027 minimum weekly lifecycle requirement. So I am going to focus on agile-related tasks, and handle roadmap tasks after this initial sprint. All weekly sprints will release on Sunday, starting next Sunday.","StartDate":"2022-02-14T00:00:00","EndDate":"2022-02-20T00:00:00","Notes":null,"AgileTaskModels":[]},{"Id":2,"Name":"SQL Update","Description":"The SQL update is big enough to be a full sprint in of itself, and I spent less time this week for development. Will just extend sprint by 2 week, and remove all non SQL tasks from the sprint.","StartDate":"2022-02-20T00:00:00","EndDate":"2022-03-27T00:00:00","Notes":null,"AgileTaskModels":[]},{"Id":3,"Name":"Database Page","Description":"Improvements to the Database page","StartDate":"2022-03-27T00:00:00","EndDate":"2022-04-03T00:00:00","Notes":null,"AgileTaskModels":[]},{"Id":4,"Name":"Branding","Description":"Improve streaming branding around the website","StartDate":"2022-04-03T00:00:00","EndDate":"2022-04-10T00:00:00","Notes":null,"AgileTaskModels":[]},{"Id":5,"Name":"Calculators","Description":"Improve Calculators","StartDate":"2022-04-10T00:00:00","EndDate":"2022-04-24T00:00:00","Notes":null,"AgileTaskModels":[]},{"Id":6,"Name":"Infrastructure Misc","Description":"Localization, Analytics, and Test Automation","StartDate":"2022-04-24T00:00:00","EndDate":"2022-05-08T00:00:00","Notes":null,"AgileTaskModels":[]},{"Id":7,"Name":"Damage Calculator and Lists","Description":"Sort unit data by damage output. Select a attack and defense unit to see hits to kill.","StartDate":"2022-05-08T00:00:00","EndDate":"2022-05-22T00:00:00","Notes":null,"AgileTaskModels":[]},{"Id":8,"Name":"More Test Automation and CI","Description":"More test automation work. Integrate into CI","StartDate":"2022-05-22T00:00:00","EndDate":"2022-06-05T00:00:00","Notes":null,"AgileTaskModels":[]}]
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1 +1 @@
|
||||
[{"Id":1,"Name":"Database UX Patch","Date":"2022-03-13T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":2,"Name":"Thrum Stats Hotfix","Date":"2022-03-12T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":3,"Name":"Memory Tester Patch","Date":"2022-03-01T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":4,"Name":"Hide Pyre Hotfix","Date":"2022-02-20T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":5,"Name":"Stream Patch","Date":"2022-02-20T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":6,"Name":"Agile UI Hotfix","Date":"2022-02-20T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":7,"Name":"Armor Patch","Date":"2022-02-19T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":8,"Name":"Home Page Patch","Date":"2022-02-19T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":9,"Name":"Mobile Menu Hotfix 2","Date":"2022-02-19T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":10,"Name":"Mobile Menu Hotfix","Date":"2022-02-19T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":11,"Name":"Mobile Menu Patch","Date":"2022-02-19T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":12,"Name":"0.0.6.8375a Patch","Date":"2022-02-18T00:00:00","GitChangeModels":[],"Important":"True"},{"Id":13,"Name":"Google Tracking Hotfix","Date":"2022-02-18T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":14,"Name":"Privacy Policy Patch","Date":"2022-02-17T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":15,"Name":"Home Page Quick Hotfix","Date":"2022-02-16T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":16,"Name":"Early Agile Patch","Date":"2022-02-16T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":17,"Name":"Form Text Rendering Hotfix","Date":"2022-02-15T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":18,"Name":"Reducing Timing Interval Hotfix","Date":"2022-02-15T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":19,"Name":"Changelog Patch","Date":"2022-02-14T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":20,"Name":"SQL Patch","Date":"2022-03-26T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":21,"Name":"Stream Patch","Date":"2022-03-30T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":22,"Name":"0.0.6.8900a Patch","Date":"2022-03-30T00:00:00","GitChangeModels":[],"Important":"True"},{"Id":23,"Name":"Database Links Patch","Date":"2022-04-01T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":24,"Name":"Open Source Patch","Date":"2022-04-03T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":25,"Name":"Stream Patch","Date":"2022-04-03T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":26,"Name":"Notes/Docs Patch","Date":"2022-04-10T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":27,"Name":"Stream Patch","Date":"2022-04-10T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":28,"Name":"Passive Patch","Date":"2022-04-12T00:00:00","GitChangeModels":[],"Important":"True"}]
|
||||
[{"Id":1,"Name":"Database UX Patch","Date":"2022-03-13T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":2,"Name":"Thrum Stats Hotfix","Date":"2022-03-12T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":3,"Name":"Memory Tester Patch","Date":"2022-03-01T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":4,"Name":"Hide Pyre Hotfix","Date":"2022-02-20T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":5,"Name":"Stream Patch","Date":"2022-02-20T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":6,"Name":"Agile UI Hotfix","Date":"2022-02-20T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":7,"Name":"Armor Patch","Date":"2022-02-19T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":8,"Name":"Home Page Patch","Date":"2022-02-19T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":9,"Name":"Mobile Menu Hotfix 2","Date":"2022-02-19T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":10,"Name":"Mobile Menu Hotfix","Date":"2022-02-19T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":11,"Name":"Mobile Menu Patch","Date":"2022-02-19T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":12,"Name":"0.0.6.8375a Patch","Date":"2022-02-18T00:00:00","GitChangeModels":[],"Important":"True"},{"Id":13,"Name":"Google Tracking Hotfix","Date":"2022-02-18T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":14,"Name":"Privacy Policy Patch","Date":"2022-02-17T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":15,"Name":"Home Page Quick Hotfix","Date":"2022-02-16T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":16,"Name":"Early Agile Patch","Date":"2022-02-16T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":17,"Name":"Form Text Rendering Hotfix","Date":"2022-02-15T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":18,"Name":"Reducing Timing Interval Hotfix","Date":"2022-02-15T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":19,"Name":"Changelog Patch","Date":"2022-02-14T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":20,"Name":"SQL Patch","Date":"2022-03-26T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":21,"Name":"Stream Patch","Date":"2022-03-30T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":22,"Name":"0.0.6.8900a Patch","Date":"2022-03-30T00:00:00","GitChangeModels":[],"Important":"True"},{"Id":23,"Name":"Database Links Patch","Date":"2022-04-01T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":24,"Name":"Open Source Patch","Date":"2022-04-03T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":25,"Name":"Stream Patch","Date":"2022-04-03T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":26,"Name":"Notes/Docs Patch","Date":"2022-04-10T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":27,"Name":"Stream Patch","Date":"2022-04-10T00:00:00","GitChangeModels":[],"Important":"False"},{"Id":28,"Name":"Passive Patch","Date":"2022-04-12T00:00:00","GitChangeModels":[],"Important":"True"},{"Id":29,"Name":"0.0.6.9121a Patch","Date":"2022-04-13T00:00:00","GitChangeModels":[],"Important":"True"}]
|
||||
Reference in New Issue
Block a user