Skip to content

Commit

Permalink
잘못된 저장 경로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
kimorkim committed Jun 9, 2016
1 parent 6fcd824 commit 5e28637
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
10 changes: 10 additions & 0 deletions app/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[Read Me]
1. 엔트리 오프라인 에디터는 아파치 2.0 라이센스를 적용하고 있습니다. 본 내용의 구체적인 내용은 https://github.com/entrylabs/entry-offline 를 통하여 확인해주시기 바랍니다.
2. 본 문서는 엔트리 오프라인 에디터를 사용하심에 있어서 발생할 수 있는 문제의 해결 방법을 기술하였습니다.
3. 혹, 본 문서에 명시되어 있지 않은 문제 상황을 접하신 경우 [email protected] 에 문제 상황을 안내해주시기를 부탁드립니다.

[오류 대처법]
1. 'Entry"은(는) 확인되지 않은 개발자가 배포했기 때문에 열 수 없습니다.
a. '응용 프로그램' 폴더에서 Entry 프로그램을 오른쪽 클릭 후 '열기'를 눌러주세요. 파일이 정상적으로 열리게 되며, 추후 Entry를 실행시킬 때에는 위 문구가 더 이상 뜨지 않습니다.
1. 'Entry' 응용 프로그램을 열 수 없습니다.
a. 컴퓨터를 종료 후 다시 시동해주세요. 기존에 설치된 Entry 프로그램으로 인해 발생하며, 다시 시동된 이후 정상적으로 Entry 는 실행됩니다.
2 changes: 1 addition & 1 deletion app/src/workspace.js
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ angular.module('workspace').controller("WorkspaceController",
function saveAsProject(title) {
var default_path = storage.getItem('defaultPath') || '';
dialog.showSaveDialog({
defaultPath: default_path + $scope.project.name,
defaultPath: path.join(default_path, $scope.project.name),
title: title,
filters: [
{
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
"authors": "EntryLabs"
},
"asar": false,
"name": "Entry",
"app-bundle-id": "entry-offline",
"app-category-type": "org.play-entry.entry-offline",
"iconUrl": "https://raw.githubusercontent.com/entrylabs/entry-hw/feature/electron/build/icon.ico",
Expand Down

0 comments on commit 5e28637

Please sign in to comment.