Skip to content

Commit

Permalink
Merge pull request #27 from kishikawakatsumi/links
Browse files Browse the repository at this point in the history
Update links
  • Loading branch information
kishikawakatsumi committed Sep 23, 2023
2 parents d895498 + a9b3c9e commit e88b346
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github: kishikawakatsumi
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,17 @@ standard localization texts provided by the Apple platform.
https://applelocalization.com/

### Related Repository

- https://github.com/kishikawakatsumi/applelocalization-data
- https://github.com/kishikawakatsumi/applelocalization-tools
- https://github.com/kishikawakatsumi/applelocalization-citools

## Author

[Kishikawa Katsumi](https://github.com/kishikawakatsumi)

## Supporters & Sponsors

Open source projects thrive on the generosity and support of people like you. If you find this project valuable, please consider extending your support. Contributing to the project not only sustains its growth, but also helps drive innovation and improve its features.

To support this project, you can become a sponsor through [GitHub Sponsors](https://github.com/sponsors/kishikawakatsumi). Your contribution will be greatly appreciated and will help keep the project alive and thriving. Thanks for your consideration! :heart:
2 changes: 0 additions & 2 deletions services/cache.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { connect, Redis } from "../deps.ts";

export async function get(key: string) {
return null;
try {
const redis = await connection();
const value = await redis.get(key);
Expand All @@ -14,7 +13,6 @@ export async function get(key: string) {
}

export async function set(key: string, value: string) {
return;
try {
const redis = await connection();
await redis.set(key, value);
Expand Down
7 changes: 6 additions & 1 deletion views/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,15 @@ <h1 class="title is-inline-block is-5 mb-3">
<span class="fab fa-github mr-1"></span>Source Code</a>
</span>
<span class="p-2">
<a class="has-text-dark" href="https://twitter.com/k_katsumi" target="_blank"
<a class="has-text-dark" href="https://hachyderm.io/@kishikawakatsumi" target="_blank"
rel="nofollow noopener noreferrer">
<span class="far fa-at mr-1"></span>Maintainer</a>
</span>
<span class="p-2">
<a class="has-text-dark" href="https://github.com/sponsors/kishikawakatsumi" target="_blank"
rel="nofollow noopener noreferrer">
<span class="fas fa-heart mr-1" style="color: #bf3989;"></span>Donate</a>
</span>
</div>
</div>
</div>
Expand Down

0 comments on commit e88b346

Please sign in to comment.