Skip to content

Commit

Permalink
Version 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
3urobeat committed Apr 11, 2024
1 parent dbb39ee commit 89c1cfa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "git-anon",
"version": "0.1.0",
"version": "0.2.0",
"description": "Track personal commit statistics without sharing company code",
"author": "3urobeat",
"license": "GPL-3.0",
Expand Down
6 changes: 3 additions & 3 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Created Date: 2024-03-23 13:03:16
* Author: 3urobeat
*
* Last Modified: 2024-04-07 15:29:40
* Last Modified: 2024-04-11 15:10:44
* Modified By: 3urobeat
*
* Copyright (c) 2024 3urobeat <https://github.com/3urobeat>
Expand Down Expand Up @@ -155,7 +155,7 @@
<div class="flex flex-col gap-y-0.5 ml-1">
<span class="flex w-fit opacity-60 px-1 rounded-sm bg-slate-200">{{ selectedProject.name }}</span>
<span class="flex w-fit opacity-60 px-1 rounded-sm bg-slate-200">{{ formatTime(historyPopupContent.timestamp, true) }}</span>
<span class="w-fit opacity-60 px-1 rounded-sm bg-slate-200 whitespace-pre-wrap">{{ historyPopupContent.gitShow.replace(/\\n/, "<br>") }}</span>
<span class="w-fit opacity-60 px-1 rounded-sm bg-slate-200 whitespace-pre-wrap">{{ historyPopupContent.gitShow }}</span>
</div>
</div>

Expand All @@ -174,7 +174,7 @@


<script setup lang="ts">
import { PhCheck, PhCaretRight, PhCaretDown, PhX } from '@phosphor-icons/vue';
import { PhCheck, PhCaretRight, PhCaretDown, PhX } from "@phosphor-icons/vue";
import { type Project, type StoredProjects, type ProjectHistory, DetailType } from "../model/projects";
Expand Down

0 comments on commit 89c1cfa

Please sign in to comment.