Skip to content

Commit

Permalink
from Kage Studio's sourceforge r811
Browse files Browse the repository at this point in the history
  • Loading branch information
creek23 committed Feb 25, 2024
1 parent 5a80f85 commit 2806d10
Show file tree
Hide file tree
Showing 58 changed files with 2,685 additions and 1,980 deletions.
2 changes: 1 addition & 1 deletion studio/Makefile.gnu
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ SOURCES = \
./kage/timeline/layers.cpp \
./kage/timeline/scenes.cpp \
./kage/timeline/timeline.cpp \
./kage/unre/kagedo.cpp \
./kage/unre/unre.cpp \
./kage/stage/stage.cpp \
./kage/stage/node.cpp \
Expand All @@ -36,6 +35,7 @@ SOURCES = \
./kage/data/layer.cpp \
./kage/data/scene.cpp \
./kage/document.cpp \
./kage/project.cpp \
./util/xml/xmltoken.cpp \
./util/xml/xmltagproperty.cpp \
./util/xml/xmltag.cpp \
Expand Down
2 changes: 1 addition & 1 deletion studio/Makefile.mac
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ SOURCES = \
./kage/timeline/layers.cpp \
./kage/timeline/scenes.cpp \
./kage/timeline/timeline.cpp \
./kage/unre/kagedo.cpp \
./kage/unre/unre.cpp \
./kage/stage/stage.cpp \
./kage/stage/node.cpp \
Expand All @@ -36,6 +35,7 @@ SOURCES = \
./kage/data/layer.cpp \
./kage/data/scene.cpp \
./kage/document.cpp \
./kage/project.cpp \
./util/xml/xmltoken.cpp \
./util/xml/xmltagproperty.cpp \
./util/xml/xmltag.cpp \
Expand Down
2 changes: 1 addition & 1 deletion studio/Makefile.win
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ SOURCES = \
./kage/timeline/layers.cpp \
./kage/timeline/scenes.cpp \
./kage/timeline/timeline.cpp \
./kage/unre/kagedo.cpp \
./kage/unre/unre.cpp \
./kage/stage/stage.cpp \
./kage/stage/node.cpp \
Expand All @@ -41,6 +40,7 @@ SOURCES = \
./kage/data/layer.cpp \
./kage/data/scene.cpp \
./kage/document.cpp \
./kage/project.cpp \
./util/xml/xmltoken.cpp \
./util/xml/xmltagproperty.cpp \
./util/xml/xmltag.cpp \
Expand Down
2 changes: 1 addition & 1 deletion studio/README.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Current version is v0.7.240121
Current version is v0.8.240210
Kage Studio is a simple, Free and Open Source 2D Animation Software
written by Mj Mendoza IV <mj.mendoza.iv at gmail dot com>

Expand Down
18 changes: 9 additions & 9 deletions studio/about.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Kage Studio - a simple free and open source vector-based 2D animation software
* Copyright (C) 2011~2023 Mj Mendoza IV
* Copyright (C) 2011~2024 Mj Mendoza IV
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand All @@ -21,13 +21,13 @@

#include "about.h"

string KageAbout::app_title = "Kage Studio";
string KageAbout::app_version = "0.7.240121";
string KageAbout::app_author = "Mj Mendoza IV";
string KageAbout::app_contact = "[email protected]";
string KageAbout::app_website = "https://kage.sourceforge.io";
string KageAbout::app_copyright = "Copyleft 2011~2023";
string KageAbout::app_comment = "A Simple Free and Open Source vector-based 2D Animation Software.";
std::string KageAbout::app_title = "Kage Studio";
std::string KageAbout::app_version = "0.8.240210";
std::string KageAbout::app_author = "Mj Mendoza IV";
std::string KageAbout::app_contact = "[email protected]";
std::string KageAbout::app_website = "https://kage.sourceforge.io";
std::string KageAbout::app_copyright = "Copyleft 2011~2024";
std::string KageAbout::app_comment = "A Simple Free and Open Source vector-based 2D Animation Software.";
Glib::RefPtr<Gdk::Pixbuf> KageAbout::imageABOUT;

KageAbout::KageAbout(Gtk::Window& parent)
Expand All @@ -37,7 +37,7 @@ KageAbout::KageAbout(Gtk::Window& parent)
m_Label1("", true),
m_Label2("", true),
m_Image(Gtk::Stock::DIALOG_INFO, Gtk::ICON_SIZE_DIALOG) {
string l_license = string("") +
std::string l_license = std::string("") +
"This program is free software: you can redistribute it and/or modify\n" +
"it under the terms of the GNU General Public License as published by\n" +
"the Free Software Foundation, either version 3 of the License, or\n" +
Expand Down
18 changes: 8 additions & 10 deletions studio/about.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Kage Studio - a simple free and open source vector-based 2D animation software
* Copyright (C) 2011~2022 Mj Mendoza IV
* Copyright (C) 2011~2024 Mj Mendoza IV
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -30,19 +30,17 @@
#include <gtkmm/image.h>
#include <gtkmm/table.h>

using namespace std;

class KageAbout : public Gtk::Dialog {
public:
KageAbout(Gtk::Window& parent);
virtual ~KageAbout();
static string app_version;
static string app_title;
static string app_author;
static string app_contact;
static string app_website;
static string app_copyright;
static string app_comment;
static std::string app_version;
static std::string app_title;
static std::string app_author;
static std::string app_contact;
static std::string app_website;
static std::string app_copyright;
static std::string app_comment;
static Glib::RefPtr<Gdk::Pixbuf> imageABOUT;

protected:
Expand Down
Loading

0 comments on commit 2806d10

Please sign in to comment.