Skip to content

Commit 2bb7b10

Browse files
committed
Merge remote-tracking branch 'origin/main' into feat/jq-tester
2 parents 4015507 + 0b1b98f commit 2bb7b10

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+1445
-84
lines changed

.github/fern-banner.svg

Lines changed: 11 additions & 0 deletions
Loading

.github/logo-dark.png

39.5 KB
Loading

.github/logo-white.png

38.7 KB
Loading

.github/logo.png

-7.81 KB
Binary file not shown.

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,32 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## Version 2024.10.22-7ca5933
6+
7+
### Features
8+
- **new tool**: Regex Tester (and Cheatsheet) (#1030) (f5c4ab1)
9+
- **new tool**: Markdown to HTML (#916) (87984e2)
10+
- **new-tool**: add email normalizer (#1243) (318fb6e)
11+
- **new tools**: JSON to XML and XML to JSON (#1231) (f1a5489)
12+
- **lorem-ipsum**: add button to refresh text lorem-ipsum (#1213) (e1b4f9a)
13+
- **base64**: Base64 enhancements (#905) (30144aa)
14+
15+
### Bug fixes
16+
- **favorites**: store favorites regardless of languages (#1202) (7ca5933)
17+
- **emoji-picker**: debounced search input (#1181) (76a19d2)
18+
- **format-transformer**: set overflow for output area width (#787) (b430bae)
19+
- **jwt-parser**: prevent UI overflow on small screen (#1095) (dd4b7e6)
20+
21+
### Refactoring
22+
- **regex-tester**: better description (7251700)
23+
24+
### Chores
25+
- **sponsors**: fern sponsor banners (#1314) (f962c41)
26+
- **readme**: updated logos (#1294) (6709498)
27+
28+
### Documentation
29+
- **author**: updated author links (#1316) (1c35ac3)
30+
531
## Version 2024.05.13-a0bc346
632

733
### Features

README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
1-
![logo](.github/logo.png)
1+
<picture>
2+
<source srcset="./.github/logo-dark.png" media="(prefers-color-scheme: light)">
3+
<source srcset="./.github/logo-white.png" media="(prefers-color-scheme: dark)">
4+
<img src="./.github/logo-dark.png" alt="logo">
5+
</picture>
26

37
Useful tools for developer and people working in IT. [Have a look !](https://it-tools.tech).
48

9+
## Sponsors
10+
11+
[![Fern banner](./.github/fern-banner.svg)](https://bit.ly/3zBl7DG)
12+
513
## Functionalities and roadmap
614

715
Please check the [issues](https://github.com/CorentinTh/it-tools/issues) to see if some feature listed to be implemented.
@@ -109,11 +117,11 @@ It will create a directory in `src/tools` with the correct files, and a the impo
109117

110118
Big thanks to all the people who have already contributed!
111119

112-
[![contributors](https://contrib.rocks/image?repo=corentinth/it-tools)](https://github.com/corentinth/it-tools/graphs/contributors)
120+
[![contributors](https://contrib.rocks/image?repo=corentinth/it-tools&refresh=1)](https://github.com/corentinth/it-tools/graphs/contributors)
113121

114122
## Credits
115123

116-
Coded with ❤️ by [Corentin Thomasset](//corentin-thomasset.fr).
124+
Coded with ❤️ by [Corentin Thomasset](https://corentin.tech?utm_source=it-tools&utm_medium=readme).
117125

118126
This project is continuously deployed using [vercel.com](https://vercel.com).
119127

components.d.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ declare module '@vue/runtime-core' {
124124
LoremIpsumGenerator: typeof import('./src/tools/lorem-ipsum-generator/lorem-ipsum-generator.vue')['default']
125125
MacAddressGenerator: typeof import('./src/tools/mac-address-generator/mac-address-generator.vue')['default']
126126
MacAddressLookup: typeof import('./src/tools/mac-address-lookup/mac-address-lookup.vue')['default']
127+
MarkdownToHtml: typeof import('./src/tools/markdown-to-html/markdown-to-html.vue')['default']
127128
MathEvaluator: typeof import('./src/tools/math-evaluator/math-evaluator.vue')['default']
128129
MenuBar: typeof import('./src/tools/html-wysiwyg-editor/editor/menu-bar.vue')['default']
129130
MenuBarItem: typeof import('./src/tools/html-wysiwyg-editor/editor/menu-bar-item.vue')['default']
@@ -132,9 +133,10 @@ declare module '@vue/runtime-core' {
132133
MetaTagGenerator: typeof import('./src/tools/meta-tag-generator/meta-tag-generator.vue')['default']
133134
MimeTypes: typeof import('./src/tools/mime-types/mime-types.vue')['default']
134135
NavbarButtons: typeof import('./src/components/NavbarButtons.vue')['default']
135-
NCode: typeof import('naive-ui')['NCode']
136+
NCheckbox: typeof import('naive-ui')['NCheckbox']
136137
NCollapseTransition: typeof import('naive-ui')['NCollapseTransition']
137138
NConfigProvider: typeof import('naive-ui')['NConfigProvider']
139+
NDivider: typeof import('naive-ui')['NDivider']
138140
NEllipsis: typeof import('naive-ui')['NEllipsis']
139141
NH1: typeof import('naive-ui')['NH1']
140142
NH3: typeof import('naive-ui')['NH3']
@@ -155,6 +157,9 @@ declare module '@vue/runtime-core' {
155157
PhoneParserAndFormatter: typeof import('./src/tools/phone-parser-and-formatter/phone-parser-and-formatter.vue')['default']
156158
QrCodeGenerator: typeof import('./src/tools/qr-code-generator/qr-code-generator.vue')['default']
157159
RandomPortGenerator: typeof import('./src/tools/random-port-generator/random-port-generator.vue')['default']
160+
RegexMemo: typeof import('./src/tools/regex-memo/regex-memo.vue')['default']
161+
'RegexMemo.content': typeof import('./src/tools/regex-memo/regex-memo.content.md')['default']
162+
RegexTester: typeof import('./src/tools/regex-tester/regex-tester.vue')['default']
158163
ResultRow: typeof import('./src/tools/ipv4-range-expander/result-row.vue')['default']
159164
RomanNumeralConverter: typeof import('./src/tools/roman-numeral-converter/roman-numeral-converter.vue')['default']
160165
RouterLink: typeof import('vue-router')['RouterLink']

locales/de.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ home:
1010
newestTools: Neueste Tools
1111
favoriteTools: Deine Lieblingstools
1212
allTools: Alle Tools
13+
favoritesDndToolTip: 'Ziehen und Ablegen, um Favoriten neu zu ordnen'
1314
subtitle: Praktische Tools für Entwickler
1415
toggleMenu: Menü umschalten
1516
home: Startseite
@@ -21,13 +22,13 @@ home:
2122
p1: Gib uns einen Stern auf
2223
githubRepository: IT-Tools GitHub-Repository
2324
p2: oder folge uns auf
24-
twitterAccount: IT-Tools Twitter-Konto
25+
twitterXAccount: IT-Tools X-Konto
2526
thankYou: Vielen Dank!
2627
nav:
2728
github: GitHub-Repository
2829
githubRepository: IT-Tools GitHub-Repository
29-
twitter: Twitter-Konto
30-
twitterAccount: IT-Tools Twitter-Konto
30+
twitterX: X-Konto
31+
twitterXAccount: IT-Tools X-Konto
3132
about: Über IT-Tools
3233
aboutLabel: Über
3334
darkMode: Dunkelmodus
@@ -38,7 +39,7 @@ about:
3839
# Über IT-Tools
3940
4041
Diese wunderbare Website, erstellt mit ❤ von [Corentin
41-
Thomasset](https://github.com/CorentinTh), sammelt nützliche Tools für
42+
Thomasset](https://corentin.tech?utm_source=it-tools&utm_medium=about), sammelt nützliche Tools für
4243
Entwickler und Menschen, die in der IT arbeiten. Wenn du sie nützlich
4344
findest, teile sie gerne mit Personen, von denen du denkst, dass sie sie
4445
ebenfalls nützlich finden könnten, und vergiss nicht, sie in deiner

locales/en.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ home:
33
newestTools: Newest tools
44
favoriteTools: 'Your favorite tools'
55
allTools: 'All the tools'
6+
favoritesDndToolTip: 'Drag and drop to reorder favorites'
67
subtitle: 'Handy tools for developers'
78
toggleMenu: 'Toggle menu'
89
home: Home
@@ -14,13 +15,13 @@ home:
1415
p1: 'Give us a star on'
1516
githubRepository: 'IT-Tools GitHub repository'
1617
p2: 'or follow us on'
17-
twitterAccount: 'IT-Tools Twitter account'
18+
twitterXAccount: 'IT-Tools X account'
1819
thankYou: 'Thank you!'
1920
nav:
2021
github: 'GitHub repository'
2122
githubRepository: 'IT-Tools GitHub repository'
22-
twitter: 'Twitter account'
23-
twitterAccount: 'IT Tools Twitter account'
23+
twitterX: 'X account'
24+
twitterXAccount: 'IT Tools X account'
2425
about: 'About IT-Tools'
2526
aboutLabel: 'About'
2627
darkMode: 'Dark mode'
@@ -30,7 +31,7 @@ about:
3031
content: >
3132
# About IT-Tools
3233
33-
This wonderful website, made with ❤ by [Corentin Thomasset](https://github.com/CorentinTh) , aggregates useful tools for developer and people working in IT. If you find it useful, please feel free to share it to people you think may find it useful too and don't forget to bookmark it in your shortcut bar!
34+
This wonderful website, made with ❤ by [Corentin Thomasset](https://corentin.tech?utm_source=it-tools&utm_medium=about) , aggregates useful tools for developer and people working in IT. If you find it useful, please feel free to share it to people you think may find it useful too and don't forget to bookmark it in your shortcut bar!
3435
3536
IT Tools is open-source (under the MIT license) and free, and will always be, but it costs me money to host and renew the domain name. If you want to support my work, and encourage me to add more tools, please consider supporting by [sponsoring me](https://www.buymeacoffee.com/cthmsst).
3637

locales/es.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ home:
33
newestTools: Nuevas herramientas
44
favoriteTools: 'Tus herramientas favoritas'
55
allTools: 'Todas las herramientas'
6+
favoritesDndToolTip: 'Arrastra y suelta para reordenar favoritos'
67
subtitle: 'Herramientas practicas para desarrolladores'
78
toggleMenu: 'Toggle menu'
89
home: Home
@@ -14,13 +15,13 @@ home:
1415
p1: 'Danos una estrella en'
1516
githubRepository: 'Repositorio de IT-Tools en GitHub'
1617
p2: 'o síguenos en'
17-
twitterAccount: 'Cuenta de twitter de IT-Tools'
18+
twitterXAccount: 'Cuenta de X de IT-Tools'
1819
thankYou: 'Muchas gracias!'
1920
nav:
2021
github: 'Repositorio en github'
2122
githubRepository: 'IT-Tools GitHub repository'
22-
twitter: 'Cuenta de Twitter'
23-
twitterAccount: 'Cuenta de twitter de IT Tools'
23+
twitterX: 'Cuenta de X'
24+
twitterXAccount: 'Cuenta de X de IT Tools'
2425
about: 'Sobre IT-Tools'
2526
aboutLabel: 'Sobre'
2627
darkMode: 'Modo obscuro'
@@ -30,7 +31,7 @@ about:
3031
content: >
3132
# Sobre IT-Tools
3233
33-
Este maravilloso sitio web, hecho con ❤ por [Corentin Thomasset](https://github.com/CorentinTh) , agrega herramientas útiles para desarrolladores y personas que trabajan en IT. Si lo encuentra útil, no dude en compartirlo con las personas que crea que también pueden encontrarlo útil y ¡no olvide marcarlo como favorito en su barra de accesos directos!
34+
Este maravilloso sitio web, hecho con ❤ por [Corentin Thomasset](https://corentin.tech?utm_source=it-tools&utm_medium=about) , agrega herramientas útiles para desarrolladores y personas que trabajan en IT. Si lo encuentra útil, no dude en compartirlo con las personas que crea que también pueden encontrarlo útil y ¡no olvide marcarlo como favorito en su barra de accesos directos!
3435
3536
IT Tools es de código abierto (under the MIT license) y gratis, y siempre lo será, pero me cuesta dinero alojar y renovar el nombre de dominio. Si desea apoyar mi trabajo y animarme a agregar más herramientas, considere apoyarme a través de[sponsoring me](https://www.buymeacoffee.com/cthmsst).
3637
@@ -39,7 +40,7 @@ about:
3940
IT Tools está creado en Vue.js (Vue 3) con la biblioteca de componentes Naive UI y Vercel lo aloja y lo implementa continuamente. En algunas herramientas se utilizan bibliotecas de código abierto de terceros; puede encontrar la lista completa en [package.json](https://github.com/CorentinTh/it-tools/blob/main/package.json) archivo del repositorio.
4041
4142
## ¿Encontraste un error? ¿Falta una herramienta?
42-
43+
4344
Si necesita una herramienta que actualmente no está presente aquí y cree que puede ser útil, puede enviar una solicitud de función en el [issues section](https://github.com/CorentinTh/it-tools/issues/new/choose) en el repositorio de GitHub.
4445
4546
Y si encontró un error o algo no funciona como se esperaba, presente un reporte de error en el [issues section](https://github.com/CorentinTh/it-tools/issues/new/choose) en el repositorio de GitHub.
@@ -68,4 +69,4 @@ tools:
6869
math: Math
6970
measurement: Measurement
7071
text: Text
71-
data: Data
72+
data: Data

0 commit comments

Comments
 (0)