Compare commits

...

3 Commits

  1. 2
      TODO
  2. 12
      data/core/init.lua
  3. 2
      makefile

@ -77,4 +77,4 @@
[ ] rename file
[ ] move file
[ ] copy file
[ ] tree: make treeview resizable

@ -104,12 +104,12 @@ function core.init()
if file then
local last_dir = file:read()
file:close()
if last_dir then
info = system.get_file_info(last_dir)
if info and info.type == "dir" then
project_dir = last_dir
end
end
if last_dir then
info = system.get_file_info(last_dir)
if info and info.type == "dir" then
project_dir = last_dir
end
end
end
end
end

@ -28,7 +28,9 @@ install: lite
# mkdir -p ${DESTDIR}${MANPREFIX}/man1
# cp -f us.1 ${DESTDIR}${MANPREFIX}/man1/us.1
# chmod 644 ${DESTDIR}${MANPREFIX}/man1/us.1
mkdir -p ${DESTDIR}${PREFIX}/share/applications/
cp -f lite.desktop ${DESTDIR}${PREFIX}/share/applications/lite.desktop
mkdir -p ${DESTDIR}${PREFIX}/share/icons/hicolor/scalable/apps/
cp -f icon.ico ${DESTDIR}${PREFIX}/share/icons/hicolor/scalable/apps/lite.ico
uninstall:

Loading…
Cancel
Save