Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat/remove user registration #121

Merged
merged 3 commits into from
May 15, 2024
Merged
Show file tree
Hide file tree
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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/).

## 0.7.0-rc
- Improve Settings page UI
- Add Theme support
- Add Slate theme
- Add Midnight theme
- Add Bumblebee theme
- Remove User email prompt

## 0.6.0
- Modify UI to use stats-rings
- Add Analytics provider
Expand Down
17 changes: 0 additions & 17 deletions src/api/client.ts

This file was deleted.

2 changes: 0 additions & 2 deletions src/api/index.ts

This file was deleted.

11 changes: 0 additions & 11 deletions src/api/types.ts

This file was deleted.

1 change: 1 addition & 0 deletions src/lib/store.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { Store } from "tauri-plugin-store";

// Currently not being used, implement on PostHog maybe?
const userId = (store: Store) => {
return {
get: async () => await store.get<string>("userId"),
Expand Down
7 changes: 2 additions & 5 deletions src/providers/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import UserProvider from "@/providers/user.provider";
import ThemeProvider from "@/providers/theme.provider";
import ServerEventsProvider from "@/providers/server-events.provider";
import AnalyticsProvider from "@/providers/analytics.provider";
Expand All @@ -15,10 +14,8 @@ const AppProvider: React.FC<AppProvider> = ({ children }) => {
<AnalyticsProvider>
<ThemeProvider>
<ServerEventsProvider>
<UserProvider>
<Notifications />
{children}
</UserProvider>
<Notifications />
{children}
</ServerEventsProvider>
</ThemeProvider>
</AnalyticsProvider>
Expand Down
125 changes: 0 additions & 125 deletions src/providers/user.provider.tsx

This file was deleted.

Loading