Skip to content

Commit

Permalink
Merge pull request #138 from nfdi4plants/kevinf-patch-0.4.4
Browse files Browse the repository at this point in the history
Kevinf patch 0.4.4
  • Loading branch information
Freymaurer authored Mar 11, 2021
2 parents 16c3099 + 622c816 commit 6cd6caa
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .assets/assets/manifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<OfficeApp xmlns="http://schemas.microsoft.com/office/appforoffice/1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bt="http://schemas.microsoft.com/office/officeappbasictypes/1.0" xmlns:ov="http://schemas.microsoft.com/office/taskpaneappversionoverrides" xsi:type="TaskPaneApp">
<Id>5d6f5462-3401-48ec-9406-d12882e9ad83</Id>
<Version>0.4.3</Version>
<Version>0.4.4</Version>
<ProviderName>Computational Systems Biology</ProviderName>
<DefaultLocale>en-US</DefaultLocale>
<DisplayName DefaultValue="Swate"/>
Expand Down
5 changes: 5 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### 0.4.4+4ae3198 (Released 2021-3-11)
* Additions:
* latest commit #4ae3198
* [[#4ae3198](https://github.com/nfdi4plants/Swate/commit/4ae31986bc4b1a24ccead037afbde4ced9ed7a44)] Update DB protocol.

### 0.4.3+9b7d7fe (Released 2021-3-9)
* Additions:
* latest commit #9b7d7fe
Expand Down
2 changes: 1 addition & 1 deletion manifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<OfficeApp xmlns="http://schemas.microsoft.com/office/appforoffice/1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bt="http://schemas.microsoft.com/office/officeappbasictypes/1.0" xmlns:ov="http://schemas.microsoft.com/office/taskpaneappversionoverrides" xsi:type="TaskPaneApp">
<Id>5d6f5462-3401-48ec-9406-d12882e9ad83</Id>
<Version>0.4.3</Version>
<Version>0.4.4</Version>
<ProviderName>Computational Systems Biology</ProviderName>
<DefaultLocale>en-US</DefaultLocale>
<DisplayName DefaultValue="Swate"/>
Expand Down
5 changes: 1 addition & 4 deletions src/Server/ProtocolDB.fs
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,11 @@ let getXmlByProtocol cString (protocol:ProtocolTemplate) =
.CommandText <- """
SELECT * FROM ProtocolXml
WHERE FK_Name = @name
AND FK_Version = @version
"""

let nameParam = cmd.Parameters.Add("name",MySqlDbType.VarChar)
let versionParam = cmd.Parameters.Add("version",MySqlDbType.VarChar)

nameParam.Value <- protocol.Name
versionParam.Value <- protocol.Version
nameParam.Value <- protocol.Name

use reader = cmd.ExecuteReader()
let res = [|
Expand Down
8 changes: 4 additions & 4 deletions src/Server/Version.fs
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ namespace System
open System.Reflection

[<assembly: AssemblyTitleAttribute("SWATE")>]
[<assembly: AssemblyVersionAttribute("0.4.3")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","09/03/2021")>]
[<assembly: AssemblyVersionAttribute("0.4.4")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","11/03/2021")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "SWATE"
let [<Literal>] AssemblyVersion = "0.4.3"
let [<Literal>] AssemblyMetadata_ReleaseDate = "09/03/2021"
let [<Literal>] AssemblyVersion = "0.4.4"
let [<Literal>] AssemblyMetadata_ReleaseDate = "11/03/2021"

0 comments on commit 6cd6caa

Please sign in to comment.