Skip to content

Commit

Permalink
Merge branch 'master' into my-setting
Browse files Browse the repository at this point in the history
  • Loading branch information
black7375 committed Jun 9, 2021
2 parents d0b4c5c + 8fefe8a commit 2609446
Show file tree
Hide file tree
Showing 8 changed files with 700 additions and 121 deletions.
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
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.
36 changes: 36 additions & 0 deletions .github/workflows/release.yml
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
84 changes: 84 additions & 0 deletions CREDITS
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
19 changes: 19 additions & 0 deletions Install.sh
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
Loading

0 comments on commit 2609446

Please sign in to comment.