v3.3.1: HTML preview fix — code blocks no longer break chat
This commit is contained in:
@@ -631,6 +631,11 @@ data: [DONE]
|
||||
|
||||
## Changelog
|
||||
|
||||
### v3.3.1 (2026-05-21)
|
||||
- **HTML Preview** — HTML code blocks no longer render inside chat and break the flow
|
||||
- Added sandboxed iframe preview panel with Preview button
|
||||
- Added Open in Browser button for full-screen HTML preview
|
||||
|
||||
### v3.3.0 (2026-05-21)
|
||||
- **File Manager** — browse device files (App Files, Downloads, Camera, Storage), open/preview any file, install APKs directly
|
||||
- **SSH / Remote Access** — AI can SSH into external machines, SCP upload/download, curl URLs
|
||||
|
||||
@@ -21,8 +21,8 @@ android {
|
||||
applicationId "ai.z.chat"
|
||||
minSdkVersion rootProject.ext.minSdkVersion
|
||||
targetSdkVersion rootProject.ext.targetSdkVersion
|
||||
versionCode 25
|
||||
versionName "3.3.0"
|
||||
versionCode 26
|
||||
versionName "3.3.1"
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
aaptOptions {
|
||||
ignoreAssetsPattern = '!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~'
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "zai-chat",
|
||||
"version": "3.3.0",
|
||||
"version": "3.3.1",
|
||||
"description": "Z.AI Chat - Full stack AI chat powered by GLM Coding Plan",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
|
||||
@@ -354,7 +354,7 @@
|
||||
</div>
|
||||
<div class="settings-section">
|
||||
<h3>About</h3>
|
||||
<p class="about-text">Z.AI Chat v3.3.0</p>
|
||||
<p class="about-text">Z.AI Chat v3.3.1</p>
|
||||
<p class="about-text">Built with Z.AI SDK & GLM-5.1</p>
|
||||
<p class="about-text">Compatible with Android 15/16</p>
|
||||
</div>
|
||||
@@ -362,6 +362,11 @@
|
||||
<h3>Changelog</h3>
|
||||
<ul class="changelog-list">
|
||||
<li>
|
||||
<span class="changelog-version">v3.3.1</span>
|
||||
<span class="changelog-date">2026-05-21</span>
|
||||
<ul>
|
||||
<li><strong>HTML Preview</strong> — HTML code blocks no longer break chat; sandboxed iframe preview with Open in Browser</li>
|
||||
</ul>
|
||||
<span class="changelog-version">v3.3.0</span>
|
||||
<span class="changelog-date">2026-05-21</span>
|
||||
<ul>
|
||||
|
||||
@@ -3240,7 +3240,7 @@
|
||||
termState.projectsDir = env.PROJECTS;
|
||||
termState.cwd = env.CWD || env.HOME;
|
||||
updateCwdDisplay();
|
||||
termPrint('Z.AI Terminal v3.3.0', 'info');
|
||||
termPrint('Z.AI Terminal v3.3.1', 'info');
|
||||
termPrint('Home: ' + termState.homeDir, 'info');
|
||||
termPrint('Type "help" for commands, "setup" for dev tools\n', 'info');
|
||||
}).catch(function() {});
|
||||
|
||||
Reference in New Issue
Block a user