Skip to content

Commit

Permalink
v1.1.0 beta 1 stuff (Move stuff around, part 2)
Browse files Browse the repository at this point in the history
  • Loading branch information
htv04 committed Aug 15, 2021
1 parent 6414b9e commit 7515a01
Show file tree
Hide file tree
Showing 45 changed files with 1,025 additions and 898 deletions.
38 changes: 19 additions & 19 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,88 +5,88 @@ on:
branches: [ main ]
pull_request:
branches: [ main ]

workflow_dispatch:

jobs:
win64:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup love-11.3-win64
run: |
curl -L --remote-name https://github.com/love2d/love/releases/download/11.3/love-11.3-win64.zip
unzip love-11.3-win64.zip -d resources/win64
mv resources/win64/love-11.3-win64 resources/win64/love
- name: Build
run: |
make win64
- name: Upload
uses: actions/upload-artifact@v2
with:
name: funkin-rewritten-win64
path: build/win64

win32:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup love-11.3-win32
run: |
curl -L --remote-name https://github.com/love2d/love/releases/download/11.3/love-11.3-win32.zip
unzip love-11.3-win32.zip -d resources/win32
mv resources/win32/love-11.3-win32 resources/win32/love
- name: Build
run: |
make win32
- name: Upload
uses: actions/upload-artifact@v2
with:
name: funkin-rewritten-win32
path: build/win32

macos:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup love-11.3-macos
run: |
unzip resources/macos/love.zip -d resources/macos
- name: Build
run: |
make macos
- name: Upload
uses: actions/upload-artifact@v2
with:
name: funkin-rewritten-macos
path: build/macos

lovefile:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Build
run: |
make lovefile
- name: Upload
uses: actions/upload-artifact@v2
with:
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ build/*

# Dependencies
resources/macos/love.app/*
resources/switch/LOVEPotion.elf
resources/switch/romfs/*
resources/win32/love/*
resources/win64/love/*

Expand Down
145 changes: 0 additions & 145 deletions src/love/classes.lua

This file was deleted.

4 changes: 2 additions & 2 deletions src/love/conf.lua
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function love.conf(t)
t.identity = "funkin-rewritten"
t.version = "11.3"
--t.console = true
t.window.title = "Friday Night Funkin' Rewritten v1.0.1"

t.window.title = "Friday Night Funkin' Rewritten v1.1.0"
t.window.icon = "icon.png"
end
Loading

0 comments on commit 7515a01

Please sign in to comment.