Commit 479d58a 1 parent 71eb949 commit 479d58a Copy full SHA for 479d58a
File tree 13 files changed +24
-22
lines changed
13 files changed +24
-22
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ Excel-REST makes working with complex webservices and APIs easy with Excel. It i
6
6
Getting started
7
7
---------------
8
8
9
- - Download the [ latest release (v4.0.0-beta.5 )] ( https://github.com/timhall/Excel-REST/releases )
9
+ - Download the [ latest release (v4.0.0-rc.1 )] ( https://github.com/timhall/Excel-REST/releases )
10
10
- To install/upgrade in an existing file, run ` install.bat ` to walk through installation.
11
11
- To start from scratch, ` Excel-REST - Blank.xlsm ` has everything setup and ready to go.
12
12
Original file line number Diff line number Diff line change 91
91
Sub Main()
92
92
On Error Resume Next
93
93
94
- PrintLn "VBA-Web v4.0.0-beta.5 Development"
94
+ PrintLn "VBA-Web v4.0.0-rc.1 Development"
95
95
96
96
ExcelWasOpen = OpenExcel(Excel)
97
97
Original file line number Diff line number Diff line change 1
1
''
2
- ' Install v4.0.0-beta.5
2
+ ' Install v4.0.0-rc.1
3
3
' (c) Tim Hall - https://github.com/timhall/Excel-REST
4
4
'
5
5
' Install Excel-REST and authenticators
54
54
Sub Main()
55
55
On Error Resume Next
56
56
57
- PrintLn "Welcome to Excel-REST v4.0.0-beta.5 , let's get started!"
57
+ PrintLn "Welcome to Excel-REST v4.0.0-rc.1 , let's get started!"
58
58
59
59
ExcelWasOpen = OpenExcel(Excel)
60
60
@@ -106,9 +106,9 @@ Sub Execute()
106
106
Dim InstallMessage
107
107
If AlreadyInstalled(Workbook) Then
108
108
Message = Message & "(It appears Excel-REST is already installed)" & vbNewLine
109
- Message = Message & "- upgrade - Upgrade to Excel-REST v4.0.0-beta.5 " & vbNewLine
109
+ Message = Message & "- upgrade - Upgrade to Excel-REST v4.0.0-rc.1 " & vbNewLine
110
110
Else
111
- Message = Message & "- install - Install Excel-REST v4.0.0-beta.5 " & vbNewLine
111
+ Message = Message & "- install - Install Excel-REST v4.0.0-rc.1 " & vbNewLine
112
112
End If
113
113
114
114
Message = Message & "- auth - Install authenticator"
@@ -130,7 +130,7 @@ Sub Execute()
130
130
ShouldUpgrade = Input(vbNewLine & _
131
131
"Warning: The currently installed Excel-REST files will be removed" & vbNewLine & _
132
132
"and any previously made changes to those files will be lost" & vbNewLine & vbNewLine & _
133
- "Would you like to upgrade to v4.0.0-beta.5 ? [yes/no] <" )
133
+ "Would you like to upgrade to v4.0.0-rc.1 ? [yes/no] <" )
134
134
135
135
If Left(UCase(ShouldUpgrade), 1 ) = "Y" Then
136
136
InstallModules
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ Attribute VB_Creatable = False
8
8
Attribute VB_PredeclaredId = False
9
9
Attribute VB_Exposed = True
10
10
''
11
- ' IWebAuthenticator v4.0.0-beta.5
11
+ ' IWebAuthenticator v4.0.0-rc.1
12
12
' (c) Tim Hall - https://github.com/VBA-tools/VBA-Web
13
13
'
14
14
' Interface for creating authenticators for rest client
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ Attribute VB_Creatable = False
8
8
Attribute VB_PredeclaredId = False
9
9
Attribute VB_Exposed = True
10
10
''
11
- ' WebAsyncWrapper v4.0.0-beta.5
11
+ ' WebAsyncWrapper v4.0.0-rc.1
12
12
' (c) Tim Hall - https://github.com/timhall/Excel-REST
13
13
'
14
14
' Wrapper WebClient and WebRequest that enables callback-style async requests
Original file line number Diff line number Diff line change @@ -8,16 +8,16 @@ Attribute VB_Creatable = False
8
8
Attribute VB_PredeclaredId = False
9
9
Attribute VB_Exposed = True
10
10
''
11
- ' WebClient v4.0.0-beta.5
11
+ ' WebClient v4.0.0-rc.1
12
12
' (c) Tim Hall - https://github.com/VBA-tools/VBA-Web
13
13
'
14
14
' Interact with REST web services from Excel
15
15
'
16
16
' Errors:
17
- ' 11010 / 80042b02 - cURL error in Execute
18
- ' 11011 / 80042b03 - Error in Execute
19
- ' 11012 / 80042b04 - Error preparing http request
20
- ' 11013 / 80042b05 - Error preparing cURL request
17
+ ' 11010 / 80042b02 / -2147210494 - cURL error in Execute
18
+ ' 11011 / 80042b03 / -2147210493 - Error in Execute
19
+ ' 11012 / 80042b04 / -2147210492 - Error preparing http request
20
+ ' 11013 / 80042b05 / -2147210491 - Error preparing cURL request
21
21
'
22
22
23
23
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)
Original file line number Diff line number Diff line change 1
1
Attribute VB_Name = "WebHelpers"
2
2
''
3
- ' WebHelpers v4.0.0-beta.5
3
+ ' WebHelpers v4.0.0-rc.1
4
4
' (c) Tim Hall - https://github.com/VBA-tools/VBA-Web
5
5
'
6
6
' Common helpers VBA-Web
@@ -28,6 +28,8 @@ Attribute VB_Name = "WebHelpers"
28
28
' 7. Mac
29
29
' 8. Cryptography
30
30
' 9. Converters
31
+ ' VBA-JSON
32
+ ' VBA-UTC
31
33
' --------------------------------------------- '
32
34
33
35
' === VBA-UTC Headers
@@ -97,7 +99,7 @@ Private Declare Function web_fread Lib "libc.dylib" Alias "fread" (ByVal outStr
97
99
Private Declare Function web_feof Lib "libc .dylib " Alias "feof " (ByVal File As Long ) As Long
98
100
#End If
99
101
100
- Public Const WebUserAgent As String = "VBA-Web v4.0.0-beta.5 (https://github.com/VBA-tools/VBA-Web)"
102
+ Public Const WebUserAgent As String = "VBA-Web v4.0.0-rc.1 (https://github.com/VBA-tools/VBA-Web)"
101
103
102
104
' @internal
103
105
Public Type web_ShellResult
Original file line number Diff line number Diff line change @@ -8,13 +8,13 @@ Attribute VB_Creatable = False
8
8
Attribute VB_PredeclaredId = False
9
9
Attribute VB_Exposed = True
10
10
''
11
- ' WebRequest v4.0.0-beta.5
11
+ ' WebRequest v4.0.0-rc.1
12
12
' (c) Tim Hall - https://github.com/VBA-tools/VBA-Web
13
13
'
14
14
' Create a request for use with a WebClient
15
15
'
16
16
' Errors:
17
- ' 11020 / 80042b0c - Cannot add body parameter to non-Dictionary
17
+ ' 11020 / 80042b0c / -2147210484 - Cannot add body parameter to non-Dictionary
18
18
'
19
19
20
20
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)
Original file line number Diff line number Diff line change @@ -8,15 +8,15 @@ Attribute VB_Creatable = False
8
8
Attribute VB_PredeclaredId = False
9
9
Attribute VB_Exposed = True
10
10
''
11
- ' WebResponse v4.0.0-beta.5
11
+ ' WebResponse v4.0.0-rc.1
12
12
' (c) Tim Hall - https://github.com/VBA-tools/VBA-Web
13
13
'
14
14
' Wrapper for http/cURL responses
15
15
'
16
16
' Errors:
17
- ' 11030 / 80042b16 - Error creating from http
18
- ' 11031 / 80042b17 - Error creating from cURL
19
- ' 11032 / 80042b18 - Error extracting headers
17
+ ' 11030 / 80042b16 / -2147210474 - Error creating from http
18
+ ' 11031 / 80042b17 / -2147210473 - Error creating from cURL
19
+ ' 11032 / 80042b18 / -2147210472 - Error extracting headers
20
20
'
21
21
22
22
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)
You can’t perform that action at this time.
0 commit comments