File size: 4,892 Bytes
d03c1cb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
<!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>
<!-- Search and Filter -->
<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>
<!-- Change Log Entries -->
<div class="space-y-6">
<!-- October 26, 2025 -->
<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>
<!-- October 25, 2025 -->
<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>
<!-- October 24, 2025 -->
<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> |