Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Aayush
purr-data
Commits
3806867c
Commit
3806867c
authored
Jan 20, 2017
by
Jonathan Wilkes
Browse files
Merge branch 'aggraef/purr-data-testing'
parents
6ca7f12c
5af5c086
Changes
2
Hide whitespace changes
Inline
Side-by-side
debuild/userconfig.patch
View file @
3806867c
diff --git a/pd/src/s_file.c b/pd/src/s_file.c
index
1c18096f..576e4c36
100644
index
32f54c31..304524d5
100644
--- a/pd/src/s_file.c
+++ b/pd/src/s_file.c
@@ -62,7 +62,7 @@
static void sys_initloadpreferences( void)
sys_libdir->s_name);
@@ -46,7 +46,7 @@
void sys_doflags( void);
if (homedir)
- snprintf(user_prefs_file, FILENAME_MAX, "%s/.pd-l2ork/user.settings", homedir);
+ snprintf(user_prefs_file, FILENAME_MAX, "%s/.purr-data/user.settings", homedir);
if (stat(user_prefs_file, &statbuf) == 0)
strncpy(filenamebuf, user_prefs_file, FILENAME_MAX);
else if (stat(default_prefs_file, &statbuf) == 0)
@@ -143,7 +143,7 @@
static void sys_initsavepreferences( void)
#ifdef UNIX
-#define USER_CONFIG_DIR ".pd-l2ork"
+#define USER_CONFIG_DIR ".purr-data"
static char *sys_prefbuf;
if (!homedir)
return;
- snprintf(filenamebuf, FILENAME_MAX, "%s/.pd-l2ork", homedir);
+ snprintf(filenamebuf, FILENAME_MAX, "%s/.purr-data", homedir);
filenamebuf[FILENAME_MAX-1] = 0;
if (stat(filenamebuf, &statbuf) || !S_ISDIR(statbuf.st_mode)) {
// user config dir doesn't exist yet, try to create it
@@ -152,7 +152,7 @@
static void sys_initsavepreferences( void)
return;
}
}
- snprintf(filenamebuf, FILENAME_MAX, "%s/.pd-l2ork/user.settings", homedir);
+ snprintf(filenamebuf, FILENAME_MAX, "%s/.purr-data/user.settings", homedir);
filenamebuf[FILENAME_MAX-1] = 0;
if ((sys_prefsavefp = fopen(filenamebuf, "w")) == NULL)
{
pd/src/s_file.c
View file @
3806867c
...
...
@@ -646,8 +646,10 @@ char *sys_recent_files[MAX_RECENT_FILES];
static
int
fexists
(
const
char
*
s
)
{
struct
stat
statbuf
;
return
stat
(
s
,
&
statbuf
)
==
0
;
FILE
*
fp
=
sys_fopen
(
s
,
"r"
);
if
(
!
fp
)
return
0
;
sys_fclose
(
fp
);
return
1
;
}
void
sys_add_recent_file
(
const
char
*
s
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment