multiscript-windows 1.0.3__tar.gz → 1.0.5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: multiscript-windows
3
- Version: 1.0.3
3
+ Version: 1.0.5
4
4
  Summary: A lightweight wrapper to run Batch and VBScript within Python.
5
5
  Author-email: KingTheCoder <kingjd490@gmail.com>
6
6
  License: GPL-3.0-only
@@ -25,9 +25,9 @@ Multiscript is amazing for simplifying operations that python fails to expose ea
25
25
 
26
26
  The way you import multiscript into your project is through this line: `import multiscript`.
27
27
 
28
- Now, you have three functions exposed to you.
28
+ Now, you have four functions exposed to you.
29
29
 
30
- Those three functions are `batchscript`, `vbscript` and `commandlist`.
30
+ Those four functions are `batchscript`, `vbscript`, `javascript` and `commandlist`.
31
31
 
32
32
  The function `commandlist` gives you a list of functions that you can use in multiscript.
33
33
 
@@ -112,6 +112,14 @@ Fixed a bug where running two of the same function at the same time would overwr
112
112
 
113
113
  Added the `javascript` function.
114
114
 
115
+ ## 1.0.4
116
+
117
+ Fixed a bug in `__init__.py` where it would not import nor export the `javascript` function.
118
+
119
+ ## 1.0.5
120
+
121
+ Fixed unclear wording in `README.md`.
122
+
115
123
  ## Some Extra
116
124
 
117
125
  Hey, thanks for reading all the way to the end!
@@ -9,9 +9,9 @@ Multiscript is amazing for simplifying operations that python fails to expose ea
9
9
 
10
10
  The way you import multiscript into your project is through this line: `import multiscript`.
11
11
 
12
- Now, you have three functions exposed to you.
12
+ Now, you have four functions exposed to you.
13
13
 
14
- Those three functions are `batchscript`, `vbscript` and `commandlist`.
14
+ Those four functions are `batchscript`, `vbscript`, `javascript` and `commandlist`.
15
15
 
16
16
  The function `commandlist` gives you a list of functions that you can use in multiscript.
17
17
 
@@ -96,6 +96,14 @@ Fixed a bug where running two of the same function at the same time would overwr
96
96
 
97
97
  Added the `javascript` function.
98
98
 
99
+ ## 1.0.4
100
+
101
+ Fixed a bug in `__init__.py` where it would not import nor export the `javascript` function.
102
+
103
+ ## 1.0.5
104
+
105
+ Fixed unclear wording in `README.md`.
106
+
99
107
  ## Some Extra
100
108
 
101
109
  Hey, thanks for reading all the way to the end!
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "multiscript-windows"
7
- version = "1.0.3"
7
+ version = "1.0.5"
8
8
  authors = [
9
9
  { name="KingTheCoder", email="kingjd490@gmail.com" },
10
10
  ]
@@ -0,0 +1,2 @@
1
+ from .multiscript import batchscript, commandlist, vbscript, javascript
2
+ __all__ = ["batchscript", "commandlist", "vbscript", "javascript"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: multiscript-windows
3
- Version: 1.0.3
3
+ Version: 1.0.5
4
4
  Summary: A lightweight wrapper to run Batch and VBScript within Python.
5
5
  Author-email: KingTheCoder <kingjd490@gmail.com>
6
6
  License: GPL-3.0-only
@@ -25,9 +25,9 @@ Multiscript is amazing for simplifying operations that python fails to expose ea
25
25
 
26
26
  The way you import multiscript into your project is through this line: `import multiscript`.
27
27
 
28
- Now, you have three functions exposed to you.
28
+ Now, you have four functions exposed to you.
29
29
 
30
- Those three functions are `batchscript`, `vbscript` and `commandlist`.
30
+ Those four functions are `batchscript`, `vbscript`, `javascript` and `commandlist`.
31
31
 
32
32
  The function `commandlist` gives you a list of functions that you can use in multiscript.
33
33
 
@@ -112,6 +112,14 @@ Fixed a bug where running two of the same function at the same time would overwr
112
112
 
113
113
  Added the `javascript` function.
114
114
 
115
+ ## 1.0.4
116
+
117
+ Fixed a bug in `__init__.py` where it would not import nor export the `javascript` function.
118
+
119
+ ## 1.0.5
120
+
121
+ Fixed unclear wording in `README.md`.
122
+
115
123
  ## Some Extra
116
124
 
117
125
  Hey, thanks for reading all the way to the end!
@@ -1,2 +0,0 @@
1
- from .multiscript import batchscript, commandlist, vbscript
2
- __all__ = ["batchscript", "commandlist", "vbscript"]