https://github.com/casiez/libparamtuner

sort by:
Revision Author Date Message Commit Date
d63c253 Added instruction to install using Homebrew 14 November 2017, 21:47:10 UTC
8b9be58 Preparing v 1.2 13 November 2017, 13:55:30 UTC
8479eea Java lib : user can disables infos and warnings messages 10 October 2017, 16:38:04 UTC
78f60b2 GUI : Preference keys could contains invalid characters the method getCode() in MainFrame now return an hexadecimal representation of the MD5 string 10 October 2017, 15:55:39 UTC
5663bd7 GUI : The command line argument (file path) was not used 10 October 2017, 15:50:25 UTC
1f0792d Little GUI improvement - Manually editing spinner text content for Integer and Float parameters now update the value in the file in real time (no more required to press ENTER to validate) - In MainFrame, replacing String representation of path with File instance (auto manage path separator (different in Windows)) - The MainFrame title is now formated like this : *fileName.xml - ParamTuner GUI the star at the beginning only appears when the file need to be saved (like before) 03 October 2017, 00:29:05 UTC
93e9ad9 Add 'desc' attribute (description) in parameter files to display it in the GUI 02 October 2017, 23:13:11 UTC
6557328 Add icon for GUI title bar + ensure preferences are saved on close 02 October 2017, 22:41:28 UTC
e616de8 Fixed link in Readme 29 September 2017, 06:29:14 UTC
f91026d Updated readme and prepared homebrew files to create homebrew archive 29 September 2017, 06:26:23 UTC
f114856 Added update() method in Java library, like in C++ 25 September 2017, 18:35:04 UTC
523ea72 C++ lib: someParametersChanged default to true User can update() variables just after load() and bind() even if the file has not changed (when the default values in the program are differents from the file content) 25 September 2017, 17:50:16 UTC
444ce98 Merge branch 'wip_issue_11' Closes #11 25 September 2017, 17:31:56 UTC
653165e Tested with a console example (ParamTuner::load called twice with no error) 25 September 2017, 17:31:04 UTC
303205e Apply some IDE tips (even if not necessary) : making some methods static 25 September 2017, 17:25:30 UTC
15d652c Starting working on issue #11 Can't test theses modifications on Windows + little modification on GUI : don't ask for save before reverting file 22 September 2017, 23:05:41 UTC
c95e925 Keyboard shortcuts in GUI are now adapted to OS standards Ctrl on Windows, Meta on Mac. It uses KeyCombination.SHORTCUT_DOWN (cf. Javadoc of KeyCombination) Closes #10 22 September 2017, 22:10:34 UTC
e123672 A ComboBox is now displayed instead of TextArea when there is a list of predefined values in a string parameter. This closes #9 The user can write custom value in the ComboBox, but he can't write multiple lines. 22 September 2017, 21:05:57 UTC
b46008b Java library (but not yet GUI) work with predefined list of values for String parameter The Transformer (that convert object structure to XML file) now work correctly (it print indentation, now). Parameter class now reuse the Element builder instead of XMLString builder. It allow subclass of Parameter to override method toXMLElement() that is easier to implement than overriding the method toXMLString(). The methods toXMLString() in Parameter and ParameterFile are marked as @Deprecated to avoid using them, but these methods are not removed. 22 September 2017, 20:39:47 UTC
b145c74 Try to manage indentation with transformer 22 September 2017, 16:39:17 UTC
610694a Starting working on issue #9 22 September 2017, 16:37:17 UTC
889ae0e Improved minor things 28 August 2017, 15:44:39 UTC
a0ae49d ParamTunerGUI icon for Windows 27 August 2017, 21:47:07 UTC
7a7ef02 Qt demo 27 August 2017, 20:35:57 UTC
87cb7bf Fixed ParamTunerGUI: now produces a clean XML file with indention and properties set in the expected order, not alphabetically. The file is also no longer re-ordered alphabetically. 27 August 2017, 20:33:27 UTC
03f1467 cleanup 28 July 2017, 14:00:16 UTC
2d401c7 new interface for ParamTunerGUI 28 July 2017, 13:23:12 UTC
2947461 Fixed pb with slider and float / double values 26 July 2017, 14:08:45 UTC
a5365bb added update() function to explicitly update paramerters 26 July 2017, 13:29:41 UTC
b37485c Creation of native bundle + save last path in ParamTunerGUI 26 July 2017, 10:14:29 UTC
9209ea9 fixed makefile not compiling for GLUT on macOS 03 July 2017, 11:50:58 UTC
c1a9657 Merge pull request #8 from CRIStAL-PADR/codereview_padr [WIP] Codereview padr 03 July 2017, 11:31:01 UTC
ff36012 [tests] Add test showing demonstrating problem on linux. The problems seems to be related to the destruction of the object while it is used in a separated thread. 16 June 2017, 10:25:09 UTC
b03a1fe [src/cpp/tests] Add basic test infrastructure. This require to have gtest installed. https://github.com/google/googletest/ 16 June 2017, 09:36:47 UTC
365aa30 Merge branch 'codereview_padr' of github.com:CRIStAL-PADR/libparamtuner into codereview_padr 16 June 2017, 09:20:47 UTC
ee0e767 correction of lib position (pthread linking error) in Makefile 16 June 2017, 09:19:24 UTC
c10e8df [examples] Improve a bit the glut example. 16 June 2017, 09:18:10 UTC
c688c7c [examples] glut_with_lib.cpp The "timing" stuff was not working and the display is never redisplayed. 16 June 2017, 09:08:30 UTC
8b764bb [examples] Fix compilation problem because 'time' is a function that exists on linux 16 June 2017, 09:07:31 UTC
8845b5a [Makefile] Add ldflags to allow linux specific link library names. 16 June 2017, 08:20:29 UTC
c3ba20b Little better performance on Mac OS with Java library. The interval value of com.sun.nio.file.SensitivityWatchEventModifier.HIGH is set by default to 2 seconds(1), but via reflexion, we change the value to 1 second (we can't set fraction of second because the value is int and is interpreted as seconds(2)) This is an another temporary improvement, waiting for the C++/Java binding (issue #4). (1) http://grepcode.com/file/repository.grepcode.com/java/root/jdk/openjdk/8u40-b25/com/sun/nio/file/SensitivityWatchEventModifier.java (2) http://grepcode.com/file/repository.grepcode.com/java/root/jdk/openjdk/8u40-b25/sun/nio/fs/PollingWatchService.java/#290 01 June 2017, 16:07:16 UTC
5161b73 C++ library improvement ... - createFileSystemWatcher() is now a static method of FileSystemWatcher abstract class. - Implemented methods of FileSystemWatcher is now in his own .cpp file : cleaning up FileSystemWatcher.hpp file. - removing 'typedef void (*voidfunc)(void);' to make the source code more explicit. - Constructor of FileSystemWatcher is now protected to clarify the usage of this class (only instanciated with the static method createFileSystemWatcher()). This commit prepare the usage of the FileSystemWatcher for binding with others programming languages. 01 June 2017, 01:27:58 UTC
892faa7 Correcting issue #5 01 June 2017, 00:48:33 UTC
d7a418d Better save/load operation in Java library and GUI, less error message. Correcting issue #6 31 May 2017, 23:19:59 UTC
3da06ef Adding file explorer to GUI #7 21 May 2017, 22:21:11 UTC
15d97e4 GLUT Examples (with and without libParamTuner, for comparison) 21 May 2017, 20:44:50 UTC
f58ade7 little Javadoc update 21 May 2017, 20:40:25 UTC
2020670 Updating Java Square example 21 May 2017, 20:39:15 UTC
c0ee5fd Add syntax highlighting for block code 21 May 2017, 19:20:46 UTC
750ebad Some code cleanup 14 May 2017, 01:41:45 UTC
6accad2 Removing TODO list from Readme 13 May 2017, 22:00:23 UTC
e900c48 Correct method name in Java library : removeSetting -> removeParameter 10 May 2017, 20:09:55 UTC
a6510be Correcting makefile errors 29 April 2017, 16:17:07 UTC
5b940bc fixed compilation pb 27 April 2017, 11:18:56 UTC
0dc63d1 GUI now work with JavaFX 07 April 2017, 16:15:26 UTC
3305617 [test to do] Add Modifier in Java FileWatcher that reduce time between event refresh on Mac OS 03 April 2017, 19:08:21 UTC
fb2b0e5 Updating Readme 16 March 2017, 13:06:27 UTC
414d4cd Fix examples/cpp .gitignore 05 March 2017, 17:09:34 UTC
f1b256d Update .gitignore 05 March 2017, 17:02:27 UTC
b4c4f89 Update Readme 05 March 2017, 15:06:00 UTC
2d8695d Hello libparametuner in JavaFX 02 March 2017, 14:05:38 UTC
09f7fc8 Add graphical example 02 March 2017, 10:57:05 UTC
b9dc859 Update Readme 02 March 2017, 00:54:36 UTC
3d109f1 Format and cleanup Java source code 02 March 2017, 00:29:16 UTC
ce23ec2 GUI : Parameter infos tooltips + removed ticks and labels from sliders See parameter type (integer, string, ...) when hovering his name Explicitly hiding ticks and labels from sliders (that may represent false values for FLOAT parameters) 02 March 2017, 00:20:10 UTC
3481320 GUI : Fix slider precision for float values The precision of the slider is now calculated based on the min and max value of the parameter 02 March 2017, 00:12:22 UTC
2c06bac GUI : UI components are now correctly sized 01 March 2017, 22:51:35 UTC
34e4df1 GUI : Ask for save on window close 01 March 2017, 22:51:35 UTC
3a8f936 Fixed Makefile to compile on macOS 01 March 2017, 21:16:04 UTC
f7b03f1 Update Readme.md 25 February 2017, 16:34:31 UTC
99fcffc Update general .gitignore && rename libparamtuner -> paramtuner 25 February 2017, 16:30:14 UTC
075c8fd Fusion console example, update gitignore and fix include problem in libparamtuner.cpp (missing <vector>) 25 February 2017, 13:20:38 UTC
2ba06f5 English comments 22 February 2017, 02:07:46 UTC
64c6532 Adding exception handling in string_to_ functions 22 February 2017, 01:27:18 UTC
1207cd4 Removing all Qt dependencies 22 February 2017, 01:05:27 UTC
be504f3 FSEvents on macOS now working 08 February 2017, 15:01:27 UTC
c80b8ea Notification almost working on macOS 08 February 2017, 13:03:46 UTC
1c27006 Update .gitignore of the examples 07 February 2017, 19:33:07 UTC
fa58274 Fix GUI compilation 07 February 2017, 16:06:24 UTC
e112764 Changing packages name and removing System.out.println 07 February 2017, 13:15:17 UTC
fedd293 Merge branch 'master' of https://github.com/casiez/libparamtuner 07 February 2017, 12:58:35 UTC
d60ac7a GUI now working 07 February 2017, 12:54:59 UTC
8da5b16 Update Readme.md 06 February 2017, 13:25:37 UTC
21b12dd Added minimal example 06 February 2017, 13:24:22 UTC
f9bce03 Changing brackets to parentheses in Makefiles 02 February 2017, 16:51:00 UTC
ca95169 Adding licence and copyright notice 02 February 2017, 16:44:05 UTC
46e68de Changing Namespace / Package in C++ and Java library 02 February 2017, 16:00:38 UTC
61b5578 Changing directory structure 02 February 2017, 15:21:48 UTC
fbdfa15 Merge branch 'master' of http://asgard.lille.inria.fr/kallithea/libparamtuner 01 February 2017, 23:43:41 UTC
826f96e Starting GUI development 01 February 2017, 23:43:18 UTC
0c3e785 Object structure representing XML parameter file in Java library Object content are mutable, so it can be edited and saved to update file content (GUI will use this ability). More flexibility for future data type addition. 01 February 2017, 23:31:24 UTC
e248800 Fix generate doc 01 February 2017, 17:00:09 UTC
5cc22aa Merge branch 'master' of http://asgard.lille.inria.fr/kallithea/libparamtuner 31 January 2017, 15:45:18 UTC
dc6b56b Add rule in Makefile and config files for create a doc files 31 January 2017, 15:44:51 UTC
291278b Adding Javadoc to Java library 29 January 2017, 21:37:50 UTC
4580114 Generated Jar for Java library is now named correctly 28 January 2017, 22:45:29 UTC
c4cdc50 Adding documentation into libparamtuner.h 28 January 2017, 21:02:12 UTC
97d09a2 Updating Readme + renaming some file correctly 24 January 2017, 23:46:56 UTC
a2b28f5 Fix Makefile on linux 24 January 2017, 17:06:06 UTC
3295ef6 Makefile now work on Windows 24 January 2017, 16:56:53 UTC
back to top