Skip to content

Commit b0b3052

Browse files
committed
Fix require('Util') -> require('util') crash, and set up 0.2.4
1 parent ee65df7 commit b0b3052

File tree

6 files changed

+18
-5
lines changed

6 files changed

+18
-5
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,12 @@ discussion page, and messages posted there will likely be ignored.**
4040

4141

4242
## Changelog
43+
44+
### 0.2.4 (2018-10-16)
45+
46+
* Fix crash on case-sensitive filesystems (i.e. not Windows). Thanks to Omnifarious for the report.
47+
* Fix a incorrect date in changelog.txt.
48+
4349
### 0.2.3 (2018-10-16)
4450
* Change the default wireswap keybind to `CONTROL + ALT + W`. The previous `SHIFT + W` would inadvertently trigger and
4551
interfere with movement.

changelog.txt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
1+
---------------------------------------------------------------------------------------------------
2+
Version: 0.2.4
3+
Date: 16. 10. 2018
4+
Bugfixes:
5+
- Fix crash on case-sensitive filesystems (i.e. not Windows). Thanks to Omnifarious for the report.
6+
- Fix incorrect date in changelog.
7+
18
---------------------------------------------------------------------------------------------------
29
Version: 0.2.3
3-
Date: 14. 16. 2018
10+
Date: 16. 10. 2018
411
Bugfixes:
512
- Changed the default wireswap keybind to CTRL + ALT + W instead of SHIFT + W, as the latter would frequently
613
interfere with movement.

info.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "BlueprintExtensions",
3-
"version": "0.2.3",
3+
"version": "0.2.4",
44
"title": "Blueprint Extensions",
55
"author": "Dewin",
66
"contact": "https://github.com/dewiniaid/BlueprintExtensions",

modules/flip.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
local Util = require('Util')
1+
local Util = require('util')
22

33
local Flip = {
44
enabled = true,

modules/rotate.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
local Util = require('Util')
1+
local Util = require('util')
22

33
local Rotate = {}
44

modules/wireswap.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
local Util = require('Util')
1+
local Util = require('util')
22

33
local Wireswap = {}
44

0 commit comments

Comments
 (0)