Skip to content

Commit

Permalink
🎉 Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
raed667 committed Jul 18, 2022
0 parents commit a9e5216
Show file tree
Hide file tree
Showing 38 changed files with 5,710 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
build
15 changes: 15 additions & 0 deletions .eslintrc
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"

}
}
4 changes: 4 additions & 0 deletions .gitattributes
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
52 changes: 52 additions & 0 deletions .github/ISSUE_TEMPLATE/Bug_report.md
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. -->
31 changes: 31 additions & 0 deletions .github/ISSUE_TEMPLATE/Feature_request.md
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. -->
27 changes: 27 additions & 0 deletions .github/workflows/build.yml
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
19 changes: 19 additions & 0 deletions .gitignore
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
11 changes: 11 additions & 0 deletions Extension/_locales/en/messages.json
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"
}
}
11 changes: 11 additions & 0 deletions Extension/_locales/fr/messages.json
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"
}
}
7 changes: 7 additions & 0 deletions Extension/assets/css/no-popin.css
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;
}
Binary file added Extension/assets/icons/icon-128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Extension/assets/icons/icon-16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Extension/assets/icons/icon-19.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Extension/assets/icons/icon-38.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit a9e5216

Please sign in to comment.