Build standalone cross-platform instances of our Teleprompter using Electron.
"Imaginary Teleprompter" is a professional grade, multi-platform, free software teleprompter for anyone to use.
It's built with web technologies so anyone can customize it to their needs. It may be run on a web browser or as a standalone application for additional features.
Make sure you have NodeJS
with npm
installed on your system before you begin.
One you've got npm, follow these steps in every platform, then proceed to run the corresponding platform specific command:
- Install Git and NodeJS on your system.
- Open a
Terminal
orCommand Prompt
at your desired build location. - Clone this repository and its submodules.
git clone --recursive https://github.com/ImaginarySense/Imaginary-Teleprompter-Electron.git
-
- Move to the root folder of the Imaginary-Teleprompter-Electron project.
cd Imaginary-Teleprompter-Electron
- Download dependencies and submodules.
npm run setup
- Follow platform specific building steps. If builds are successful, you should find your binaries inside the
dist
folder.
- To build 32 bit packages:
npm run dist:win32
- To build 64 bit packages:
npm run dist:win64
- To build both 32 and 64 bit packages:
npm run dist:win
- If you’re building for Linux, depending what packages you intend to build you should install their dependencies as shown at: https://www.electron.build/multi-platform-build#linux. Commands and dependency names may vary across distributions. The following instructions assume you're using a Debian/Ubuntu derivative.
sudo apt-get install --no-install-recommends -y icnsutils graphicsmagick
sudo apt-get install --no-install-recommends -y rpm # To build rpm
sudo apt-get install --no-install-recommends -y bsdtar # To build pacman
sudo apt-get install --no-install-recommends -y libarchive-tools # Alternative to bsdtar
sudo apt-get install --no-install-recommends -y snapcraft # To build snap
- Open
package.json
in the text editor of your preference. - Locate the following lines:
"linux": {
"target":
- Under
target
, remove all targets that don't correspond to your distribution. (For example, you would leavedeb
for Ubuntu,rpm
for Fedora, andpacman
for Arch.) Usetar.gz
for any other distros andAppImage
if you wish to create a universal, portable, Linux app. - Save your changes.
- Run the command that corresponds to your operating system's architecture:
- To build 32 bit packages:
npm run dist:linux32
- To build 64 bit packages:
npm run dist:linux64
- To build both 32 and 64 bit packages:
npm run dist:linux
- To build ARM7l packages:
npm install -g electron-builder
(followed by)npm run dist:linuxarm
- To build 32 bit packages:
- Run
npm run dist:macos
.
If you have an issue, please write it to us, we will help you or fix the bug.
- Support e-mail teleprompter@imaginary.tech
- Javier Cordero javier@imaginary.tech
- Victor Ortiz va2ron1@imaginary.tech
- Rafael Sierra rafael.sierra2@upr.edu
- Keyvan Pérez keyvan.perez2@gmail.com
Imaginary Sense Inc. & Contributors
This software is shared under the GPL3 license.