Skip to content

Commit

Permalink
Prod fixed, let's hide the 'Wrapped' generator again for now + versio…
Browse files Browse the repository at this point in the history
…ning added
  • Loading branch information
sjaakbanaan committed Nov 29, 2024
1 parent 1469a32 commit 5bdc81b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
16 changes: 9 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Untappd Data Visualised v2.2.0
# Untappd Data Visualised v2.3.0

## This is the repo for [tappd.online](https:///tappd.online), no need to install anymore!

Expand Down Expand Up @@ -41,6 +41,7 @@ After setting filters, the following lists are presented in either a chart or li
- Filter by countries drank at
- Filter by cities drank at
- Filter by tagged friends
- NEW: Filter by beer type
- Show checkins on a map
- Frequency: Beer ABV
- Frequency: Beers per year
Expand All @@ -53,7 +54,7 @@ After setting filters, the following lists are presented in either a chart or li
- Cumulative beer count (year)
- Beer type apprecation list
- Basic statistics
- NEW: Filter by beer type
- COMING SOON: 'wrapped' png export
```

Expand All @@ -70,11 +71,12 @@ After setting filters, the following lists are presented in either a chart or li

## Recent changes

- 12-05-2024: And [we're live!](https://tappd.online)
- 04-05-2024: Added sorting filters to the beer overview
- 04-05-2024: Added a basic statistics block as first tile on the dashboard
- 15-06-2024: Added the 'tagged_friends' filter to the overview + bug fixes
- 25-11-2024: Add the option to filter by beer type, improved country overlay on MapBox maps + bug fixes
- 12-05-2024: v2.0.1 And [we're live!](https://tappd.online)
- 04-05-2024: v2.0.2 Added sorting filters to the beer overview
- 04-05-2024: v2.1.0 Added a basic statistics block as first tile on the dashboard
- 15-06-2024: v2.2.0 Added the 'tagged_friends' filter to the overview + bug fixes
- 25-11-2024: v2.3.0 Add the option to filter by beer type, improved country overlay on MapBox maps + bug fixes
- 25-11-2024: v2.1.0 Fixed a date range bug + added sort option to Beer type chart, sortable by 'total results' and 'beer type'

## Future wishes

Expand Down
6 changes: 3 additions & 3 deletions src/components/Dashboard/Dashboard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import DateSelector from './DateSelector.jsx';
import YearFilterButtons from './YearFilterButtons.jsx';
import DashboardHeader from './DashboardHeader.jsx';
import BeerTypeChart from '../Charts/BeerTypeChart/BeerTypeChart.jsx';
import WrappedGenerator from '../Wrapped/WrappedGenerator.jsx';
// import WrappedGenerator from '../Wrapped/WrappedGenerator.jsx';

import { filterBeerData, getDefaultStartDate, getDefaultEndDate } from '../../utils/';

Expand Down Expand Up @@ -80,12 +80,12 @@ const Dashboard = () => {

return (
<div className="container mx-auto p-4 md:p-0">
<WrappedGenerator
{/* <WrappedGenerator
filterDateRange={filterDateRange}
beerData={filteredData}
fullBeerData={beerData}
userName="sjaakbanaan"
/>
/> */}
{filteredData && filteredData.length > 0 ? (
<div>
<YearFilterButtons
Expand Down
2 changes: 1 addition & 1 deletion src/components/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const Footer = () => {
<a href="https://github.com/sjaakbanaan/" target="_blank">
sjaakbanaan
</a>
<div className="pt-1 text-gray-400">Powered by Untappd</div>
<div className="pt-1 text-gray-400">v2.3.0, powered by Untappd</div>
</div>
);
};
Expand Down

0 comments on commit 5bdc81b

Please sign in to comment.