Skip to content

Commit

Permalink
[release] 0.3.2 More than bug fixes
Browse files Browse the repository at this point in the history
- new icon
- ja translation for pal waza (thanks to Take-Me1010)
- ability to hide viewing cage pals
- no longer wiping pal skills on pal variant changes (tower, boss, rare)
- non-unique skills are preserved upon pal specie changes
  • Loading branch information
KrisCris committed Mar 16, 2024
1 parent 0ee474e commit 94d2cd2
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 11 deletions.
2 changes: 1 addition & 1 deletion build_executable.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ pip install -r requirements.txt

pip install pyinstaller

pyinstaller --onefile --add-data="src/palworld_pal_editor/assets:assets" --add-data="src/palworld_pal_editor/webui:webui" ./src/palworld_pal_editor/__main__.py --name palworld-pal-editor
pyinstaller --onefile -i "./icon.ico" --add-data="src/palworld_pal_editor/assets:assets" --add-data="src/palworld_pal_editor/webui:webui" ./src/palworld_pal_editor/__main__.py --name palworld-pal-editor
Binary file modified frontend/palworld-pal-editor-webui/public/favicon.ico
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified frontend/palworld-pal-editor-webui/src/assets/logo.ico
Binary file not shown.
14 changes: 8 additions & 6 deletions frontend/palworld-pal-editor-webui/src/views/EntryView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@
import { usePalEditorStore } from '@/stores/paleditor'
const palStore = usePalEditorStore()
function loadSave() {
}
</script>

<template>
Expand All @@ -14,8 +10,10 @@ function loadSave() {
<img alt="Vue logo" class="logo" src="@/assets/logo.ico" width="125" height="125" />
<p>Hello there!</p>
<p> > Thank you for using this tool!</p>
<p> > If you are running this tool on web page, or from a docker container, please consider setting up a password.</p>
<p> > This is important, especially if you are considering remote accessting this tool.</p>
<p> > If you are running this tool on webui mode, or from a docker container, consider setup a password to prevent unauthorized remote access.</p>
<br>
<p> > If you have any issue, or want to contribute, check out <a target="_blank" href="https://github.com/KrisCris/Palworld-Pal-Editor">GitHub</a> page.</p>
<p> > If you love this tool and wish to donate, check out my <a target="_blank" href="https://ko-fi.com/connlost">ko-fi</a> page.</p>
<br>

</div>
Expand All @@ -35,6 +33,10 @@ function loadSave() {
</template>

<style scoped>
a {
color: aquamarine;
}
div#entryDiv {
display: flex;
flex-direction: row;
Expand Down
4 changes: 2 additions & 2 deletions frontend/palworld-pal-editor-webui/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ export default defineConfig({
theme_color: '#ffffff',
icons: [
{
src: '/icons/256.png',
sizes: '256x256',
src: '/icons/512.png',
sizes: '512x512',
type: 'image/png'
}
]
Expand Down
Binary file modified icon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ keywords = ["palworld", "editor", "pal"]
license = {file = "LICENSE"}
requires-python = ">=3.11"
readme = "README.md"
version = "0.3.1"
version = "0.3.2"
dependencies = [
"setuptools==69.1.0",
"palworld_save_tools==0.19.0",
Expand Down
2 changes: 1 addition & 1 deletion src/palworld_pal_editor/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
else:
ASSETS_PATH = Path(__file__).parent

VERSION = "0.3.1"
VERSION = "0.3.2"

class Config:
i18n: str = "en"
Expand Down

0 comments on commit 94d2cd2

Please sign in to comment.