-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit a9e5216
Showing
38 changed files
with
5,710 additions
and
0 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,2 @@ | ||
node_modules | ||
build |
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,15 @@ | ||
{ | ||
"extends": ["airbnb"], | ||
"parser": "@babel/eslint-parser", | ||
"rules": { | ||
"import/no-extraneous-dependencies": "off", | ||
"arrow-body-style": "off", | ||
"import/prefer-default-export": "off", | ||
"import/extensions": "off", | ||
"max-len":"off", | ||
"no-param-reassign": "off", | ||
"no-restricted-syntax": "off", | ||
"no-await-in-loop": "off" | ||
|
||
} | ||
} |
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,4 @@ | ||
# For this filetypes convert CRLF to LF | ||
*.js text | ||
*.css text | ||
*.html text |
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,52 @@ | ||
--- | ||
name: Bug report | ||
about: Create a bug report to help us improve Qwant Search Browser Extension | ||
--- | ||
|
||
<!-- As an open-source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. | ||
--> | ||
|
||
### Prerequisites | ||
|
||
Please answer the following questions for yourself before submitting an issue. **YOU MAY DELETE THE PREREQUISITES SECTION.** | ||
|
||
- [ ] I am running the latest version | ||
- [ ] I checked the documentation and found no answer | ||
- [ ] I checked to make sure that this issue has not already been filed | ||
|
||
### Issue Details | ||
|
||
<!--- Please include all relevant details about the environment you experienced the bug in --> | ||
|
||
- **Qwant Search version:** | ||
- <!-- (e.g. v3.2.1) --> | ||
- **Browser and version:** | ||
- <!-- (e.g. Chrome 75) --> | ||
- **Operating system and version:** | ||
- <!-- (e.g. Windows 10) --> | ||
- **Protection mode you use in Qwant Search:** | ||
- <!-- (e.g. Standard, Strict, Disabled) --> | ||
- **Other browser extensions:** | ||
- <!-- (list other extensions you have installed) --> | ||
|
||
### Expected Behavior | ||
|
||
<!-- A clear and concise description of what you expected to happen. --> | ||
|
||
### Actual Behavior | ||
|
||
<!-- A clear and concise description of what actually happened. --> | ||
|
||
### Screenshots | ||
|
||
<!-- If applicable, add screenshots to help explain your problem. --> | ||
|
||
<details><summary>Screenshot:</summary> | ||
|
||
<!--- drag and drop, upload or paste your screenshot to this area--> | ||
|
||
</details> | ||
|
||
### Additional Information | ||
|
||
<!-- Add any other context about the problem 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,31 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for Qwant Search Browser Extension | ||
--- | ||
|
||
<!-- As an open-source project with a dedicated but small maintainer team, it can sometimes take a long time for issues to be addressed so please be patient and we will get back to you as soon as we can. | ||
--> | ||
|
||
### Prerequisites | ||
|
||
Please answer the following questions for yourself before submitting an issue. **YOU MAY DELETE THE PREREQUISITES SECTION.** | ||
|
||
- [ ] I am running the latest version | ||
- [ ] I checked the documentation and found no answer | ||
- [ ] I checked to make sure that this issue has not already been filed | ||
|
||
### Problem Description | ||
|
||
<!-- Is your feature request related to a problem? Please add a clear and concise description of what the problem is. --> | ||
|
||
### Proposed Solution | ||
|
||
<!-- Describe the solution you'd like in a clear and concise manner --> | ||
|
||
### Alternatives Considered | ||
|
||
<!-- A clear and concise description of any alternative solutions or features you've considered. --> | ||
|
||
### Additional Information | ||
|
||
<!-- Add any other context about the problem 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,27 @@ | ||
name: Build for all browsers | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
branches: [main] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: 16.14 | ||
- uses: c-hive/gha-yarn-cache@v2 | ||
- run: yarn install --frozen-lockfile | ||
- run: yarn build | ||
- name: Store builds | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: build | ||
path: | | ||
build |
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 @@ | ||
.DS_Store | ||
build/ | ||
Compiler/target | ||
Compiler/deploy | ||
Compiler/scripts/oneskyapp | ||
Compiler/bin | ||
Compiler/.project | ||
.idea/ | ||
.vscode/ | ||
Compiler/certificate.pem | ||
*.iml | ||
tags | ||
extensions | ||
dist/ | ||
yarn-error.log | ||
node_modules | ||
private | ||
tmp | ||
output.md |
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,11 @@ | ||
{ | ||
"name": { | ||
"message": "Qwant Search" | ||
}, | ||
"short_name": { | ||
"message": "Qwant" | ||
}, | ||
"description": { | ||
"message": "TODO" | ||
} | ||
} |
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,11 @@ | ||
{ | ||
"name": { | ||
"message": "Qwant Search" | ||
}, | ||
"short_name": { | ||
"message": "Qwant" | ||
}, | ||
"description": { | ||
"message": "TODO" | ||
} | ||
} |
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,7 @@ | ||
:root { | ||
--qwant-extension-installed: 1; | ||
} | ||
|
||
.home__snippet__extension { | ||
display: none !important; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.