Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions app/javascript/pages/Extensions/Index.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@
install: "https://hackclub.enterprise.slack.com/archives/C0AJLGZ73NE",
buttonLabel: "Try it out!",
},
{
name: "Hackabile",
source: "https://github.com/nilanshsharma23/hackabile",
description: "Android app for Hackatime.",
install: "https://github.com/nilanshsharma23/hackabile/releases/tag/v1.0",

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 The install URL is pinned to the v1.0 tag. When newer versions are released, users will be directed to the old v1.0 release instead of the latest one. Every other extension (Hackatime Desktop, Cattatime) links to the general /releases page so users always land on the newest release.

Suggested change
install: "https://github.com/nilanshsharma23/hackabile/releases/tag/v1.0",
install: "https://github.com/nilanshsharma23/hackabile/releases",
Prompt To Fix With AI
This is a comment left during a code review.
Path: app/javascript/pages/Extensions/Index.svelte
Line: 36

Comment:
The `install` URL is pinned to the `v1.0` tag. When newer versions are released, users will be directed to the old v1.0 release instead of the latest one. Every other extension (Hackatime Desktop, Cattatime) links to the general `/releases` page so users always land on the newest release.

```suggestion
      install: "https://github.com/nilanshsharma23/hackabile/releases",
```

How can I resolve this? If you propose a fix, please make it concise.

},
];
</script>

Expand Down