Skip to content

Commit

Permalink
Dont rebuild README changes
Browse files Browse the repository at this point in the history
  • Loading branch information
hunter-richardson committed Jun 28, 2024
1 parent 94120ac commit a704b77
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@

name: ESLint

on:
on:
pull_request:
types: [opened, reopened, edited, synchronized, ready_for_review, review_requested, auto_merge_enabled]
paths-ignore: [ .github ]
types: [opened, reopened, edited, ready_for_review, review_requested, auto_merge_enabled]
paths-ignore: [ .github, README.md ]
push:
paths-ignore: [ .github ]
paths-ignore: [ .github, README.md ]

jobs:
eslint:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# StructorVerborum [![CodeFactor](https://www.codefactor.io/repository/github/hunter-richardson/structorverborum/badge)](https://www.codefactor.io/repository/github/hunter-richardson/structorverborum) [![GitHub Issues](https://img.shields.io/github/issues-raw/hunter-richardson/structorVerborum?logo=github)](https://github.com/hunter-richardson/structorVerborum/issues) [![GitHub Issues](https://img.shields.io/github/issues-pr/hunter-richardson/structorVerborum?logo=github)](https://github.com/hunter-richardson/structorVerborum/pulls) [![.github/workflows/aedificare.yaml](https://github.com/hunter-richardson/structorVerborum/actions/workflows/aedificare.yaml/badge.svg?branch=princeps)](https://github.com/hunter-richardson/structorVerborum/actions/workflows/aedificare.yaml) [![ESLint](https://github.com/hunter-richardson/structorVerborum/actions/workflows/eslint.yml/badge.svg?branch=princeps)](https://github.com/hunter-richardson/structorVerborum/security/code-scanning)
# StructorVerborum [![CodeFactor](https://www.codefactor.io/repository/github/hunter-richardson/structorverborum/badge)](https://www.codefactor.io/repository/github/hunter-richardson/structorverborum) [![GitHub Issues](https://img.shields.io/github/issues-raw/hunter-richardson/structorVerborum?logo=github)](https://github.com/hunter-richardson/structorVerborum/issues) [![GitHub Issues](https://img.shields.io/github/issues-pr/hunter-richardson/structorVerborum?logo=github)](https://github.com/hunter-richardson/structorVerborum/pulls) [![ESLint](https://github.com/hunter-richardson/structorVerborum/actions/workflows/eslint.yml/badge.svg?branch=princeps)](https://github.com/hunter-richardson/structorVerborum/security/code-scanning) [![.github/workflows/aedificare.yaml](https://github.com/hunter-richardson/structorVerborum/actions/workflows/aedificare.yaml/badge.svg?branch=princeps)](https://github.com/hunter-richardson/structorVerborum/actions/workflows/aedificare.yaml)

*Structor Verborum (anglice* "Phrase Factory"*) situm intenditur licentem hospites facere locutiones Latinas lemmis inflexis accurate. Propter naturam linguae Latinae hospites modicum aliquid eius requiruntur intellegere aut discere posse saltem. Hoc nec opera dictionarii nec magister linguae Latinae quamquam res pro casu illa providerentur cum posset.* / *Structor Verborum* ("Phrase Factory" in English) is intended to be a website that allows its visitors to compose Latin phrases with accurately inflected lemmas. Due to the nature of the Latin language, this requires visitors understand (or at least be able to learn) some modicum thereof. This is neither a dictionary service nor a facilitor of teaching the Latin language, although resources may be provided to help with that when possible.

Expand Down
9 changes: 6 additions & 3 deletions src/facies/inflectere.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import tabulaAdverbiorum from './tabulam/adverbiorum.vue';
import tabulaNominum from './tabulam/nominum.vue';
import tabulaPronominum from './tabulam/pronominum.vue';
// import tabulaNumeraminum from './tabulam/numeraminum.vue'
import tabulaNumeraminum from './tabulam/numeraminum.vue'
import type { Eventus } from '../miscella/dictionarium';
import type { Referendum } from '../praebeunda/interfecta';
Expand All @@ -14,7 +14,7 @@
const componenta: ComponentOptionsWithoutProps = {
'tabulaAdiectivorum': tabulaAdiectivorum,
'tabulaAdverbiorum': tabulaAdverbiorum,
// 'tabulaNumeraminum': tabulaNumeraminum
'tabulaNumeraminum': tabulaNumeraminum,
'tabulaNominum': tabulaNominum,
'tabulaPronominum': tabulaPronominum,
'tabulaActuum': tabulaActuum,
Expand Down Expand Up @@ -49,8 +49,11 @@
<tabulaAdverbiorum :agendum='referendum' />
</template>
<template v-else-if="categoria === 'nomen'">
<tabulaNominum :agendum='referendum' />
<tabulaNominum :agendum='referendum' />
</template>
<template v-else-if="categoria === 'numeramen'">
<tabulaNumeraminum :agendum='referendum' />
</template>
<template v-else-if="categoria === 'pronomen'">
<tabulaPronominum :agendum='referendum' />
</template>
Expand Down

0 comments on commit a704b77

Please sign in to comment.