Skip to content

Commit

Permalink
Merge branch 'master' of github.com:texstudio-org/texstudio
Browse files Browse the repository at this point in the history
  • Loading branch information
sunderme committed Dec 24, 2023
2 parents 470bc9c + 185699d commit 0a4d0a4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 12 deletions.
15 changes: 3 additions & 12 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -241,20 +241,11 @@ jobs:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Download Windows release asset(s)
- name: Download temp artifacts
uses: actions/download-artifact@v4
with:
name: release-win

- name: Download Linux release asset(s)
uses: actions/download-artifact@v4
with:
name: release-linux

- name: Download OS X release asset(s)
uses: actions/download-artifact@v4
with:
name: release-osx
pattern: release-*
merge-multiple: true

- name: Calculate hashes
run: |
Expand Down
5 changes: 5 additions & 0 deletions src/bibtexdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,11 @@ void BibTeXDialog::generateBiblatexEntryTypes(bool forceRecreate)
// applicable.
QStringList() << "author" << "title" << "date",
QStringList() << "subtitle" << "titleaddon" << "language" << "howpublished" << "note" << "location" << "isbn" << "date" << "month" << "year" << "addendum" << "pubstate" << "url" << "urldate");
biblatexEntryTypes << BibTeXType(tr("Software"), "@software",
// Specific bibliographic entry for
// describing software.
QStringList() << "author/editor" << "title" << "url" << "year",
QStringList() << "abstract" << "date" << "doi" << "eprint" << "eprintclass" << "eprinttype" << "file" << "hal_id" << "hal_version" << "institution" << "license" << "month" << "note" << "organization" << "publisher" << "related" << "relatedtype" << "relatedstring" << "repository" << "swhid" << "urldate" << "version");
}


Expand Down
1 change: 1 addition & 0 deletions src/quickdocumentdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,7 @@ QStringList babelLanguages = QStringList()
<< "portuguese"
<< "russian"
<< "slovak"
<< "slovene"
<< "spanish" ;

void QuickDocumentDialog::Init()
Expand Down

0 comments on commit 0a4d0a4

Please sign in to comment.