-
-
Notifications
You must be signed in to change notification settings - Fork 0
Improve full bleed support #3
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
Open
hatton
wants to merge
10
commits into
master
Choose a base branch
from
improve-full-bleed-support
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
8cc224e
Improve full bleed support
hatton 00fd66a
bleedMM => insetTrimboxMillimeters and mark as depecated
hatton ccfd1d4
Address review follow-ups and optimize NullLayoutMethod
hatton c76cdba
Fix calendar rotated-panel bleed metadata mapping
hatton a2bca31
Support test prerelease publishing via Actions
hatton bf35a84
Fix Actions input expression parsing for publish workflow
hatton fb2a736
Allow publish workflow to call reusable release job
hatton a41f238
make 4-up and 6-up do something reasonable when given fullbleed trimb…
hatton 6d81303
Restore RTL panel placement in side-fold 4up layouters
hatton 164b1cd
stop tests using non-repo test file
hatton 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| --- | ||
| description: read and process comments in a pr. Only appropriate to use in the rare situations where developer pre-review isn't needed. | ||
| --- | ||
|
|
||
| Use the gh tool to determine the PR associated with the current branch. If you cannot find one, use the askQuestions tool to ask the user for a url. | ||
| Read the unresolved pr comments and either answer them or handle the problem they call out and then answer them. | ||
| When you answer, prefix your response with the name of your model, e.g. [hall9000]. I may ask you to "cycle" in which case you should make fixes and stop, or if you should also make a commit and push it and then wait 10 minutes for new comments and cycle. If I don't ask you to cycle, use the askQuestions tool to ask me if I should cycle or not. |
This file contains hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -12,3 +12,5 @@ _Resharper* | |
| /.vs/ | ||
| publish/ | ||
| artifacts/ | ||
|
|
||
| nupkg/local/ | ||
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| { | ||
| "workbench.colorCustomizations": { | ||
| "statusBar.background": "#61dafb", | ||
| "statusBar.foreground": "#15202b", | ||
| "statusBarItem.hoverBackground": "#2fcefa", | ||
| "statusBarItem.remoteBackground": "#61dafb", | ||
| "statusBarItem.remoteForeground": "#15202b" | ||
| }, | ||
| "peacock.color": "#61dafb" | ||
| } |
This file contains hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| using System.Reflection; | ||
|
|
||
| namespace DotImpose | ||
| { | ||
| /// <summary> | ||
| /// Provides runtime identity details for the loaded dotImpose assembly. | ||
| /// </summary> | ||
| public static class DotImposeRuntimeInfo | ||
| { | ||
| /// <summary> | ||
| /// Returns the loaded assembly's informational version. | ||
| /// </summary> | ||
| public static string GetInformationalVersion() | ||
| { | ||
| var assembly = typeof(DotImposeRuntimeInfo).Assembly; | ||
| return assembly.GetCustomAttribute<AssemblyInformationalVersionAttribute>()?.InformationalVersion | ||
| ?? assembly.GetName().Version?.ToString() | ||
| ?? "unknown"; | ||
| } | ||
|
|
||
| /// <summary> | ||
| /// Returns the loaded assembly file path. | ||
| /// </summary> | ||
| public static string GetAssemblyPath() | ||
| { | ||
| return typeof(DotImposeRuntimeInfo).Assembly.Location; | ||
| } | ||
| } | ||
| } |
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| using System.Runtime.CompilerServices; | ||
|
|
||
| [assembly: InternalsVisibleTo("sillsdev.dotImpose.Tests")] |
This file contains hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.