File tree Expand file tree Collapse file tree 4 files changed +74
-2
lines changed Expand file tree Collapse file tree 4 files changed +74
-2
lines changed Original file line number Diff line number Diff line change 6
6
7
7
== [Unreleased]
8
8
9
+ == [v0.3.0] - 2022-04-13
10
+
11
+ === Added
12
+
13
+ * `file.copy`: Copy files and directories
14
+
15
+ === Fixed
16
+
17
+ * `file.move`: Fixed exception due to introspection issues
18
+
9
19
== [v0.2.0] - 2022-03-16
10
20
11
21
=== Added
Original file line number Diff line number Diff line change
1
+ package = " lgi-async-extra"
2
+ version = " 0.2.0-1"
3
+
4
+ source = {
5
+ url = " git://github.com/sclu1034/lgi-async-extra.git" ,
6
+ tag = " v0.2.0"
7
+ }
8
+
9
+ description = {
10
+ summary = " An asynchronous high(er)-level API wrapper for LGI" ,
11
+ homepage = " https://github.com/sclu1034/lgi-async-extra" ,
12
+ license = " GPLv3"
13
+ }
14
+
15
+ dependencies = {
16
+ " lua >= 5.1" ,
17
+ " lgi" ,
18
+ " async.lua"
19
+ }
20
+
21
+ build = {
22
+ type = " builtin" ,
23
+ modules = {
24
+ [" lgi-async-extra.file" ] = " src/lgi-async-extra/file.lua" ,
25
+ [" lgi-async-extra.stream" ] = " src/lgi-async-extra/stream.lua" ,
26
+ [" lgi-async-extra.filesystem" ] = " src/lgi-async-extra/filesystem.lua" ,
27
+ },
28
+ copy_directories = {
29
+ " spec"
30
+ }
31
+ }
Original file line number Diff line number Diff line change
1
+ package = " lgi-async-extra"
2
+ version = " 0.3.0-1"
3
+
4
+ source = {
5
+ url = " git://github.com/sclu1034/lgi-async-extra.git" ,
6
+ tag = " v0.3.0"
7
+ }
8
+
9
+ description = {
10
+ summary = " An asynchronous high(er)-level API wrapper for LGI" ,
11
+ homepage = " https://github.com/sclu1034/lgi-async-extra" ,
12
+ license = " GPLv3"
13
+ }
14
+
15
+ dependencies = {
16
+ " lua >= 5.1" ,
17
+ " lgi" ,
18
+ " async.lua"
19
+ }
20
+
21
+ build = {
22
+ type = " builtin" ,
23
+ modules = {
24
+ [" lgi-async-extra.file" ] = " src/lgi-async-extra/file.lua" ,
25
+ [" lgi-async-extra.stream" ] = " src/lgi-async-extra/stream.lua" ,
26
+ [" lgi-async-extra.filesystem" ] = " src/lgi-async-extra/filesystem.lua" ,
27
+ },
28
+ copy_directories = {
29
+ " spec"
30
+ }
31
+ }
Original file line number Diff line number Diff line change 461
461
-- Due to limitations in GObject Introspection, this can currently only be implemented as
462
462
-- "copy and delete" operation.
463
463
--
464
- -- @since git
464
+ -- @since 0.3.0
465
465
-- @async
466
466
-- @tparam string|file path New path to move to.
467
467
-- @tparam function cb
522
522
523
523
--- Copies the file to a new location.
524
524
--
525
- -- @since git
525
+ -- @since 0.3.0
526
526
-- @async
527
527
-- @tparam string|file dest_path Path to copy to.
528
528
-- @tparam table options
You can’t perform that action at this time.
0 commit comments