Skip to content

Commit

Permalink
Merge v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
BilelJegham committed Jun 28, 2024
1 parent 1c92a71 commit 0801162
Show file tree
Hide file tree
Showing 83 changed files with 13,140 additions and 9,844 deletions.
75 changes: 74 additions & 1 deletion .all-contributorsrc
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,78 @@
"contributions": [
"code"
]
},
{
"login": "itstechsupport",
"name": "itstechsupport",
"avatar_url": "https://avatars.githubusercontent.com/u/62838020?v=4",
"profile": "https://github.com/itstechsupport",
"contributions": [
"translation"
]
},
{
"login": "tigattack",
"name": "tigattack",
"avatar_url": "https://avatars.githubusercontent.com/u/10629864?v=4",
"profile": "http://blog.tiga.tech",
"contributions": [
"code"
]
},
{
"login": "Troplo",
"name": "Troplo",
"avatar_url": "https://avatars.githubusercontent.com/u/45160807?v=4",
"profile": "https://troplo.com",
"contributions": [
"code"
]
},
{
"login": "66Leo66",
"name": "Leo Li",
"avatar_url": "https://avatars.githubusercontent.com/u/33322229?v=4",
"profile": "https://github.com/66Leo66",
"contributions": [
"code"
]
},
{
"login": "ElectricS01",
"name": "ElectricS01",
"avatar_url": "https://avatars.githubusercontent.com/u/103579308?v=4",
"profile": "http://electrics01.com",
"contributions": [
"review"
]
},
{
"login": "NitinRamnani",
"name": "Nitin Ramnani",
"avatar_url": "https://avatars.githubusercontent.com/u/16476523?v=4",
"profile": "https://github.com/NitinRamnani",
"contributions": [
"test"
]
},
{
"login": "zhudotexe",
"name": "Andrew Zhu",
"avatar_url": "https://avatars.githubusercontent.com/u/8866981?v=4",
"profile": "https://zhu.codes",
"contributions": [
"code"
]
},
{
"login": "HelloJowet",
"name": "Jonas Frei",
"avatar_url": "https://avatars.githubusercontent.com/u/53214867?v=4",
"profile": "https://github.com/HelloJowet",
"contributions": [
"code"
]
}
],
"contributorsPerLine": 7,
Expand All @@ -201,5 +273,6 @@
"repoType": "github",
"repoHost": "https://github.com",
"skipCi": true,
"commitConvention": "none"
"commitConvention": "none",
"commitType": "docs"
}
5 changes: 5 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.github/
*.md
.git
node_modules/
dist/
2 changes: 1 addition & 1 deletion .env.dist
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ VUE_APP_FIREBASE_APP_ID=YOUR_FIREBASE_APP_ID
VUE_APP_FIREBASE_MEASUREMENT_ID=YOUR_FIREBASE_MEASUREMENT_ID

VUE_APP_LIST_MAPS_JSON_URL=https://maps.geoguess.games/maps.json
#VUE_APP_PUBLIC_PATH="/path"
#VUE_APP_PUBLIC_PATH="/path"
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ module.exports = {
'vue/html-indent': ['warn', 4],
"vue/multi-word-component-names": 'off',
'vue/valid-v-slot': 'off',
'vue/no-reserved-component-names': 'off',
},
overrides: [
{
Expand Down
2 changes: 1 addition & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# These are supported funding model platforms

github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
github: [BilelJegham] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: # patreon
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
Expand Down
95 changes: 95 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
---
name: Bug report
description: Create a report to help us improve
title: "[BUG]: "
labels:
- bug
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
- type: textarea
attributes:
label: Describe the bug
description: A clear and concise description of what the bug is.
validations:
required: true
- type: markdown
attributes:
value: |+
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
- type: textarea
attributes:
label: To Reproduce
validations:
required: true
- type: textarea
attributes:
label: Expected behavior
description: A clear and concise description of what you expected to happen.
validations:
required: true
- type: textarea
attributes:
label: Describe alternatives you've considered
description: A clear and concise description of any alternative solutions or
features you've considered.
- type: textarea
attributes:
label: Screenshots
description: If applicable, add screenshots to help explain your problem.
- type: dropdown
id: os
attributes:
label: What is your OS ?
multiple: true
options:
- IOS
- Android
- Windows
- MAC
- Linux
validations:
required: true
- type: dropdown
id: browsers
attributes:
label: What browsers are you seeing the problem on?
multiple: true
options:
- Firefox
- Chrome
- Safari
- Microsoft Edge
- Opera
validations:
required: true
- type: input
id: version
attributes:
label: Version
description: What is you GeoGuess version ?
validations:
required: true
- type: textarea
id: add
attributes:
label: Additional context
description: Add any other context or screenshots about the feature request here.
- type: checkboxes
id: terms
attributes:
label: Code of Conduct
description: By submitting this issue, you agree to follow our [Code of
Conduct](https://github.com/GeoGuess/GeoGuess/blob/master/CODE_OF_CONDUCT.md)
options:
- label: I agree to follow this project's Code of Conduct
required: true
47 changes: 47 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@

name: Feature request
description: Suggest an idea for this project
title: "[FEAT]: "
labels: ["enhancement"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this feature request !
- type: textarea
id: related
attributes:
label: Is your feature request related to a problem? Please describe.
description: A clear and concise description of what the problem is.
placeholder: ex. I'm always frustrated when [...]
validations:
required: true

- type: textarea
id: solution
attributes:
label: Describe the solution you'd like
description: A clear and concise description of what you want to happen.
placeholder: ex. I would like ...
validations:
required: true

- type: textarea
id: alternatives
attributes:
label: Describe alternatives you've considered
description: A clear and concise description of any alternative solutions or features you've considered.

- type: textarea
id: add
attributes:
label: Additional context
description: Add any other context or screenshots about the feature request here.
- type: checkboxes
id: terms
attributes:
label: Code of Conduct
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/GeoGuess/GeoGuess/blob/master/CODE_OF_CONDUCT.md)
options:
- label: I agree to follow this project's Code of Conduct
required: true
74 changes: 74 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"

on:
push:
branches: [ "master" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "master" ]
schedule:
- cron: '41 11 * * 6'

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'javascript' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support

steps:
- name: Checkout repository
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.

# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality


# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v3

# ℹ️ Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun

# If the Autobuild fails above, remove it and uncomment the following three lines.
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.

# - run: |
# echo "Run, Build Application using script"
# ./location_of_script_within_repo/buildscript.sh

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"
40 changes: 40 additions & 0 deletions .github/workflows/publish-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Publish Image

on:
workflow_dispatch:
push:
branches:
- 'master'
tags:
- 'v*'

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}

- name: Build & Publish image
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64,linux/arm64
2 changes: 1 addition & 1 deletion .github/workflows/version-patch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: git config --global user.name 'GitHub Actions Bot'
- run: git config --global user.email '<>'
- run: npm version patch
Expand Down
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v20.14
Loading

0 comments on commit 0801162

Please sign in to comment.