WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 28, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,14 @@
1
+
# Version 0404 - 2015/11/24
2
+
3
+
### Additions
4
+
- Added option to add a repository by dropping its folder onto LoGiVi (Closes [#46](https://github.com/rm-code/logivi/issues/46))
5
+
- Added automatic camera zoom (Closes [#47](https://github.com/rm-code/logivi/issues/47))
6
+
- Added fading of deleted files. They will no longer be removed instantly, but instead fade out until they are invisible (Closes [#49](https://github.com/rm-code/logivi/issues/49))
7
+
- Added animation of files when they are rearranged around their parent nodes
8
+
9
+
### Fixes
10
+
- Fixed [#44](https://github.com/rm-code/logivi/issues/44) - File paths are validated after the config has been validated
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# LoGiVi
2
2
3
-
LoGiVi is a git-repository visualisation tool inspired by [Gource](http://gource.io/) and __currently in development__. It was written from scratch using [Lua](http://www.lua.org/) and the [LÖVE](https://love2d.org/) framework.
3
+
LoGiVi is a git-repository visualisation tool inspired by [Gource](http://gource.io/) and __currently in development__. It was written from scratch using [Lua](http://www.lua.org/) and the [LÖVE](https://love2d.org/) framework. Note: Since version [0375](https://github.com/rm-code/logivi/releases/tag/0375) LoGiVi uses version [0.10.0](https://love2d.org/wiki/0.10.0) of the LÖVE framework.
Copy file name to clipboardExpand all lines: src/conf/ConfigReader.lua
+39-10Lines changed: 39 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,10 @@ local ConfigReader = {};
7
7
localFILE_NAME='settings.cfg';
8
8
localTEMPLATE_PATH='res/templates/settings.cfg';
9
9
10
+
localINVALID_CONFIG_HEADER='Invalid config file';
11
+
localMISSING_SECTION_WARNING='Seems like the loaded configuration file is missing the [%s] section. The default settings will be used instead.';
12
+
localMISSING_VALUE_WARNING='Seems like the loaded configuration file is missing the [%s] value in the [%s] section. The default settings will be used instead.';
0 commit comments