Skip to content

Commit 5af9c5f

Browse files
Merge pull request steam-bell-92#1172 from Alvi24-hub/main
Feature: Added info tooltips for Matrix Calculator, Reverse Hangman and Unit Converter
2 parents a6e5f66 + 4881c50 commit 5af9c5f

1 file changed

Lines changed: 31 additions & 1 deletion

File tree

web-app/js/projects.js

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1729,6 +1729,16 @@ const projectInstructions = {
17291729
"Beat the dealer to win"
17301730
]
17311731
},
1732+
"reverse-hangman": {
1733+
title: "🤖 How to Play Reverse Hangman",
1734+
steps: [
1735+
"Think of a secret word from the dictionary (40+ words available)",
1736+
"The AI tries to guess your word using letter frequency analysis",
1737+
"Tell the AI if its guess is correct or not",
1738+
"AI gets 8 attempts max — can you beat the computer?",
1739+
"Watch the hangman visual feedback as AI guesses"
1740+
]
1741+
},
17321742

17331743
// MATH
17341744
"calculator": {
@@ -1832,6 +1842,16 @@ const projectInstructions = {
18321842
"Click Recognize to identify the sequence type"
18331843
]
18341844
},
1845+
"matrix-calculator": {
1846+
title: "🧮 How to Use Matrix Calculator",
1847+
steps: [
1848+
"Select matrix dimensions (rows × columns)",
1849+
"Enter values into each cell",
1850+
"Choose operation: Addition, Subtraction, Multiplication, Transpose, Determinant, Rank, or Inverse",
1851+
"Click Calculate to see the result",
1852+
"Determinant & Inverse work only for square matrices"
1853+
]
1854+
},
18351855

18361856
// UTILITIES
18371857
"color-palette": {
@@ -1909,7 +1929,17 @@ const projectInstructions = {
19091929
"Mark projects as complete",
19101930
"See your progress over time"
19111931
]
1912-
}
1932+
},
1933+
"unit-converter": {
1934+
title: "📏 How to Use Unit Converter",
1935+
steps: [
1936+
"Select conversion category (Length, Mass, Temperature, etc.)",
1937+
"Choose input and output units",
1938+
"Enter the value to convert",
1939+
"Result appears instantly",
1940+
"Supports multiple unit types"
1941+
]
1942+
}
19131943
};
19141944

19151945
function getProjectInstructions(projectName) {

0 commit comments

Comments
 (0)