Skip to content

Commit 95c9acd

Browse files
committed
0.0.8
1 parent 4323fe0 commit 95c9acd

File tree

7 files changed

+23
-19
lines changed

7 files changed

+23
-19
lines changed

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
# Changelog
22

33
## [1.0.0]
4+
5+
## [0.0.8]
46
- Changed default palette from Sonic 2 to the SCH unified palette
57
- Fixed a bug that allows deleting mappings in drawing mode
68
- Fixed a bug where up/down scrolls when there are active mappings
9+
- Fixed Kosinski-M compression
10+
- Added KosinskiPlus compression
711
- Rebuilt colour picker
812

913
## [0.0.7]

app/components/layout/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { model, saveModel } from './model';
44
import FlexLayout from 'flexlayout-react';
55
import classNames from 'classnames';
66

7-
import { File } from '#components/file';
7+
// import { File } from '#components/file';
88
import { Project } from '#components/project';
99
import { Palettes } from '#components/palettes';
1010
import { Art } from '#components/art/index';
@@ -16,7 +16,7 @@ const getPanel = (node) => {
1616
const component = node.getComponent();
1717
if (!node._visible) return false;
1818
if (component === 'file') {
19-
return <File node={node}/>;
19+
// return <File node={node}/>;
2020
} else if (component === 'project') {
2121
return <Project node={node}/>;
2222
} else if (component === 'palettes') {

app/components/layout/model.js

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ const DEFAULT_LAYOUT = {
3838
'selected': 0,
3939
'id': '#2',
4040
'children': [
41-
fileMenu = {
42-
'type': 'tab',
43-
'name': 'File',
44-
'component': 'file',
45-
'id': '#11',
46-
},
41+
// fileMenu = {
42+
// 'type': 'tab',
43+
// 'name': 'File',
44+
// 'component': 'file',
45+
// 'id': '#11',
46+
// },
4747
{
4848
'type': 'tab',
4949
'name': 'Project',
@@ -95,13 +95,13 @@ const migrations = [
9595
(layout) => {
9696
layout.global.tabSetEnableMaximize = true;
9797
},
98-
(layout) => {
99-
recurse([layout.layout], (node, parent) => {
100-
if (node.component === 'project') {
101-
parent.unshift(fileMenu);
102-
}
103-
});
104-
},
98+
// (layout) => {
99+
// recurse([layout.layout], (node, parent) => {
100+
// if (node.component === 'project') {
101+
// parent.unshift(fileMenu);
102+
// }
103+
// });
104+
// },
105105
];
106106

107107
let savedLayout = localStorage.getItem('layout');

app/formats/compression.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ export const compressionFormats = {
22
'Uncompressed': undefined,
33
'Nemesis': 'nemesis',
44
'Kosinski': 'kosinski',
5-
'Kosinski-M': 'kosplus',
5+
'Kosinski-M': 'moduled_kosinski',
6+
'KosinskiPlus': 'kosplus',
67
'Comper': 'comper',
78
'Enigma': 'enigma',
89
'ArtC42': 'artc42',

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
2-
"version": "0.0.7",
3-
"previewVersion": "1.0.0 & Knuckles",
2+
"version": "0.0.8",
43
"scripts": {
54
"start": "electron ./static --dev"
65
},

static/mdcomp_portable.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/mdcomp_portable.wasm

9.73 KB
Binary file not shown.

0 commit comments

Comments
 (0)