-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #284 from ozgurg/dev
release: v6.71.0
- Loading branch information
Showing
32 changed files
with
279 additions
and
287 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
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
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
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
This file was deleted.
Oops, something went wrong.
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
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,28 @@ | ||
<template> | ||
<!-- | ||
To enhance readability, formatter:on and formatter:off comments have been added to disable the WebStorm formatter for the sentence. | ||
--> | ||
<footer class="text-center text-body-2 text--secondary"> | ||
<!-- @formatter:off --> | ||
<a :href="authorUrl" rel="nofollow noopener noreferrer" target="_blank">@{{ authorUsername }}</a> tarafından <a :href="repositoryUrl" rel="nofollow noopener noreferrer" target="_blank">açık kaynaklı</a> olarak geliştirilmektedir | ||
<!-- @formatter:on --> | ||
|
||
<span class="font-weight-bold mt-2 d-block"> | ||
v{{ version }} | ||
</span> | ||
</footer> | ||
</template> | ||
|
||
<script setup> | ||
// FIXME: | ||
// Importing with object destructuring in "script setup" without using "as" causes WebStorm to not detect their usage within the template. | ||
// This can be refactored when it's fixed. | ||
import packageJson from "@/package.json"; | ||
const authorUrl = packageJson.author.url; | ||
const authorUsername = packageJson.author.url.split("/")[3]; | ||
const repositoryUrl = packageJson.repository.url; | ||
const version = packageJson.version; | ||
</script> |
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 |
---|---|---|
@@ -1,11 +1,8 @@ | ||
<template> | ||
<v-alert | ||
:icon="false" | ||
text="" | ||
type="warning"> | ||
<vh-alert type="warning"> | ||
Bu web sitesinde yer alan <b>doğruluğu ve güncelliği teyit edilmemiş</b> yazılar siteyi dolu gösterme amaçlıdır | ||
ve herhangi bir | ||
<b>niteliği yoktur</b>. Bu yazılara bakarak herhangi bir <b>karar almayın</b> veya yazıları <b>referans olarak | ||
göstermeyin</b>. | ||
</v-alert> | ||
</vh-alert> | ||
</template> |
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
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
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
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.