diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json deleted file mode 100644 index abe86c1..0000000 --- a/.devcontainer/devcontainer.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "name": "Flutter", - "image": "matspfeiffer/flutter:beta", - "extensions": ["dart-code.dart-code", "dart-code.flutter"] -} \ No newline at end of file diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index f402da3..0000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1,13 +0,0 @@ -# These are supported funding model platforms - -github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] -patreon: # Replace with a single Patreon username -open_collective: # Replace with a single Open Collective username -ko_fi: # Replace with a single Ko-fi username -tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel -community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry -liberapay: hernikplays -issuehunt: # Replace with a single IssueHunt username -otechie: # Replace with a single Otechie username -lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry -custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] diff --git a/.github/ISSUE_TEMPLATE/chybov--hl--en-.md b/.github/ISSUE_TEMPLATE/chybov--hl--en-.md deleted file mode 100644 index e6da223..0000000 --- a/.github/ISSUE_TEMPLATE/chybov--hl--en-.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -name: Chybové hlášení -about: Použijte tuto předlohu, pokud se něco rozbilo -title: '' -labels: bug -assignees: hernikplays - ---- - -**Popis chyby** -Zde popište co se stalo, mělo stát apod. - -**Kroky pro replikaci** -Kroky ke spuštění chyby: -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error - -**Snímky obrazovky** -Chcete-li, přiložte snímky - -**Info o zařízení** - - Verze systému zařízení: [např. Android 12, iOS 9] - - Verze aplikace [např. 0.1.0] - -**Ostatní** -Sem vepište doplňující informace diff --git a/.github/ISSUE_TEMPLATE/n-pad-na-vylep-en-.md b/.github/ISSUE_TEMPLATE/n-pad-na-vylep-en-.md deleted file mode 100644 index 2c00f66..0000000 --- a/.github/ISSUE_TEMPLATE/n-pad-na-vylep-en-.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -name: Nápad na vylepšení -about: Navrhněte co změnit nebo přidat do aplikace -title: '' -labels: vylepšení -assignees: hernikplays - ---- - -**Souvisí váš navrh s nějakým problémem?** -Popište váš problém a co čekáte za řešení. diff --git a/.github/labeler.yml b/.github/labeler.yml deleted file mode 100644 index 20ce8c0..0000000 --- a/.github/labeler.yml +++ /dev/null @@ -1,8 +0,0 @@ -'pr: pubspec': -- pubspec.yaml - -'pr: funkce': -- lib/* - -'pr: okno': -- lib/okna/* diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md deleted file mode 100644 index 51703d5..0000000 --- a/.github/pull_request_template.md +++ /dev/null @@ -1,14 +0,0 @@ -Opravuje/implementuje # . - -Změny: -- 1 -- 2 - -``` -Text výše slouží jen jako předloha, není nutné se ho držet, ale šetříte ostatním čas -``` - -- [ ] Otestoval jsem funkčnost celé aplikace po přidání svého kódu -- [ ] Přidaný kód nebo knihovny neobsahují žádný kód pod nekompatibilní licencí - -Doplňující/ostatní informace: diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 9ad5506..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,30 +0,0 @@ -# This is a basic workflow to help you get started with Actions - -name: Analyze - -# Controls when the workflow will run -on: - # Triggers the workflow on push or pull request events but only for the main branch - push: - branches: [ main ] - pull_request: - branches: [ main ] - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - fossa-scan: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: fossas/fossa-action@main - with: - api-key: ${{secrets.fossaApiKey}} - analyze: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: subosito/flutter-action@v2 - with: - channel: 'stable' - - run: flutter pub get - - run: flutter analyze diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml deleted file mode 100644 index 4c96c52..0000000 --- a/.github/workflows/pr.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: "Lint PR" - -on: - pull_request_target: - types: - - opened - - edited - - synchronize - -jobs: - main: - name: Validate PR - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - uses: amannn/action-semantic-pull-request@v4 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - uses: wagoid/commitlint-github-action@v4 - - uses: actions/labeler@v4 - with: - repo-token: "${{ secrets.GITHUB_TOKEN }}" - branch: - name: Uzavřít PRy mimo dev větev - needs: main - if: github.base_ref == 'main' && github.actor != 'hernikplays' - runs-on: ubuntu-latest - steps: - - uses: superbrothers/close-pull-request@v3 - with: - comment: "Všechny pull requesty by měly směřovat na jinou větev, než `main`. Pokud je tohle chyba, napište správci repozitáře."