mirror of
				https://github.com/kepler155c/opus
				synced 2025-10-31 07:33:00 +00:00 
			
		
		
		
	apparently read was added to fs.open "r" mode in 2017
This commit is contained in:
		| @@ -77,6 +77,10 @@ function ramfs.open(node, fn, fl) | ||||
| 		local ctr = 0 | ||||
| 		local lines | ||||
| 		return { | ||||
|             read = function() | ||||
|                 ctr = ctr + 1 | ||||
|                 return node.contents:sub(ctr, ctr) | ||||
| 			end, | ||||
| 			readLine = function() | ||||
| 				if not lines then | ||||
| 					lines = Util.split(node.contents) | ||||
|   | ||||
| @@ -74,6 +74,10 @@ function urlfs.open(node, fn, fl) | ||||
|  | ||||
| 	if fl == 'r' then | ||||
| 		return { | ||||
| 			read = function() | ||||
|                 ctr = ctr + 1 | ||||
|                 return c:sub(ctr, ctr) | ||||
| 			end, | ||||
| 			readLine = function() | ||||
| 				if not lines then | ||||
| 					lines = Util.split(c) | ||||
|   | ||||
| @@ -39,7 +39,7 @@ function Transition.expandUp(args) | ||||
| 	local easing = args.easing or 'linear' | ||||
| 	local pos    = { y = args.ey + 1 } | ||||
| 	local tween  = Tween.new(ticks, pos, { y = args.y }, easing) | ||||
| _syslog(args) | ||||
|  | ||||
| 	args.canvas:move(args.x, pos.y) | ||||
|  | ||||
| 	return function() | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 kepler155c@gmail.com
					kepler155c@gmail.com