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

v11 #35

Merged
merged 4 commits into from
Feb 19, 2024
Merged

v11 #35

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
2 changes: 2 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
github: [kakakaya]
ko_fi: kakakaya
12 changes: 12 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "npm"
directory: "/frontend/" # Location of package manifests
schedule:
interval: "weekly"
8 changes: 5 additions & 3 deletions .github/workflows/wails.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: Wails build
on:
push:
branches: [ "main" ]
tags:
- '*'

env:
# Necessary for most environments as build failure can occur due to OOM issues
Expand All @@ -15,13 +17,13 @@ jobs:
fail-fast: false
matrix:
build:
- name: 'まぜそば大陸'
- name: 'mazesoba-continent'
platform: 'linux/amd64'
os: 'ubuntu-latest'
- name: 'まぜそば大陸'
- name: 'mazesoba-continent'
platform: 'windows/amd64'
os: 'windows-latest'
- name: 'まぜそば大陸'
- name: 'mazesoba-continent'
platform: 'darwin/universal'
os: 'macos-latest'

Expand Down
14 changes: 7 additions & 7 deletions frontend/package-lock.json

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

2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^1.0.1",
"svelte": "^3.49.0",
"vite": "^3.0.0"
"vite": "^3.2.8"
}
}
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
//go:embed all:frontend/dist
var assets embed.FS

const Version = "v10"
const Version = "v11"

func main() {
// Create an instance of the app structure
Expand Down
4 changes: 2 additions & 2 deletions wails.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://wails.io/schemas/config.v2.json",
"name": "mazesoba-continent",
"outputfilename": "まぜそば大陸",
"outputfilename": "mazesoba-continent",
"frontend:install": "npm install",
"frontend:build": "npm run build",
"frontend:dev:watcher": "npm run dev",
Expand All @@ -13,7 +13,7 @@
"Info": {
"companyName": "kakakaya",
"productName": "まぜそば大陸",
"productVersion": "10.0.0",
"productVersion": "11.0.0",
"copyright": "Copyright 2023-2024 kakakaya",
"comments": "https://github.com/kakakaya/mazesoba-continent"
}
Expand Down
Loading