Skip to content

Commit

Permalink
Merge pull request #88 from medyo/develop
Browse files Browse the repository at this point in the history
1.13.0
  • Loading branch information
medyo authored May 6, 2022
2 parents f130349 + fd131f4 commit de1f816
Show file tree
Hide file tree
Showing 13 changed files with 86 additions and 172 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![Chrome Web Store Rating](https://img.shields.io/chrome-web-store/stars/ocoipcahhaedjhnpoanfflhbdcpmalmp.svg?colorB=%234FC828&label=rating&style=flat)](https://chrome.google.com/webstore/detail/hackertabdev/ocoipcahhaedjhnpoanfflhbdcpmalmp/reviews)

# Hackertab.dev — The Developer’s Homepage
Hackertab turns your New Tab page into a geeky one that keeps you as a developer updated with the latest tech news, libs, jobs and events.
Hackertab turns your New Tab page into a geeky one that keeps you as a developer updated with the latest tech news, libs and events.

<img src="/demo/demo_hackertab.dev.jpeg" width="100%" alt="Hackertab.dev"/>

Expand All @@ -16,7 +16,7 @@ Hackertab saves you time and gives you a daily dose of tech news you need to kno
👉 [now.hackertab.dev](https://now.hackertab.dev)

#### How?
Hackertab brings the latest news, libraries, tech events, jobs... related to your profile (back-end, mobile, full stack, data scientist...)
Hackertab brings the latest news, libraries, tech events... related to your profile (back-end, mobile, full stack, data scientist...)
and visualize them in a proper way so you don't have to waste time jumping between different data sources.


Expand All @@ -43,7 +43,6 @@ and visualize them in a proper way so you don't have to waste time jumping betwe
- DevTo
- Hashnode
- Lobsters
- Stackoverflow Jobs
- Confs.tech
- Product Hunt
- Reddit
Expand Down
1 change: 0 additions & 1 deletion public/carbon.js

This file was deleted.

12 changes: 4 additions & 8 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,22 @@
{
"name": "Hackertab.dev",
"description": "The Developer’s Homepage",
"version": "1.12.1",
"version": "1.13.0",
"manifest_version": 2,
"chrome_url_overrides": {
"newtab": "index.html"
},
"background": {
"scripts": [
"background.js"
]
"scripts": ["background.js"]
},
"permissions": [
"https://*.hackertab.dev/*"
],
"permissions": ["https://*.hackertab.dev/*"],
"icons": {
"16": "/logos/logo16.png",
"32": "/logos/logo32.png",
"48": "/logos/logo48.png",
"128": "/logos/logo128.png"
},
"content_security_policy": "script-src 'self' https://*.carbonads.com https://*.buysellads.net https://*.buysellads.com https://*.servedby-buysellads.com https://*.carbonads.net; object-src 'self'",
"content_security_policy": "script-src 'self' object-src 'self'",
"applications": {
"gecko": {
"id": "{f8793186-e9da-4332-aa1e-dc3d9f7bb04c}"
Expand Down
10 changes: 0 additions & 10 deletions src/Constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import React from 'react'
import HNCard from './cards/HNCard'
import DevToCard from './cards/DevToCard'
import ConferencesCard from './cards/ConferencesCard'
import JobsCard from './cards/JobsCard'
import ReposCard from './cards/ReposCard'
import ProductHuntCard from './cards/ProductHuntCard'
import RedditCard from './cards/RedditCard'
Expand All @@ -14,13 +13,11 @@ import { SiYcombinator } from 'react-icons/si'
import { FaDev } from 'react-icons/fa'
import { SiProducthunt } from 'react-icons/si'
import { FaReddit } from 'react-icons/fa'
import { SiStackoverflow } from 'react-icons/si'
import { HiTicket } from 'react-icons/hi'
import HashNodeIcon from './static/icon_hashnode.png'
import LobstersIcon from './static/icon_lobsters.png'
import { FaFreeCodeCamp } from 'react-icons/fa'


const APP = {
name: 'Hackertab.dev',
slogan: '— Stay updated with the new technology and trends',
Expand All @@ -47,13 +44,6 @@ export const SUPPORTED_CARDS = [
label: 'Github repositories',
component: ReposCard,
},
{
value: 'jobs',
icon: <SiStackoverflow color="#F18032" />,
analyticsTag: 'jobs',
label: 'Featured jobs',
component: JobsCard,
},
{
value: 'hackernews',
icon: <SiYcombinator color="#FB6720" />,
Expand Down
9 changes: 1 addition & 8 deletions src/bookmark/BookmarksSidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import './Sidebar.css';
import { VscChromeClose } from 'react-icons/vsc';
import { TiDelete } from 'react-icons/ti';
import { HiTicket } from 'react-icons/hi';
import { SiGithub, SiReddit, SiStackoverflow, SiProducthunt, SiYcombinator } from 'react-icons/si';
import { SiGithub, SiReddit, SiProducthunt, SiYcombinator } from 'react-icons/si'
import { ProSidebar, Menu, MenuItem, SubMenu, SidebarHeader, SidebarContent } from 'react-pro-sidebar';
import 'react-pro-sidebar/dist/css/styles.css';
import PreferencesContext from '../preferences/PreferencesContext';
Expand Down Expand Up @@ -80,13 +80,6 @@ function BookmarksSidebar({ showSidebar, onClose }) {

</SubMenu>

<SubMenu title="Featured Jobs" icon={<SiStackoverflow />}
suffix={<span className="badge yellow">{jobsBookmarks.length}</span>}
>
{
jobsBookmarks.map((bm, index) => (<BookmarkItem item={bm} key={`ft-${index}`} />))
}
</SubMenu>
<SubMenu title="Conferences" icon={<HiTicket />}
suffix={<span className="badge yellow">{conferencesBookmarks.length}</span>}
>
Expand Down
107 changes: 0 additions & 107 deletions src/cards/JobsCard.js

This file was deleted.

Loading

0 comments on commit de1f816

Please sign in to comment.