Skip to content

Commit

Permalink
v6.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
sidneys committed Oct 24, 2017
1 parent 9cd8db4 commit 642500f
Show file tree
Hide file tree
Showing 10 changed files with 682 additions and 557 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ init:
- cmd: git config --global core.autocrlf input

install:
- cmd: echo 🔧 Setting up Environment
- cmd: echo 🔧 Setting up Node
- ps: Install-Product node 8
- cmd: npm --global update npm
- cmd: npm --global install yarn
Expand Down
12 changes: 12 additions & 0 deletions .deblist
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
linuxmint/sarah
linuxmint/sonya
linuxmint/serena
elementaryos/luna
elementaryos/freya
debian/jessie
debian/stretch
debian/buster
ubuntu/xenial
ubuntu/yakkety
ubuntu/zesty
ubuntu/artful
9 changes: 9 additions & 0 deletions .rpmlist
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
el/5
el/6
el/7
fedora/24
fedora/25
fedora/26
opensuse/42.1
opensuse/42.2
opensuse/42.3
9 changes: 7 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
matrix:
include:
- os: osx
osx_image: xcode9.0
osx_image: xcode9.1
sudo: required
- os: linux
sudo: required
Expand Down Expand Up @@ -35,11 +35,13 @@ before_install:
- echo "🚦 Authorizing Build"
- if [[ "${OSTYPE}" == "darwin"* ]] && [[ "${DEPLOY_MACOS}" == 0 ]]; then travis_terminate 0; fi
- if [[ "${OSTYPE}" == "linux"* ]] && [[ "${DEPLOY_LINUX}" == 0 ]]; then travis_terminate 0; fi
- echo "🔧 Setting up Environment"
- echo "🔧 Setting up Node"
- curl -o- https://raw.githubusercontent.com/creationix/nvm/master/install.sh | NVM_DIR="${HOME}"/.nvm sh
- source "${HOME}"/.nvm/nvm.sh && nvm install 8.5.0 && nvm use 8.5.0
- npm --global update npm
- npm --global install yarn
- echo "🔧 Setting up RubyGems"
- gem install package_cloud

install:
- echo "📥 Installing Dependencies"
Expand All @@ -52,6 +54,9 @@ script:
after_success:
- echo "📮 Deploying to Github"
- npm run deploy
- echo "📮 Deploying to PackageCloud"
- cat .deblist | while read LINUX_DISTRIBUTION_SLUG; do package_cloud push "${TRAVIS_REPO_SLUG}/${LINUX_DISTRIBUTION_SLUG}" ./build/output/*.deb; done
- cat .rpmlist | while read LINUX_DISTRIBUTION_SLUG; do package_cloud push "${TRAVIS_REPO_SLUG}/${LINUX_DISTRIBUTION_SLUG}" ./build/output/*.rpm; done

notifications:
webhooks:
Expand Down
20 changes: 16 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,17 +85,29 @@ Use tags to add emoji to notifications, e.g.: add `{video}` to show a 📺 with

## <a name="installation"/></a> Installation

### Normal Installation
### Manual Installation

Grab the latest version here: [Download Pushbullet for Desktop](https://sidneys.github.io/pb-for-desktop/#download)

### Installation as Commandline Tool
### Installation via nodejs

```bash
npm install --global pb-for-desktop # Installs the node CLI module
pb-for-desktop # Runs it
npm install --global pb-for-desktop
```

### Installation via package manager (Linux)

*Debian-based (via apt)*
```bash
curl -s https://packagecloud.io/install/repositories/sidneys/pb-for-desktop/script.deb.sh | sudo bash # Adds package repository
sudo apt-get install pb-for-desktop # Installs it
```

*Redhat-based (via yum)*
```bash
curl -s https://packagecloud.io/install/repositories/sidneys/pb-for-desktop/script.rpm.sh | sudo bash # Adds package repository
sudo yum install pb-for-desktop # Installs it
```

## <a name="developers"/></a> Developers

Expand Down
11 changes: 11 additions & 0 deletions RELEASENOTES.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
{
"6.2.6": {
"🍾 features": [
"Adds package repositories for `Debian`, `elementary OS`, `Enterprise Linux`, `Fedora`, `openSUSE`, `LinuxMint`, `Ubuntu` (Linux) (#56)"
],
"📒 documentation": [
"Adds new section: `Installation via Linux package manager`"
],
"👷 internals": [
"Upgrades `node_modules`"
]
},
"6.2.0": {
"💎 improved": [
"Augments start-up & background resource usage (#67)",
Expand Down
4 changes: 2 additions & 2 deletions app/scripts/main/managers/configuration-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -666,8 +666,8 @@ app.on('quit', () => {
// Prettify
electronSettings.setAll(electronSettings.getAll(), { prettify: true });

logger.info('settings', electronSettings.getAll());
logger.info('file', electronSettings.file());
logger.debug('settings', electronSettings.getAll());
logger.debug('file', electronSettings.file());
});

/**
Expand Down
Loading

0 comments on commit 642500f

Please sign in to comment.