Skip to content

Commit

Permalink
disable react compiler for now as it's not good enough yet
Browse files Browse the repository at this point in the history
  • Loading branch information
mrquantumoff committed Feb 26, 2025
1 parent 9305308 commit 3be902c
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 817 deletions.
2 changes: 1 addition & 1 deletion AppxManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10"
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
IgnorableNamespaces="uap uap3 uap10 desktop rescap">
<Identity Name="58734MrQuantumOFFDemirYer.MinecraftModpackManagerR" Version="25.3.1.0"
<Identity Name="58734MrQuantumOFFDemirYer.MinecraftModpackManagerR" Version="25.3.2.0"
Publisher="CN=010914FC-8843-4963-A3FE-E3E06E6D9F53" ProcessorArchitecture="x64" />
<Properties>
<DisplayName>QuadrantMC</DisplayName>
Expand Down
7 changes: 7 additions & 0 deletions dev.mrquantumoff.mcmodpackmanager.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,13 @@

<releases>

<release date="2025-02-26" version="25.3.2">
<url type="details">https://blog.mrquantumoff.dev</url>
<description>
<p>Hotfix</p>
</description>
</release>

<release date="2025-02-26" version="25.3.1">
<url type="details">https://blog.mrquantumoff.dev</url>
<description>
Expand Down
4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "quadrant-next",
"private": true,
"version": "25.3.1",
"version": "25.3.2",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down Expand Up @@ -39,8 +39,6 @@
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"babel-plugin-react-compiler": "19.0.0-beta-e1e972c-20250221",
"eslint-plugin-react-compiler": "19.0.0-beta-e1e972c-20250221",
"postcss": "^8.5.3",
"tailwindcss": "4.0.9",
"typescript": "~5.7.3",
Expand Down
804 changes: 0 additions & 804 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Quadrant",
"version": "25.3.1-stable",
"version": "25.3.2-stable",
"identifier": "dev.mrquantumoff.mcmodpackmanager",
"build": {
"beforeDevCommand": "pnpm dev",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.foss.conf.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"identifier": "dev.mrquantumoff.mcmodpackmanager",
"version": "25.3.1-foss",
"version": "25.3.2-foss",
"build" : {
"features": []
}
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.msstore.conf.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"identifier": "dev.mrquantumoff.mcmodpackmanager",
"version": "25.3.1-msstore",
"version": "25.3.2-msstore",
"bundle": {
"active": false,
"createUpdaterArtifacts": false
Expand Down
2 changes: 1 addition & 1 deletion src/components/Pages/ApplyPage/Apply.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ export default function ApplyPage() {
onClick={() => {
const defaultModpack: LocalModpack = {
name: "",
version: versions[0].version,
version: versions[0].version ?? "",
modLoader: ModLoader.Fabric,
isApplied: false,
lastSynced: 0,
Expand Down
10 changes: 5 additions & 5 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ import react from "@vitejs/plugin-react";
// @ts-expect-error process is a nodejs global
const host = process.env.TAURI_DEV_HOST;

const ReactCompilerConfig = { /* ... */ };
// const ReactCompilerConfig = { /* ... */ };

// https://vitejs.dev/config/
export default defineConfig(async () => ({
plugins: [react({
babel: {
plugins: [
"react-compiler",
ReactCompilerConfig,
],
// plugins: [
// "react-compiler",
// ReactCompilerConfig,
// ],
}
},),],

Expand Down

0 comments on commit 3be902c

Please sign in to comment.