Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump version + disable admin of msi installer #1190

Merged
merged 1 commit into from
Aug 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bridge",
"version": "2.7.35",
"version": "2.7.36",
"private": true,
"scripts": {
"dev": "vite",
Expand Down
28 changes: 3 additions & 25 deletions public/changelog.html
Original file line number Diff line number Diff line change
@@ -1,27 +1,5 @@
<h2>Features</h2>
<h3>New UI</h3>
<p>A new initial screen for viewing your projects and overall editor UI enhancements have arrived in this update.</p>
<p><img src="https://github.com/bridge-core/editor/assets/60296487/16ff6160-c8ed-4fa1-89b6-90ec50c30b80" alt="Initial Greet Screen UI Preview"></p>
<p><img src="https://github.com/bridge-core/editor/assets/60296487/03efc0bb-8c54-43f3-aa56-7654895f6883" alt="New UI in the Editor"></p>
<hr>
<h3>Auto Recompile on External Changes (Native Build Only)</h3>
<p>In 2.7.0, bridge. now watches for external changes and will automatically recompile. No more manually hitting refresh project after making an edit in Blockbench! 😁</p>
<hr>
<h2>Changes</h2>
<h1>Changes</h1>
<ul>
<li>Compiler log starts at the bottom now (0dfecf7)</li>
<li>Scripting API completions are now based on manifest files (f164657)</li>
<li>Author field now defaults to <code>bridge</code> in the project creation screen instead of being blank (8f3d3f4)</li>
<li>Updated scripting preset (6547b94)</li>
<li>Improved zipping and unzipping speed on the native build (bd2bff0)</li>
<li>Data updated to the latest preview (https://github.com/bridge-core/editor-packages/pull/63) Thanks to @ExDrill</li>
<li>Updated Korean translations thanks to @desire918 (https://github.com/bridge-core/editor/pull/1187)</li>
<li>Attempts to fix mac build updating now working</li>
</ul>
<h2>Fixes</h2>
<ul>
<li>Fix drag and drop on the native build (646f2ff)</li>
<li>Potential fix for permissions not working on linux (e0652e0)</li>
<li>Virtual files now no longer show up under connected files (https://github.com/bridge-core/dash-compiler/commit/8fa35c73292f6382747d0f411fca26431a6d2c8e)</li>
<li>Fix generator script collections not working when the script is using typescript (https://github.com/bridge-core/dash-compiler/commit/9aec73004ef30fd1adca518a6b3217366deb7751)</li>
</ul>
<h2>Final Notes</h2>
<p>This is the first major update since SolvedDev's disappearance. As I am still familiarizing myself with the codebase, there is bound to be bugs. Please be patient as I grow accustomed to it. Thank you to everyone who is out there using bridge. The community gives me so much motivation to work on this project.</p>
5 changes: 4 additions & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,10 @@
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
"timestampUrl": "",
"wix": {
"enableElevatedUpdateTask": false
}
}
},
"security": {
Expand Down
Loading