Skip to content

Commit

Permalink
🏷️ updating version
Browse files Browse the repository at this point in the history
  • Loading branch information
GustavoSMelo committed Jan 3, 2025
1 parent 18ac75b commit 8818978
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "brainrot-vaccine-extension",
"private": false,
"version": "1.0.1",
"version": "1.1.0",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "Brainrot Vaccine",
"version": "1.0.1",
"version": "1.1.0",
"description": "Extension created to prevent yourself to access vicious websites that is injuring our attention and our brain.",
"browser_specific_settings": {
"gecko": {
Expand Down
2 changes: 1 addition & 1 deletion src/components/ConfirmPopup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const props = defineProps({
handleClearSiteSelected: { type: Function, required: true },
});
const timer = ref(5);
const timer = ref(30);
const intervalId = setInterval(async () => {
timer.value = timer.value - 1;
await nextTick();
Expand Down
2 changes: 1 addition & 1 deletion src/components/FooterContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const handleLoadProjectRepository = () => {
<img src="../assets/github.svg" alt="Github Logo" />
<p>Developed by Gustavo S. Melo</p>
</div>
<small>Version: 1.0.1</small>
<small>Version: 1.1.0</small>
</footer>
</template>

Expand Down

0 comments on commit 8818978

Please sign in to comment.