Skip to content

Commit

Permalink
Merge branch 'master' into feature/microsoft-store-support
Browse files Browse the repository at this point in the history
  • Loading branch information
Oxalin authored Dec 11, 2023
2 parents d392f88 + df6b3b6 commit 5ec5cdd
Show file tree
Hide file tree
Showing 13 changed files with 736 additions and 1,870 deletions.
7 changes: 2 additions & 5 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,17 @@ root = true

[*]
charset = "utf8"
trim_trailing_whitespace = true
insert_final_newline = true

[*.coffee]
indent_style = space
indent_size = 4
trim_trailing_whitespace = true


[*.js]
indent_style = space
indent_size = 4
trim_trailing_whitespace = true


[*.json]
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
25 changes: 25 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI

on: [push]
jobs:
build:
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
node-version: ["12", "14", "16", "18", "20"]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2

- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: npm install

- name: Run tests
run: npm test
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules
dist
dist
npm-debug.log
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
12
3 changes: 0 additions & 3 deletions .travis.yml

This file was deleted.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ node-auto-launch
Auto-launch your app on login.

- :star: Launch any application or executable at startup / login / boot.
- :star: Supports Linux, Mac (via AppleScript or Launch Agent), and Windows.
- :star: Supports Linux, FreeBSD, Mac (via AppleScript or Launch Agent), and Windows.
- :star: Supports [NW.js](http://nwjs.io/) and [Electron](http://electron.atom.io/) (with or without Squirrel; i.e. even if you're using Electron's built-in [`autoUpdater`](http://electron.atom.io/docs/api/auto-updater/) API).
- :star: Auto-detects your app path for NW.js and Electron apps.
- :star: Supports NW.js and Electron apps in Windows Store (with some caveats).
Expand Down Expand Up @@ -93,7 +93,7 @@ Returns a Promise which resolves to a Boolean; `true` if your app is set to laun

## How does it work?

### Linux
### Linux / FreeBSD

A [Desktop Entry](https://specifications.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html) is created; i.e. a `.desktop` file is created in `~/.config/autostart/`.

Expand Down
28 changes: 0 additions & 28 deletions appveyor.yml

This file was deleted.

31 changes: 0 additions & 31 deletions gulpfile.coffee

This file was deleted.

Loading

0 comments on commit 5ec5cdd

Please sign in to comment.