Skip to content
This repository has been archived by the owner on Jun 3, 2018. It is now read-only.

not working in ff 60.0.1 with flashget on w8-8.1 32-64 bit #1

Open
wants to merge 45 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
90f5534
integrating with travis-ci.org
belaviyo Jun 20, 2017
58e9e93
adding open-in-vlc
belaviyo Jun 20, 2017
a98ceea
updating name
belaviyo Jun 20, 2017
8408689
updating from upstream
belaviyo Jun 22, 2017
8d32b60
Download with IDM
belaviyo Jun 26, 2017
8121811
supporting FDM for Chrome and Opera
belaviyo Jun 28, 2017
a66c905
adding JDownloader support
belaviyo Jun 29, 2017
c7ce1c0
version 0.1.7
belaviyo Jun 29, 2017
fff1b9c
Supporting DAP for Chrome and Opera
belaviyo Jul 1, 2017
737bea3
supporting wget for Chrome and Opera
belaviyo Jul 2, 2017
296034f
supporting DAP on Firefox
belaviyo Jul 3, 2017
e3a8132
version 0.2.1
belaviyo Jul 23, 2017
3fbe678
supporting wget and fdm on Firefox
belaviyo Jul 23, 2017
d0a5b8a
removng test id
belaviyo Jul 23, 2017
9f810ce
Supporting MPC and MPlayer on Chrome and Opera. MPC on Firefox
belaviyo Jul 24, 2017
5a38f71
supporting edit with sublime
belaviyo Aug 5, 2017
9f421eb
supporting Vivaldi browser
belaviyo Aug 7, 2017
3b88088
version 0.2.6
belaviyo Aug 10, 2017
2c3f106
supporting send-to-mpv
belaviyo Aug 15, 2017
1d3dd47
version 0.2.8
belaviyo Sep 23, 2017
4db0dc5
version 0.2.9
belaviyo Sep 27, 2017
553b946
v0.3.0
belaviyo Oct 3, 2017
40fe05b
fixes NodeJS detection
belaviyo Oct 5, 2017
f693cb2
version 0.3.3
belaviyo Oct 7, 2017
bb33e89
Check if $id is non-zero
E100Beta Nov 5, 2017
a2a481c
Merge pull request #1 from E100Beta/patch-1
belaviyo Nov 5, 2017
a293477
version 0.3.4
belaviyo Nov 5, 2017
9ff9e2d
v0.3.5
belaviyo Nov 5, 2017
b1d2c90
version 0.3.6
belaviyo Nov 24, 2017
e2c1f38
version 0.3.7
belaviyo Dec 28, 2017
7de555d
supporting FlashGet
belaviyo Feb 15, 2018
16cbc1e
version 0.3.9
belaviyo Aug 30, 2018
fc7bfd2
supporting edit-with-vim
belaviyo Sep 1, 2018
ec2279c
download with aria2
belaviyo Oct 25, 2018
ceb90a1
fixes https://github.com/belaviyo/download-with/issues/20
belaviyo May 23, 2019
ff0913d
version 0.4.3
belaviyo Feb 19, 2020
bfab9f6
download-with-jdownlaoder for edge
belaviyo Feb 23, 2020
6cc00df
supports download-with-idm for Chrome and Edge
belaviyo Feb 26, 2020
bacec8c
version 0.4.6
belaviyo Jul 11, 2020
f202c16
version 0.4.7
belaviyo Jul 24, 2021
6aee373
Create main.yml
belaviyo Jul 24, 2021
5828872
Update main.yml
belaviyo Jul 24, 2021
38ea63e
update main.yml
belaviyo Jul 24, 2021
f4086a4
LICENSE
belaviyo Jun 30, 2024
33ee805
Merge branch 'master' of github-joe:belaviyo/native-client
belaviyo Jun 30, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 72 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
# This is a basic workflow to help you get started with Actions

name: CI

# Controls when the workflow will run
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- '*' # Push events to matching v*, i.e. v1.0, v20.15.10

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

# Runs a set of commands using the runners shell
- name: Run a multi-line script
run: |
cd linux
zip ../linux.zip -9 -r * -x "*.DS_Store"
cd ../mac
zip ../mac.zip -9 -r * -x "*.DS_Store"
cd ../windows
zip ../windows.zip -9 -r * -x "*.DS_Store"

- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: true

- name: Upload release asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./windows.zip
asset_name: windows.zip
asset_content_type: application/zip
- name: Upload release asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./linux.zip
asset_name: linux.zip
asset_content_type: application/zip

- name: Upload release asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./mac.zip
asset_name: mac.zip
asset_content_type: application/zip
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ deploy:
provider: releases
prerelease: true
api_key:
secure: WLscrSf1ad9rEmZodg+tnqVo1IBwI5zAuaulC/bojiYmAR9pysFryas6SyGjgFCK9DKbFiaPUZXOWAT9q9uSgsPkWEARqE69BpXiDo4PLX0BVRhXd5C5Z0Neu6f03Zgx9lxY9/CalR3WF+qqrRSouUa2KveyMA1ofv6I+Q410do4qIbVWR5bY9RTU7SukdOQz1Nq4JhOHBNYEGSZEeu2/7kM8g3GJesSstOQaTSvOWSAQKeyj/aD63LfTNAd1zW577vyEjtXgz0xIvafot3WX88jarEJlLwNWciifssco6z1OCOOZ67unygmBiM62h35ism8qt2OX1S239my1L7kaoCNSPwbQ0GvP9foL9UkXl5zfIxUO6ZnkddouC+p5pI7DBSfJ9dJP3lToNJNei8jBa1xeLWByP6G82A5hKKrWBJEj4T2nXQUD5OAhy0cie0qeYHCA4bed4YMtpk3gHPXBkfhCfiq0qj9BOkPl+B0f0g1b6BGBvxfauphURH2QTqwckativGR4jIGipCHJdGA8WihRtHhoQgwppvlFiPsCJF/WaK2eTXpHAiIEZHNo28y3/frl1CBnpM5pFOfXJd2zk0BKQDyMR/0lcOXPrpaZyUt7lpkoVmCsJjIo+/Uf/fCt7vujol5b2YE4/MaedzJXhnXv3FdtyTot4A9FVOLUT4=
secure: jHB0IfT4ayiY01SNtSbsCAQd7O7qVOzBFW045qWIBeg4Ru+fcDEiEOe6fq1dPBQodrjfti5cKJyoJDpZ9EwPh5ZrANwj9B+IltOaJapR0wSX5vDlYVMBZuMR118JBfxxosw8SxQlVY9YNNRMKSxa75Ud4TkkWSzFOYvHhN8DdJYzBbFZW8LfubIpxenySkTtaBzhwmPqoVvjbq18Dp40FbkBFC40lfFe1UlGN+LQt3PjE7Gxg1yWzoWRL5eFbetdd+VBH4SVTiu/LvVZ8hhk2f3A72CaomiyPKQbzdt+/4skz9pEJZFdb3JvxaO8f0h5X8lS112/u+2qdT6xaAkYPvSipBdOypaLoG1aKgFuVseovsLn1/N8PqAWKzscmd1bf0USKxBkFw1yrvZFFxvmm2nZ8rUzCWrt7ISMvStO//4/YzQUzE1Lm7Z31qji9L0Uc8Xvg356NldNKLpelWJrsae8H5WIukDOdeE7twJ9RYdJ1M6+0jOzR//VMg5pTW0hNOQFDMy9IoAiqNqyUh0bKjf6MS5+/5QJsvzJip+rkuZnVMGxCMlZBT3gfZJSHRXYEIa2DR1p8g7+WBi6yUYSiF6pSjRdmnegnCcfXHpNzSYvdKFAJt5ea911iFtjYb26i4zMuKge3wj+xpSr6RJ/CyhiQudspipJF6gkE2t7sgM=
file:
- windows.zip
- linux.zip
Expand Down
Loading