Skip to content

Commit 55c293a

Browse files
Merge pull request #19 from technikhil314/develop
Develop
2 parents 498e991 + 72e23b4 commit 55c293a

File tree

4 files changed

+20
-5
lines changed

4 files changed

+20
-5
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ I realise we are missing a diff viewer that is
2222
## Motivation
2323

2424
I realise as a developer community we are missing on a diff viewer tool that does not store your data on their server to give you links to diff view to share with your teams.
25-
There can be serious implications of storing your enterprise data on some server that you don’t know anything about
25+
There can be serious implications of storing your enterprise data on some server that you don’t know anything about.
26+
27+
Also current diff tools lack one major ability that is to compare any two text blocks. Many diff viewers out there target specific text types like JSON etc which is not what we want most of the time.
2628

2729
Also due to lack of such tool, if you want to see the the diff again you have to do the following
2830

components/footer.vue

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@
33
class="py-4 mt-4 text-center text-gray-800 bg-inherit dark:text-gray-50 min-h-max"
44
>
55
Made with ♥ using
6-
<a href="https://nuxtjs.org">
6+
<a
7+
href="https://nuxtjs.org"
8+
title="nuxtjs a vuejs based framework inspired by nextjs"
9+
aria-label="nuxtjs a vuejs based framework inspired by nextjs"
10+
>
711
<svg
812
class="inline w-4 h-4"
913
viewBox="0 0 124 124"
@@ -23,7 +27,11 @@
2327
</svg>
2428
</a>
2529
<span>&</span>
26-
<a href="https://tailwindcss.com/">
30+
<a
31+
href="https://tailwindcss.com/"
32+
title="tailwind css"
33+
aria-label="tailwind css"
34+
>
2735
<svg
2836
xmlns="http://www.w3.org/2000/svg"
2937
fill="none"

components/navbar.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
<div class="items-center">
5050
<a
5151
href="https://github.com/technikhil314/offline-diff-viewer/stargazers"
52+
title="github stars on this open source project"
5253
>
5354
<img
5455
src="https://img.shields.io/github/stars/technikhil314/offline-diff-viewer?style=social"
@@ -104,6 +105,7 @@
104105
<a
105106
class=""
106107
href="https://github.com/technikhil314/offline-diff-viewer"
108+
title="go to github repository of this open source project"
107109
>
108110
<svg
109111
xmlns="http://www.w3.org/2000/svg"

nuxt.config.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
const BASE_URL = "https://diffviewer.vercel.app";
22
const domainAliases = [
33
"https://diffchecker.vercel.app/",
4-
"https://textdiff.vercel.app/"
4+
"https://textdiff.vercel.app/",
5+
"https://differencer.vercel.app/",
6+
"https://diffie.vercel.app/",
7+
"https://differencefinder.vercel.app/"
58
]
69
const canonicalLinks = domainAliases.map(x => ({ rel: "canonical", href: x }))
7-
const DESCRIPTION = "A text diff viewer that is privacy focused, secure, sharable and simple";
10+
const DESCRIPTION = "A privacy first diff viewer that is secure, easy, simple and for any text type";
811
export default {
912
ssr: true,
1013
head: {

0 commit comments

Comments
 (0)