Skip to content

Commit f1fd173

Browse files
committed
Fix for server background changes and update.
1 parent f9a98e3 commit f1fd173

File tree

7 files changed

+16
-34
lines changed

7 files changed

+16
-34
lines changed

app/document/palette.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class PaletteChooser extends events.EventEmitter {
4242
div.addEventListener("mousedown", (event) => {
4343
if (event.button == 2 || event.ctrlKey) {
4444
this.bg = i;
45-
if (doc.connection) doc.connection.set_bg(this.bg);
45+
// if (doc.connection) doc.connection.set_bg(this.bg);
4646
} else if (event.button == 0) {
4747
this.fg = i;
4848
}

app/server.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ class Joint {
119119
this.log(`changed canvas: ${msg.data.columns}/${msg.data.rows}`, ip);
120120
break;
121121
case action.SET_BG:
122-
this.doc.c64_background = msg.data.value;
123-
this.send_all_including_guests(ws, msg.type, msg.data);
122+
// this.doc.c64_background = msg.data.value;
123+
// this.send_all_including_guests(ws, msg.type, msg.data);
124124
break;
125125
default:
126126
this.send_all(ws, msg.type, msg.data);

build/ans/changelog.ans

102 Bytes
Binary file not shown.

docs/latest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"version": "1.0.26",
3-
"urgent": false
2+
"version": "1.0.27",
3+
"urgent": true
44
}

electron-builder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ linux:
5252
target: deb
5353
description: Moebius is a new ANSI and ASCII Editor for Linux, MacOS, and Windows. The major feature that differentiates it from PabloDraw is the 'half-block' brush which allows editing in a style closer to Photoshop than a text editor, although you can still use the function and cursor keys to draw with, and you should find that most of the text editing features from PabloDraw are carried over to this editor.
5454
category: Graphics
55-
electronVersion: 8.2.5
55+
electronVersion: 8.3.0

package-lock.json

Lines changed: 9 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"license": "Apache-2.0",
2020
"devDependencies": {
2121
"browserify": "^16.5.1",
22-
"electron": "^8.2.5",
22+
"electron": "^8.3.0",
2323
"electron-builder": "^22.6.0",
2424
"express": "^4.17.1"
2525
},

0 commit comments

Comments
 (0)