feat: autocompletions

This commit is contained in:
2026-03-11 14:28:43 +01:00
parent da8ce47f8b
commit a0de93f98c
13 changed files with 7054 additions and 8 deletions

View File

@@ -118,6 +118,9 @@
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="CarCompleteData" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\merged-cars.json;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="Icon_Add" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Icon_Add.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>

View File

@@ -46,5 +46,29 @@ namespace CarManagerV3.Properties {
this["AllowPrerelease"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("2026-01-01")]
public global::System.DateTime LastFetchedAutoCompletions {
get {
return ((global::System.DateTime)(this["LastFetchedAutoCompletions"]));
}
set {
this["LastFetchedAutoCompletions"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("24.00:00:00")]
public global::System.TimeSpan FetchAutoCompletionsInterval {
get {
return ((global::System.TimeSpan)(this["FetchAutoCompletionsInterval"]));
}
set {
this["FetchAutoCompletionsInterval"] = value;
}
}
}
}

View File

@@ -8,5 +8,11 @@
<Setting Name="AllowPrerelease" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">False</Value>
</Setting>
<Setting Name="LastFetchedAutoCompletions" Type="System.DateTime" Scope="User">
<Value Profile="(Default)">2026-01-01</Value>
</Setting>
<Setting Name="FetchAutoCompletionsInterval" Type="System.TimeSpan" Scope="User">
<Value Profile="(Default)">24.00:00:00</Value>
</Setting>
</Settings>
</SettingsFile>