-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease-notes.html
187 lines (175 loc) Β· 6.15 KB
/
release-notes.html
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="styles.css" rel="stylesheet" />
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<title>Release Notes - Moonshine.dev</title>
<meta
name="description"
content="Release notes and updates for Moonshine.dev - Track the latest features, improvements, and bug fixes."
/>
</head>
<body>
<div class="container">
<header class="header__title">
<a href="index.html" class="header__link">Moonshine.dev</a>
</header>
<section class="release-notes">
<h1 class="release-notes__title">Release Notes</h1>
<div class="release-notes__version report-issues">
<h2>π Reporting Issues</h2>
<p>
We value your feedback! If you encounter any issues, you can report
them through:
</p>
<ul>
<li>
<a
href="https://moonshine-ide.topicbox.com/groups/ide"
target="_blank"
rel="noopener"
>TopicBox Discussion Group</a
>
</li>
<li>
Email:
<a href="mailto:support@moonshine.dev">support@moonshine.dev</a>
</li>
</ul>
</div>
<!-- New Version 1.2.0 -->
<div class="release-notes__version">
<h2>
<a href="#1.2.0" id="1.2.0" class="version-anchor">Version 1.2.0</a>
</h2>
<div class="release-notes__category">
<h3>π New Features & Improvements</h3>
<h4>Project Organization</h4>
<ul>
<li>
<strong>Canvas Project Groups:</strong> Added the ability to
organize canvases into projects, making it easier to manage
multiple screens within an application.
</li>
<li>
<strong>AI Token Management:</strong>
<ul>
<li>New interface to view remaining AI tokens.</li>
<li>
Convenient token purchase option through an integrated
pricing table.
</li>
<li>
Clear visibility of token balances including package tokens
and plan tokens.
</li>
</ul>
</li>
</ul>
</div>
<div class="release-notes__category">
<h3>π Bug Fixes</h3>
<h4>Authentication</h4>
<ul>
<li>
Fixed: HTTP 403 error occurring during the logout process.
</li>
<li>
Improved: Authentication flow stability for consecutive
login/logout operations.
</li>
</ul>
</div>
</div>
<!-- Existing Versions -->
<div class="release-notes__version">
<h2>
<a href="#1.1.0" id="1.1.0" class="version-anchor">Version 1.1.0</a>
</h2>
<div class="release-notes__category">
<h3>π New Features & Improvements</h3>
<h4>Enhanced File Management</h4>
<ul>
<li>
<strong>Clone Canvas Feature</strong>
<ul>
<li>Added ability to create copies of existing canvases</li>
<li>Automatic "_copy" suffix for cloned files</li>
</ul>
</li>
<li>
<strong>Save As Feature:</strong> Implemented a new "Save As"
option allowing users to rename or create copies of existing
files
</li>
<li>
<strong>File Name Validation:</strong> Added validation to
prevent duplicate file names and ensure proper naming
conventions
</li>
<li>
<strong>File Renaming:</strong> Added the ability to rename
saved files directly from the "My Saved Work" area
</li>
<li>
<strong>Improved Error Messages:</strong> Added more descriptive
error messages when file operations fail
</li>
<li>
<strong>Clear Save Dialog</strong>
<ul>
<li>Improved save dialog with clear instructions</li>
<li>Visible file extension information</li>
</ul>
</li>
</ul>
</div>
<div class="release-notes__category">
<h3>π Bug Fixes</h3>
<h4>Save Functionality</h4>
<ul>
<li>
Fixed: Files not appearing in "My Saved Work" area after saving
</li>
<li>
Fixed: Problem with file extension handling when saving new
files
</li>
<li>
Fixed: Files without `.mxhx` extension not being properly saved
</li>
</ul>
</div>
</div>
<div class="release-notes__version">
<h2>
<a href="#1.0.0" id="1.0.0" class="version-anchor">Version 1.0.0</a>
</h2>
<p>Initial release</p>
</div>
</section>
<div class="spacer"></div>
<section class="section">
<h2 class="section__title">Stay Updated</h2>
<p class="section__description">
Join our <em>Moonshine TopicBox</em> discussion group to stay informed
about the latest updates, share your feedback, and connect with other
Moonshine.dev users.
</p>
<div class="section__link-wrapper">
<a
href="https://moonshine-ide.topicbox.com/groups/ide"
target="_blank"
rel="noopener"
class="section__link"
>
Join Moonshine TopicBox
</a>
</div>
</section>
</div>
<script src="js/copy-link.js"></script>
</body>
</html>