From a18a8b783d71859e01c550b0acf6e0cefbef0d9f Mon Sep 17 00:00:00 2001 From: Louie Shprung Date: Wed, 7 Aug 2024 22:34:44 -0400 Subject: Working demo for loading groups and entries from lua config --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .gitignore (limited to '.gitignore') diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..540814b --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.cache +*~ +*.tar.gz -- cgit From 459a55528f8d2de726e75d8fc6119fcc3b4681b7 Mon Sep 17 00:00:00 2001 From: Louie Shprung Date: Thu, 8 Aug 2024 20:52:18 -0400 Subject: Update .gitignore --- .gitignore | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 540814b..2093e21 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,64 @@ +# http://www.gnu.org/software/automake + +Makefile.in +/ar-lib +/mdate-sh +/py-compile +/test-driver +/ylwrap +.deps/ +.dirstamp + +# http://www.gnu.org/software/autoconf + +autom4te.cache +/autoscan.log +/autoscan-*.log +/aclocal.m4 +/compile +/config.cache +/config.guess +/config.h.in +/config.log +/config.status +/config.sub +/configure +/configure.scan +/depcomp +/install-sh +/missing +/stamp-h1 + +# https://www.gnu.org/software/libtool/ + +/ltmain.sh + +# http://www.gnu.org/software/texinfo + +/texinfo.tex + +# http://www.gnu.org/software/m4/ + +m4/libtool.m4 +m4/ltoptions.m4 +m4/ltsugar.m4 +m4/ltversion.m4 +m4/lt~obsolete.m4 + +# Generated Makefile +# (meta build system like autotools, +# can automatically generate from config.status script +# (which is called by configure script)) +Makefile + +# Additional ignores .cache *~ *.tar.gz +config.h +nsis/installer.nsi +spec/terminal-media-launcher.spec +src/terminal-media-launcher +src/*.o +src/unix/*.o +src/windows/*.o -- cgit From f00cf908fdcdff676e95e563b2a93e2d4af05bc7 Mon Sep 17 00:00:00 2001 From: Louie Shprung Date: Wed, 14 Aug 2024 14:16:54 -0400 Subject: Compile on Windows --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 2093e21..7edf854 100644 --- a/.gitignore +++ b/.gitignore @@ -58,7 +58,10 @@ Makefile config.h nsis/installer.nsi spec/terminal-media-launcher.spec +src/icon/*.res src/terminal-media-launcher +src/*.dll +src/*.exe src/*.o src/unix/*.o src/windows/*.o -- cgit From 7f16bf6f85151507e76382ff5beae590b399acf1 Mon Sep 17 00:00:00 2001 From: Louie Shprung Date: Mon, 26 Aug 2024 17:31:15 -0400 Subject: Update actions recipes --- .gitignore | 1 + 1 file changed, 1 insertion(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 7edf854..7cc2a44 100644 --- a/.gitignore +++ b/.gitignore @@ -56,6 +56,7 @@ Makefile *~ *.tar.gz config.h +actions/build nsis/installer.nsi spec/terminal-media-launcher.spec src/icon/*.res -- cgit