Skip to content

Commit

Permalink
README.md revisions (#20, #38), no blank out (#37), no scrollbar (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
encadyma committed Mar 2, 2018
1 parent 7a33cfc commit 96e2e19
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ All of Swishbox's releases can be found [here](https://github.com/encadyma/swish

#### Step 2

- **For Windows users:** Download `swishbox-windows-[version].exe` and double-click to execute the setup program.
- **For Mac users:** Download and double-click `swishbox-mac-[version].dmg`. Drag `Swishbox Nightly.app` to your Applications folder and double-click to open. Alternatively, download and unzip `swishbox-mac-[version].zip` for the app directly.
- **For Linux users:** Download and open the AppImage `swishbox-linux-[version].AppImage`.
- **For Windows users:** Download `swishbox-setup-[version].exe` and double-click to execute the setup program.
- **For Mac users:** Download and double-click `swishbox-[version].dmg`. Drag `Swishbox Nightly.app` to your Applications folder and double-click to open. Alternatively, download and unzip `swishbox-[version]-mac.zip` for the app directly.
- **For Linux users:** Download and open the AppImage `swishbox-[version]-x86_64.AppImage`.

## Building From Source
Swishbox prefers the `yarn` tool over `npm`. You can install yarn globally by running `npm i -g yarn` in a command line.
Swishbox prefers the `yarn` tool over `npm`. Follow the instructions on [Yarn's installation page](https://yarnpkg.com/lang/en/docs/install/) to learn how to install `yarn` for your operating system.

``` bash
# clone repository and change dir
Expand Down
4 changes: 4 additions & 0 deletions src/renderer/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@
background: rgba(40, 0, 200, 0.2);
}
::-webkit-scrollbar {
display: none;
}
* {
box-sizing: border-box;
margin: 0;
Expand Down
1 change: 1 addition & 0 deletions src/renderer/components/Header/Subheader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
export default {
methods: {
closeApp() {
this.$modal.hide('dialog');
this.$modal.show('dialog', {
title: 'Confirm Quit',
text: 'Are you sure you want to quit Swishbox?',
Expand Down

0 comments on commit 96e2e19

Please sign in to comment.