-
-
Notifications
You must be signed in to change notification settings - Fork 190
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into my-setting
- Loading branch information
Showing
8 changed files
with
700 additions
and
121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I don't like this design that [...] | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
on: | ||
push: | ||
tags: | ||
- "v*" # push events to matching v*, i.e. v1.0, v20.15.10 | ||
|
||
jobs: | ||
upload-files: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
include: | ||
- name: "Lepton" | ||
branch: "master" | ||
- name: "Lepton-Phton-Style" | ||
branch: "photon-style" | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
ref: ${{ matrix.branch }} | ||
|
||
- name: Release Structure | ||
run: | | ||
mkdir -v chrome | ||
shopt -s extglob | ||
mv -v !(chrome|user.js) chrome/ | ||
zip -rv ${{ matrix.name }}.zip chrome user.js | ||
- uses: softprops/action-gh-release@v1 # actions/create-release, actions/upload-release-asset is deprecated | ||
if: startsWith(github.ref, 'refs/tags/') | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
files: | | ||
${{ matrix.name }}.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
This is at least a partial credits-file of people that have contributed to the 'Firefox-UI-Fix' project. | ||
It is sorted by name. | ||
The fields are: name (N), email (E), web-address(W), license(L). | ||
Thanks, | ||
|
||
black7375 | ||
---------- | ||
Reference Projects & Resources | ||
|
||
N: Compact Mode Firefox Css | ||
W: https://github.com/Godiesc/compactmodefirefoxcss | ||
L: MPL 2.0 | ||
|
||
N: EdgeFox | ||
W: https://github.com/23Bluemaster23/EdgeFox | ||
|
||
N: EdgeTabSeparater.userChrome.css | ||
W: https://gist.github.com/mmis1000/08d8de4bbe70c04423f0b966bcc286b1 | ||
L: MIT | ||
|
||
N: firefox-csshacks | ||
W: https://github.com/MrOtherGuy/firefox-csshacks | ||
L: MPL 2.0 | ||
|
||
N: gecko-dev | ||
W: https://hg.mozilla.org/ | ||
L: MPL 2.0 | ||
|
||
N: MaterialFox | ||
W: https://github.com/muckSponge/MaterialFox | ||
L: MIT | ||
|
||
N: Multi-Account-Containers | ||
W: https://github.com/mozilla/multi-account-containers | ||
L: MPL 2.0 | ||
|
||
N: quietfox | ||
W: https://github.com/coekuss/quietfox | ||
L: MIT | ||
|
||
N: SVG Repo | ||
E: [email protected] | ||
W: https://www.svgrepo.com | ||
L: CC0 | ||
|
||
N: uc.css.js | ||
W: https://github.com/aminomancer/uc.css.js | ||
L: CC BY-NC-SA 4.0 | ||
|
||
N: userChrome.csshacks | ||
W: https://gist.github.com/DCzajkowski/baaf7bc81aae5278d690eaae951a823b | ||
L: CC0 | ||
|
||
N: userChrome.css | ||
W: https://gist.github.com/Dragoner7/ec2319e5038a6b4722d3e692713f9471 | ||
L: MPL 2.0 | ||
|
||
---------- | ||
Major Contributors | ||
|
||
N: Jan Janssen | ||
E: [email protected] | ||
W: https://github.com/medhefgo | ||
|
||
---------- | ||
Contributors | ||
|
||
N: 7k5x | ||
W: https://github.com/7k5x | ||
|
||
N: mamen | ||
W: https://www.mamen.at | ||
|
||
N: Rahul Ramkumar | ||
E: [email protected] | ||
W: https://rahulramkumar.dev | ||
|
||
N: Roel | ||
E: [email protected] | ||
W: https://github.com/Nyubis | ||
|
||
N: Yunsup Sim | ||
E: [email protected] | ||
W: https://ethansup.net |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
autocopy() { | ||
local file=${1} | ||
local target=${2} | ||
|
||
if [ -e "${target}" ]; then | ||
echo "${target} alreay exist." | ||
echo "Now Backup.." | ||
autocopy "${target}" "${target}.bak" | ||
echo"" | ||
fi | ||
|
||
cp -v "${file}" "${target}" | ||
} | ||
|
||
install_lepton() { | ||
local userConfig="user.js" | ||
autocopy "${userConfig}" "../${userConfig}" | ||
} | ||
install_lepton |
Oops, something went wrong.