Skip to content

Commit fe0d0df

Browse files
committed
Link-Anpassungen
1 parent 7918b77 commit fe0d0df

12 files changed

+20
-21
lines changed

app/sidebar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ var Command_MyThemes = Upfront.Views.Editor.Command.extend({
133133

134134
var Command_BuilderHelp = Command_Help.extend({
135135
on_click: function () {
136-
var url = 'https://upfront.n3rds.work/upfront-framework/',
136+
var url = 'https://cp-psource.github.io/upfront/',
137137
win = window.open(url, "_blank")
138138
;
139139
win.focus();
File renamed without changes.

languages/upfront_thx-en_US.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -572,8 +572,8 @@ msgid "Wird geladen..."
572572
msgstr "Loading..."
573573

574574
#. Author of the plugin/theme
575-
msgid "WMS N@W"
576-
msgstr "WMS N@W"
575+
msgid "PSOURCE"
576+
msgstr "PSOURCE"
577577

578578
#: lib/class_thx_l10n.php:85 lib/class_thx_l10n.php:86
579579
msgid "Wrapper"

languages/upfront_thx-fr_FR.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -780,8 +780,8 @@ msgstr ""
780780
"des thèmes ClassicPress."
781781

782782
#. Author of the plugin/theme
783-
msgid "WMS N@W"
784-
msgstr "WMS N@W"
783+
msgid "PSOURCE"
784+
msgstr "PSOURCE"
785785

786786
#. Author URI of the plugin/theme
787787
msgid "https://n3rds.work"

languages/upfront_thx-it_IT.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -778,8 +778,8 @@ msgstr ""
778778

779779
#. Author of the plugin/theme
780780
#, fuzzy
781-
msgid "WMS N@W"
782-
msgstr "WMS N@W"
781+
msgid "PSOURCE"
782+
msgstr "PSOURCE"
783783

784784
#. Author URI of the plugin/theme
785785
#, fuzzy

languages/upfront_thx.pot

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2023 WMS N@W
1+
# Copyright (C) 2023 PSOURCE
22
# This file is distributed under the GPLv2 or later.
33
msgid ""
44
msgstr ""
@@ -549,7 +549,7 @@ msgid ""
549549
msgstr ""
550550

551551
#. Author of the plugin/theme
552-
msgid "WMS N@W"
552+
msgid "PSOURCE"
553553
msgstr ""
554554

555555
#. Author URI of the plugin/theme

readme.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
=== UpFront Builder ===
2-
Contributors: DerN3rd (WMS N@W)
3-
Donate link: https://n3rds.work/spendenaktionen/unterstuetze-unsere-psource-free-werke/
2+
Contributors: DerN3rd (PSOURCE)
43
Plugin URI: https://cp-psource.github.io/upfront-builder/
54
Tags: classicpress, theme, builder, framework
65
Requires at least: 4.9

templates/plugin/compat_core_version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<?php echo wp_kses(
1010
sprintf(
1111
__('Du benötigst UpFront Framework in Version v1.4 oder höher, damit UpFront Builder ordnungsgemäß funktioniert. <a href="%s" target="_blank">Hol es Dir hier.</a>', UpfrontThemeExporter::DOMAIN),
12-
'https://upfront.n3rds.work/upfront-framework/'
12+
'https://cp-psource.github.io/upfront/'
1313
), array(
1414
'a' => array(
1515
'href' => array(),

templates/plugin/dependencies.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
current_layout_label: <?php echo json_encode($layout); ?>
1414
};
1515
upfrontrjs.require(['<?php echo esc_url($root_url) ?>app/main.js'], function () {
16-
Upfront.Util.log("Booting exporter");
16+
Upfront.Util.log("Boot-Exporteur");
1717
});
1818
});
1919
</script>

templates/plugin/js/create_edit.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,8 @@ function init_new () {
9797
$.post(_thx.admin_ajax, {
9898
action: 'upfront_thx-create-theme',
9999
mode: "theme",
100-
form: _.map(data, function(value, key){ return key + '=' + escape(value); }).join('&')
100+
form: _.map(data, function(value, key){ return key + '=' + encodeURIComponent(value); }).join('&')
101+
//form: _.map(data, function(value, key){ return key + '=' + encodeURIComponent(value); }).join('&')
101102
}).done(function(response) {
102103
if (!slug && response && "theme" in response) {
103104
slug = (response.theme || {directory: false}).directory;
@@ -217,7 +218,7 @@ function init_existing () {
217218
$.post(_thx.admin_ajax, {
218219
action: 'upfront_thx-update-theme',
219220
mode: "theme",
220-
form: _.map(data, function(value, key){ return key + '=' + escape(value); }).join('&')
221+
form: _.map(data, function(value, key){ return key + '=' + encodeURIComponent(value); }).join('&')
221222
}).done(function(response) {
222223
window.location.reload();
223224
}).fail(function() {
@@ -240,7 +241,7 @@ function init_existing () {
240241
$.post(_thx.admin_ajax, {
241242
action: 'upfront_thx-clone-theme',
242243
mode: "theme",
243-
form: _.map(data, function(value, key){ return key + '=' + escape(value); }).join('&')
244+
form: _.map(data, function(value, key){ return key + '=' + encodeURIComponent(value); }).join('&')
244245
}).done(function (response) {
245246
window.location.reload();
246247
}).error(function (rsp) {

templates/plugin/kickstart_not_ready.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<?php echo wp_kses(
66
sprintf(
77
__('<a href="%s" target="_blank">Hol es Dir hier.</a>', UpfrontThemeExporter::DOMAIN),
8-
'https://upfront.n3rds.work/upfront-framework/'
8+
'https://cp-psource.github.io/upfront/'
99
), array(
1010
'a' => array(
1111
'href' => array(),

upfront-theme-exporter.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,16 @@
33
Plugin Name: Upfront Builder
44
Plugin URI: https://cp-psource.github.io/upfront-builder/
55
Description: Der schnellste und visuellste Weg, um ClassicPress-Themes zu erstellen. Jetzt kann jeder ClassicPress-Themes entwerfen, erstellen, exportieren, teilen und verkaufen.
6-
Donate link: https://n3rds.work/spendenaktionen/unterstuetze-unsere-psource-free-werke/
76
Version: 1.2.4
8-
Author: WMS N@W
9-
Author URI: https://n3rds.work
7+
Author: PSOURCE
8+
Author URI: https://github.com/cp-psource
109
Text Domain: upfront_thx
1110
Domain Path: /languages
1211
License: GPLv2 or later
1312
*/
1413

1514
/*
16-
Copyright 2014-2024 WMS N@W (https://n3rds.work)
15+
Copyright 2014-2024 PSOURCE (https://github.com/cp-psource)
1716
1817
This program is free software; you can redistribute it and/or modify
1918
it under the terms of the GNU General Public License (Version 2 - GPLv2) as published by

0 commit comments

Comments
 (0)