Skip to content

Commit

Permalink
Fix for server background changes and update.
Browse files Browse the repository at this point in the history
  • Loading branch information
andyherbert committed May 18, 2020
1 parent f9a98e3 commit f1fd173
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 34 deletions.
2 changes: 1 addition & 1 deletion app/document/palette.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class PaletteChooser extends events.EventEmitter {
div.addEventListener("mousedown", (event) => {
if (event.button == 2 || event.ctrlKey) {
this.bg = i;
if (doc.connection) doc.connection.set_bg(this.bg);
// if (doc.connection) doc.connection.set_bg(this.bg);
} else if (event.button == 0) {
this.fg = i;
}
Expand Down
4 changes: 2 additions & 2 deletions app/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ class Joint {
this.log(`changed canvas: ${msg.data.columns}/${msg.data.rows}`, ip);
break;
case action.SET_BG:
this.doc.c64_background = msg.data.value;
this.send_all_including_guests(ws, msg.type, msg.data);
// this.doc.c64_background = msg.data.value;
// this.send_all_including_guests(ws, msg.type, msg.data);
break;
default:
this.send_all(ws, msg.type, msg.data);
Expand Down
Binary file modified build/ans/changelog.ans
Binary file not shown.
4 changes: 2 additions & 2 deletions docs/latest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"version": "1.0.26",
"urgent": false
"version": "1.0.27",
"urgent": true
}
2 changes: 1 addition & 1 deletion electron-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,4 @@ linux:
target: deb
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.
category: Graphics
electronVersion: 8.2.5
electronVersion: 8.3.0
36 changes: 9 additions & 27 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"license": "Apache-2.0",
"devDependencies": {
"browserify": "^16.5.1",
"electron": "^8.2.5",
"electron": "^8.3.0",
"electron-builder": "^22.6.0",
"express": "^4.17.1"
},
Expand Down

0 comments on commit f1fd173

Please sign in to comment.