Skip to content
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

Submenu to select push-application #4991

Closed
wants to merge 18 commits into from

Conversation

calixtus
Copy link
Member

@calixtus calixtus commented May 22, 2019

Since the migration to JavaFX, i saw no way to change the push-application. There were some pull-request in the past, trying to fix this, but they all were forgotten undone. So this is my shot, trying to implement a very simple way to change the push-application.

fixes #674 closes #3942 and closes #4368 closes #5024

(Apparently, I forgot the fetch before I opened the new branch. Please ignore the old superfluous commits, my changes start with 95f8668

Attention: It's still WIP, it's not done yet.
The caption of the menu is temporary, there is no l10n, Toolbarbutton is not updated and another small Problem is left, i could not figure out yet and I am hoping for your support: I was not able to change the caption of the PushAppplicationMenuItem, since it's bound somehow to another variable. Do you have any Idea, how i can change this label?

tools-push

----
  • Change in CHANGELOG.md described
  • Tests created for changes
  • Manually tested changed features in running JabRef
  • Screenshots added in PR description (for bigger UI changes)
  • Ensured that the git commit message is a good one
  • Check documentation status (Issue created for outdated help page at help.jabref.org?)

@calixtus
Copy link
Member Author

Any suggestions for the label of the submenu? Push-application sounds so technical.

@calixtus calixtus changed the title [WIP] Submenu to select push-application Submenu to select push-application May 22, 2019
@calixtus
Copy link
Member Author

calixtus commented May 22, 2019

So, theoretically this would be ready to review now...
If I hadn't found a bug in another place.

button-right-size button-too-small
left is right size after starting JabRef, right is after changing the PushToApp
The button is shown too small after updating. And I know why.

I use the method configureIconButton in the ActionFactory to unbind and refresh the ToolBarButton.
Obviously someone cheated, when he "fixed" an earlier bug with the iconsize in the entry-editor... ;-)

icon-cheater

@calixtus
Copy link
Member Author

The other Pull Request should fix the button-size-issue. Thats all, im ready to review.

@Siedlerchr
Copy link
Member

Maybe wording for Push applications
Push to External editor?

Regarding your superfluous commits,if you do a git rebase on the upstream/master (after fetch) then only the new changes should be visible

@calixtus
Copy link
Member Author

I think, that didn't work... I stop now rebasing, it's getting out of hand.
The code is the same, i checked twice.

@calixtus calixtus mentioned this pull request May 22, 2019
6 tasks
@matthiasgeiger
Copy link
Member

One question: Which IDE or Git tool are you using?
Special stuff like rebasing is very well supported in IntelliJ (I'm also not capable of rebasing using just the command line ;-))

... passend dazu: https://classicprogrammerpaintings.com/post/142586036029/junior-programmer-learns-git-rebase

@calixtus
Copy link
Member Author

calixtus commented May 23, 2019

It's IntelliJ IDEA CE. I wanted to make sure, if i pass commits, they are formatted right and I read in the documentation, that you recommend this. But I just start to get used to it. In my early days I used eclipse. I pushed with the commandline tool which is probably the cause for this mess.

@Siedlerchr Siedlerchr added the status: ready-for-review Pull Requests that are ready to be reviewed by the maintainers label May 24, 2019
@codecov
Copy link

codecov bot commented May 27, 2019

Codecov Report

Merging #4991 into master will decrease coverage by 0.03%.
The diff coverage is 0%.

Impacted file tree graph

@@             Coverage Diff              @@
##             master    #4991      +/-   ##
============================================
- Coverage     36.58%   36.54%   -0.04%     
  Complexity     6058     6058              
============================================
  Files          1032     1033       +1     
  Lines         45570    45618      +48     
  Branches       5640     5641       +1     
============================================
  Hits          16670    16670              
- Misses        27600    27648      +48     
  Partials       1300     1300
Impacted Files Coverage Δ Complexity Δ
...g/jabref/gui/push/PushToApplicationMenuAction.java 0% <0%> (ø) 0 <0> (?)
...n/java/org/jabref/gui/preferences/ExternalTab.java 0% <0%> (ø) 0 <0> (ø) ⬇️
...ain/java/org/jabref/gui/actions/ActionFactory.java 0% <0%> (ø) 0 <0> (ø) ⬇️
src/main/java/org/jabref/gui/JabRefFrame.java 0.16% <0%> (-0.01%) 1 <0> (ø)
...a/org/jabref/gui/push/PushToApplicationAction.java 0% <0%> (ø) 0 <0> (ø) ⬇️
...n/java/org/jabref/gui/actions/StandardActions.java 0% <0%> (ø) 0 <0> (ø) ⬇️
...org/jabref/gui/push/PushToApplicationsManager.java 0% <0%> (ø) 0 <0> (ø) ⬇️
...n/java/org/jabref/gui/entryeditor/EntryEditor.java 0% <0%> (ø) 0% <0%> (ø) ⬇️
...java/org/jabref/gui/filelist/AttachFileAction.java 0% <0%> (ø) 0% <0%> (ø) ⬇️
... and 4 more

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 0a4210e...236aefb. Read the comment docs.

@calixtus
Copy link
Member Author

Cleaned up the commit history, the rebase-monster is finally gone.
As @Siedlerchr pointed out a few days ago: "Nothing git magic can't fix": I sync'd my local master branch with upstream/master, hard-reset my working-branch history to my last real commit, rebased on master and force-pushed to github.

@Siedlerchr
Copy link
Member

So just one question to help me understand the changes of this a bit better, whenever I change the push application in the tools submenu the icon button toolbar changes to the selected application?

codewise lgtm so far

@calixtus
Copy link
Member Author

calixtus commented May 28, 2019

The RadioMenuItems change

  • the setting in preferences and
  • the Action stored in the Manager

and they reconfigure

  • the MenuItem (the text) and
  • the ToolBarButton (the icon)

The MenuItem and the ToolBarButton both call the same Action stored in the manager.

Copy link
Member

@tobiasdiez tobiasdiez left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for your contribution. Code-wise the changes look good to me and I've only a few a few suggestions.
Although its a huge improvement in terms of usability, I'm not sure if the solution to set the push to application through a separate menu entry is intuitive to most users. I would prefer if the application is set in the preferences instead of via a menu item. @JabRef/developers opinions?

src/main/java/org/jabref/gui/JabRefFrame.java Outdated Show resolved Hide resolved
@calixtus
Copy link
Member Author

calixtus commented Jun 2, 2019

Thanks for your contribution. Code-wise the changes look good to me and I've only a few a few suggestions.
Although its a huge improvement in terms of usability, I'm not sure if the solution to set the push to application through a separate menu entry is intuitive to most users. I would prefer if the application is set in the preferences instead of via a menu item. @JabRef/developers opinions?

Shouldn't be a big deal to put it into the preferences. I'll look into it tonight. I going to create a second pull request for the alternative.

@calixtus calixtus mentioned this pull request Jun 2, 2019
6 tasks
@calixtus
Copy link
Member Author

calixtus commented Jun 2, 2019

Thanks for your contribution. Code-wise the changes look good to me and I've only a few a few suggestions.
Although its a huge improvement in terms of usability, I'm not sure if the solution to set the push to application through a separate menu entry is intuitive to most users. I would prefer if the application is set in the preferences instead of via a menu item. @JabRef/developers opinions?

I put an alternative proposal in #5024

@calixtus calixtus deleted the menu_select_push_app branch June 4, 2019 22:58
github-actions bot pushed a commit that referenced this pull request Aug 27, 2020
c8784ff Update and rename emerald-harvard.csl to emerald-harvard-2.csl (#4991)
197ec0e Update circulation-journal.csl (#4994)
f36dabe Update American Physical Society dependents (#4992)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: c8784ff
github-actions bot pushed a commit to RamonG92/jabref that referenced this pull request Sep 1, 2020
fad76fe Update Gemfile.lock
a8dafef Update harvard-cite-them-right.csl (JabRef#4993)
c8784ff Update and rename emerald-harvard.csl to emerald-harvard-2.csl (JabRef#4991)
197ec0e Update circulation-journal.csl (JabRef#4994)
f36dabe Update American Physical Society dependents (JabRef#4992)
93469bb Create journal-of-musculoskeletal-research.csl (JabRef#4990)
43287c7 Update taxon.csl a little more (JabRef#4989)
9f32917 Update and rename university-college-lillebaelt-harvard.csl to ucl-un… (JabRef#4982)
00c3cec Update isnad-metinici.csl (JabRef#4988)
864a64c Update medicine-and-science-in-sports-and-exercise.csl (JabRef#4983)
0c76011 Don't demote particles in Equine Vet J (JabRef#4984)
603ee73 Fix MLA editor translator (JabRef#4985)
40d207c Update pravnik.csl (JabRef#4986)
c5fe30c Update isnad-dipnotlu.csl (JabRef#4987)
469deb6 Sage Harvard: Add translator/editor
1f51ef8 Add Pensoft dependents (JabRef#4981)
5338ff6 Create electrophoresis.csl (JabRef#4883)
4de9a97 Update spec_helper.rb
fe81f17 Create uirs-urbani-izziv.csl (JabRef#4928)
69d37d8 Create uirs-urban-challenge-journal.csl (JabRef#4927)
d807202 Changes to match Taxon guidelines for authors (JabRef#4980)
aeb2170 Create ucl-university-college-denmark-apa.csl (JabRef#4962)
16f58df Update American Physical Society styles (JabRef#4794)
b77bd91 Update ucl-university-college-denmark-vancouver.csl (JabRef#4963)
81d1a59 Update bibliotheque-d-archeologie-mediterraneenne-et-africaine-biama.csl (JabRef#4979)
0895562 Create pensoft-journals.csl (JabRef#4972)
4f8fa44 creates the gigascience.csl file (JabRef#4961)
1b9c7a0 Create acta-ornithologica.csl (JabRef#4977)
c8c6c6d Create sorbonne-student-law-review.csl (JabRef#4956)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: fad76fe
github-actions bot pushed a commit to CaptainDaVinci/jabref that referenced this pull request Sep 1, 2020
fad76fe Update Gemfile.lock
a8dafef Update harvard-cite-them-right.csl (JabRef#4993)
c8784ff Update and rename emerald-harvard.csl to emerald-harvard-2.csl (JabRef#4991)
197ec0e Update circulation-journal.csl (JabRef#4994)
f36dabe Update American Physical Society dependents (JabRef#4992)
93469bb Create journal-of-musculoskeletal-research.csl (JabRef#4990)
43287c7 Update taxon.csl a little more (JabRef#4989)
9f32917 Update and rename university-college-lillebaelt-harvard.csl to ucl-un… (JabRef#4982)
00c3cec Update isnad-metinici.csl (JabRef#4988)
864a64c Update medicine-and-science-in-sports-and-exercise.csl (JabRef#4983)
0c76011 Don't demote particles in Equine Vet J (JabRef#4984)
603ee73 Fix MLA editor translator (JabRef#4985)
40d207c Update pravnik.csl (JabRef#4986)
c5fe30c Update isnad-dipnotlu.csl (JabRef#4987)
469deb6 Sage Harvard: Add translator/editor
1f51ef8 Add Pensoft dependents (JabRef#4981)
5338ff6 Create electrophoresis.csl (JabRef#4883)
4de9a97 Update spec_helper.rb
fe81f17 Create uirs-urbani-izziv.csl (JabRef#4928)
69d37d8 Create uirs-urban-challenge-journal.csl (JabRef#4927)
d807202 Changes to match Taxon guidelines for authors (JabRef#4980)
aeb2170 Create ucl-university-college-denmark-apa.csl (JabRef#4962)
16f58df Update American Physical Society styles (JabRef#4794)
b77bd91 Update ucl-university-college-denmark-vancouver.csl (JabRef#4963)
81d1a59 Update bibliotheque-d-archeologie-mediterraneenne-et-africaine-biama.csl (JabRef#4979)
0895562 Create pensoft-journals.csl (JabRef#4972)
4f8fa44 creates the gigascience.csl file (JabRef#4961)
1b9c7a0 Create acta-ornithologica.csl (JabRef#4977)
c8c6c6d Create sorbonne-student-law-review.csl (JabRef#4956)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: fad76fe
github-actions bot pushed a commit to dimitra-karadima/jabref that referenced this pull request Sep 1, 2020
fad76fe Update Gemfile.lock
a8dafef Update harvard-cite-them-right.csl (JabRef#4993)
c8784ff Update and rename emerald-harvard.csl to emerald-harvard-2.csl (JabRef#4991)
197ec0e Update circulation-journal.csl (JabRef#4994)
f36dabe Update American Physical Society dependents (JabRef#4992)
93469bb Create journal-of-musculoskeletal-research.csl (JabRef#4990)
43287c7 Update taxon.csl a little more (JabRef#4989)
9f32917 Update and rename university-college-lillebaelt-harvard.csl to ucl-un… (JabRef#4982)
00c3cec Update isnad-metinici.csl (JabRef#4988)
864a64c Update medicine-and-science-in-sports-and-exercise.csl (JabRef#4983)
0c76011 Don't demote particles in Equine Vet J (JabRef#4984)
603ee73 Fix MLA editor translator (JabRef#4985)
40d207c Update pravnik.csl (JabRef#4986)
c5fe30c Update isnad-dipnotlu.csl (JabRef#4987)
469deb6 Sage Harvard: Add translator/editor
1f51ef8 Add Pensoft dependents (JabRef#4981)
5338ff6 Create electrophoresis.csl (JabRef#4883)
4de9a97 Update spec_helper.rb
fe81f17 Create uirs-urbani-izziv.csl (JabRef#4928)
69d37d8 Create uirs-urban-challenge-journal.csl (JabRef#4927)
d807202 Changes to match Taxon guidelines for authors (JabRef#4980)
aeb2170 Create ucl-university-college-denmark-apa.csl (JabRef#4962)
16f58df Update American Physical Society styles (JabRef#4794)
b77bd91 Update ucl-university-college-denmark-vancouver.csl (JabRef#4963)
81d1a59 Update bibliotheque-d-archeologie-mediterraneenne-et-africaine-biama.csl (JabRef#4979)
0895562 Create pensoft-journals.csl (JabRef#4972)
4f8fa44 creates the gigascience.csl file (JabRef#4961)
1b9c7a0 Create acta-ornithologica.csl (JabRef#4977)
c8c6c6d Create sorbonne-student-law-review.csl (JabRef#4956)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: fad76fe
github-actions bot pushed a commit to Xuanxuan-Zou/jabref that referenced this pull request Sep 1, 2020
fad76fe Update Gemfile.lock
a8dafef Update harvard-cite-them-right.csl (JabRef#4993)
c8784ff Update and rename emerald-harvard.csl to emerald-harvard-2.csl (JabRef#4991)
197ec0e Update circulation-journal.csl (JabRef#4994)
f36dabe Update American Physical Society dependents (JabRef#4992)
93469bb Create journal-of-musculoskeletal-research.csl (JabRef#4990)
43287c7 Update taxon.csl a little more (JabRef#4989)
9f32917 Update and rename university-college-lillebaelt-harvard.csl to ucl-un… (JabRef#4982)
00c3cec Update isnad-metinici.csl (JabRef#4988)
864a64c Update medicine-and-science-in-sports-and-exercise.csl (JabRef#4983)
0c76011 Don't demote particles in Equine Vet J (JabRef#4984)
603ee73 Fix MLA editor translator (JabRef#4985)
40d207c Update pravnik.csl (JabRef#4986)
c5fe30c Update isnad-dipnotlu.csl (JabRef#4987)
469deb6 Sage Harvard: Add translator/editor
1f51ef8 Add Pensoft dependents (JabRef#4981)
5338ff6 Create electrophoresis.csl (JabRef#4883)
4de9a97 Update spec_helper.rb
fe81f17 Create uirs-urbani-izziv.csl (JabRef#4928)
69d37d8 Create uirs-urban-challenge-journal.csl (JabRef#4927)
d807202 Changes to match Taxon guidelines for authors (JabRef#4980)
aeb2170 Create ucl-university-college-denmark-apa.csl (JabRef#4962)
16f58df Update American Physical Society styles (JabRef#4794)
b77bd91 Update ucl-university-college-denmark-vancouver.csl (JabRef#4963)
81d1a59 Update bibliotheque-d-archeologie-mediterraneenne-et-africaine-biama.csl (JabRef#4979)
0895562 Create pensoft-journals.csl (JabRef#4972)
4f8fa44 creates the gigascience.csl file (JabRef#4961)
1b9c7a0 Create acta-ornithologica.csl (JabRef#4977)
c8c6c6d Create sorbonne-student-law-review.csl (JabRef#4956)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: fad76fe
github-actions bot pushed a commit to felixbohnacker/jabref that referenced this pull request Sep 1, 2020
fad76fe Update Gemfile.lock
a8dafef Update harvard-cite-them-right.csl (JabRef#4993)
c8784ff Update and rename emerald-harvard.csl to emerald-harvard-2.csl (JabRef#4991)
197ec0e Update circulation-journal.csl (JabRef#4994)
f36dabe Update American Physical Society dependents (JabRef#4992)
93469bb Create journal-of-musculoskeletal-research.csl (JabRef#4990)
43287c7 Update taxon.csl a little more (JabRef#4989)
9f32917 Update and rename university-college-lillebaelt-harvard.csl to ucl-un… (JabRef#4982)
00c3cec Update isnad-metinici.csl (JabRef#4988)
864a64c Update medicine-and-science-in-sports-and-exercise.csl (JabRef#4983)
0c76011 Don't demote particles in Equine Vet J (JabRef#4984)
603ee73 Fix MLA editor translator (JabRef#4985)
40d207c Update pravnik.csl (JabRef#4986)
c5fe30c Update isnad-dipnotlu.csl (JabRef#4987)
469deb6 Sage Harvard: Add translator/editor
1f51ef8 Add Pensoft dependents (JabRef#4981)
5338ff6 Create electrophoresis.csl (JabRef#4883)
4de9a97 Update spec_helper.rb
fe81f17 Create uirs-urbani-izziv.csl (JabRef#4928)
69d37d8 Create uirs-urban-challenge-journal.csl (JabRef#4927)
d807202 Changes to match Taxon guidelines for authors (JabRef#4980)
aeb2170 Create ucl-university-college-denmark-apa.csl (JabRef#4962)
16f58df Update American Physical Society styles (JabRef#4794)
b77bd91 Update ucl-university-college-denmark-vancouver.csl (JabRef#4963)
81d1a59 Update bibliotheque-d-archeologie-mediterraneenne-et-africaine-biama.csl (JabRef#4979)
0895562 Create pensoft-journals.csl (JabRef#4972)
4f8fa44 creates the gigascience.csl file (JabRef#4961)
1b9c7a0 Create acta-ornithologica.csl (JabRef#4977)
c8c6c6d Create sorbonne-student-law-review.csl (JabRef#4956)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: fad76fe
github-actions bot pushed a commit to ShikunXiong/jabref that referenced this pull request Sep 1, 2020
fad76fe Update Gemfile.lock
a8dafef Update harvard-cite-them-right.csl (JabRef#4993)
c8784ff Update and rename emerald-harvard.csl to emerald-harvard-2.csl (JabRef#4991)
197ec0e Update circulation-journal.csl (JabRef#4994)
f36dabe Update American Physical Society dependents (JabRef#4992)
93469bb Create journal-of-musculoskeletal-research.csl (JabRef#4990)
43287c7 Update taxon.csl a little more (JabRef#4989)
9f32917 Update and rename university-college-lillebaelt-harvard.csl to ucl-un… (JabRef#4982)
00c3cec Update isnad-metinici.csl (JabRef#4988)
864a64c Update medicine-and-science-in-sports-and-exercise.csl (JabRef#4983)
0c76011 Don't demote particles in Equine Vet J (JabRef#4984)
603ee73 Fix MLA editor translator (JabRef#4985)
40d207c Update pravnik.csl (JabRef#4986)
c5fe30c Update isnad-dipnotlu.csl (JabRef#4987)
469deb6 Sage Harvard: Add translator/editor
1f51ef8 Add Pensoft dependents (JabRef#4981)
5338ff6 Create electrophoresis.csl (JabRef#4883)
4de9a97 Update spec_helper.rb
fe81f17 Create uirs-urbani-izziv.csl (JabRef#4928)
69d37d8 Create uirs-urban-challenge-journal.csl (JabRef#4927)
d807202 Changes to match Taxon guidelines for authors (JabRef#4980)
aeb2170 Create ucl-university-college-denmark-apa.csl (JabRef#4962)
16f58df Update American Physical Society styles (JabRef#4794)
b77bd91 Update ucl-university-college-denmark-vancouver.csl (JabRef#4963)
81d1a59 Update bibliotheque-d-archeologie-mediterraneenne-et-africaine-biama.csl (JabRef#4979)
0895562 Create pensoft-journals.csl (JabRef#4972)
4f8fa44 creates the gigascience.csl file (JabRef#4961)
1b9c7a0 Create acta-ornithologica.csl (JabRef#4977)
c8c6c6d Create sorbonne-student-law-review.csl (JabRef#4956)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: fad76fe
github-actions bot pushed a commit to eetian/jabref that referenced this pull request Sep 1, 2020
fad76fe Update Gemfile.lock
a8dafef Update harvard-cite-them-right.csl (JabRef#4993)
c8784ff Update and rename emerald-harvard.csl to emerald-harvard-2.csl (JabRef#4991)
197ec0e Update circulation-journal.csl (JabRef#4994)
f36dabe Update American Physical Society dependents (JabRef#4992)
93469bb Create journal-of-musculoskeletal-research.csl (JabRef#4990)
43287c7 Update taxon.csl a little more (JabRef#4989)
9f32917 Update and rename university-college-lillebaelt-harvard.csl to ucl-un… (JabRef#4982)
00c3cec Update isnad-metinici.csl (JabRef#4988)
864a64c Update medicine-and-science-in-sports-and-exercise.csl (JabRef#4983)
0c76011 Don't demote particles in Equine Vet J (JabRef#4984)
603ee73 Fix MLA editor translator (JabRef#4985)
40d207c Update pravnik.csl (JabRef#4986)
c5fe30c Update isnad-dipnotlu.csl (JabRef#4987)
469deb6 Sage Harvard: Add translator/editor
1f51ef8 Add Pensoft dependents (JabRef#4981)
5338ff6 Create electrophoresis.csl (JabRef#4883)
4de9a97 Update spec_helper.rb
fe81f17 Create uirs-urbani-izziv.csl (JabRef#4928)
69d37d8 Create uirs-urban-challenge-journal.csl (JabRef#4927)
d807202 Changes to match Taxon guidelines for authors (JabRef#4980)
aeb2170 Create ucl-university-college-denmark-apa.csl (JabRef#4962)
16f58df Update American Physical Society styles (JabRef#4794)
b77bd91 Update ucl-university-college-denmark-vancouver.csl (JabRef#4963)
81d1a59 Update bibliotheque-d-archeologie-mediterraneenne-et-africaine-biama.csl (JabRef#4979)
0895562 Create pensoft-journals.csl (JabRef#4972)
4f8fa44 creates the gigascience.csl file (JabRef#4961)
1b9c7a0 Create acta-ornithologica.csl (JabRef#4977)
c8c6c6d Create sorbonne-student-law-review.csl (JabRef#4956)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: fad76fe
github-actions bot pushed a commit to leitianjian/jabref that referenced this pull request Sep 1, 2020
fad76fe Update Gemfile.lock
a8dafef Update harvard-cite-them-right.csl (JabRef#4993)
c8784ff Update and rename emerald-harvard.csl to emerald-harvard-2.csl (JabRef#4991)
197ec0e Update circulation-journal.csl (JabRef#4994)
f36dabe Update American Physical Society dependents (JabRef#4992)
93469bb Create journal-of-musculoskeletal-research.csl (JabRef#4990)
43287c7 Update taxon.csl a little more (JabRef#4989)
9f32917 Update and rename university-college-lillebaelt-harvard.csl to ucl-un… (JabRef#4982)
00c3cec Update isnad-metinici.csl (JabRef#4988)
864a64c Update medicine-and-science-in-sports-and-exercise.csl (JabRef#4983)
0c76011 Don't demote particles in Equine Vet J (JabRef#4984)
603ee73 Fix MLA editor translator (JabRef#4985)
40d207c Update pravnik.csl (JabRef#4986)
c5fe30c Update isnad-dipnotlu.csl (JabRef#4987)
469deb6 Sage Harvard: Add translator/editor
1f51ef8 Add Pensoft dependents (JabRef#4981)
5338ff6 Create electrophoresis.csl (JabRef#4883)
4de9a97 Update spec_helper.rb
fe81f17 Create uirs-urbani-izziv.csl (JabRef#4928)
69d37d8 Create uirs-urban-challenge-journal.csl (JabRef#4927)
d807202 Changes to match Taxon guidelines for authors (JabRef#4980)
aeb2170 Create ucl-university-college-denmark-apa.csl (JabRef#4962)
16f58df Update American Physical Society styles (JabRef#4794)
b77bd91 Update ucl-university-college-denmark-vancouver.csl (JabRef#4963)
81d1a59 Update bibliotheque-d-archeologie-mediterraneenne-et-africaine-biama.csl (JabRef#4979)
0895562 Create pensoft-journals.csl (JabRef#4972)
4f8fa44 creates the gigascience.csl file (JabRef#4961)
1b9c7a0 Create acta-ornithologica.csl (JabRef#4977)
c8c6c6d Create sorbonne-student-law-review.csl (JabRef#4956)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: fad76fe
github-actions bot pushed a commit to systemoperator/jabref that referenced this pull request Sep 1, 2020
fad76fe Update Gemfile.lock
a8dafef Update harvard-cite-them-right.csl (JabRef#4993)
c8784ff Update and rename emerald-harvard.csl to emerald-harvard-2.csl (JabRef#4991)
197ec0e Update circulation-journal.csl (JabRef#4994)
f36dabe Update American Physical Society dependents (JabRef#4992)
93469bb Create journal-of-musculoskeletal-research.csl (JabRef#4990)
43287c7 Update taxon.csl a little more (JabRef#4989)
9f32917 Update and rename university-college-lillebaelt-harvard.csl to ucl-un… (JabRef#4982)
00c3cec Update isnad-metinici.csl (JabRef#4988)
864a64c Update medicine-and-science-in-sports-and-exercise.csl (JabRef#4983)
0c76011 Don't demote particles in Equine Vet J (JabRef#4984)
603ee73 Fix MLA editor translator (JabRef#4985)
40d207c Update pravnik.csl (JabRef#4986)
c5fe30c Update isnad-dipnotlu.csl (JabRef#4987)
469deb6 Sage Harvard: Add translator/editor
1f51ef8 Add Pensoft dependents (JabRef#4981)
5338ff6 Create electrophoresis.csl (JabRef#4883)
4de9a97 Update spec_helper.rb
fe81f17 Create uirs-urbani-izziv.csl (JabRef#4928)
69d37d8 Create uirs-urban-challenge-journal.csl (JabRef#4927)
d807202 Changes to match Taxon guidelines for authors (JabRef#4980)
aeb2170 Create ucl-university-college-denmark-apa.csl (JabRef#4962)
16f58df Update American Physical Society styles (JabRef#4794)
b77bd91 Update ucl-university-college-denmark-vancouver.csl (JabRef#4963)
81d1a59 Update bibliotheque-d-archeologie-mediterraneenne-et-africaine-biama.csl (JabRef#4979)
0895562 Create pensoft-journals.csl (JabRef#4972)
4f8fa44 creates the gigascience.csl file (JabRef#4961)
1b9c7a0 Create acta-ornithologica.csl (JabRef#4977)
c8c6c6d Create sorbonne-student-law-review.csl (JabRef#4956)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: fad76fe
github-actions bot pushed a commit to dextep/jabref that referenced this pull request Sep 1, 2020
fad76fe Update Gemfile.lock
a8dafef Update harvard-cite-them-right.csl (JabRef#4993)
c8784ff Update and rename emerald-harvard.csl to emerald-harvard-2.csl (JabRef#4991)
197ec0e Update circulation-journal.csl (JabRef#4994)
f36dabe Update American Physical Society dependents (JabRef#4992)
93469bb Create journal-of-musculoskeletal-research.csl (JabRef#4990)
43287c7 Update taxon.csl a little more (JabRef#4989)
9f32917 Update and rename university-college-lillebaelt-harvard.csl to ucl-un… (JabRef#4982)
00c3cec Update isnad-metinici.csl (JabRef#4988)
864a64c Update medicine-and-science-in-sports-and-exercise.csl (JabRef#4983)
0c76011 Don't demote particles in Equine Vet J (JabRef#4984)
603ee73 Fix MLA editor translator (JabRef#4985)
40d207c Update pravnik.csl (JabRef#4986)
c5fe30c Update isnad-dipnotlu.csl (JabRef#4987)
469deb6 Sage Harvard: Add translator/editor
1f51ef8 Add Pensoft dependents (JabRef#4981)
5338ff6 Create electrophoresis.csl (JabRef#4883)
4de9a97 Update spec_helper.rb
fe81f17 Create uirs-urbani-izziv.csl (JabRef#4928)
69d37d8 Create uirs-urban-challenge-journal.csl (JabRef#4927)
d807202 Changes to match Taxon guidelines for authors (JabRef#4980)
aeb2170 Create ucl-university-college-denmark-apa.csl (JabRef#4962)
16f58df Update American Physical Society styles (JabRef#4794)
b77bd91 Update ucl-university-college-denmark-vancouver.csl (JabRef#4963)
81d1a59 Update bibliotheque-d-archeologie-mediterraneenne-et-africaine-biama.csl (JabRef#4979)
0895562 Create pensoft-journals.csl (JabRef#4972)
4f8fa44 creates the gigascience.csl file (JabRef#4961)
1b9c7a0 Create acta-ornithologica.csl (JabRef#4977)
c8c6c6d Create sorbonne-student-law-review.csl (JabRef#4956)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: fad76fe
github-actions bot pushed a commit to graffaner/jabref that referenced this pull request Sep 1, 2020
fad76fe Update Gemfile.lock
a8dafef Update harvard-cite-them-right.csl (JabRef#4993)
c8784ff Update and rename emerald-harvard.csl to emerald-harvard-2.csl (JabRef#4991)
197ec0e Update circulation-journal.csl (JabRef#4994)
f36dabe Update American Physical Society dependents (JabRef#4992)
93469bb Create journal-of-musculoskeletal-research.csl (JabRef#4990)
43287c7 Update taxon.csl a little more (JabRef#4989)
9f32917 Update and rename university-college-lillebaelt-harvard.csl to ucl-un… (JabRef#4982)
00c3cec Update isnad-metinici.csl (JabRef#4988)
864a64c Update medicine-and-science-in-sports-and-exercise.csl (JabRef#4983)
0c76011 Don't demote particles in Equine Vet J (JabRef#4984)
603ee73 Fix MLA editor translator (JabRef#4985)
40d207c Update pravnik.csl (JabRef#4986)
c5fe30c Update isnad-dipnotlu.csl (JabRef#4987)
469deb6 Sage Harvard: Add translator/editor
1f51ef8 Add Pensoft dependents (JabRef#4981)
5338ff6 Create electrophoresis.csl (JabRef#4883)
4de9a97 Update spec_helper.rb
fe81f17 Create uirs-urbani-izziv.csl (JabRef#4928)
69d37d8 Create uirs-urban-challenge-journal.csl (JabRef#4927)
d807202 Changes to match Taxon guidelines for authors (JabRef#4980)
aeb2170 Create ucl-university-college-denmark-apa.csl (JabRef#4962)
16f58df Update American Physical Society styles (JabRef#4794)
b77bd91 Update ucl-university-college-denmark-vancouver.csl (JabRef#4963)
81d1a59 Update bibliotheque-d-archeologie-mediterraneenne-et-africaine-biama.csl (JabRef#4979)
0895562 Create pensoft-journals.csl (JabRef#4972)
4f8fa44 creates the gigascience.csl file (JabRef#4961)
1b9c7a0 Create acta-ornithologica.csl (JabRef#4977)
c8c6c6d Create sorbonne-student-law-review.csl (JabRef#4956)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: fad76fe
github-actions bot pushed a commit to joe9111/jabref that referenced this pull request Sep 1, 2020
fad76fe Update Gemfile.lock
a8dafef Update harvard-cite-them-right.csl (JabRef#4993)
c8784ff Update and rename emerald-harvard.csl to emerald-harvard-2.csl (JabRef#4991)
197ec0e Update circulation-journal.csl (JabRef#4994)
f36dabe Update American Physical Society dependents (JabRef#4992)
93469bb Create journal-of-musculoskeletal-research.csl (JabRef#4990)
43287c7 Update taxon.csl a little more (JabRef#4989)
9f32917 Update and rename university-college-lillebaelt-harvard.csl to ucl-un… (JabRef#4982)
00c3cec Update isnad-metinici.csl (JabRef#4988)
864a64c Update medicine-and-science-in-sports-and-exercise.csl (JabRef#4983)
0c76011 Don't demote particles in Equine Vet J (JabRef#4984)
603ee73 Fix MLA editor translator (JabRef#4985)
40d207c Update pravnik.csl (JabRef#4986)
c5fe30c Update isnad-dipnotlu.csl (JabRef#4987)
469deb6 Sage Harvard: Add translator/editor
1f51ef8 Add Pensoft dependents (JabRef#4981)
5338ff6 Create electrophoresis.csl (JabRef#4883)
4de9a97 Update spec_helper.rb
fe81f17 Create uirs-urbani-izziv.csl (JabRef#4928)
69d37d8 Create uirs-urban-challenge-journal.csl (JabRef#4927)
d807202 Changes to match Taxon guidelines for authors (JabRef#4980)
aeb2170 Create ucl-university-college-denmark-apa.csl (JabRef#4962)
16f58df Update American Physical Society styles (JabRef#4794)
b77bd91 Update ucl-university-college-denmark-vancouver.csl (JabRef#4963)
81d1a59 Update bibliotheque-d-archeologie-mediterraneenne-et-africaine-biama.csl (JabRef#4979)
0895562 Create pensoft-journals.csl (JabRef#4972)
4f8fa44 creates the gigascience.csl file (JabRef#4961)
1b9c7a0 Create acta-ornithologica.csl (JabRef#4977)
c8c6c6d Create sorbonne-student-law-review.csl (JabRef#4956)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: fad76fe
github-actions bot pushed a commit to NikodemKch/jabref-1 that referenced this pull request Sep 1, 2020
fad76fe Update Gemfile.lock
a8dafef Update harvard-cite-them-right.csl (JabRef#4993)
c8784ff Update and rename emerald-harvard.csl to emerald-harvard-2.csl (JabRef#4991)
197ec0e Update circulation-journal.csl (JabRef#4994)
f36dabe Update American Physical Society dependents (JabRef#4992)
93469bb Create journal-of-musculoskeletal-research.csl (JabRef#4990)
43287c7 Update taxon.csl a little more (JabRef#4989)
9f32917 Update and rename university-college-lillebaelt-harvard.csl to ucl-un… (JabRef#4982)
00c3cec Update isnad-metinici.csl (JabRef#4988)
864a64c Update medicine-and-science-in-sports-and-exercise.csl (JabRef#4983)
0c76011 Don't demote particles in Equine Vet J (JabRef#4984)
603ee73 Fix MLA editor translator (JabRef#4985)
40d207c Update pravnik.csl (JabRef#4986)
c5fe30c Update isnad-dipnotlu.csl (JabRef#4987)
469deb6 Sage Harvard: Add translator/editor
1f51ef8 Add Pensoft dependents (JabRef#4981)
5338ff6 Create electrophoresis.csl (JabRef#4883)
4de9a97 Update spec_helper.rb
fe81f17 Create uirs-urbani-izziv.csl (JabRef#4928)
69d37d8 Create uirs-urban-challenge-journal.csl (JabRef#4927)
d807202 Changes to match Taxon guidelines for authors (JabRef#4980)
aeb2170 Create ucl-university-college-denmark-apa.csl (JabRef#4962)
16f58df Update American Physical Society styles (JabRef#4794)
b77bd91 Update ucl-university-college-denmark-vancouver.csl (JabRef#4963)
81d1a59 Update bibliotheque-d-archeologie-mediterraneenne-et-africaine-biama.csl (JabRef#4979)
0895562 Create pensoft-journals.csl (JabRef#4972)
4f8fa44 creates the gigascience.csl file (JabRef#4961)
1b9c7a0 Create acta-ornithologica.csl (JabRef#4977)
c8c6c6d Create sorbonne-student-law-review.csl (JabRef#4956)

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: fad76fe
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
status: ready-for-review Pull Requests that are ready to be reviewed by the maintainers
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add a proper way to set external application for pushing
4 participants