Skip to content

Commit 051b7c1

Browse files
committed
removed cruft; preparing for 1.1 release
yes
1 parent 51af060 commit 051b7c1

File tree

4 files changed

+34
-51
lines changed

4 files changed

+34
-51
lines changed

CHANGELOG.txt

+1-16
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,9 @@
44
-- TODO: Add cross-platform native MIDI I/O.
55
-- TODO: Allow Quantize to affect non-note commands.
66
-- TODO: Allow item-movement to affect non-note commands.
7-
8-
1.1
9-
107
-- TODO: Remove unnecessary 'undo-suppression' vars from function-calls and undo-funcs.
118

12-
-- TODO: Test all commands again, especially Entry-Quantize, to check for bugs caused by refactoring / new features.
13-
14-
-- TODO: Update tutorial content for the following things:
15-
---- Cmd Mode
16-
---- Saveload mode
17-
---- Updated save/load commands in general
18-
---- TextPaste
19-
---- Copy/Paste simplifications
20-
---- Updated MIDI-listener system
21-
---- Also, double-check all commands, updating keychords
22-
23-
-- TODO: Comment out console again
24-
-- TODO: Change D.version back to "1.1" in data-table.lua!
9+
1.1
2510

2611
* New features:
2712
-- Added "Multiply Ticks", which multiplies the number of ticks in the sequence by (duration / spacing).

conf.lua

+32-32
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
11
function love.conf(t)
22

3-
t.identity = "sect" -- The name of the save directory (string)
4-
t.version = "0.9.1" -- The LÖVE version this game was made for (string)
3+
t.identity = "sect" -- The name of the save directory (string)
4+
t.version = "0.9.1" -- The LÖVE version this game was made for (string)
55

6-
t.console = true -- Attach a console (boolean, Windows only)
7-
io.stdout:setvbuf("no")
6+
--t.console = true -- Attach a console (boolean, Windows only)
7+
--io.stdout:setvbuf("no")
88

9-
t.window.title = "Sect" -- The window title (string)
10-
t.window.icon = "img/icon.png" -- Filepath to an image to use as the window's icon (string)
11-
t.window.width = 800 -- The window width (number)
12-
t.window.height = 600 -- The window height (number)
13-
t.window.borderless = false -- Remove all border visuals from the window (boolean)
14-
t.window.resizable = true -- Let the window be user-resizable (boolean)
15-
t.window.minwidth = 800 -- Minimum window width if the window is resizable (number)
16-
t.window.minheight = 600 -- Minimum window height if the window is resizable (number)
17-
t.window.fullscreen = false -- Enable fullscreen (boolean)
18-
t.window.fullscreentype = "normal" -- Standard fullscreen or desktop fullscreen mode (string)
19-
t.window.vsync = false -- Enable vertical sync (boolean)
20-
t.window.fsaa = 0 -- The number of samples to use with multi-sampled antialiasing (number)
21-
t.window.display = 1 -- Index of the monitor to show the window in (number)
22-
t.window.highdpi = false -- Enable high-dpi mode for the window on a Retina display (boolean). Added in 0.9.1
23-
t.window.srgb = false -- Enable sRGB gamma correction when drawing to the screen (boolean). Added in 0.9.1
9+
t.window.title = "Sect 1.1" -- The window title (string)
10+
t.window.icon = "img/icon.png" -- Filepath to an image to use as the window's icon (string)
11+
t.window.width = 800 -- The window width (number)
12+
t.window.height = 600 -- The window height (number)
13+
t.window.borderless = false -- Remove all border visuals from the window (boolean)
14+
t.window.resizable = true -- Let the window be user-resizable (boolean)
15+
t.window.minwidth = 800 -- Minimum window width if the window is resizable (number)
16+
t.window.minheight = 600 -- Minimum window height if the window is resizable (number)
17+
t.window.fullscreen = false -- Enable fullscreen (boolean)
18+
t.window.fullscreentype = "normal" -- Standard fullscreen or desktop fullscreen mode (string)
19+
t.window.vsync = false -- Enable vertical sync (boolean)
20+
t.window.fsaa = 0 -- The number of samples to use with multi-sampled antialiasing (number)
21+
t.window.display = 1 -- Index of the monitor to show the window in (number)
22+
t.window.highdpi = false -- Enable high-dpi mode for the window on a Retina display (boolean). Added in 0.9.1
23+
t.window.srgb = false -- Enable sRGB gamma correction when drawing to the screen (boolean). Added in 0.9.1
2424

25-
t.modules.audio = false -- Enable the audio module (boolean)
26-
t.modules.event = true -- Enable the event module (boolean)
27-
t.modules.graphics = true -- Enable the graphics module (boolean)
28-
t.modules.image = true -- Enable the image module (boolean)
29-
t.modules.joystick = false -- Enable the joystick module (boolean)
30-
t.modules.keyboard = true -- Enable the keyboard module (boolean)
31-
t.modules.math = true -- Enable the math module (boolean)
32-
t.modules.mouse = true -- Enable the mouse module (boolean)
33-
t.modules.physics = false -- Enable the physics module (boolean)
34-
t.modules.sound = false -- Enable the sound module (boolean)
35-
t.modules.system = true -- Enable the system module (boolean)
36-
t.modules.timer = true -- Enable the timer module (boolean)
37-
t.modules.window = true -- Enable the window module (boolean)
25+
t.modules.audio = false -- Enable the audio module (boolean)
26+
t.modules.event = true -- Enable the event module (boolean)
27+
t.modules.graphics = true -- Enable the graphics module (boolean)
28+
t.modules.image = true -- Enable the image module (boolean)
29+
t.modules.joystick = false -- Enable the joystick module (boolean)
30+
t.modules.keyboard = true -- Enable the keyboard module (boolean)
31+
t.modules.math = true -- Enable the math module (boolean)
32+
t.modules.mouse = true -- Enable the mouse module (boolean)
33+
t.modules.physics = false -- Enable the physics module (boolean)
34+
t.modules.sound = false -- Enable the sound module (boolean)
35+
t.modules.system = true -- Enable the system module (boolean)
36+
t.modules.timer = true -- Enable the timer module (boolean)
37+
t.modules.window = true -- Enable the window module (boolean)
3838

3939
end

data/data-table.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
local T = {}
33

44
-- VERSIONING VARS --
5-
T.version = "1.1-a110" -- Holds Sect's current version-number
5+
T.version = "1.1" -- Holds Sect's current version-number
66

77
-- LOVE ENGINE VARS --
88
T.updatespeed = 0.01 -- Speed at which to attempt to update program-state

prefs-table.lua

-2
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,6 @@ return {
329329
cmds = { -- Links between command-names and keychords
330330

331331
LOAD_HOTSEAT_FILE = {"ctrl", "o"},
332-
LOAD_HOTSEAT_FILE_OVERWRITE = {"ctrl", "shift", "o"},
333332
SAVE_FILE_TO_HOTSEAT = {"ctrl", "shift", "tab", "s"},
334333

335334
TOGGLE_SAVELOAD_MODE = {"ctrl", "s"},
@@ -339,7 +338,6 @@ return {
339338
SL_CHAR_BACKSPACE = {"backspace"},
340339
SL_CHAR_DELETE = {"delete"},
341340
LOAD_SL_FILE = {"ctrl", "o"},
342-
LOAD_SL_FILE_OVERWRITE = {"ctrl", "shift", "o"},
343341
SAVE_SL_FILE = {"ctrl", "s"},
344342
SET_SAVE_PATH = {"ctrl", "shift", "p"},
345343

0 commit comments

Comments
 (0)