Skip to content
This repository was archived by the owner on Sep 5, 2024. It is now read-only.

Commit 2b45a69

Browse files
committed
Release 1.0.2
1 parent 96c75d8 commit 2b45a69

3 files changed

Lines changed: 9 additions & 8 deletions

File tree

config.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
config = {
22
name = 'Raphael\'s Library',
3-
version = '1.0.1',
3+
version = '1.0.2',
44
windbot = '1.2.2',
55

66
files = {

dist/Raphael.lua

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
1-
-- Raphael's Library v1.0.1
2-
-- Last Updated: 06/01/2014 - 01:35 UTC
1+
-- Raphael's Library v1.0.2
2+
-- Last Updated: 06/01/2014 - 23:13 UTC
33
-- Released for WindBot v1.2.2
44

5-
RAPHAEL_LIB = '1.0.1'
5+
RAPHAEL_LIB = '1.0.2'
66
print("Raphael's Library Version: " .. RAPHAEL_LIB)
77

88

99
--[[
10-
* Changelog v1.0.1
10+
* Changelog v1.0.2
1111
*
12-
* - Fixed typos.
13-
* - Completed CUSTOM_TYPES constant.
12+
* - Fixed sstime().
1413
*
1514
--]]
1615

@@ -431,11 +430,12 @@ end
431430
* Returns the current time of day, in seconds, on CET timezone.
432431
*
433432
* @since 0.1.0
433+
* @modified 1.0.2
434434
*
435435
* @returns {number} - CET time of day in seconds
436436
--]]
437437
function cettime()
438-
return tosec(os.date('!%X')) - tern(math.abs(os.date('*t').yday - 187) < 46, 7200, 3600)
438+
return tosec(os.date('!%X')) + tern(math.abs(os.date('*t').yday - 187) < 46, 7200, 3600)
439439
end
440440

441441
--[[

log/changelog-1.0.2.log

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* - Fixed sstime().

0 commit comments

Comments
 (0)