| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Full Change Log - JCode Evolution Tracker</title> |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> |
| <link rel="stylesheet" href="style.css"> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> |
| <script src="https://unpkg.com/feather-icons"></script> |
| </head> |
| <body class="min-h-screen bg-gradient-to-br from-gray-900 via-purple-900 to-violet-900"> |
| <custom-navbar></custom-navbar> |
| |
| <main class="container mx-auto px-4 py-8"> |
| <div class="text-center mb-12"> |
| <h1 class="text-4xl md:text-6xl font-bold text-white mb-4"> |
| Complete Change Log |
| </h1> |
| <p class="text-xl text-gray-300 max-w-3xl mx-auto"> |
| Every change, enhancement, and bug fix documented throughout the JCode Visual Builder development journey |
| </p> |
| </div> |
|
|
| |
| <div class="mb-8"> |
| <div class="bg-white/10 backdrop-blur-lg rounded-xl p-6 border border-white/20"> |
| <div class="flex flex-col md:flex-row gap-4 items-center"> |
| <input type="text" placeholder="Search changes..." class="flex-1 bg-black/30 border border-white/20 rounded-lg px-4 py-2 text-white placeholder-gray-400 focus:outline-none focus:ring-2 focus:ring-primary"> |
| <select class="bg-black/30 border border-white/20 rounded-lg px-4 py-2 text-white focus:outline-none focus:ring-2 focus:ring-primary"> |
| <option value="all">All Changes</option> |
| <option value="feature">New Features</option> |
| <option value="bugfix">Bug Fixes</option> |
| <option value="enhancement">Enhancements</option> |
| </select> |
| </div> |
| </div> |
|
|
| |
| <div class="space-y-6"> |
| |
| <div class="bg-white/10 backdrop-blur-lg rounded-xl p-6 border border-white/20"> |
| <div class="flex items-center justify-between mb-4"> |
| <div class="text-primary font-bold text-lg">2025-10-26</div> |
| <div class="space-y-4"> |
| <div class="border-l-4 border-primary pl-4"> |
| <div class="text-white font-semibold mb-2">03:18:42 - Variable Browser & Scope System</div> |
| <p class="text-gray-300">Fixed syntax error in JCodeBrowserRuntime.js and completed implementation for ai_call case</p> |
| </div> |
| <div class="border-l-4 border-secondary pl-4"> |
| <div class="text-white font-semibold mb-2">02:18:59 - Unified Variable Input System</div> |
| <p class="text-gray-300">Created unified VariableInputField component that automatically registers all variables</div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="bg-white/10 backdrop-blur-lg rounded-xl p-6 border border-white/20"> |
| <div class="flex items-center justify-between mb-4"> |
| <div class="text-secondary font-bold text-lg">2025-10-25</div> |
| <div class="space-y-4"> |
| <div class="border-l-4 border-green-400 pl-4"> |
| <div class="text-white font-semibold mb-2">22:17:51 - File System & Global Scope</div> |
| <p class="text-gray-300">Added global scope toggle to LetBlock and DefBlock, updated Prompt/Confirm blocks</div> |
| </div> |
| </div> |
|
|
| |
| <div class="bg-white/10 backdrop-blur-lg rounded-xl p-6 border border-white/20"> |
| <div class="flex items-center justify-between mb-4"> |
| <div class="text-purple-400 font-bold text-lg">2025-10-24</div> |
| <div class="space-y-4"> |
| <div class="border-l-4 border-purple-400 pl-4"> |
| <div class="text-white font-semibold mb-2">19:33:59 - Tabbed Interface & Color Coding</div> |
| <p class="text-gray-300">Implemented tabbed interface with color-coded commands and improved navigation</div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </main> |
|
|
| <custom-footer></custom-footer> |
|
|
| <script src="components/navbar.js"></script> |
| <script src="components/footer.js"></script> |
| <script src="script.js"></script> |
| <script>feather.replace();</script> |
| </body> |
| </html> |