Explorar el Código

Bumped version to 0.0.2

Jannick Knudsen hace 7 meses
padre
commit
a2f8cee719
Se han modificado 5 ficheros con 4 adiciones y 40 borrados
  1. 1 1
      VERSION
  2. 1 0
      VERSIONLOG
  3. 1 1
      package.json
  4. 0 24
      src/components/NavbarButtons.vue
  5. 1 14
      src/layouts/base.layout.vue

+ 1 - 1
VERSION

@@ -1 +1 @@
-v0.0.1
+v0.0.2

+ 1 - 0
VERSIONLOG

@@ -1,2 +1,3 @@
 0.0.0
 v0.0.1
+v0.0.2

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "it-tools",
-  "version": "0.0.1",
+  "version": "0.0.2",
   "description": "Collection of handy online tools for developers, with great UX. ",
   "keywords": [
     "productivity",

+ 0 - 24
src/components/NavbarButtons.vue

@@ -7,31 +7,7 @@ const { isDarkTheme } = toRefs(styleStore);
 </script>
 
 <template>
-  <c-tooltip :tooltip="$t('home.nav.github')" position="bottom">
-    <c-button
-      circle
-      variant="text"
-      href="https://github.com/CorentinTh/it-tools"
-      target="_blank"
-      rel="noopener noreferrer"
-      :aria-label="$t('home.nav.githubRepository')"
-    >
-      <n-icon size="25" :component="BrandGithub" />
-    </c-button>
-  </c-tooltip>
 
-  <c-tooltip :tooltip="$t('home.nav.twitter')" position="bottom">
-    <c-button
-      circle
-      variant="text"
-      href="https://twitter.com/ittoolsdottech"
-      rel="noopener"
-      target="_blank"
-      :aria-label="$t('home.nav.twitterAccount')"
-    >
-      <n-icon size="25" :component="BrandTwitter" />
-    </c-button>
-  </c-tooltip>
 
   <c-tooltip :tooltip="$t('home.nav.about')" position="bottom">
     <c-button circle variant="text" to="/about" :aria-label="$t('home.nav.aboutLabel')">

+ 1 - 14
src/layouts/base.layout.vue

@@ -120,20 +120,7 @@ const tools = computed<ToolCategory[]>(() => [
           <NavbarButtons v-if="!styleStore.isSmallScreen" />
         </div>
 
-        <c-tooltip position="bottom" :tooltip="$t('home.support')">
-          <c-button
-            round
-            href="https://www.buymeacoffee.com/cthmsst"
-            rel="noopener"
-            target="_blank"
-            class="support-button"
-            :bordered="false"
-            @click="() => tracker.trackEvent({ eventName: 'Support button clicked' })"
-          >
-            {{ $t('home.buyMeACoffee') }}
-            <NIcon v-if="!styleStore.isSmallScreen" :component="Heart" ml-2 />
-          </c-button>
-        </c-tooltip>
+ 
       </div>
       <slot />
     </template>