Skip to content

⚖️ desktop application that makes chairing MUN conferences fair and easy

License

Notifications You must be signed in to change notification settings

mattxwang/fair-chair

Repository files navigation

Fair Chair

Travis Build Status AppVeyor Build status GitHub Release iTunes App Store Link

Making chairing Model UN conferences easy and fair

Attention: This app is in development limbo - but might get reworked eventually, as it definitely has some janky code. Still, the final product should be usable.

(For reference, Matt is currently waiting on a major release from electron-forge; he'll probably then rewrite this as a simple React + Electron app. Or it could just be a web app!)

Fair Chair is a desktop app that's designed to make chairing easy and fair. At its core, it's just a glorified table, but the many subtle features it has makes it a prime choice for chairing. It features a robust list manager (saves the states of several lists automatically), coordinates the timer state with each individual list, and has many simple one-button interactions that make life easy.

You can download it from the website or from the Mac App Store.

From a technical perspective, Fair Chair is an Electron app that utilizes Angular via Electron Forge, and also uses the Materia Bootstrap Theme and Font Awesome to make things pretty.

Development Setup

This project is an Angular 7 flavour of the Electron Forge template - as such, you can use any of Electron Forge's default commands to run, build, and package the project.

First, install the Electron Forge CLI

$ npm install -g electron-forge

Then, clone this repo and install all the npm dependencies:

$ git clone https://github.com/malsf21/fair-chair.git
$ cd fair-chair
$ npm install

To simply start a local instance of the app, you can use the electron-forge start command. Note that I've disabled livereload for this app.

$ electron-forge start

To make a distributable for the current platform, you can use

$ electron-forge make

You can configure how make operates in the package.json, or check out the documentation for the command.

Continuous Integration and Deployment

Deploying an Electron app, especially to a production build, is an arduous task! To help us, I use two continuous integration services, Travis and AppVeyor. On every push to master, Travis and AppVeyor run electron-forge make on virtual machines (OSX and Windows respectively), to ensure that master has a working build. In addition, on every push to stable, Travis and AppVeyor also run electron-forge publish, which sends the distributables to GitHub. After I check them over, they get published.

This can be easily replicated in a fork of this repository - the default Travis and AppVeyor tasks work out of the box. However, to deploy to GitHub using Travis and AppVeyor, one needs to set the environment variable GITHUB_TOKEN to a valid GitHub Personal Access Token.

Publishing to the Mac App Store

Publishing the app to the Mac App Store is another similarly arduous task. It requires enrollment in the Apple Developer Program, which costs money, and also requires a special build of the application and specific certificates and other security information. The rest of these instructions assume that you have a valid Apple Developer Account, as well as a computer running on OSX (required to make OSX apps).

Before we start publishing our app, we need to make a few things on the Apple Developer Account portal. Register your device, make an macOS App ID for your app, make two certificates (one for Mac App Distribution and the other for Mac Installer Distribution), and a MAS distribution provisioning profile. After that, head to iTunes Connect, and make an app for Fair Chair.

Now, to the command line! To prepare our app for the Mac App Store (MAS), we firstly need to package the app in a different way.

$ electron-forge package --platform=mas

Currently, there's a weird bug that I'm encountering with my build where the generated .app has a library that it shouldn't have. Once you've packaged it, right-click on the app and click "Show Package Contents", then navigate to Contents/Resources/app/node_modules/electron and delete the dist folder. Without doing it, the rest of the steps won't work.

After that, we need to sign the package. I prefer to use electron-osx-sign, which you can install using

$ npm install -g electron-osx-sign

Before we sign the package, we need to put our provisioning profile in the top-level directory of the app (in the fair-chair folder), and make a entitlements.plist. You can do the former from the Apple Developer Account portal, and the later by copying entitlements.sample.plist to entitlements.plist and filling TeamId and AppBundleId with their respective values (again, found in the Apple Developer Account portal).

Once we've done that, let's sign the package.

$ electron-osx-sign "/path/to/fair-chair/out/Fair Chair-mas-x64/Fair Chair.app" --platform=mas --type=distribution --identity="3rd Party Mac Developer Application: YOUR INFORMATION HERE" --entitlements="/path/to/fair-chair/entitlements.plist"

Remember to list the correct information for the keychain identity, which you can find on the Apple Eveloper Account portal.

You can verify the signing using Apple's codesign tool:

$ codesign --verify -vvvv "out/Fair Chair-mas-x64/Fair Chair.app"

Next, let's flatten our app, using electron-osx-flat, which is part of electron-osx-sign:

$ electron-osx-flat "out/Fair Chair-mas-x64/Fair Chair.app" --identity="3rd Party Mac Developer Installer: YOUR INFORMATION HERE"

This should create a .pkg file. Open Application Loader, target the .pkg, and you're good to go! After a long uploading process, your app should successfully appear under builds in iTunes Connect.

Note: every time you submit another build of the same version, be sure to change the "buildVersion" property in the package.json - if you don't, the build won't upload properly!

Licensing and Credits

All credit for the dependencies that Fair Chair was built on go to their developers. The Fair Chair icon was taken from this SVGRepo page under the NonCommercial Creative Commons License.

If you want to simply use this application, go on right ahead! It's free and open source, so you can use it for whatever you like. If you want to use it for your conference, I encourage you to do so!

This project is released under the MIT License, which means that you're allowed to do anything with this code (as long as you preserve the copyright and license information). I would greatly prefer if you gave me a shoutout as well, but it's not required. Ideally, it looks something like this:

Fair Chair was a project originally created by Matthew Wang (@malsf21)/(https://matthewwang.me)