Skip to content

Commit

Permalink
Link-Anpassungen
Browse files Browse the repository at this point in the history
  • Loading branch information
Dernerd committed Jun 8, 2024
1 parent 7918b77 commit fe0d0df
Show file tree
Hide file tree
Showing 12 changed files with 20 additions and 21 deletions.
2 changes: 1 addition & 1 deletion app/sidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ var Command_MyThemes = Upfront.Views.Editor.Command.extend({

var Command_BuilderHelp = Command_Help.extend({
on_click: function () {
var url = 'https://upfront.n3rds.work/upfront-framework/',
var url = 'https://cp-psource.github.io/upfront/',
win = window.open(url, "_blank")
;
win.focus();
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions languages/upfront_thx-en_US.po
Original file line number Diff line number Diff line change
Expand Up @@ -572,8 +572,8 @@ msgid "Wird geladen..."
msgstr "Loading..."

#. Author of the plugin/theme
msgid "WMS N@W"
msgstr "WMS N@W"
msgid "PSOURCE"
msgstr "PSOURCE"

#: lib/class_thx_l10n.php:85 lib/class_thx_l10n.php:86
msgid "Wrapper"
Expand Down
4 changes: 2 additions & 2 deletions languages/upfront_thx-fr_FR.po
Original file line number Diff line number Diff line change
Expand Up @@ -780,8 +780,8 @@ msgstr ""
"des thèmes ClassicPress."

#. Author of the plugin/theme
msgid "WMS N@W"
msgstr "WMS N@W"
msgid "PSOURCE"
msgstr "PSOURCE"

#. Author URI of the plugin/theme
msgid "https://n3rds.work"
Expand Down
4 changes: 2 additions & 2 deletions languages/upfront_thx-it_IT.po
Original file line number Diff line number Diff line change
Expand Up @@ -778,8 +778,8 @@ msgstr ""

#. Author of the plugin/theme
#, fuzzy
msgid "WMS N@W"
msgstr "WMS N@W"
msgid "PSOURCE"
msgstr "PSOURCE"

#. Author URI of the plugin/theme
#, fuzzy
Expand Down
4 changes: 2 additions & 2 deletions languages/upfront_thx.pot
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (C) 2023 WMS N@W
# Copyright (C) 2023 PSOURCE
# This file is distributed under the GPLv2 or later.
msgid ""
msgstr ""
Expand Down Expand Up @@ -549,7 +549,7 @@ msgid ""
msgstr ""

#. Author of the plugin/theme
msgid "WMS N@W"
msgid "PSOURCE"
msgstr ""

#. Author URI of the plugin/theme
Expand Down
3 changes: 1 addition & 2 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
=== UpFront Builder ===
Contributors: DerN3rd (WMS N@W)
Donate link: https://n3rds.work/spendenaktionen/unterstuetze-unsere-psource-free-werke/
Contributors: DerN3rd (PSOURCE)
Plugin URI: https://cp-psource.github.io/upfront-builder/
Tags: classicpress, theme, builder, framework
Requires at least: 4.9
Expand Down
2 changes: 1 addition & 1 deletion templates/plugin/compat_core_version.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<?php echo wp_kses(
sprintf(
__('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),
'https://upfront.n3rds.work/upfront-framework/'
'https://cp-psource.github.io/upfront/'
), array(
'a' => array(
'href' => array(),
Expand Down
2 changes: 1 addition & 1 deletion templates/plugin/dependencies.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
current_layout_label: <?php echo json_encode($layout); ?>
};
upfrontrjs.require(['<?php echo esc_url($root_url) ?>app/main.js'], function () {
Upfront.Util.log("Booting exporter");
Upfront.Util.log("Boot-Exporteur");
});
});
</script>
7 changes: 4 additions & 3 deletions templates/plugin/js/create_edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ function init_new () {
$.post(_thx.admin_ajax, {
action: 'upfront_thx-create-theme',
mode: "theme",
form: _.map(data, function(value, key){ return key + '=' + escape(value); }).join('&')
form: _.map(data, function(value, key){ return key + '=' + encodeURIComponent(value); }).join('&')
//form: _.map(data, function(value, key){ return key + '=' + encodeURIComponent(value); }).join('&')
}).done(function(response) {
if (!slug && response && "theme" in response) {
slug = (response.theme || {directory: false}).directory;
Expand Down Expand Up @@ -217,7 +218,7 @@ function init_existing () {
$.post(_thx.admin_ajax, {
action: 'upfront_thx-update-theme',
mode: "theme",
form: _.map(data, function(value, key){ return key + '=' + escape(value); }).join('&')
form: _.map(data, function(value, key){ return key + '=' + encodeURIComponent(value); }).join('&')
}).done(function(response) {
window.location.reload();
}).fail(function() {
Expand All @@ -240,7 +241,7 @@ function init_existing () {
$.post(_thx.admin_ajax, {
action: 'upfront_thx-clone-theme',
mode: "theme",
form: _.map(data, function(value, key){ return key + '=' + escape(value); }).join('&')
form: _.map(data, function(value, key){ return key + '=' + encodeURIComponent(value); }).join('&')
}).done(function (response) {
window.location.reload();
}).error(function (rsp) {
Expand Down
2 changes: 1 addition & 1 deletion templates/plugin/kickstart_not_ready.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<?php echo wp_kses(
sprintf(
__('<a href="%s" target="_blank">Hol es Dir hier.</a>', UpfrontThemeExporter::DOMAIN),
'https://upfront.n3rds.work/upfront-framework/'
'https://cp-psource.github.io/upfront/'
), array(
'a' => array(
'href' => array(),
Expand Down
7 changes: 3 additions & 4 deletions upfront-theme-exporter.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,16 @@
Plugin Name: Upfront Builder
Plugin URI: https://cp-psource.github.io/upfront-builder/
Description: Der schnellste und visuellste Weg, um ClassicPress-Themes zu erstellen. Jetzt kann jeder ClassicPress-Themes entwerfen, erstellen, exportieren, teilen und verkaufen.
Donate link: https://n3rds.work/spendenaktionen/unterstuetze-unsere-psource-free-werke/
Version: 1.2.4
Author: WMS N@W
Author URI: https://n3rds.work
Author: PSOURCE
Author URI: https://github.com/cp-psource
Text Domain: upfront_thx
Domain Path: /languages
License: GPLv2 or later
*/

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

0 comments on commit fe0d0df

Please sign in to comment.