-
Notifications
You must be signed in to change notification settings - Fork 26
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
GitHub workflows, readme and version bump #129
Open
SwissalpS
wants to merge
6
commits into
nonstop:master
Choose a base branch
from
SwissalpS:githubWorkflows
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
6 commits
Select commit
Hold shift + click to select a range
4f13759
locale tweaks de, es & fr
SwissalpS 7f7a4b6
correct include path
SwissalpS 7a52348
satisfy cmake version warning
SwissalpS 9baeb0d
add github workflows
SwissalpS d96ce6b
add readme.md
SwissalpS 72239da
version bump 3.1.1
SwissalpS 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 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,56 @@ | ||
name: Build termit | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
fedora_latest_build: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: fedora:latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 1000 | ||
- name: Prepare build environment. | ||
run: | | ||
dnf -y upgrade | ||
dnf -y install cmake gcc gtk+ vte291 vte291-devel lua lua-devel | ||
- name: Configure | ||
run: | | ||
cmake -DCMAKE_BUILD_TYPE=Release . | ||
- name: Build | ||
run: | | ||
make | ||
- name: Install | ||
run: | | ||
make install | ||
- name: Test version | ||
run: | | ||
termit --version | ||
|
||
ubuntu_latest_build: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: ubuntu:latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Prepare build environment. | ||
run: | | ||
apt-get update | ||
apt-get -y install apt-utils | ||
apt-get -y full-upgrade | ||
apt-get install -y gcc cmake lua5.4-dev libgtk-3-dev libvte-2.91 gettext | ||
- name: Configure | ||
run: | | ||
cmake -DCMAKE_BUILD_TYPE=Release . | ||
- name: Build | ||
run: | | ||
make | ||
- name: Install | ||
run: | | ||
make install | ||
- name: Test version | ||
run: | | ||
termit --version |
This file contains 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 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 @@ | ||
# termit | ||
Terminal emulator based on VTE library with Lua scripting | ||
|
||
## Installation Instructions | ||
[General guide](INSTALL) | ||
### Prepare dependancies | ||
#### fedora | ||
```bash | ||
# dnf -y install cmake gcc gtk+ vte291 vte291-devel lua lua-devel | ||
``` | ||
|
||
#### ubuntu | ||
```bash | ||
# apt-get install -y gcc cmake lua5.4-dev libgtk-3-dev libvte-2.91 gettext | ||
``` | ||
|
||
### build | ||
Download, configure, build and install | ||
```bash | ||
$ git clone https://github.com/nonstop/termit.git | ||
$ cd termit | ||
$ cmake -DCMAKE_BUILD_TYPE=Release . | ||
$ make | ||
$ sudo make install | ||
``` | ||
|
||
## [Changelog](ChangeLog) | ||
|
||
## [Copyright](COPYING) |
This file contains 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 |
---|---|---|
|
@@ -8,8 +8,8 @@ msgstr "" | |
"Project-Id-Version: 1.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: \n" | ||
"PO-Revision-Date: 2011-12-19 21:23+0100\n" | ||
"Last-Translator: Dennis Ploeger <[email protected]>\n" | ||
"PO-Revision-Date: 2022-09-08 22:22+0100\n" | ||
"Last-Translator: SwissalpS <[email protected]>\n" | ||
"Language-Team: de\n" | ||
"Language: \n" | ||
"MIME-Version: 1.0\n" | ||
|
@@ -18,7 +18,7 @@ msgstr "" | |
|
||
#: src/termit_preferences.c:219 | ||
msgid "Apply to all tabs" | ||
msgstr "" | ||
msgstr "Auf alle Tabs anwenden" | ||
|
||
#: src/termit_preferences.c:213 | ||
#, fuzzy | ||
|
@@ -40,11 +40,11 @@ msgstr "" | |
|
||
#: src/termit.c:170 src/termit.c:223 | ||
msgid "Close tab" | ||
msgstr "" | ||
msgstr "Tab schliessen" | ||
|
||
#: src/termit.c:187 src/termit.c:226 | ||
msgid "Copy" | ||
msgstr "" | ||
msgstr "Kopieren" | ||
|
||
#: src/termit.c:190 | ||
msgid "Edit" | ||
|
@@ -65,7 +65,7 @@ msgstr "Vordergrund" | |
#. File menu | ||
#: src/termit.c:169 src/termit.c:222 | ||
msgid "New tab" | ||
msgstr "" | ||
msgstr "Neuen Tab" | ||
|
||
#. Sessions menu | ||
#: src/termit.c:202 src/callbacks.c:418 | ||
|
@@ -74,15 +74,15 @@ msgstr "Sitzung öffnen" | |
|
||
#: src/termit.c:188 src/termit.c:227 | ||
msgid "Paste" | ||
msgstr "" | ||
msgstr "Einfügen" | ||
|
||
#: src/termit.c:186 src/termit.c:225 src/termit_preferences.c:167 | ||
msgid "Preferences" | ||
msgstr "" | ||
msgstr "Einstellungen" | ||
|
||
#: src/termit.c:171 src/termit.c:228 | ||
msgid "Quit" | ||
msgstr "" | ||
msgstr "Beenden" | ||
|
||
#: src/termit.c:203 src/callbacks.c:388 | ||
msgid "Save session" | ||
|
This file contains 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 |
---|---|---|
|
@@ -7,8 +7,8 @@ msgid "" | |
msgstr "" | ||
"Project-Id-Version: \n" | ||
"POT-Creation-Date: \n" | ||
"PO-Revision-Date: \n" | ||
"Last-Translator: Martintxo <[email protected]>\n" | ||
"PO-Revision-Date: 2022-09-08 22:22+0100\n" | ||
"Last-Translator: SwissalpS <[email protected]>\n" | ||
"Language-Team: \n" | ||
"Language: \n" | ||
"MIME-Version: 1.0\n" | ||
|
@@ -17,7 +17,7 @@ msgstr "" | |
|
||
#: src/termit_preferences.c:219 | ||
msgid "Apply to all tabs" | ||
msgstr "" | ||
msgstr "Aplicar a todas las pestañas" | ||
|
||
#: src/termit_preferences.c:213 | ||
#, fuzzy | ||
|
@@ -38,11 +38,11 @@ msgstr "El comando no se entiende. Creando una nueva pestaña con shell" | |
|
||
#: src/termit.c:170 src/termit.c:223 | ||
msgid "Close tab" | ||
msgstr "" | ||
msgstr "Cerrar pestaña" | ||
|
||
#: src/termit.c:187 src/termit.c:226 | ||
msgid "Copy" | ||
msgstr "" | ||
msgstr "Copiar" | ||
|
||
#: src/termit.c:190 | ||
msgid "Edit" | ||
|
@@ -63,7 +63,7 @@ msgstr "Frente" | |
#. File menu | ||
#: src/termit.c:169 src/termit.c:222 | ||
msgid "New tab" | ||
msgstr "" | ||
msgstr "Nueva pestaña" | ||
|
||
#. Sessions menu | ||
#: src/termit.c:202 src/callbacks.c:418 | ||
|
@@ -72,15 +72,15 @@ msgstr "Abrir sesión" | |
|
||
#: src/termit.c:188 src/termit.c:227 | ||
msgid "Paste" | ||
msgstr "" | ||
msgstr "Pegar" | ||
|
||
#: src/termit.c:186 src/termit.c:225 src/termit_preferences.c:167 | ||
msgid "Preferences" | ||
msgstr "" | ||
msgstr "Preferencias" | ||
|
||
#: src/termit.c:171 src/termit.c:228 | ||
msgid "Quit" | ||
msgstr "" | ||
msgstr "Salir" | ||
|
||
#: src/termit.c:203 src/callbacks.c:388 | ||
msgid "Save session" | ||
|
@@ -105,7 +105,7 @@ msgid "" | |
"Close anyway?" | ||
msgstr "" | ||
"Hay varias pestañas abiertas.\n" | ||
"¿Cerrarlas todas?" | ||
"¿Cerrarlas todas igual?" | ||
|
||
#: src/callbacks.c:297 src/callbacks.c:308 | ||
msgid "Tab name" | ||
|
This file contains 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 |
---|---|---|
|
@@ -2,8 +2,8 @@ msgid "" | |
msgstr "" | ||
"Project-Id-Version: Termit 1.1.1\n" | ||
"POT-Creation-Date: \n" | ||
"PO-Revision-Date: 2008-01-22 11:12+0100\n" | ||
"Last-Translator: Mallory Mollo <[email protected]>\n" | ||
"PO-Revision-Date: 2022-09-08 22:22+0100\n" | ||
"Last-Translator: SwissalpS <[email protected]>\n" | ||
"Language-Team: Mallory Mollo <[email protected]>\n" | ||
"Language: \n" | ||
"MIME-Version: 1.0\n" | ||
|
@@ -14,31 +14,31 @@ msgstr "" | |
|
||
#: src/termit_preferences.c:219 | ||
msgid "Apply to all tabs" | ||
msgstr "" | ||
msgstr "Appliquer à tous les onglets" | ||
|
||
#: src/termit_preferences.c:213 | ||
msgid "Audible bell" | ||
msgstr "" | ||
msgstr "Cloche sonore" | ||
|
||
#: src/termit_preferences.c:207 | ||
msgid "Background" | ||
msgstr "" | ||
msgstr "Fond" | ||
|
||
#: src/termit_core_api.c:464 | ||
msgid "Cannot create a new tab" | ||
msgstr "Impossible de créer un nouvel onglet" | ||
|
||
#: src/termit_core_api.c:416 | ||
msgid "Cannot parse command. Creating tab with shell" | ||
msgstr "" | ||
msgstr "Impossible d'analyser la commande. Création d'onglet avec shell" | ||
|
||
#: src/termit.c:170 src/termit.c:223 | ||
msgid "Close tab" | ||
msgstr "" | ||
msgstr "Fermer l'onglet" | ||
|
||
#: src/termit.c:187 src/termit.c:226 | ||
msgid "Copy" | ||
msgstr "" | ||
msgstr "Copie" | ||
|
||
#: src/termit.c:190 | ||
msgid "Edit" | ||
|
@@ -50,16 +50,16 @@ msgstr "Fichier" | |
|
||
#: src/termit_preferences.c:193 | ||
msgid "Font" | ||
msgstr "" | ||
msgstr "Fonte" | ||
|
||
#: src/termit_preferences.c:200 | ||
msgid "Foreground" | ||
msgstr "" | ||
msgstr "Premier plan" | ||
|
||
#. File menu | ||
#: src/termit.c:169 src/termit.c:222 | ||
msgid "New tab" | ||
msgstr "" | ||
msgstr "Nouvel onglet" | ||
|
||
#. Sessions menu | ||
#: src/termit.c:202 src/callbacks.c:418 | ||
|
@@ -68,23 +68,23 @@ msgstr "Ouvrir une session" | |
|
||
#: src/termit.c:188 src/termit.c:227 | ||
msgid "Paste" | ||
msgstr "" | ||
msgstr "Coller" | ||
|
||
#: src/termit.c:186 src/termit.c:225 src/termit_preferences.c:167 | ||
msgid "Preferences" | ||
msgstr "" | ||
msgstr "Préférences" | ||
|
||
#: src/termit.c:171 src/termit.c:228 | ||
msgid "Quit" | ||
msgstr "" | ||
msgstr "Quitter" | ||
|
||
#: src/termit.c:203 src/callbacks.c:388 | ||
msgid "Save session" | ||
msgstr "Enregistrer la session" | ||
|
||
#: src/termit.c:229 | ||
msgid "Scrollbar" | ||
msgstr "" | ||
msgstr "Barre de défilement" | ||
|
||
#: src/termit.c:205 | ||
msgid "Sessions" | ||
|
This file contains 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 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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is not good "fix"
The path may be changed in future.
We should fellow the value from pkg-config
#131