@@ -190,6 +190,10 @@ public static void Upgrade(Version fromVersion, Version toVersion)
190190 if ( fromVersion < new Version ( 2024 , 11 , 11 , 0 ) )
191191 UpgradeTo_2024_11_11_0 ( ) ;
192192
193+ // 2025.8.11.0
194+ if ( fromVersion < new Version ( 2025 , 8 , 11 , 0 ) )
195+ UpgradeTo_2025_8_11_0 ( ) ;
196+
193197 // Latest
194198 if ( fromVersion < toVersion )
195199 UpgradeToLatest ( toVersion ) ;
@@ -311,12 +315,11 @@ private static void UpgradeTo_2024_11_11_0()
311315 }
312316
313317 /// <summary>
314- /// Method to apply changes for the latest version.
318+ /// Method to apply changes for version 2025.8.11.0 .
315319 /// </summary>
316- /// <param name="version">Latest version.</param>
317- private static void UpgradeToLatest ( Version version )
320+ private static void UpgradeTo_2025_8_11_0 ( )
318321 {
319- Log . Info ( $ "Apply upgrade to { version } ...") ;
322+ Log . Info ( "Apply upgrade to 2025.8.11.0 ..." ) ;
320323
321324 // Add Hosts editor application
322325 Log . Info ( "Add new app \" Hosts File Editor\" ..." ) ;
@@ -326,5 +329,14 @@ private static void UpgradeToLatest(Version version)
326329 ApplicationManager . GetDefaultList ( ) . First ( x => x . Name == ApplicationName . HostsFileEditor ) ) ;
327330 }
328331
332+ /// <summary>
333+ /// Method to apply changes for the latest version.
334+ /// </summary>
335+ /// <param name="version">Latest version.</param>
336+ private static void UpgradeToLatest ( Version version )
337+ {
338+ Log . Info ( $ "Apply upgrade to { version } ...") ;
339+ }
340+
329341 #endregion
330342}
0 commit comments