Skip to content

Commit

Permalink
build: prepare for releasing v0.32.1 (#776)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dotneteer authored Jul 20, 2024
1 parent d3f0556 commit 952d80f
Show file tree
Hide file tree
Showing 14 changed files with 103 additions and 67 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Klive IDE Changelog

## 0.32.1

### Features

- ZX Spectrum Next implementation started

### Fixes

- The faulty install kit with the empty emulator and IDE windows is fixed.
- Creating a new Klive IDE now also sets the build root file on Windows.

## 0.32.0

### Features
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Quick links:
- [What Klive IDE Is](#what-klive-ide-is)
- [Klive Documentation](https://dotneteer.github.io/kliveide/)
- [Release v0.32.0](https://github.com/Dotneteer/kliveide/releases/tag/v0.32.0)
- [Release v0.32.1](https://github.com/Dotneteer/kliveide/releases/tag/v0.32.1)

## How You Can Contribute

Expand Down
5 changes: 3 additions & 2 deletions electron.vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { resolve } from "path";
import { defineConfig, externalizeDepsPlugin } from "electron-vite";

import react from "@vitejs/plugin-react";

const alias = {
Expand All @@ -19,15 +20,15 @@ const alias = {
export default defineConfig({
main: {
resolve: { alias },
plugins: [externalizeDepsPlugin()]
plugins: [externalizeDepsPlugin()],
},
preload: {
plugins: [externalizeDepsPlugin()]
},
renderer: {
build: {
rollupOptions: {
input: resolve("src/renderer/main.tsx")
input: resolve("src/renderer/index.html")
}
},
resolve: { alias },
Expand Down
73 changes: 29 additions & 44 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 952d80f

Please sign in to comment.