consistently use App names for methods everywhere
[?]
Mar 19, 2023, 6:45 AM
5RDWSYK2YESTIEDMGOD2T7E4KCOA6DOM35ECMZT2XZT57JSCRJEQCDependencies
- [2]
CQYKYJJUremember window positions across restart/ctrl+e - [3]
HCFDBUXHfix stale comment - [4]
EJOZAD7Ntypo - [5]
EMG7SDLWbugfix: cold start - [6]
2CK5QI7Wmake love event names consistent - [7]
AOZX2G5Fsource: no commandline args - [8]
SDO4DHNUsource: load cursor position from settings - [9]
KKMFQDR4editing source code from within the app - [10]
S3PNFXTBhandle missing cursors in settings
Change contents
- replacement in source.lua at line 140
-- setPosition doesn't quite seem to do what is asked of it on Linux.love.window.setPosition(settings.x, settings.y-37, settings.displayindex)-- love.window.setPosition doesn't quite seem to do what is asked of it on Linux.App.screen.move(settings.x, settings.y-37, settings.displayindex) - replacement in run.lua at line 51
App.screen.width, App.screen.height, App.screen.flags = love.window.getMode()App.screen.width, App.screen.height, App.screen.flags = App.screen.size() - replacement in run.lua at line 57
love.window.setMode(App.screen.width, App.screen.height, App.screen.flags)love.window.setPosition(Settings.x, Settings.y, Settings.displayindex)App.screen.resize(App.screen.width, App.screen.height, App.screen.flags)App.screen.move(Settings.x, Settings.y, Settings.displayindex) - replacement in run.lua at line 79
love.window.setMode(0, 0) -- maximizeApp.screen.width, App.screen.height, App.screen.flags = love.window.getMode()App.screen.resize(0, 0) -- maximizeApp.screen.width, App.screen.height, App.screen.flags = App.screen.size() - replacement in run.lua at line 87
love.window.setMode(App.screen.width, App.screen.height, App.screen.flags)App.screen.resize(App.screen.width, App.screen.height, App.screen.flags) - replacement in run.lua at line 134
Settings.x, Settings.y, Settings.displayindex = love.window.getPosition()Settings.x, Settings.y, Settings.displayindex = App.screen.position()