-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release/2.8.1 #54
Merged
Merged
Release/2.8.1 #54
Changes from 1 commit
Commits
Show all changes
58 commits
Select commit
Hold shift + click to select a range
3914c58
adding 0-padding for microseconds of timestamp in logging.h
stephen-dixon f5b818b
fixing initial fatclient errors trying to get help::help working thro…
stephen-dixon 5730aef
Update github actions workflow versions and pypa/cibuildwheel
adam-parker1 12afedb
Add macos-15 to the build-platforms
adam-parker1 66220ce
Adding chunk downloading to BYTES plugin.
jholloc b5b35db
Not closing file in readBytesNonOptimally.cpp
jholloc ecf2f20
Bumping protocol version to 10 - CAPNP data is now transferred as raw…
jholloc f5399bd
Undoing change to client protocol version for now.
jholloc ace4f64
Fixing bug and reverting back to protocol 10 in client.
jholloc 3939176
fixing issues with using UDA_TYPE_OPAQUE for returning binary data
stephen-dixon 4a18275
Update client_installation.md: add libtirpc-dev dependency for ubuntu…
maarten-ic e59c0a0
Making sending BYTES plugin using xdr_opaque an option so that it wor…
jholloc 46e236f
Updating pyuda get_file to use opaque option.
jholloc 0acbd55
removing macos15 runner from pyuda wheels CI script
stephen-dixon 84bad21
Merge branch '35-missing-leading-0-in-fractions-of-seconds' into develop
stephen-dixon 5620fc1
Merge branch 'feature/fat-client' into develop
stephen-dixon 5a8a783
trying to fix windows and mac wheel builds
stephen-dixon c1d4efc
Updating pyuda get_file to download files as 'opaque' type as to down…
jholloc b5408f5
trying to fix windows and mac wheel builds
stephen-dixon f497848
trying to fix windows and mac wheel builds
stephen-dixon ccedce6
trying to fix the macos pyuda wheel CI build
stephen-dixon 5e899cc
trying to fix the macos pyuda wheel CI build
stephen-dixon b1485a9
trying to fix the macos pyuda wheel CI build
stephen-dixon 336a6c2
trying to fix the macos pyuda wheel CI build
stephen-dixon 9722f45
trying to fix the macos pyuda wheel CI build
stephen-dixon 22b254e
removing python3.13 from macos wheels build due to numpy errors
stephen-dixon a205aa6
Merge branch 'feature/bytes_plugin' into develop
stephen-dixon 310a5ae
Merge branch 'feature/update-wheel-actions-versions' into develop
stephen-dixon dbe1873
trying to add python3.13 build for macos pyuda wheels
stephen-dixon 3568e76
removing failing python3.13 build from macos pyuda wheels
stephen-dixon 63cf47f
Merge branch 'feature/bytes_plugin' into release/2.8.1
stephen-dixon 6c29bc6
adding automatic plugin versioning to bytes plugin and moving CI to u…
stephen-dixon fa766b3
adding missing includes from updated bytes plugin
stephen-dixon 7aab323
adding missing includes from updated bytes plugin
stephen-dixon 253b09a
fixing minor typo in bytes plugin
stephen-dixon 51d0c12
removing some c-style casts in bytes plugin
stephen-dixon 788993b
adding more documentation on running a server
stephen-dixon 67c56ae
adding template functions for setReturnScalar plugin help functions a…
stephen-dixon e6b2406
adding plugin helper function to bit-encode a semantic version string…
stephen-dixon 8df84fe
changing all plugin::version functions to return the server build sem…
stephen-dixon 195188a
adding development notes to documentation
stephen-dixon 7b4db93
Adding Adam's launchd work for MacOS
stephen-dixon 871e004
adding launchd to docs
stephen-dixon 44b4266
fixing typo
stephen-dixon baf9199
updating docs
stephen-dixon 39ef3a4
updates to pyuda from testing updating bytes plugin and fixing typo i…
stephen-dixon ccbe06f
fixing compilation errors
stephen-dixon 4e4c918
trying to debug CI errors
stephen-dixon e958b21
fixing build when CMAKE_PORJECT_VERSION_TWEAK is not set
stephen-dixon a7b4549
Fix typo in development.md
olivhoenen b326f4b
removing f-strings from pyuda to maintain python 3.5 compatibility
stephen-dixon e584d9d
Fix typos and cleanup a few sections
adam-parker1 7f16084
Merge branch 'release/2.8.1' of github.com:ukaea/UDA into release/2.8.1
stephen-dixon 3f5aea5
changing idl wrapper getstructs routine to use builtin idl_validname …
stephen-dixon ecacdef
adding contributing.md
stephen-dixon f43855a
Bugfix/fix python313 macos issues (#56)
adam-parker1 b8f4363
fixing pyuda build on freia (centOS 7) which requires FMT_ROOT/lib64 …
stephen-dixon 006aa15
updating readme.md
stephen-dixon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -149,7 +149,7 @@ int TemplatePlugin::help(IDAM_PLUGIN_INTERFACE* idam_plugin_interface) | |
*/ | ||
int TemplatePlugin::version(IDAM_PLUGIN_INTERFACE* idam_plugin_interface) | ||
{ | ||
return setReturnDataIntScalar(idam_plugin_interface->data_block, THISPLUGIN_VERSION, "Plugin version number"); | ||
return setReturnDatastring(idam_plugin_interface->data_block, UDA_BUILD_VERSION, "Plugin version number"); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. missing
stephen-dixon marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
|
||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.