Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Touch Display 3.5.1 #357

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions touch_display/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1288,6 +1288,10 @@ TouchDisplay.prototype.setOrientation = function (angle) {
}
}
});
} else if (device === 'pi') {
self.modBootConfig(configTxtRotationBanner + '.*lcd_rotate=.*' + os.EOL + 'display_hdmi_rotate=.*', newEntry)
.then(() => defer.resolve())
.fail(() => defer.reject(new Error()));
}
}
});
Expand Down
4 changes: 2 additions & 2 deletions touch_display/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "touch_display",
"version": "3.5.0",
"version": "3.5.1",
"description": "The plugin enables displaying and operating Volumio's UI on a locally connected screen. NOTE: The plugin cannot be installed on systems that have a factory option to display the UI via HDMI video output.",
"main": "index.js",
"scripts": {
Expand All @@ -20,7 +20,7 @@
"buster"
],
"details": "The plugin enables the display of Volumio's UI on locally connected screens. If the screen offers touch control, apart from keyboard input the UI can be operated from the screen.<br><br>The plugin focuses on the Raspberry Pi Foundation's 7\" display (and compatible DSI displays), but can in principle also be used with displays connected via HDMI or GPIO. However, HDMI and GPIO displays usually require additional action by the user, depending on the type of display and any touch controller present, and <b>requiring advanced knowledge</b>.<br><br><b>NOTE: The plugin cannot be installed on systems that have a factory option to display the UI via HDMI video output.</b>",
"changelog": "Added virtual keyboard"
"changelog": "Fixed rotation bug"
},
"engines": {
"node": ">=8",
Expand Down