Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
Inrixia committed Jul 9, 2021
2 parents 76070da + 1f5beed commit 9dcb6a3
Show file tree
Hide file tree
Showing 31 changed files with 2,616 additions and 1,708 deletions.
47 changes: 15 additions & 32 deletions .eslintrc.js
@@ -1,36 +1,19 @@
module.exports = {
"env": {
"es2021": true,
"node": true
env: {
es2021: true,
node: true,
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'prettier'],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 12,
sourceType: 'module',
},
plugins: ['@typescript-eslint'],
rules: {
indent: ['error', 'tab'],
'linebreak-style': ['error', 'unix'],
quotes: ['error', 'single'],
semi: ['error', 'always'],
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"indent": [
"error",
"tab"
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"always"
]
}
};
31 changes: 31 additions & 0 deletions .github/workflows/autoBuildDev.yml
@@ -0,0 +1,31 @@
---
name: "dev Build"

on:
push:
branches:
- "dev"

jobs:
pre-release:
name: "dev Pre-Release - Auto"
runs-on: "ubuntu-latest"

steps:
- uses: actions/checkout@v2
- name: "Install dependencies"
run: |
npm install
- name: "Build"
run: |
npm run build
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "dev"
prerelease: true
title: "dev Pre-Release - Auto"
files: |
build/*
1 change: 1 addition & 0 deletions .prettierrc
@@ -0,0 +1 @@
{ "useTabs": true, "tabWidth": 1, "semi": true, "printWidth": 160, "singleQuote": true }
14 changes: 11 additions & 3 deletions README.md
@@ -1,4 +1,6 @@
![image](https://user-images.githubusercontent.com/6373693/115112327-2b69b680-9fd9-11eb-8239-45b30219f705.png)<br>
[![dev Build](https://github.com/Inrixia/Floatplane-Downloader/actions/workflows/autoBuildDev.yml/badge.svg?branch=dev)](https://github.com/Inrixia/Floatplane-Downloader/actions/workflows/autoBuildDev.yml)

![image](https://user-images.githubusercontent.com/6373693/115112327-2b69b680-9fd9-11eb-8239-45b30219f705.png)<br>
**This project is unofficial and not in any way affiliated with LMG**<br>
**Join our discord! [discord.gg/aNTyMME](https://discord.gg/aNTyMME)**
<br>
Expand All @@ -16,9 +18,10 @@ If you encounter any issues please **[create a issue](https://github.com/Inrixia
<br>

# Install Guide
Looking for **Docker**?<br>
Get the image on: **[hub.docker.com/r/inrix/floatplane-downloader](https://hub.docker.com/r/inrix/floatplane-downloader)** and see instructions at **[the wiki](https://github.com/Inrixia/Floatplane-Downloader/blob/master/wiki/docker.md)**!

1. Download the latest stable binary for your OS from **[Releases](https://github.com/Inrixia/Floatplane-PlexDownloader/releases)**<br>
Looking for **Docker**? Go check out the image and install instructions **[Here](https://hub.docker.com/r/inrix/floatplane-downloader)**!

2. Run the binary and follow the setup prompts.<br>

Expand All @@ -29,12 +32,17 @@ If you encounter any issues please **[create a issue](https://github.com/Inrixia

For more info on setting up plex & avalible settings check out the Wikis:

## Wikis:
# Wikis:
* [Setting up Plex](https://github.com/Inrixia/Floatplane-PlexDownloader/blob/master/wiki/plex.md)
* [Settings Info](https://github.com/Inrixia/Floatplane-Downloader/blob/master/wiki/settings.md)
* [Docker Info](https://github.com/Inrixia/Floatplane-Downloader/blob/master/wiki/docker.md)

<br>

**Note**: This is licenced under the GNU Affero General Public License v3.0. I am happy for you to use/modify/contribute to the source code as long as you provide a link back to here.

<br>

### Images:
![image](https://user-images.githubusercontent.com/6373693/115110440-8d252300-9fcf-11eb-92a0-a813fcfcc632.png)
![image](https://user-images.githubusercontent.com/6373693/115112389-69ff7100-9fd9-11eb-92e2-b83c3241627b.png)
Expand Down
86 changes: 0 additions & 86 deletions dockerREADME.md

This file was deleted.

1 change: 0 additions & 1 deletion latest.json

This file was deleted.

0 comments on commit 9dcb6a3

Please sign in to comment.