-
Notifications
You must be signed in to change notification settings - Fork 36
Permalink
Choose a base ref
{{ refName }}
default
Choose a head ref
{{ refName }}
default
Comparing changes
Choose two branches to see what’s changed or to start a new pull request.
If you need to, you can also or
learn more about diff comparisons.
Open a pull request
Create a new pull request by comparing changes across two branches. If you need to, you can also .
Learn more about diff comparisons here.
base repository: szaghi/FLAP
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.1.0
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: szaghi/FLAP
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.1.1
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 18 commits
- 19 files changed
- 1 contributor
Commits on May 9, 2016
-
Merge tag 'v1.1.0' into develop
Add Olle markdown manpage, stable release, fully backward compatible.
Configuration menu - View commit details
-
Copy full SHA for 88b5967 - Browse repository at this point
Copy the full SHA 88b5967View commit details
Commits on May 25, 2016
-
Configuration menu - View commit details
-
Copy full SHA for fd0db56 - Browse repository at this point
Copy the full SHA fd0db56View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1340d68 - Browse repository at this point
Copy the full SHA 1340d68View commit details
Commits on Jun 8, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 4366910 - Browse repository at this point
Copy the full SHA 4366910View commit details -
Rely on link instead of FoBiS recursion
Rely on link instead of FoBiS recursion
Configuration menu - View commit details
-
Copy full SHA for 45a143e - Browse repository at this point
Copy the full SHA 45a143eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 689b750 - Browse repository at this point
Copy the full SHA 689b750View commit details
Commits on Sep 27, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 2ca4a07 - Browse repository at this point
Copy the full SHA 2ca4a07View commit details -
Configuration menu - View commit details
-
Copy full SHA for a662930 - Browse repository at this point
Copy the full SHA a662930View commit details -
Configuration menu - View commit details
-
Copy full SHA for c1124f3 - Browse repository at this point
Copy the full SHA c1124f3View commit details -
Configuration menu - View commit details
-
Copy full SHA for c285115 - Browse repository at this point
Copy the full SHA c285115View commit details -
Configuration menu - View commit details
-
Copy full SHA for c47d084 - Browse repository at this point
Copy the full SHA c47d084View commit details -
Configuration menu - View commit details
-
Copy full SHA for a219aa2 - Browse repository at this point
Copy the full SHA a219aa2View commit details -
Configuration menu - View commit details
-
Copy full SHA for a302a6d - Browse repository at this point
Copy the full SHA a302a6dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6a62748 - Browse repository at this point
Copy the full SHA 6a62748View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9a6737e - Browse repository at this point
Copy the full SHA 9a6737eView commit details
Commits on Sep 29, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 1eadac5 - Browse repository at this point
Copy the full SHA 1eadac5View commit details
Commits on Oct 3, 2016
-
@victorsndvg discovered a subtle bug. From his report: I think there is a bug (in release mode) using FLAP while parsing CLI multiple times. If I run the code below, the second time that I call `parse(error)`, `error` value is not initialized from the `parse()` procedure. ```fortran type(Command_Line_Interface) :: cli integer :: error cli%parse(error) ... cli%free() ... cli%parse(error) ... cli%free() ``` Why: The bug do not free the CLI properly and do not return the correct (null) code the other times it is parsed. This change addresses the need by: @victorsndvg provided a perfect patch: First, force a successful `error` code at the beginning of the `parse()` procedure in this line: https://github.com/szaghi/FLAP/blob/master/src/lib/flap_command_line_interface_t.F90#L519 ```fortran if(present(error)) error = 0 ! <- New line if (self%is_parsed_) return ... ``` And finally, set `is_parsed_` variable to `.false.` in the `free()` procedure. Side effects: Nothing.
Configuration menu - View commit details
-
Copy full SHA for cee4711 - Browse repository at this point
Copy the full SHA cee4711View commit details -
Configuration menu - View commit details
-
Copy full SHA for e3999bd - Browse repository at this point
Copy the full SHA e3999bdView commit details
Loading
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v1.1.0...v1.1.1