Skip to content

Commit

Permalink
Update 4.3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
nimadez committed Sep 2, 2024
1 parent e1a75da commit 2094922
Show file tree
Hide file tree
Showing 15 changed files with 962 additions and 709 deletions.
2 changes: 0 additions & 2 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,3 @@
*.js linguist-vendored=false
*.py linguist-vendored=false
* text=auto
libs/*.js binary
samples/*.vbx binary
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
All notable changes to this project will be documented in this file.

## 4.3.8
- Add keyboard shortcuts map (see about menu)
- Delete key can delete voxels during transforms
- Fix the debug layer, make it useful!
- Improve all the modules
- ~~HDR loader managed by three.js~~ (rolled back)
- This improves many things include 1 second startup freeze, but also makes PBR and bakery problematic.
- Prepare dom for complete ES6

## 4.3.7
- New directory structure
- Improve project management and speed up the build time of github pages
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Voxel-based 3D modeling application<br>
[https://nimadez.github.io/voxel-builder/](https://nimadez.github.io/voxel-builder/)

```Version 4.3.7 Beta```<br>
```Version 4.3.8 Beta```<br>
[Changelog](https://github.com/nimadez/voxel-builder/blob/main/CHANGELOG.md)

[Installation](https://github.com/nimadez/voxel-builder#installation)<br>
Expand All @@ -26,7 +26,7 @@ Voxel-based 3D modeling application<br>
- Interactive modeling toolsets [?](https://github.com/nimadez/voxel-builder/wiki/model)
- Symmetric drawing and painting
- Color groups and voxel transform tools
- High performance GPU picking system *(the second inventor)*
- High performance GPU picking system

**Rendering**
- High performance voxel engine
Expand All @@ -50,7 +50,7 @@ Voxel-based 3D modeling application<br>
- Blender importer script

**More**
- Unique handcrafted user-interface woven into the code
- Unique handcrafted user-interface
- Minimum dependency, portable, online and offline
- Ad-free, no miners and trackers, no logging
- Extras [?](https://github.com/nimadez/voxel-builder/wiki/Extras)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "voxel-builder",
"version": "4.3.7",
"version": "4.3.8",
"description": "Voxel-based 3D modeling application",
"main": "electron.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion scripts/ws-connect.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import os, sys, json, random, time, asyncio

sys.path.insert(1, os.path.dirname(os.path.dirname(os.path.realpath(__file__))) + '/libs')
sys.path.insert(1, os.path.dirname(os.path.dirname(os.path.realpath(__file__))) + '/src/libs')
from websockets.server import serve

if __import__('platform').system == 'Windows': # fix [WinError 10054]
Expand Down
288 changes: 162 additions & 126 deletions src/index.html

Large diffs are not rendered by default.

Loading

0 comments on commit 2094922

Please sign in to comment.