Skip to content

Commit

Permalink
Update for 2025.1.1-beta-1 (#702)
Browse files Browse the repository at this point in the history
Update projectyear to 2025beta.
  • Loading branch information
PeterJohnson authored Oct 12, 2024
1 parent d04cfdb commit 90ef991
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"enableCppIntellisense": true,
"currentLanguage": "cpp",
"projectYear": "2025Alpha",
"projectYear": "2025beta",
"teamNumber": -1
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"enableCppIntellisense": true,
"currentLanguage": "cpp",
"projectYear": "2025Alpha",
"projectYear": "2025beta",
"teamNumber": -1
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"enableCppIntellisense": true,
"currentLanguage": "cpp",
"projectYear": "2025Alpha",
"projectYear": "2025beta",
"teamNumber": -1
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"enableCppIntellisense": true,
"currentLanguage": "cpp",
"projectYear": "2025Alpha",
"projectYear": "2025beta",
"teamNumber": -1
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"enableCppIntellisense": true,
"currentLanguage": "cpp",
"projectYear": "2025Alpha",
"projectYear": "2025beta",
"teamNumber": -1
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"enableCppIntellisense": false,
"currentLanguage": "java",
"projectYear": "2025Alpha",
"projectYear": "2025beta",
"teamNumber": -1
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"enableCppIntellisense": false,
"currentLanguage": "java",
"projectYear": "2025Alpha",
"projectYear": "2025beta",
"teamNumber": -1
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"enableCppIntellisense": false,
"currentLanguage": "java",
"projectYear": "2025Alpha",
"projectYear": "2025beta",
"teamNumber": -1
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"enableCppIntellisense": false,
"currentLanguage": "java",
"projectYear": "2025Alpha",
"projectYear": "2025beta",
"teamNumber": -1
}
2 changes: 1 addition & 1 deletion vscode-wpilib/resources/gradle/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2025.0.0-alpha-2
2025.1.1-beta-1
6 changes: 3 additions & 3 deletions vscode-wpilib/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -222,11 +222,11 @@ async function handleAfterTrusted(externalApi: ExternalAPI, context: vscode.Exte
continue;
}

if (prefs.getProjectYear() !== '2025Alpha') {
const importPersistantState = new PersistentFolderState('wpilib.2025Alphapersist', false, w.uri.fsPath);
if (prefs.getProjectYear() !== '2025beta') {
const importPersistantState = new PersistentFolderState('wpilib.2025betapersist', false, w.uri.fsPath);
if (importPersistantState.Value === false) {
const upgradeResult = await vscode.window.showInformationMessage(i18n('message',
'This project is not compatible with this version of the extension. Would you like to import this project into 2025Alpha?'), {
'This project is not compatible with this version of the extension. Would you like to import this project into 2025beta?'), {
modal: true,
}, {title: 'Yes'}, {title: 'No', isCloseAffordance: true}, {title: 'No, Don\'t ask again'});
if (upgradeResult?.title === 'Yes') {
Expand Down

0 comments on commit 90ef991

Please sign in to comment.