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

Make development version/snapshots available in choco community repository #5031

Closed
kmindi opened this issue Jun 5, 2019 · 16 comments
Closed
Labels

Comments

@kmindi
Copy link
Contributor

kmindi commented Jun 5, 2019

There should be a package for development/beta builds at chocolatey community repository

@Siedlerchr
Copy link
Member

All development builds can be accessed here: http://builds.jabref.org/

No one of us is officially maintaining the chocolatey build.
@koppor probably has more infos

@koppor
Copy link
Member

koppor commented Jun 5, 2019 via email

@OlafHaag
Copy link

OlafHaag commented Jun 5, 2019

BTW: If anyone else wants to become a maintainer for that package that's totally fine with me.

@Siedlerchr
Copy link
Member

I discovered a GitHub Action which could be useful to automatically deploy to chocolatey:
https://github.com/crazy-max/ghaction-chocolatey

@OlafHaag
Copy link

I discovered a GitHub Action which could be useful to automatically deploy to chocolatey:
https://github.com/crazy-max/ghaction-chocolatey

Nice catch, but for now I'll stick with my appveyor-AU module setup for automatic updates. Because it's less work for me I only look for releases on the releases GH page. Since the 5.0-alpha is listed there, it is available in choco with choco install jabref --pre.

@koppor
Copy link
Member

koppor commented Sep 30, 2019

development build == build available at https://builds.jabref.org/master (updated at least once a week)

beta build == build released at GitHub releases.

Since our master branch is intended to be usable (like Debian/unstable 😅), I think, it would be good to make development builds available, too. I know, this complicates things. However, the filenames will not change (at least for the portable version).

@tobiasdiez
Copy link
Member

@OlafHaag I had a look at the chocolatey documentation and was a bit overloaded with information and different package options/ways to manage them. Since you appear to be an expert when it comes to chocolatey, I hope you can help us here. In the case of our dev version, we want to have a script that publishes the current installer (msi file) to chocolatey. Since we would run the script as part of the github action after a merge of a PR, we know that the code changed and the script has all necessary information (e.g. version, url to msi). So I guess we don't need the automatic update infrastructure, right? What would be the easiest way to create (and submit) a chocolatey package in this case?

As choco does not provide a nightly switch, I guess it is best to create a new package jabref-dev for the development version (similar to firefox-dev).

@OlafHaag
Copy link

I don't know about the expert status, but I'll try to help where I can.
Actually, chocolatey discourages the creation of a separate dev-stream for a software. It has the --pre switch to install pre-release versions. That should work as long as the choco packages have according versions for the dev builds. Looking at this issue I don't think choco supports Semantic Versioning 2.0.0 just yet (e.g. where you could do 5.0.0-alpha.1), but 5.0.0-alpha-20190930 would also work. Precedence is determined by lexicographic ASCII sort order. It's encouraged that the package version follows the software version.

I haven't had your case yet, because I'm not the vendor of any of the software I maintain in the chocolatey community repository. I found it easiest to use the AU Powershell module for my situation.
The packaging requires basically only 2 files: the nuspec and the tools\chocolateyInstall.ps1.
You can either replace certain strings using regex or write the file fom scratch. In the nuspec you would replace the version and the release notes, in the install script the URLs and checksums (and fileType if you have an MSI instead of an EXE).
The AU module makes this easy as you can see below in an example.

function global:au_SearchReplace {
    @{
        "tools\chocolateyInstall.ps1" = @{
            "(?i)(^\s*packageName\s*=\s*)('.*')" = "`$1'$($Latest.PackageName)'"
            "(?i)(^\s*fileType\s*=\s*)('.*')" = "`$1'$($Latest.FileType)'"
            "(?i)(^\s*url\s*=\s*)('.*')"        = "`$1'$($Latest.URL32)'"
            "(?i)(^\s*url64bit\s*=\s*)('.*')"   = "`$1'$($Latest.URL64)'"
            "(?i)(^\s*checksum\s*=\s*)('.*')"   = "`$1'$($Latest.Checksum32)'"
            "(?i)(^\s*checksum64\s*=\s*)('.*')" = "`$1'$($Latest.Checksum64)'"
        }

        "$($Latest.PackageName).nuspec" = @{
            "(\<releaseNotes\>).*?(\</releaseNotes\>)" = "`${1}$($Latest.ReleaseNotes)`$2"
        }
    }
}

I have it all run online online on appveyor on a CRON job. But for simple string replacement you wouldn't need any of that, I guess.

If you have your nuspec and chocolateyInstall.ps1 files ready, the only thing left to do is choco pack and choco push. You would need your choco API key and the status of a maintainer of the package in order to successfully push.
So, the aforementioned chocolatey GH-action actually sounds like the way to go.

When the names/URLs of the install files don't change and aren't avaible anymore with each new build, all the pre-release packages will be broken on a daily basis if they just link to the same URL and the hashes don't match. Alternatively, you could package the MSI or Zip with the choco package. Then all older versions would be still available on choco.

PS: I didn't even know about the portable version. We should add that. There would then be a virtual package jabref, that really doesn't do much except having a jabref.install package as a dependency, and a separate jabref.portable package.

@koppor
Copy link
Member

koppor commented Sep 30, 2019

@OlafHaag If we trigger the build directly after the upload to builds.jabref.org, the mismatched hashes should be an issue for 10 minutes at maximum. -- OK, we could try to keep the version of the last day (having the date in the filename) and always publish that version.

@OlafHaag
Copy link

Almost forgot: Between packaging and pushing the choco package, it should be tested to install successfully. This would have to be part of the GH action.

@OlafHaag
Copy link

To become maintainers, just contact the Site Admins on the jabref chocolatey package site. Short instruction: I want to take over/help with package maintenance for my software.

@tobiasdiez
Copy link
Member

@OlafHaag thanks for the guideline. I started working on a first version in #5378 and in principle its working now. The AU is indeed not required as the msi url stays (relatively) constant and we can calculate the checksum on the fly. One question: you said that it would preferable to publish the development version as the same package on chocolatey just with a different version string. But if I understand it correctly, then there is now way to distinguish the released alpha from the dev version. Thus always the dev version is installed if I use choco install jabref -pre, right? That's probably not what we want.

Btw, the portable version works but doesn't come with the usual nice bells and whistles like desktop shortcut, file association, etc. Thus I guess the msi installer is still the preferred form of installation.

@OlafHaag
Copy link

OlafHaag commented Oct 1, 2019

Good to hear!
Yes, the alpha as well as the dev version will be marked as prereleases by choco. You'd have to distinguish them in the description, so the user can decide which to install. You can always install a specific version by specifying it, e.g. choco install jabref --version 5.0-alpha-20190828 (maybe one has to append --pre still, even when specifying the exact version).
But doing cup jabref --pre would update to the latest dev-version.
For the dev builds, you could probably add a disclaimer and a link to the released alpha package in the description to make it transparent to the user. People using the --pre switch should expect to get a possibly unstable version.

Only when one tries to install a specific version for which the installer isn't matching the hashes anymore, because the file was updated in the meantime, but still has the same name, the package will be broken. Or if the installer isn't reachable anymore.

koppor pushed a commit that referenced this issue Apr 13, 2020
@tobiasdiez
Copy link
Member

There is some initial progress at #5378, but I don't have time right now to work on this further. @anyone fell free to reuse it as a basis for your own PR.

github-actions bot pushed a commit to CaptainDaVinci/jabref that referenced this issue Oct 1, 2020
6fab78b Create physiologia-plantarum.csl (JabRef#5040)
58d65fd Create cureus.csl (JabRef#5048)
5b68591 Create institut-de-recherches-archeologiques-preventives.csl (JabRef#5042)
e238ca2 Create method-and-theory-in-the-study-of-religion.csl (JabRef#5041)
39a3fbb Create finance-and-society.csl (JabRef#5043)
cf39e19 Create canadian-biosystems-engineering-journal (JabRef#5046)
3d12b8f Create cardiff-university-biosi-and-carbs-only-harvard.csl (JabRef#5024)
776002d create new independent style for deutsches-arzteblatt.csl (JabRef#5035)
b167cd6 Create revista-peruana-de-medicina-experimental-y-salud-publica.csl (JabRef#5036)
13e0a0b Update iso690-full-note-cs.csl (JabRef#5033)
3af2034 Create acta-medica-peruana.csl (JabRef#5037)
dcbe494 Create historia-scribere.csl (JabRef#5038)
2174323 make addiction-biology.csl an AMA dependent (JabRef#5028)
b01aea8 Update ios-press-books.csl (JabRef#5030)
ae6d0e2 add doi for article-journal for ASA.csl (JabRef#5031)
d537025 Create organised-sound.csl (JabRef#5032)
ef4d15e Create independent EMBO Press
640fdac Create forensic-anthropology.csl (JabRef#5026)
3dc5157 Update amerindia.csl (JabRef#5027)
fca38a2 Create journal-of-the-botanical-research-institute-of-texas.csl (JabRef#5029)
facc3f9 Aging &Disease: remove unused macros
661e9fa Sort aging and disease by cite number
8746709 show issue numbers in springer basic author-date style (JabRef#4854)
c358b17 Update Journal of Universal Computer Science

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: 6fab78b
github-actions bot pushed a commit to RamonG92/jabref that referenced this issue Oct 1, 2020
6fab78b Create physiologia-plantarum.csl (JabRef#5040)
58d65fd Create cureus.csl (JabRef#5048)
5b68591 Create institut-de-recherches-archeologiques-preventives.csl (JabRef#5042)
e238ca2 Create method-and-theory-in-the-study-of-religion.csl (JabRef#5041)
39a3fbb Create finance-and-society.csl (JabRef#5043)
cf39e19 Create canadian-biosystems-engineering-journal (JabRef#5046)
3d12b8f Create cardiff-university-biosi-and-carbs-only-harvard.csl (JabRef#5024)
776002d create new independent style for deutsches-arzteblatt.csl (JabRef#5035)
b167cd6 Create revista-peruana-de-medicina-experimental-y-salud-publica.csl (JabRef#5036)
13e0a0b Update iso690-full-note-cs.csl (JabRef#5033)
3af2034 Create acta-medica-peruana.csl (JabRef#5037)
dcbe494 Create historia-scribere.csl (JabRef#5038)
2174323 make addiction-biology.csl an AMA dependent (JabRef#5028)
b01aea8 Update ios-press-books.csl (JabRef#5030)
ae6d0e2 add doi for article-journal for ASA.csl (JabRef#5031)
d537025 Create organised-sound.csl (JabRef#5032)
ef4d15e Create independent EMBO Press
640fdac Create forensic-anthropology.csl (JabRef#5026)
3dc5157 Update amerindia.csl (JabRef#5027)
fca38a2 Create journal-of-the-botanical-research-institute-of-texas.csl (JabRef#5029)
facc3f9 Aging &Disease: remove unused macros
661e9fa Sort aging and disease by cite number
8746709 show issue numbers in springer basic author-date style (JabRef#4854)
c358b17 Update Journal of Universal Computer Science

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: 6fab78b
github-actions bot pushed a commit to dimitra-karadima/jabref that referenced this issue Oct 1, 2020
6fab78b Create physiologia-plantarum.csl (JabRef#5040)
58d65fd Create cureus.csl (JabRef#5048)
5b68591 Create institut-de-recherches-archeologiques-preventives.csl (JabRef#5042)
e238ca2 Create method-and-theory-in-the-study-of-religion.csl (JabRef#5041)
39a3fbb Create finance-and-society.csl (JabRef#5043)
cf39e19 Create canadian-biosystems-engineering-journal (JabRef#5046)
3d12b8f Create cardiff-university-biosi-and-carbs-only-harvard.csl (JabRef#5024)
776002d create new independent style for deutsches-arzteblatt.csl (JabRef#5035)
b167cd6 Create revista-peruana-de-medicina-experimental-y-salud-publica.csl (JabRef#5036)
13e0a0b Update iso690-full-note-cs.csl (JabRef#5033)
3af2034 Create acta-medica-peruana.csl (JabRef#5037)
dcbe494 Create historia-scribere.csl (JabRef#5038)
2174323 make addiction-biology.csl an AMA dependent (JabRef#5028)
b01aea8 Update ios-press-books.csl (JabRef#5030)
ae6d0e2 add doi for article-journal for ASA.csl (JabRef#5031)
d537025 Create organised-sound.csl (JabRef#5032)
ef4d15e Create independent EMBO Press
640fdac Create forensic-anthropology.csl (JabRef#5026)
3dc5157 Update amerindia.csl (JabRef#5027)
fca38a2 Create journal-of-the-botanical-research-institute-of-texas.csl (JabRef#5029)
facc3f9 Aging &Disease: remove unused macros
661e9fa Sort aging and disease by cite number
8746709 show issue numbers in springer basic author-date style (JabRef#4854)
c358b17 Update Journal of Universal Computer Science

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: 6fab78b
github-actions bot pushed a commit to Xuanxuan-Zou/jabref that referenced this issue Oct 1, 2020
6fab78b Create physiologia-plantarum.csl (JabRef#5040)
58d65fd Create cureus.csl (JabRef#5048)
5b68591 Create institut-de-recherches-archeologiques-preventives.csl (JabRef#5042)
e238ca2 Create method-and-theory-in-the-study-of-religion.csl (JabRef#5041)
39a3fbb Create finance-and-society.csl (JabRef#5043)
cf39e19 Create canadian-biosystems-engineering-journal (JabRef#5046)
3d12b8f Create cardiff-university-biosi-and-carbs-only-harvard.csl (JabRef#5024)
776002d create new independent style for deutsches-arzteblatt.csl (JabRef#5035)
b167cd6 Create revista-peruana-de-medicina-experimental-y-salud-publica.csl (JabRef#5036)
13e0a0b Update iso690-full-note-cs.csl (JabRef#5033)
3af2034 Create acta-medica-peruana.csl (JabRef#5037)
dcbe494 Create historia-scribere.csl (JabRef#5038)
2174323 make addiction-biology.csl an AMA dependent (JabRef#5028)
b01aea8 Update ios-press-books.csl (JabRef#5030)
ae6d0e2 add doi for article-journal for ASA.csl (JabRef#5031)
d537025 Create organised-sound.csl (JabRef#5032)
ef4d15e Create independent EMBO Press
640fdac Create forensic-anthropology.csl (JabRef#5026)
3dc5157 Update amerindia.csl (JabRef#5027)
fca38a2 Create journal-of-the-botanical-research-institute-of-texas.csl (JabRef#5029)
facc3f9 Aging &Disease: remove unused macros
661e9fa Sort aging and disease by cite number
8746709 show issue numbers in springer basic author-date style (JabRef#4854)
c358b17 Update Journal of Universal Computer Science

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: 6fab78b
github-actions bot pushed a commit to felixbohnacker/jabref that referenced this issue Oct 1, 2020
6fab78b Create physiologia-plantarum.csl (JabRef#5040)
58d65fd Create cureus.csl (JabRef#5048)
5b68591 Create institut-de-recherches-archeologiques-preventives.csl (JabRef#5042)
e238ca2 Create method-and-theory-in-the-study-of-religion.csl (JabRef#5041)
39a3fbb Create finance-and-society.csl (JabRef#5043)
cf39e19 Create canadian-biosystems-engineering-journal (JabRef#5046)
3d12b8f Create cardiff-university-biosi-and-carbs-only-harvard.csl (JabRef#5024)
776002d create new independent style for deutsches-arzteblatt.csl (JabRef#5035)
b167cd6 Create revista-peruana-de-medicina-experimental-y-salud-publica.csl (JabRef#5036)
13e0a0b Update iso690-full-note-cs.csl (JabRef#5033)
3af2034 Create acta-medica-peruana.csl (JabRef#5037)
dcbe494 Create historia-scribere.csl (JabRef#5038)
2174323 make addiction-biology.csl an AMA dependent (JabRef#5028)
b01aea8 Update ios-press-books.csl (JabRef#5030)
ae6d0e2 add doi for article-journal for ASA.csl (JabRef#5031)
d537025 Create organised-sound.csl (JabRef#5032)
ef4d15e Create independent EMBO Press
640fdac Create forensic-anthropology.csl (JabRef#5026)
3dc5157 Update amerindia.csl (JabRef#5027)
fca38a2 Create journal-of-the-botanical-research-institute-of-texas.csl (JabRef#5029)
facc3f9 Aging &Disease: remove unused macros
661e9fa Sort aging and disease by cite number
8746709 show issue numbers in springer basic author-date style (JabRef#4854)
c358b17 Update Journal of Universal Computer Science

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: 6fab78b
github-actions bot pushed a commit to ShikunXiong/jabref that referenced this issue Oct 1, 2020
6fab78b Create physiologia-plantarum.csl (JabRef#5040)
58d65fd Create cureus.csl (JabRef#5048)
5b68591 Create institut-de-recherches-archeologiques-preventives.csl (JabRef#5042)
e238ca2 Create method-and-theory-in-the-study-of-religion.csl (JabRef#5041)
39a3fbb Create finance-and-society.csl (JabRef#5043)
cf39e19 Create canadian-biosystems-engineering-journal (JabRef#5046)
3d12b8f Create cardiff-university-biosi-and-carbs-only-harvard.csl (JabRef#5024)
776002d create new independent style for deutsches-arzteblatt.csl (JabRef#5035)
b167cd6 Create revista-peruana-de-medicina-experimental-y-salud-publica.csl (JabRef#5036)
13e0a0b Update iso690-full-note-cs.csl (JabRef#5033)
3af2034 Create acta-medica-peruana.csl (JabRef#5037)
dcbe494 Create historia-scribere.csl (JabRef#5038)
2174323 make addiction-biology.csl an AMA dependent (JabRef#5028)
b01aea8 Update ios-press-books.csl (JabRef#5030)
ae6d0e2 add doi for article-journal for ASA.csl (JabRef#5031)
d537025 Create organised-sound.csl (JabRef#5032)
ef4d15e Create independent EMBO Press
640fdac Create forensic-anthropology.csl (JabRef#5026)
3dc5157 Update amerindia.csl (JabRef#5027)
fca38a2 Create journal-of-the-botanical-research-institute-of-texas.csl (JabRef#5029)
facc3f9 Aging &Disease: remove unused macros
661e9fa Sort aging and disease by cite number
8746709 show issue numbers in springer basic author-date style (JabRef#4854)
c358b17 Update Journal of Universal Computer Science

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: 6fab78b
github-actions bot pushed a commit to eetian/jabref that referenced this issue Oct 1, 2020
6fab78b Create physiologia-plantarum.csl (JabRef#5040)
58d65fd Create cureus.csl (JabRef#5048)
5b68591 Create institut-de-recherches-archeologiques-preventives.csl (JabRef#5042)
e238ca2 Create method-and-theory-in-the-study-of-religion.csl (JabRef#5041)
39a3fbb Create finance-and-society.csl (JabRef#5043)
cf39e19 Create canadian-biosystems-engineering-journal (JabRef#5046)
3d12b8f Create cardiff-university-biosi-and-carbs-only-harvard.csl (JabRef#5024)
776002d create new independent style for deutsches-arzteblatt.csl (JabRef#5035)
b167cd6 Create revista-peruana-de-medicina-experimental-y-salud-publica.csl (JabRef#5036)
13e0a0b Update iso690-full-note-cs.csl (JabRef#5033)
3af2034 Create acta-medica-peruana.csl (JabRef#5037)
dcbe494 Create historia-scribere.csl (JabRef#5038)
2174323 make addiction-biology.csl an AMA dependent (JabRef#5028)
b01aea8 Update ios-press-books.csl (JabRef#5030)
ae6d0e2 add doi for article-journal for ASA.csl (JabRef#5031)
d537025 Create organised-sound.csl (JabRef#5032)
ef4d15e Create independent EMBO Press
640fdac Create forensic-anthropology.csl (JabRef#5026)
3dc5157 Update amerindia.csl (JabRef#5027)
fca38a2 Create journal-of-the-botanical-research-institute-of-texas.csl (JabRef#5029)
facc3f9 Aging &Disease: remove unused macros
661e9fa Sort aging and disease by cite number
8746709 show issue numbers in springer basic author-date style (JabRef#4854)
c358b17 Update Journal of Universal Computer Science

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: 6fab78b
github-actions bot pushed a commit to dextep/jabref that referenced this issue Oct 1, 2020
6fab78b Create physiologia-plantarum.csl (JabRef#5040)
58d65fd Create cureus.csl (JabRef#5048)
5b68591 Create institut-de-recherches-archeologiques-preventives.csl (JabRef#5042)
e238ca2 Create method-and-theory-in-the-study-of-religion.csl (JabRef#5041)
39a3fbb Create finance-and-society.csl (JabRef#5043)
cf39e19 Create canadian-biosystems-engineering-journal (JabRef#5046)
3d12b8f Create cardiff-university-biosi-and-carbs-only-harvard.csl (JabRef#5024)
776002d create new independent style for deutsches-arzteblatt.csl (JabRef#5035)
b167cd6 Create revista-peruana-de-medicina-experimental-y-salud-publica.csl (JabRef#5036)
13e0a0b Update iso690-full-note-cs.csl (JabRef#5033)
3af2034 Create acta-medica-peruana.csl (JabRef#5037)
dcbe494 Create historia-scribere.csl (JabRef#5038)
2174323 make addiction-biology.csl an AMA dependent (JabRef#5028)
b01aea8 Update ios-press-books.csl (JabRef#5030)
ae6d0e2 add doi for article-journal for ASA.csl (JabRef#5031)
d537025 Create organised-sound.csl (JabRef#5032)
ef4d15e Create independent EMBO Press
640fdac Create forensic-anthropology.csl (JabRef#5026)
3dc5157 Update amerindia.csl (JabRef#5027)
fca38a2 Create journal-of-the-botanical-research-institute-of-texas.csl (JabRef#5029)
facc3f9 Aging &Disease: remove unused macros
661e9fa Sort aging and disease by cite number
8746709 show issue numbers in springer basic author-date style (JabRef#4854)
c358b17 Update Journal of Universal Computer Science

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: 6fab78b
github-actions bot pushed a commit that referenced this issue Oct 1, 2020
6fab78b Create physiologia-plantarum.csl (#5040)
58d65fd Create cureus.csl (#5048)
5b68591 Create institut-de-recherches-archeologiques-preventives.csl (#5042)
e238ca2 Create method-and-theory-in-the-study-of-religion.csl (#5041)
39a3fbb Create finance-and-society.csl (#5043)
cf39e19 Create canadian-biosystems-engineering-journal (#5046)
3d12b8f Create cardiff-university-biosi-and-carbs-only-harvard.csl (#5024)
776002d create new independent style for deutsches-arzteblatt.csl (#5035)
b167cd6 Create revista-peruana-de-medicina-experimental-y-salud-publica.csl (#5036)
13e0a0b Update iso690-full-note-cs.csl (#5033)
3af2034 Create acta-medica-peruana.csl (#5037)
dcbe494 Create historia-scribere.csl (#5038)
2174323 make addiction-biology.csl an AMA dependent (#5028)
b01aea8 Update ios-press-books.csl (#5030)
ae6d0e2 add doi for article-journal for ASA.csl (#5031)
d537025 Create organised-sound.csl (#5032)
ef4d15e Create independent EMBO Press
640fdac Create forensic-anthropology.csl (#5026)
3dc5157 Update amerindia.csl (#5027)
fca38a2 Create journal-of-the-botanical-research-institute-of-texas.csl (#5029)
facc3f9 Aging &Disease: remove unused macros
661e9fa Sort aging and disease by cite number
8746709 show issue numbers in springer basic author-date style (#4854)
c358b17 Update Journal of Universal Computer Science

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: 6fab78b
github-actions bot pushed a commit to graffaner/jabref that referenced this issue Oct 1, 2020
6fab78b Create physiologia-plantarum.csl (JabRef#5040)
58d65fd Create cureus.csl (JabRef#5048)
5b68591 Create institut-de-recherches-archeologiques-preventives.csl (JabRef#5042)
e238ca2 Create method-and-theory-in-the-study-of-religion.csl (JabRef#5041)
39a3fbb Create finance-and-society.csl (JabRef#5043)
cf39e19 Create canadian-biosystems-engineering-journal (JabRef#5046)
3d12b8f Create cardiff-university-biosi-and-carbs-only-harvard.csl (JabRef#5024)
776002d create new independent style for deutsches-arzteblatt.csl (JabRef#5035)
b167cd6 Create revista-peruana-de-medicina-experimental-y-salud-publica.csl (JabRef#5036)
13e0a0b Update iso690-full-note-cs.csl (JabRef#5033)
3af2034 Create acta-medica-peruana.csl (JabRef#5037)
dcbe494 Create historia-scribere.csl (JabRef#5038)
2174323 make addiction-biology.csl an AMA dependent (JabRef#5028)
b01aea8 Update ios-press-books.csl (JabRef#5030)
ae6d0e2 add doi for article-journal for ASA.csl (JabRef#5031)
d537025 Create organised-sound.csl (JabRef#5032)
ef4d15e Create independent EMBO Press
640fdac Create forensic-anthropology.csl (JabRef#5026)
3dc5157 Update amerindia.csl (JabRef#5027)
fca38a2 Create journal-of-the-botanical-research-institute-of-texas.csl (JabRef#5029)
facc3f9 Aging &Disease: remove unused macros
661e9fa Sort aging and disease by cite number
8746709 show issue numbers in springer basic author-date style (JabRef#4854)
c358b17 Update Journal of Universal Computer Science

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: 6fab78b
github-actions bot pushed a commit to NikodemKch/jabref-1 that referenced this issue Oct 1, 2020
6fab78b Create physiologia-plantarum.csl (JabRef#5040)
58d65fd Create cureus.csl (JabRef#5048)
5b68591 Create institut-de-recherches-archeologiques-preventives.csl (JabRef#5042)
e238ca2 Create method-and-theory-in-the-study-of-religion.csl (JabRef#5041)
39a3fbb Create finance-and-society.csl (JabRef#5043)
cf39e19 Create canadian-biosystems-engineering-journal (JabRef#5046)
3d12b8f Create cardiff-university-biosi-and-carbs-only-harvard.csl (JabRef#5024)
776002d create new independent style for deutsches-arzteblatt.csl (JabRef#5035)
b167cd6 Create revista-peruana-de-medicina-experimental-y-salud-publica.csl (JabRef#5036)
13e0a0b Update iso690-full-note-cs.csl (JabRef#5033)
3af2034 Create acta-medica-peruana.csl (JabRef#5037)
dcbe494 Create historia-scribere.csl (JabRef#5038)
2174323 make addiction-biology.csl an AMA dependent (JabRef#5028)
b01aea8 Update ios-press-books.csl (JabRef#5030)
ae6d0e2 add doi for article-journal for ASA.csl (JabRef#5031)
d537025 Create organised-sound.csl (JabRef#5032)
ef4d15e Create independent EMBO Press
640fdac Create forensic-anthropology.csl (JabRef#5026)
3dc5157 Update amerindia.csl (JabRef#5027)
fca38a2 Create journal-of-the-botanical-research-institute-of-texas.csl (JabRef#5029)
facc3f9 Aging &Disease: remove unused macros
661e9fa Sort aging and disease by cite number
8746709 show issue numbers in springer basic author-date style (JabRef#4854)
c358b17 Update Journal of Universal Computer Science

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: 6fab78b
github-actions bot pushed a commit to joe9111/jabref that referenced this issue Oct 1, 2020
6fab78b Create physiologia-plantarum.csl (JabRef#5040)
58d65fd Create cureus.csl (JabRef#5048)
5b68591 Create institut-de-recherches-archeologiques-preventives.csl (JabRef#5042)
e238ca2 Create method-and-theory-in-the-study-of-religion.csl (JabRef#5041)
39a3fbb Create finance-and-society.csl (JabRef#5043)
cf39e19 Create canadian-biosystems-engineering-journal (JabRef#5046)
3d12b8f Create cardiff-university-biosi-and-carbs-only-harvard.csl (JabRef#5024)
776002d create new independent style for deutsches-arzteblatt.csl (JabRef#5035)
b167cd6 Create revista-peruana-de-medicina-experimental-y-salud-publica.csl (JabRef#5036)
13e0a0b Update iso690-full-note-cs.csl (JabRef#5033)
3af2034 Create acta-medica-peruana.csl (JabRef#5037)
dcbe494 Create historia-scribere.csl (JabRef#5038)
2174323 make addiction-biology.csl an AMA dependent (JabRef#5028)
b01aea8 Update ios-press-books.csl (JabRef#5030)
ae6d0e2 add doi for article-journal for ASA.csl (JabRef#5031)
d537025 Create organised-sound.csl (JabRef#5032)
ef4d15e Create independent EMBO Press
640fdac Create forensic-anthropology.csl (JabRef#5026)
3dc5157 Update amerindia.csl (JabRef#5027)
fca38a2 Create journal-of-the-botanical-research-institute-of-texas.csl (JabRef#5029)
facc3f9 Aging &Disease: remove unused macros
661e9fa Sort aging and disease by cite number
8746709 show issue numbers in springer basic author-date style (JabRef#4854)
c358b17 Update Journal of Universal Computer Science

git-subtree-dir: src/main/resources/csl-styles
git-subtree-split: 6fab78b
@github-actions
Copy link
Contributor

This issue has been inactive for half a year. Since JabRef is constantly evolving this issue may not be relevant any longer and it will be closed in two weeks if no further activity occurs.

As part of an effort to ensure that the JabRef team is focusing on important and valid issues, we would like to ask if you could update the issue if it still persists. This could be in the following form:

  • If there has been a longer discussion, add a short summary of the most important points as a new comment (if not yet existing).
  • Provide further steps or information on how to reproduce this issue.
  • Upvote the initial post if you like to see it implemented soon. Votes are not the only metric that we use to determine the requests that are implemented, however, they do factor into our decision-making process.
  • If all information is provided and still up-to-date, then just add a short comment that the issue is still relevant.

Thank you for your contribution!

@koppor koppor added the status: freeze Issues posponed to a (much) later future label Jan 17, 2021
@koppor
Copy link
Member

koppor commented Jan 17, 2021

We are currently trying to focus on other things. 🔥
We will come back later to this topic, therefore closing adding freeze label and closing the issue for now.

@koppor koppor closed this as completed Jan 17, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

5 participants